From 56a9eea49c0b6e6ca78c8cf63cd3e95cb1aa4de9 Mon Sep 17 00:00:00 2001 From: blindfs Date: Mon, 2 Mar 2026 12:34:52 +0800 Subject: [PATCH 1/4] fix: assignment as pipeline element --- grammar.js | 8 +- src/grammar.json | 26 +- src/node-types.json | 28 +- src/parser.c | 334137 +++++++++++++++--------------- test/corpus/stmt/assignment.nu | 130 +- 5 files changed, 167907 insertions(+), 166422 deletions(-) diff --git a/grammar.js b/grammar.js index 79ea9a49..3e4efe8a 100644 --- a/grammar.js +++ b/grammar.js @@ -545,6 +545,7 @@ module.exports = grammar({ seq(_env_variable_rule(false, $), $.command), $._ctrl_expression, $.where_command, + $.assignment, alias($._stmt_let_shortcut, $.stmt_let), ), @@ -561,6 +562,7 @@ module.exports = grammar({ ), $._ctrl_expression_parenthesized, + alias($.assignment_parenthesized, $.assignment), alias($.where_command_parenthesized, $.where_command), alias($._stmt_let_shortcut, $.stmt_let), ), @@ -1466,7 +1468,10 @@ function _block_body_rules(suffix) { ), ['stmt_mut' + suffix]: (/** @type {{ [x: string]: RuleOrLiteral; }} */ $) => - prec.right(1, seq(keyword().mut, $['_assignment_pattern' + suffix])), + prec.right( + prec_map().assignment, + seq(keyword().mut, $['_assignment_pattern' + suffix]) + ), ['stmt_const' + suffix]: ( /** @type {{ [x: string]: RuleOrLiteral; }} */ $, @@ -1522,7 +1527,6 @@ function _block_body_rules(suffix) { ['_statement' + suffix]: (/** @type {any} */ $) => choice( $._ctrl_statement, - alias_for_suffix($, 'assignment', suffix), alias_for_suffix($, 'stmt_let', suffix), alias_for_suffix($, 'stmt_mut', suffix), alias_for_suffix($, 'stmt_const', suffix), diff --git a/src/grammar.json b/src/grammar.json index 1e32d3ea..c6d55ee3 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -309,10 +309,6 @@ "type": "SYMBOL", "name": "_ctrl_statement" }, - { - "type": "SYMBOL", - "name": "assignment" - }, { "type": "SYMBOL", "name": "stmt_let" @@ -640,15 +636,6 @@ "type": "SYMBOL", "name": "_ctrl_statement" }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "assignment_parenthesized" - }, - "named": true, - "value": "assignment" - }, { "type": "ALIAS", "content": { @@ -4761,6 +4748,10 @@ "type": "SYMBOL", "name": "where_command" }, + { + "type": "SYMBOL", + "name": "assignment" + }, { "type": "ALIAS", "content": { @@ -4852,6 +4843,15 @@ "type": "SYMBOL", "name": "_ctrl_expression_parenthesized" }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "assignment_parenthesized" + }, + "named": true, + "value": "assignment" + }, { "type": "ALIAS", "content": { diff --git a/src/node-types.json b/src/node-types.json index af2b2a28..5d1b9da2 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -230,10 +230,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "assignment", - "named": true - }, { "type": "ctrl_for", "named": true @@ -1883,10 +1879,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "assignment", - "named": true - }, { "type": "ctrl_for", "named": true @@ -1950,10 +1942,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "assignment", - "named": true - }, { "type": "cell_path", "named": true @@ -2021,10 +2009,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "assignment", - "named": true - }, { "type": "ctrl_for", "named": true @@ -2761,10 +2745,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "assignment", - "named": true - }, { "type": "ctrl_for", "named": true @@ -3195,6 +3175,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "assignment", + "named": true + }, { "type": "command", "named": true @@ -3921,10 +3905,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "assignment", - "named": true - }, { "type": "ctrl_for", "named": true diff --git a/src/parser.c b/src/parser.c index 1df719db..71cd1d8d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,8 +15,8 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5512 -#define LARGE_STATE_COUNT 1277 +#define STATE_COUNT 5530 +#define LARGE_STATE_COUNT 1289 #define SYMBOL_COUNT 485 #define ALIAS_COUNT 3 #define TOKEN_COUNT 273 @@ -5064,15 +5064,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [15] = 3, [16] = 16, [17] = 17, - [18] = 16, - [19] = 19, - [20] = 19, + [18] = 17, + [19] = 16, + [20] = 20, [21] = 17, - [22] = 16, - [23] = 16, - [24] = 16, - [25] = 16, - [26] = 16, + [22] = 20, + [23] = 17, + [24] = 17, + [25] = 17, + [26] = 17, [27] = 27, [28] = 27, [29] = 27, @@ -5083,60 +5083,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [34] = 27, [35] = 35, [36] = 36, - [37] = 37, - [38] = 35, + [37] = 36, + [38] = 38, [39] = 39, - [40] = 40, - [41] = 37, - [42] = 35, - [43] = 43, - [44] = 36, - [45] = 37, + [40] = 36, + [41] = 38, + [42] = 42, + [43] = 35, + [44] = 44, + [45] = 42, [46] = 35, - [47] = 40, - [48] = 43, - [49] = 40, - [50] = 37, - [51] = 35, - [52] = 40, - [53] = 43, - [54] = 43, - [55] = 55, - [56] = 37, + [47] = 36, + [48] = 44, + [49] = 42, + [50] = 35, + [51] = 44, + [52] = 44, + [53] = 39, + [54] = 36, + [55] = 36, + [56] = 42, [57] = 35, - [58] = 40, - [59] = 43, - [60] = 37, - [61] = 35, - [62] = 40, - [63] = 37, - [64] = 43, - [65] = 40, - [66] = 36, + [58] = 44, + [59] = 59, + [60] = 42, + [61] = 42, + [62] = 35, + [63] = 44, + [64] = 36, + [65] = 35, + [66] = 39, [67] = 35, [68] = 35, [69] = 35, - [70] = 35, - [71] = 43, - [72] = 43, - [73] = 55, + [70] = 42, + [71] = 35, + [72] = 36, + [73] = 44, [74] = 74, - [75] = 74, - [76] = 74, + [75] = 75, + [76] = 76, [77] = 77, - [78] = 78, - [79] = 78, - [80] = 80, - [81] = 80, + [78] = 77, + [79] = 77, + [80] = 74, + [81] = 76, [82] = 82, [83] = 83, - [84] = 82, - [85] = 83, - [86] = 82, - [87] = 87, + [84] = 84, + [85] = 85, + [86] = 83, + [87] = 82, [88] = 88, [89] = 89, - [90] = 90, + [90] = 82, [91] = 83, [92] = 92, [93] = 93, @@ -5144,113 +5144,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [95] = 93, [96] = 96, [97] = 92, - [98] = 98, + [98] = 92, [99] = 93, - [100] = 92, + [100] = 100, [101] = 92, - [102] = 96, - [103] = 96, + [102] = 102, + [103] = 103, [104] = 104, - [105] = 98, + [105] = 105, [106] = 106, [107] = 107, - [108] = 108, - [109] = 109, - [110] = 98, - [111] = 93, - [112] = 92, - [113] = 96, - [114] = 114, - [115] = 98, - [116] = 109, - [117] = 107, + [108] = 96, + [109] = 96, + [110] = 100, + [111] = 100, + [112] = 100, + [113] = 92, + [114] = 96, + [115] = 93, + [116] = 107, + [117] = 102, [118] = 107, - [119] = 106, - [120] = 108, - [121] = 93, - [122] = 92, - [123] = 96, - [124] = 109, - [125] = 106, - [126] = 98, - [127] = 104, - [128] = 109, - [129] = 108, - [130] = 107, - [131] = 131, - [132] = 106, - [133] = 108, - [134] = 96, - [135] = 98, - [136] = 106, - [137] = 107, - [138] = 109, - [139] = 108, - [140] = 109, - [141] = 108, - [142] = 107, - [143] = 106, + [119] = 102, + [120] = 104, + [121] = 103, + [122] = 102, + [123] = 104, + [124] = 106, + [125] = 107, + [126] = 106, + [127] = 92, + [128] = 106, + [129] = 93, + [130] = 100, + [131] = 104, + [132] = 96, + [133] = 133, + [134] = 102, + [135] = 106, + [136] = 107, + [137] = 100, + [138] = 96, + [139] = 104, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, [144] = 144, [145] = 145, - [146] = 144, + [146] = 146, [147] = 147, - [148] = 148, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, + [148] = 102, + [149] = 143, + [150] = 104, + [151] = 106, + [152] = 107, + [153] = 144, [154] = 145, - [155] = 155, - [156] = 151, - [157] = 144, - [158] = 147, - [159] = 148, - [160] = 149, - [161] = 144, - [162] = 147, - [163] = 151, - [164] = 150, - [165] = 151, - [166] = 155, - [167] = 147, - [168] = 148, - [169] = 149, - [170] = 148, - [171] = 149, - [172] = 152, - [173] = 153, - [174] = 174, - [175] = 175, + [155] = 140, + [156] = 156, + [157] = 141, + [158] = 142, + [159] = 143, + [160] = 144, + [161] = 145, + [162] = 146, + [163] = 147, + [164] = 140, + [165] = 143, + [166] = 144, + [167] = 145, + [168] = 146, + [169] = 147, + [170] = 143, + [171] = 146, + [172] = 147, + [173] = 173, + [174] = 156, + [175] = 173, [176] = 176, [177] = 176, - [178] = 178, + [178] = 176, [179] = 179, [180] = 180, - [181] = 180, - [182] = 174, - [183] = 175, - [184] = 176, - [185] = 174, - [186] = 175, + [181] = 181, + [182] = 176, + [183] = 176, + [184] = 180, + [185] = 176, + [186] = 180, [187] = 176, - [188] = 174, - [189] = 175, - [190] = 174, - [191] = 175, - [192] = 175, - [193] = 174, - [194] = 104, - [195] = 195, - [196] = 196, - [197] = 197, - [198] = 198, - [199] = 199, - [200] = 200, - [201] = 201, - [202] = 202, - [203] = 203, - [204] = 204, + [188] = 180, + [189] = 176, + [190] = 180, + [191] = 176, + [192] = 192, + [193] = 193, + [194] = 193, + [195] = 192, + [196] = 193, + [197] = 192, + [198] = 192, + [199] = 193, + [200] = 193, + [201] = 192, + [202] = 192, + [203] = 193, + [204] = 103, [205] = 205, [206] = 206, [207] = 207, @@ -5261,334 +5261,334 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [212] = 212, [213] = 213, [214] = 214, - [215] = 197, - [216] = 198, - [217] = 199, - [218] = 195, - [219] = 201, - [220] = 202, - [221] = 203, - [222] = 204, - [223] = 205, - [224] = 206, + [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] = 200, + [227] = 227, [228] = 228, - [229] = 229, - [230] = 196, - [231] = 197, - [232] = 198, - [233] = 199, - [234] = 195, - [235] = 228, - [236] = 202, - [237] = 203, - [238] = 204, - [239] = 205, - [240] = 206, - [241] = 207, - [242] = 208, - [243] = 209, - [244] = 210, - [245] = 211, - [246] = 212, - [247] = 213, - [248] = 214, - [249] = 207, - [250] = 208, - [251] = 209, - [252] = 210, - [253] = 211, - [254] = 212, - [255] = 213, - [256] = 214, - [257] = 229, - [258] = 196, - [259] = 225, - [260] = 226, - [261] = 200, - [262] = 228, - [263] = 229, - [264] = 225, - [265] = 226, - [266] = 201, - [267] = 267, - [268] = 268, - [269] = 268, - [270] = 267, - [271] = 271, - [272] = 93, - [273] = 92, - [274] = 93, - [275] = 92, - [276] = 271, - [277] = 267, - [278] = 93, + [229] = 206, + [230] = 207, + [231] = 208, + [232] = 209, + [233] = 205, + [234] = 210, + [235] = 211, + [236] = 212, + [237] = 213, + [238] = 214, + [239] = 215, + [240] = 216, + [241] = 228, + [242] = 218, + [243] = 219, + [244] = 220, + [245] = 221, + [246] = 222, + [247] = 223, + [248] = 224, + [249] = 225, + [250] = 226, + [251] = 227, + [252] = 228, + [253] = 206, + [254] = 207, + [255] = 208, + [256] = 209, + [257] = 205, + [258] = 210, + [259] = 211, + [260] = 212, + [261] = 213, + [262] = 214, + [263] = 215, + [264] = 216, + [265] = 217, + [266] = 218, + [267] = 219, + [268] = 220, + [269] = 221, + [270] = 222, + [271] = 223, + [272] = 224, + [273] = 225, + [274] = 226, + [275] = 227, + [276] = 217, + [277] = 277, + [278] = 277, [279] = 92, - [280] = 271, - [281] = 267, - [282] = 271, - [283] = 271, - [284] = 267, - [285] = 268, - [286] = 93, - [287] = 96, - [288] = 98, - [289] = 98, - [290] = 96, - [291] = 96, - [292] = 92, - [293] = 98, - [294] = 109, - [295] = 108, - [296] = 107, - [297] = 107, - [298] = 109, - [299] = 108, - [300] = 109, - [301] = 108, - [302] = 93, - [303] = 92, - [304] = 96, + [280] = 280, + [281] = 281, + [282] = 280, + [283] = 281, + [284] = 281, + [285] = 277, + [286] = 280, + [287] = 93, + [288] = 277, + [289] = 92, + [290] = 281, + [291] = 93, + [292] = 281, + [293] = 92, + [294] = 277, + [295] = 93, + [296] = 93, + [297] = 92, + [298] = 96, + [299] = 96, + [300] = 96, + [301] = 100, + [302] = 100, + [303] = 100, + [304] = 92, [305] = 107, - [306] = 98, - [307] = 106, - [308] = 106, - [309] = 106, - [310] = 98, - [311] = 109, + [306] = 102, + [307] = 93, + [308] = 96, + [309] = 100, + [310] = 104, + [311] = 106, [312] = 107, - [313] = 108, - [314] = 96, + [313] = 102, + [314] = 104, [315] = 106, [316] = 107, - [317] = 109, - [318] = 108, + [317] = 102, + [318] = 104, [319] = 106, - [320] = 320, - [321] = 320, - [322] = 320, - [323] = 174, - [324] = 175, - [325] = 174, - [326] = 175, - [327] = 175, - [328] = 174, - [329] = 174, - [330] = 175, - [331] = 174, - [332] = 175, - [333] = 333, - [334] = 333, - [335] = 335, - [336] = 336, - [337] = 335, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 342, + [320] = 96, + [321] = 102, + [322] = 106, + [323] = 104, + [324] = 107, + [325] = 100, + [326] = 102, + [327] = 107, + [328] = 104, + [329] = 106, + [330] = 330, + [331] = 330, + [332] = 330, + [333] = 193, + [334] = 192, + [335] = 192, + [336] = 193, + [337] = 193, + [338] = 192, + [339] = 192, + [340] = 193, + [341] = 192, + [342] = 193, [343] = 343, - [344] = 339, - [345] = 339, - [346] = 346, + [344] = 344, + [345] = 343, + [346] = 344, [347] = 347, [348] = 348, [349] = 349, - [350] = 339, - [351] = 339, + [350] = 350, + [351] = 351, [352] = 352, - [353] = 339, - [354] = 339, - [355] = 355, - [356] = 340, - [357] = 339, - [358] = 339, - [359] = 339, - [360] = 342, - [361] = 348, - [362] = 339, - [363] = 343, - [364] = 346, - [365] = 347, - [366] = 349, - [367] = 341, - [368] = 368, - [369] = 369, - [370] = 369, - [371] = 333, - [372] = 372, - [373] = 336, - [374] = 335, - [375] = 375, - [376] = 375, - [377] = 343, + [353] = 353, + [354] = 354, + [355] = 352, + [356] = 354, + [357] = 357, + [358] = 349, + [359] = 359, + [360] = 360, + [361] = 357, + [362] = 352, + [363] = 360, + [364] = 364, + [365] = 352, + [366] = 351, + [367] = 367, + [368] = 352, + [369] = 348, + [370] = 352, + [371] = 352, + [372] = 352, + [373] = 352, + [374] = 352, + [375] = 359, + [376] = 364, + [377] = 352, [378] = 378, - [379] = 346, - [380] = 348, - [381] = 340, - [382] = 341, - [383] = 349, - [384] = 375, + [379] = 379, + [380] = 343, + [381] = 344, + [382] = 347, + [383] = 383, + [384] = 379, [385] = 385, - [386] = 375, - [387] = 387, - [388] = 378, - [389] = 375, + [386] = 350, + [387] = 357, + [388] = 360, + [389] = 389, [390] = 390, - [391] = 391, - [392] = 375, - [393] = 352, - [394] = 375, - [395] = 375, - [396] = 355, - [397] = 338, - [398] = 347, - [399] = 375, - [400] = 342, - [401] = 378, - [402] = 372, - [403] = 403, - [404] = 404, - [405] = 405, + [391] = 351, + [392] = 354, + [393] = 393, + [394] = 394, + [395] = 367, + [396] = 348, + [397] = 349, + [398] = 364, + [399] = 390, + [400] = 394, + [401] = 394, + [402] = 394, + [403] = 353, + [404] = 390, + [405] = 394, [406] = 406, - [407] = 369, - [408] = 408, - [409] = 336, - [410] = 410, - [411] = 411, - [412] = 333, - [413] = 413, - [414] = 414, - [415] = 390, + [407] = 394, + [408] = 394, + [409] = 394, + [410] = 359, + [411] = 394, + [412] = 412, + [413] = 406, + [414] = 344, + [415] = 415, [416] = 416, [417] = 417, - [418] = 342, - [419] = 352, - [420] = 335, - [421] = 343, - [422] = 93, - [423] = 346, - [424] = 340, - [425] = 336, - [426] = 391, - [427] = 92, - [428] = 347, - [429] = 341, - [430] = 355, - [431] = 349, - [432] = 372, - [433] = 348, - [434] = 338, - [435] = 416, - [436] = 385, - [437] = 410, - [438] = 438, - [439] = 406, - [440] = 440, - [441] = 93, - [442] = 92, - [443] = 355, - [444] = 438, - [445] = 445, - [446] = 446, - [447] = 445, - [448] = 369, - [449] = 445, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 379, + [424] = 424, + [425] = 347, + [426] = 383, + [427] = 367, + [428] = 360, + [429] = 343, + [430] = 359, + [431] = 92, + [432] = 93, + [433] = 349, + [434] = 389, + [435] = 350, + [436] = 354, + [437] = 364, + [438] = 348, + [439] = 347, + [440] = 351, + [441] = 441, + [442] = 357, + [443] = 383, + [444] = 418, + [445] = 353, + [446] = 393, + [447] = 412, + [448] = 448, + [449] = 424, [450] = 450, - [451] = 438, + [451] = 100, [452] = 452, - [453] = 98, - [454] = 445, - [455] = 445, - [456] = 338, - [457] = 413, - [458] = 352, - [459] = 408, - [460] = 445, - [461] = 411, - [462] = 414, - [463] = 403, - [464] = 445, + [453] = 353, + [454] = 454, + [455] = 448, + [456] = 379, + [457] = 457, + [458] = 448, + [459] = 459, + [460] = 452, + [461] = 420, + [462] = 419, + [463] = 454, + [464] = 464, [465] = 465, - [466] = 96, - [467] = 452, - [468] = 445, - [469] = 469, - [470] = 452, - [471] = 469, - [472] = 472, - [473] = 96, - [474] = 109, - [475] = 475, - [476] = 108, - [477] = 477, - [478] = 478, - [479] = 98, - [480] = 446, + [466] = 415, + [467] = 454, + [468] = 452, + [469] = 96, + [470] = 367, + [471] = 452, + [472] = 92, + [473] = 452, + [474] = 417, + [475] = 452, + [476] = 93, + [477] = 452, + [478] = 452, + [479] = 421, + [480] = 350, [481] = 481, [482] = 482, - [483] = 107, - [484] = 438, - [485] = 485, - [486] = 109, - [487] = 405, - [488] = 488, - [489] = 107, - [490] = 346, - [491] = 491, - [492] = 341, + [483] = 483, + [484] = 464, + [485] = 106, + [486] = 100, + [487] = 487, + [488] = 107, + [489] = 489, + [490] = 457, + [491] = 104, + [492] = 96, [493] = 493, - [494] = 440, - [495] = 495, + [494] = 448, + [495] = 457, [496] = 496, [497] = 497, [498] = 498, [499] = 499, - [500] = 450, - [501] = 372, - [502] = 342, + [500] = 104, + [501] = 106, + [502] = 107, [503] = 503, - [504] = 335, - [505] = 505, - [506] = 348, + [504] = 351, + [505] = 357, + [506] = 506, [507] = 507, [508] = 508, - [509] = 333, - [510] = 108, - [511] = 404, - [512] = 343, - [513] = 340, - [514] = 514, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 459, + [513] = 416, + [514] = 344, [515] = 515, [516] = 516, [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 481, - [525] = 349, - [526] = 347, + [518] = 383, + [519] = 360, + [520] = 422, + [521] = 450, + [522] = 354, + [523] = 348, + [524] = 349, + [525] = 343, + [526] = 448, [527] = 527, - [528] = 336, + [528] = 528, [529] = 529, [530] = 530, [531] = 531, - [532] = 515, + [532] = 532, [533] = 533, [534] = 534, [535] = 535, [536] = 536, [537] = 537, [538] = 538, - [539] = 539, - [540] = 540, - [541] = 541, - [542] = 542, + [539] = 535, + [540] = 536, + [541] = 537, + [542] = 538, [543] = 543, [544] = 544, [545] = 545, @@ -5598,12 +5598,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [549] = 549, [550] = 550, [551] = 551, - [552] = 552, - [553] = 553, + [552] = 543, + [553] = 544, [554] = 554, [555] = 555, [556] = 556, - [557] = 477, + [557] = 557, [558] = 558, [559] = 559, [560] = 560, @@ -5612,191 +5612,191 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [563] = 563, [564] = 564, [565] = 565, - [566] = 566, + [566] = 533, [567] = 567, [568] = 568, [569] = 569, [570] = 570, - [571] = 516, - [572] = 517, - [573] = 518, - [574] = 519, - [575] = 520, - [576] = 521, - [577] = 522, - [578] = 523, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, [579] = 579, - [580] = 529, - [581] = 530, - [582] = 531, - [583] = 515, - [584] = 533, - [585] = 534, - [586] = 535, - [587] = 536, - [588] = 537, - [589] = 570, - [590] = 539, - [591] = 540, - [592] = 541, - [593] = 542, - [594] = 543, - [595] = 544, - [596] = 545, - [597] = 546, - [598] = 547, - [599] = 548, - [600] = 549, - [601] = 550, - [602] = 551, - [603] = 552, - [604] = 553, - [605] = 554, - [606] = 606, - [607] = 607, - [608] = 559, - [609] = 560, - [610] = 561, - [611] = 562, - [612] = 563, - [613] = 564, - [614] = 565, - [615] = 579, - [616] = 606, - [617] = 607, - [618] = 618, - [619] = 619, - [620] = 620, - [621] = 618, - [622] = 619, - [623] = 620, - [624] = 624, - [625] = 566, - [626] = 567, - [627] = 568, - [628] = 569, - [629] = 570, - [630] = 516, - [631] = 517, - [632] = 518, - [633] = 519, - [634] = 520, - [635] = 521, - [636] = 522, - [637] = 523, - [638] = 529, - [639] = 530, - [640] = 531, - [641] = 533, - [642] = 534, - [643] = 535, - [644] = 536, - [645] = 537, - [646] = 538, - [647] = 539, - [648] = 540, - [649] = 541, - [650] = 542, - [651] = 543, - [652] = 544, - [653] = 545, - [654] = 546, - [655] = 547, - [656] = 548, - [657] = 549, - [658] = 550, - [659] = 551, - [660] = 552, - [661] = 553, - [662] = 554, - [663] = 559, - [664] = 560, - [665] = 561, - [666] = 562, - [667] = 563, - [668] = 564, - [669] = 565, - [670] = 579, - [671] = 606, - [672] = 607, - [673] = 618, - [674] = 619, - [675] = 620, - [676] = 676, - [677] = 566, - [678] = 567, - [679] = 568, - [680] = 569, - [681] = 538, - [682] = 338, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 688, - [689] = 689, + [580] = 527, + [581] = 581, + [582] = 545, + [583] = 583, + [584] = 529, + [585] = 531, + [586] = 554, + [587] = 555, + [588] = 588, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 594, + [595] = 595, + [596] = 588, + [597] = 489, + [598] = 546, + [599] = 547, + [600] = 548, + [601] = 589, + [602] = 590, + [603] = 562, + [604] = 591, + [605] = 549, + [606] = 550, + [607] = 551, + [608] = 592, + [609] = 593, + [610] = 535, + [611] = 536, + [612] = 537, + [613] = 538, + [614] = 543, + [615] = 544, + [616] = 545, + [617] = 546, + [618] = 547, + [619] = 548, + [620] = 549, + [621] = 550, + [622] = 551, + [623] = 594, + [624] = 556, + [625] = 557, + [626] = 559, + [627] = 560, + [628] = 561, + [629] = 562, + [630] = 563, + [631] = 564, + [632] = 565, + [633] = 533, + [634] = 567, + [635] = 568, + [636] = 569, + [637] = 570, + [638] = 571, + [639] = 572, + [640] = 573, + [641] = 574, + [642] = 575, + [643] = 576, + [644] = 577, + [645] = 578, + [646] = 579, + [647] = 527, + [648] = 581, + [649] = 595, + [650] = 583, + [651] = 529, + [652] = 531, + [653] = 554, + [654] = 555, + [655] = 588, + [656] = 589, + [657] = 590, + [658] = 591, + [659] = 592, + [660] = 593, + [661] = 594, + [662] = 595, + [663] = 567, + [664] = 568, + [665] = 569, + [666] = 570, + [667] = 667, + [668] = 364, + [669] = 359, + [670] = 571, + [671] = 572, + [672] = 573, + [673] = 574, + [674] = 575, + [675] = 347, + [676] = 583, + [677] = 576, + [678] = 577, + [679] = 578, + [680] = 579, + [681] = 565, + [682] = 581, + [683] = 556, + [684] = 481, + [685] = 563, + [686] = 557, + [687] = 558, + [688] = 564, + [689] = 559, [690] = 690, - [691] = 691, - [692] = 355, - [693] = 693, + [691] = 560, + [692] = 561, + [693] = 558, [694] = 694, - [695] = 695, - [696] = 488, + [695] = 528, + [696] = 696, [697] = 697, [698] = 698, - [699] = 440, - [700] = 450, + [699] = 450, + [700] = 459, [701] = 701, [702] = 702, - [703] = 703, + [703] = 367, [704] = 704, [705] = 705, [706] = 706, [707] = 707, [708] = 708, - [709] = 709, + [709] = 379, [710] = 710, - [711] = 555, - [712] = 712, + [711] = 517, + [712] = 515, [713] = 713, - [714] = 556, - [715] = 352, + [714] = 714, + [715] = 353, [716] = 716, [717] = 717, [718] = 718, [719] = 719, - [720] = 498, + [720] = 720, [721] = 721, [722] = 722, [723] = 723, [724] = 724, [725] = 725, - [726] = 493, + [726] = 350, [727] = 727, [728] = 728, - [729] = 729, + [729] = 516, [730] = 730, - [731] = 369, + [731] = 731, [732] = 732, [733] = 733, - [734] = 734, - [735] = 440, - [736] = 491, + [734] = 690, + [735] = 735, + [736] = 736, [737] = 737, [738] = 738, [739] = 739, [740] = 740, [741] = 741, [742] = 742, - [743] = 450, + [743] = 743, [744] = 744, [745] = 745, - [746] = 481, - [747] = 477, + [746] = 746, + [747] = 747, [748] = 748, [749] = 749, - [750] = 750, + [750] = 506, [751] = 751, [752] = 752, [753] = 753, @@ -5804,17 +5804,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [755] = 755, [756] = 756, [757] = 757, - [758] = 758, + [758] = 489, [759] = 759, [760] = 760, [761] = 761, [762] = 762, - [763] = 763, + [763] = 481, [764] = 764, - [765] = 751, - [766] = 758, - [767] = 761, - [768] = 764, + [765] = 765, + [766] = 766, + [767] = 767, + [768] = 768, [769] = 769, [770] = 770, [771] = 771, @@ -5824,15 +5824,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [775] = 775, [776] = 776, [777] = 777, - [778] = 769, - [779] = 770, + [778] = 507, + [779] = 779, [780] = 780, - [781] = 771, - [782] = 772, + [781] = 781, + [782] = 782, [783] = 783, [784] = 784, - [785] = 773, - [786] = 774, + [785] = 785, + [786] = 786, [787] = 787, [788] = 788, [789] = 789, @@ -5843,7 +5843,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [794] = 794, [795] = 795, [796] = 796, - [797] = 775, + [797] = 797, [798] = 798, [799] = 799, [800] = 800, @@ -5859,208 +5859,208 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [810] = 810, [811] = 811, [812] = 812, - [813] = 751, - [814] = 758, - [815] = 761, - [816] = 764, - [817] = 769, - [818] = 770, - [819] = 771, - [820] = 772, - [821] = 773, - [822] = 774, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 746, + [817] = 817, + [818] = 818, + [819] = 796, + [820] = 820, + [821] = 821, + [822] = 797, [823] = 823, [824] = 824, [825] = 825, - [826] = 776, + [826] = 826, [827] = 827, - [828] = 777, + [828] = 798, [829] = 829, - [830] = 771, - [831] = 772, - [832] = 496, - [833] = 497, - [834] = 773, - [835] = 751, - [836] = 758, - [837] = 761, - [838] = 764, - [839] = 769, - [840] = 770, - [841] = 771, - [842] = 772, - [843] = 773, - [844] = 774, - [845] = 775, - [846] = 776, - [847] = 777, - [848] = 848, + [830] = 830, + [831] = 796, + [832] = 797, + [833] = 798, + [834] = 799, + [835] = 800, + [836] = 806, + [837] = 812, + [838] = 746, + [839] = 747, + [840] = 749, + [841] = 812, + [842] = 753, + [843] = 754, + [844] = 844, + [845] = 799, + [846] = 800, + [847] = 459, + [848] = 806, [849] = 849, - [850] = 774, - [851] = 775, - [852] = 776, - [853] = 777, - [854] = 507, - [855] = 776, - [856] = 777, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 751, - [861] = 861, - [862] = 758, - [863] = 863, - [864] = 761, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 764, - [869] = 869, - [870] = 769, - [871] = 871, - [872] = 770, - [873] = 450, - [874] = 874, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 878, - [879] = 485, - [880] = 880, - [881] = 881, - [882] = 882, - [883] = 505, - [884] = 884, - [885] = 495, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 889, + [850] = 850, + [851] = 812, + [852] = 746, + [853] = 747, + [854] = 749, + [855] = 508, + [856] = 751, + [857] = 753, + [858] = 747, + [859] = 749, + [860] = 754, + [861] = 796, + [862] = 796, + [863] = 797, + [864] = 798, + [865] = 799, + [866] = 797, + [867] = 798, + [868] = 799, + [869] = 800, + [870] = 806, + [871] = 499, + [872] = 800, + [873] = 503, + [874] = 806, + [875] = 812, + [876] = 746, + [877] = 747, + [878] = 749, + [879] = 751, + [880] = 812, + [881] = 746, + [882] = 747, + [883] = 749, + [884] = 751, + [885] = 753, + [886] = 754, + [887] = 753, + [888] = 754, + [889] = 510, [890] = 890, - [891] = 891, - [892] = 751, - [893] = 758, - [894] = 761, - [895] = 764, - [896] = 769, - [897] = 770, - [898] = 771, - [899] = 772, - [900] = 773, - [901] = 774, - [902] = 775, - [903] = 776, - [904] = 777, + [891] = 751, + [892] = 892, + [893] = 753, + [894] = 894, + [895] = 754, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, [905] = 905, [906] = 906, - [907] = 907, - [908] = 908, + [907] = 796, + [908] = 797, [909] = 909, - [910] = 910, - [911] = 775, - [912] = 705, + [910] = 798, + [911] = 911, + [912] = 799, [913] = 913, - [914] = 914, - [915] = 503, - [916] = 477, + [914] = 800, + [915] = 915, + [916] = 498, [917] = 917, - [918] = 918, - [919] = 703, - [920] = 704, - [921] = 921, - [922] = 493, - [923] = 923, + [918] = 459, + [919] = 450, + [920] = 920, + [921] = 806, + [922] = 922, + [923] = 751, [924] = 924, - [925] = 925, - [926] = 926, + [925] = 530, + [926] = 383, [927] = 927, - [928] = 488, - [929] = 498, + [928] = 489, + [929] = 929, [930] = 930, [931] = 931, - [932] = 932, + [932] = 481, [933] = 933, [934] = 934, - [935] = 706, - [936] = 718, - [937] = 472, - [938] = 938, - [939] = 527, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 515, + [939] = 516, + [940] = 517, + [941] = 724, + [942] = 725, + [943] = 727, + [944] = 728, [945] = 945, - [946] = 930, + [946] = 946, [947] = 947, - [948] = 948, - [949] = 701, + [948] = 487, + [949] = 949, [950] = 950, [951] = 951, - [952] = 702, - [953] = 508, + [952] = 952, + [953] = 953, [954] = 954, [955] = 955, [956] = 956, [957] = 957, [958] = 958, - [959] = 959, - [960] = 481, + [959] = 493, + [960] = 960, [961] = 961, - [962] = 717, + [962] = 962, [963] = 963, - [964] = 724, + [964] = 964, [965] = 965, [966] = 966, [967] = 967, - [968] = 372, - [969] = 478, + [968] = 968, + [969] = 969, [970] = 970, - [971] = 971, + [971] = 511, [972] = 972, - [973] = 973, + [973] = 743, [974] = 974, - [975] = 930, + [975] = 509, [976] = 976, - [977] = 977, + [977] = 960, [978] = 978, - [979] = 450, - [980] = 683, - [981] = 697, - [982] = 738, + [979] = 979, + [980] = 980, + [981] = 730, + [982] = 696, [983] = 983, - [984] = 933, - [985] = 974, - [986] = 986, - [987] = 987, - [988] = 689, + [984] = 984, + [985] = 698, + [986] = 960, + [987] = 720, + [988] = 988, [989] = 989, [990] = 990, [991] = 991, - [992] = 493, - [993] = 978, - [994] = 957, + [992] = 992, + [993] = 993, + [994] = 994, [995] = 995, - [996] = 996, - [997] = 938, - [998] = 488, - [999] = 941, - [1000] = 498, + [996] = 733, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, [1001] = 1001, [1002] = 1002, - [1003] = 690, + [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, - [1007] = 691, + [1007] = 1007, [1008] = 1008, - [1009] = 1009, - [1010] = 963, + [1009] = 723, + [1010] = 1010, [1011] = 1011, - [1012] = 693, - [1013] = 965, - [1014] = 694, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, [1015] = 1015, [1016] = 1016, [1017] = 1017, @@ -6068,27 +6068,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1019] = 1019, [1020] = 1020, [1021] = 1021, - [1022] = 917, + [1022] = 1022, [1023] = 1023, [1024] = 1024, [1025] = 1025, [1026] = 1026, - [1027] = 1027, + [1027] = 1021, [1028] = 1028, [1029] = 1029, [1030] = 1030, - [1031] = 931, + [1031] = 1031, [1032] = 1032, [1033] = 1033, - [1034] = 732, + [1034] = 1034, [1035] = 1035, - [1036] = 707, - [1037] = 684, + [1036] = 1036, + [1037] = 1037, [1038] = 1038, [1039] = 1039, [1040] = 1040, [1041] = 1041, - [1042] = 1042, + [1042] = 738, [1043] = 1043, [1044] = 1044, [1045] = 1045, @@ -6096,15 +6096,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1047] = 1047, [1048] = 1048, [1049] = 1049, - [1050] = 1050, + [1050] = 459, [1051] = 1051, [1052] = 1052, - [1053] = 685, + [1053] = 1053, [1054] = 1054, - [1055] = 1055, - [1056] = 1056, + [1055] = 741, + [1056] = 1039, [1057] = 1057, - [1058] = 686, + [1058] = 1058, [1059] = 1059, [1060] = 1060, [1061] = 1061, @@ -6112,31 +6112,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1063] = 1063, [1064] = 1064, [1065] = 1065, - [1066] = 1028, + [1066] = 739, [1067] = 1067, [1068] = 1068, - [1069] = 990, + [1069] = 1069, [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 1073, + [1073] = 515, [1074] = 1074, - [1075] = 687, - [1076] = 1076, - [1077] = 1077, - [1078] = 688, + [1075] = 1075, + [1076] = 704, + [1077] = 934, + [1078] = 516, [1079] = 1079, - [1080] = 1080, - [1081] = 991, + [1080] = 517, + [1081] = 717, [1082] = 1082, - [1083] = 1083, - [1084] = 1084, + [1083] = 718, + [1084] = 731, [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, + [1086] = 694, + [1087] = 719, + [1088] = 722, [1089] = 1089, - [1090] = 1090, + [1090] = 1044, [1091] = 1091, [1092] = 1092, [1093] = 1093, @@ -6145,18 +6145,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1096] = 1096, [1097] = 1097, [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, - [1103] = 1103, + [1099] = 1070, + [1100] = 1071, + [1101] = 1072, + [1102] = 705, + [1103] = 708, [1104] = 1104, - [1105] = 1105, - [1106] = 1106, + [1105] = 713, + [1106] = 714, [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 1110, + [1110] = 732, [1111] = 1111, [1112] = 1112, [1113] = 1113, @@ -6165,55 +6165,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1059, - [1120] = 708, - [1121] = 989, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, [1122] = 1122, [1123] = 1123, [1124] = 1124, - [1125] = 1125, - [1126] = 1126, - [1127] = 1127, + [1125] = 920, + [1126] = 935, + [1127] = 927, [1128] = 1128, [1129] = 1129, [1130] = 1130, - [1131] = 989, + [1131] = 1131, [1132] = 1132, [1133] = 1133, [1134] = 1134, - [1135] = 1135, - [1136] = 709, - [1137] = 1059, - [1138] = 695, + [1135] = 929, + [1136] = 936, + [1137] = 937, + [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1141, - [1142] = 1142, + [1141] = 1021, + [1142] = 930, [1143] = 1143, - [1144] = 1144, + [1144] = 931, [1145] = 1145, [1146] = 1146, - [1147] = 1147, + [1147] = 933, [1148] = 1148, - [1149] = 713, - [1150] = 983, + [1149] = 1149, + [1150] = 1044, [1151] = 1151, [1152] = 1152, [1153] = 1153, - [1154] = 791, - [1155] = 729, + [1154] = 1154, + [1155] = 737, [1156] = 1156, [1157] = 1157, [1158] = 1158, - [1159] = 1140, + [1159] = 1159, [1160] = 1160, [1161] = 1161, [1162] = 1162, [1163] = 1163, [1164] = 1164, [1165] = 1165, - [1166] = 1166, - [1167] = 792, + [1166] = 1164, + [1167] = 1167, [1168] = 1168, [1169] = 1169, [1170] = 1170, @@ -6228,7 +6228,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1179] = 1179, [1180] = 1180, [1181] = 1181, - [1182] = 793, + [1182] = 1165, [1183] = 1183, [1184] = 1184, [1185] = 1185, @@ -6246,59 +6246,59 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 996, - [1204] = 1204, - [1205] = 1205, + [1200] = 1153, + [1201] = 1037, + [1202] = 1038, + [1203] = 1203, + [1204] = 1037, + [1205] = 1038, [1206] = 1206, - [1207] = 1207, + [1207] = 1039, [1208] = 1208, - [1209] = 1209, + [1209] = 742, [1210] = 1210, - [1211] = 881, + [1211] = 1211, [1212] = 1212, - [1213] = 1028, - [1214] = 1214, - [1215] = 1215, + [1213] = 1213, + [1214] = 795, + [1215] = 903, [1216] = 1216, [1217] = 1217, [1218] = 1218, - [1219] = 1219, - [1220] = 800, - [1221] = 1221, + [1219] = 775, + [1220] = 1220, + [1221] = 776, [1222] = 1222, - [1223] = 1223, + [1223] = 777, [1224] = 1224, [1225] = 1225, [1226] = 1226, - [1227] = 1001, - [1228] = 1228, + [1227] = 1227, + [1228] = 1154, [1229] = 1229, [1230] = 1230, [1231] = 1231, - [1232] = 1232, + [1232] = 1154, [1233] = 1233, [1234] = 1234, [1235] = 1235, [1236] = 1236, - [1237] = 1237, + [1237] = 1045, [1238] = 1238, - [1239] = 716, - [1240] = 1230, - [1241] = 1233, - [1242] = 1242, + [1239] = 1239, + [1240] = 1240, + [1241] = 1241, + [1242] = 697, [1243] = 1243, - [1244] = 1164, + [1244] = 1244, [1245] = 1245, [1246] = 1246, [1247] = 1247, - [1248] = 996, + [1248] = 1248, [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1001, + [1252] = 1252, [1253] = 1253, [1254] = 1254, [1255] = 1255, @@ -6316,1050 +6316,1050 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1267] = 1267, [1268] = 1268, [1269] = 1269, - [1270] = 1164, - [1271] = 1164, - [1272] = 1164, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, [1273] = 1273, [1274] = 1274, - [1275] = 878, + [1275] = 784, [1276] = 1276, - [1277] = 808, + [1277] = 1277, [1278] = 1278, - [1279] = 967, + [1279] = 1279, [1280] = 1280, [1281] = 1281, - [1282] = 801, - [1283] = 802, - [1284] = 803, - [1285] = 804, - [1286] = 805, - [1287] = 806, - [1288] = 807, - [1289] = 944, - [1290] = 1278, - [1291] = 914, - [1292] = 932, - [1293] = 972, - [1294] = 824, + [1282] = 1282, + [1283] = 1283, + [1284] = 1284, + [1285] = 1285, + [1286] = 1154, + [1287] = 1154, + [1288] = 1288, + [1289] = 956, + [1290] = 946, + [1291] = 947, + [1292] = 976, + [1293] = 1293, + [1294] = 774, [1295] = 951, - [1296] = 959, - [1297] = 811, - [1298] = 927, - [1299] = 812, - [1300] = 913, - [1301] = 1301, - [1302] = 865, - [1303] = 918, - [1304] = 710, - [1305] = 794, - [1306] = 795, - [1307] = 796, - [1308] = 1308, - [1309] = 926, - [1310] = 798, - [1311] = 809, - [1312] = 1312, - [1313] = 799, - [1314] = 712, - [1315] = 884, - [1316] = 970, - [1317] = 934, - [1318] = 848, - [1319] = 849, - [1320] = 940, - [1321] = 1169, - [1322] = 971, - [1323] = 1185, - [1324] = 973, - [1325] = 1189, - [1326] = 947, - [1327] = 1193, - [1328] = 956, - [1329] = 1195, - [1330] = 924, - [1331] = 1196, - [1332] = 943, - [1333] = 1202, - [1334] = 921, - [1335] = 1212, - [1336] = 950, - [1337] = 955, - [1338] = 961, - [1339] = 1222, - [1340] = 948, - [1341] = 1232, - [1342] = 942, - [1343] = 1236, - [1344] = 945, - [1345] = 1238, - [1346] = 976, - [1347] = 780, - [1348] = 783, - [1349] = 784, - [1350] = 958, - [1351] = 788, - [1352] = 966, - [1353] = 790, - [1354] = 1354, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, - [1358] = 485, - [1359] = 1359, - [1360] = 1360, - [1361] = 1354, - [1362] = 1359, - [1363] = 1363, - [1364] = 1364, - [1365] = 1365, + [1296] = 1296, + [1297] = 768, + [1298] = 1260, + [1299] = 966, + [1300] = 978, + [1301] = 974, + [1302] = 782, + [1303] = 788, + [1304] = 744, + [1305] = 790, + [1306] = 979, + [1307] = 900, + [1308] = 970, + [1309] = 1261, + [1310] = 1256, + [1311] = 803, + [1312] = 1262, + [1313] = 760, + [1314] = 1314, + [1315] = 786, + [1316] = 783, + [1317] = 958, + [1318] = 762, + [1319] = 917, + [1320] = 961, + [1321] = 804, + [1322] = 1254, + [1323] = 1258, + [1324] = 805, + [1325] = 957, + [1326] = 968, + [1327] = 809, + [1328] = 801, + [1329] = 1263, + [1330] = 814, + [1331] = 745, + [1332] = 764, + [1333] = 963, + [1334] = 901, + [1335] = 1335, + [1336] = 810, + [1337] = 969, + [1338] = 980, + [1339] = 1264, + [1340] = 967, + [1341] = 1341, + [1342] = 949, + [1343] = 740, + [1344] = 972, + [1345] = 772, + [1346] = 964, + [1347] = 988, + [1348] = 962, + [1349] = 802, + [1350] = 765, + [1351] = 1255, + [1352] = 965, + [1353] = 1353, + [1354] = 924, + [1355] = 953, + [1356] = 950, + [1357] = 955, + [1358] = 1259, + [1359] = 1257, + [1360] = 1296, + [1361] = 945, + [1362] = 1253, + [1363] = 785, + [1364] = 954, + [1365] = 815, [1366] = 1366, - [1367] = 527, + [1367] = 1367, [1368] = 1368, [1369] = 1369, - [1370] = 1364, + [1370] = 1370, [1371] = 1371, - [1372] = 1372, - [1373] = 1356, - [1374] = 1355, - [1375] = 1366, + [1372] = 503, + [1373] = 1366, + [1374] = 1374, + [1375] = 1375, [1376] = 1376, [1377] = 1377, - [1378] = 1376, - [1379] = 1363, - [1380] = 1380, - [1381] = 1381, - [1382] = 1382, - [1383] = 1376, - [1384] = 1384, + [1378] = 1378, + [1379] = 1379, + [1380] = 1367, + [1381] = 1375, + [1382] = 1370, + [1383] = 1377, + [1384] = 530, [1385] = 1385, [1386] = 1386, - [1387] = 1387, + [1387] = 1368, [1388] = 1388, - [1389] = 1389, - [1390] = 1376, - [1391] = 1376, + [1389] = 1385, + [1390] = 1390, + [1391] = 1388, [1392] = 1392, - [1393] = 390, - [1394] = 1394, + [1393] = 1388, + [1394] = 1388, [1395] = 1395, [1396] = 1396, [1397] = 1397, - [1398] = 416, + [1398] = 1398, [1399] = 1399, [1400] = 1400, - [1401] = 390, - [1402] = 410, - [1403] = 93, + [1401] = 1388, + [1402] = 1402, + [1403] = 1403, [1404] = 1404, [1405] = 1405, - [1406] = 1406, + [1406] = 406, [1407] = 1407, [1408] = 1408, - [1409] = 410, - [1410] = 416, - [1411] = 92, - [1412] = 485, - [1413] = 1413, - [1414] = 469, - [1415] = 96, - [1416] = 93, - [1417] = 92, - [1418] = 98, - [1419] = 527, - [1420] = 1420, - [1421] = 108, - [1422] = 450, - [1423] = 1423, + [1409] = 1409, + [1410] = 406, + [1411] = 412, + [1412] = 1412, + [1413] = 418, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, + [1418] = 503, + [1419] = 93, + [1420] = 412, + [1421] = 1421, + [1422] = 1422, + [1423] = 418, [1424] = 1424, - [1425] = 440, - [1426] = 1426, - [1427] = 1427, - [1428] = 98, + [1425] = 92, + [1426] = 93, + [1427] = 464, + [1428] = 92, [1429] = 96, - [1430] = 107, + [1430] = 100, [1431] = 1431, - [1432] = 109, - [1433] = 469, - [1434] = 108, - [1435] = 477, - [1436] = 109, - [1437] = 481, - [1438] = 107, - [1439] = 450, - [1440] = 440, - [1441] = 481, + [1432] = 530, + [1433] = 1433, + [1434] = 459, + [1435] = 100, + [1436] = 96, + [1437] = 450, + [1438] = 104, + [1439] = 1439, + [1440] = 106, + [1441] = 107, [1442] = 1442, [1443] = 1443, - [1444] = 488, - [1445] = 498, - [1446] = 555, - [1447] = 493, - [1448] = 556, - [1449] = 477, - [1450] = 1450, - [1451] = 488, - [1452] = 1443, - [1453] = 555, - [1454] = 556, - [1455] = 1455, - [1456] = 1442, - [1457] = 498, - [1458] = 450, - [1459] = 1455, + [1444] = 1444, + [1445] = 464, + [1446] = 489, + [1447] = 106, + [1448] = 459, + [1449] = 104, + [1450] = 107, + [1451] = 481, + [1452] = 450, + [1453] = 1453, + [1454] = 517, + [1455] = 515, + [1456] = 528, + [1457] = 516, + [1458] = 690, + [1459] = 489, [1460] = 1460, - [1461] = 440, - [1462] = 493, + [1461] = 481, + [1462] = 1453, [1463] = 1463, [1464] = 1464, [1465] = 1465, - [1466] = 1466, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 1473, - [1474] = 440, - [1475] = 481, - [1476] = 477, - [1477] = 1460, + [1466] = 528, + [1467] = 459, + [1468] = 516, + [1469] = 1465, + [1470] = 515, + [1471] = 450, + [1472] = 690, + [1473] = 1460, + [1474] = 517, + [1475] = 1475, + [1476] = 1476, + [1477] = 1464, [1478] = 1478, - [1479] = 450, - [1480] = 1480, + [1479] = 1479, + [1480] = 450, [1481] = 1481, - [1482] = 963, - [1483] = 965, - [1484] = 917, - [1485] = 931, - [1486] = 481, - [1487] = 738, - [1488] = 477, - [1489] = 933, - [1490] = 493, - [1491] = 938, - [1492] = 488, - [1493] = 498, - [1494] = 941, - [1495] = 974, - [1496] = 1496, - [1497] = 957, + [1482] = 459, + [1483] = 1483, + [1484] = 1484, + [1485] = 481, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 489, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 937, + [1494] = 935, + [1495] = 936, + [1496] = 930, + [1497] = 489, [1498] = 1498, - [1499] = 1499, + [1499] = 931, [1500] = 1500, - [1501] = 1501, - [1502] = 1028, - [1503] = 938, - [1504] = 738, - [1505] = 1500, - [1506] = 1501, - [1507] = 1507, + [1501] = 481, + [1502] = 934, + [1503] = 920, + [1504] = 1504, + [1505] = 516, + [1506] = 933, + [1507] = 927, [1508] = 1508, - [1509] = 1500, - [1510] = 1500, - [1511] = 493, - [1512] = 488, - [1513] = 498, - [1514] = 974, - [1515] = 983, - [1516] = 957, - [1517] = 996, - [1518] = 1001, - [1519] = 963, - [1520] = 1500, - [1521] = 1500, - [1522] = 1500, - [1523] = 965, - [1524] = 917, - [1525] = 931, - [1526] = 1500, - [1527] = 941, - [1528] = 1528, - [1529] = 933, - [1530] = 1209, - [1531] = 1197, - [1532] = 1217, - [1533] = 1533, - [1534] = 1534, - [1535] = 390, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1540, - [1541] = 1273, - [1542] = 1147, - [1543] = 1151, - [1544] = 1172, - [1545] = 1188, - [1546] = 1223, - [1547] = 1237, - [1548] = 1258, - [1549] = 1269, - [1550] = 1141, - [1551] = 1146, - [1552] = 1207, - [1553] = 1210, - [1554] = 1214, - [1555] = 1218, - [1556] = 1225, - [1557] = 1250, - [1558] = 1256, - [1559] = 1260, - [1560] = 1263, - [1561] = 1267, - [1562] = 1274, - [1563] = 1215, - [1564] = 1142, - [1565] = 1536, - [1566] = 1148, - [1567] = 1567, - [1568] = 1152, - [1569] = 1156, - [1570] = 1174, - [1571] = 1186, - [1572] = 1190, + [1509] = 517, + [1510] = 929, + [1511] = 515, + [1512] = 1039, + [1513] = 920, + [1514] = 931, + [1515] = 935, + [1516] = 1516, + [1517] = 1517, + [1518] = 1516, + [1519] = 1516, + [1520] = 1516, + [1521] = 1521, + [1522] = 1037, + [1523] = 1038, + [1524] = 933, + [1525] = 927, + [1526] = 1516, + [1527] = 1516, + [1528] = 515, + [1529] = 929, + [1530] = 1530, + [1531] = 1517, + [1532] = 516, + [1533] = 1516, + [1534] = 936, + [1535] = 1516, + [1536] = 1045, + [1537] = 517, + [1538] = 937, + [1539] = 930, + [1540] = 934, + [1541] = 1541, + [1542] = 1284, + [1543] = 1543, + [1544] = 1045, + [1545] = 1545, + [1546] = 1546, + [1547] = 1547, + [1548] = 1530, + [1549] = 1037, + [1550] = 1038, + [1551] = 1551, + [1552] = 1552, + [1553] = 1039, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1558, + [1560] = 1560, + [1561] = 1561, + [1562] = 406, + [1563] = 1551, + [1564] = 1552, + [1565] = 1554, + [1566] = 1555, + [1567] = 1556, + [1568] = 1557, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, [1573] = 1573, - [1574] = 1242, - [1575] = 1198, - [1576] = 1576, - [1577] = 1158, - [1578] = 1177, - [1579] = 1192, - [1580] = 1208, - [1581] = 1262, - [1582] = 1157, - [1583] = 1160, - [1584] = 1165, - [1585] = 1170, - [1586] = 1175, - [1587] = 1180, - [1588] = 1184, - [1589] = 1194, - [1590] = 1200, - [1591] = 1228, - [1592] = 1143, - [1593] = 1145, - [1594] = 1161, - [1595] = 1163, - [1596] = 1166, - [1597] = 1168, - [1598] = 1171, - [1599] = 1173, - [1600] = 1176, - [1601] = 1178, - [1602] = 1181, - [1603] = 1183, - [1604] = 1199, - [1605] = 1201, - [1606] = 1204, - [1607] = 1206, - [1608] = 1608, - [1609] = 1276, - [1610] = 1219, - [1611] = 1221, - [1612] = 1224, - [1613] = 1226, - [1614] = 1229, - [1615] = 1231, - [1616] = 1234, - [1617] = 1537, - [1618] = 1618, - [1619] = 1245, - [1620] = 1247, - [1621] = 1249, - [1622] = 1251, - [1623] = 1253, - [1624] = 1255, - [1625] = 1257, - [1626] = 1259, - [1627] = 1264, - [1628] = 1266, - [1629] = 1268, - [1630] = 1205, - [1631] = 1533, - [1632] = 996, - [1633] = 1001, - [1634] = 1634, - [1635] = 983, - [1636] = 1534, - [1637] = 1637, - [1638] = 1638, - [1639] = 1538, - [1640] = 1540, - [1641] = 1641, - [1642] = 1641, - [1643] = 1618, - [1644] = 1576, - [1645] = 1645, - [1646] = 1646, - [1647] = 1647, - [1648] = 1169, - [1649] = 1185, - [1650] = 1189, - [1651] = 1193, - [1652] = 1195, - [1653] = 1196, - [1654] = 1202, - [1655] = 1212, - [1656] = 1222, - [1657] = 1232, - [1658] = 1236, - [1659] = 1238, - [1660] = 1660, - [1661] = 1661, - [1662] = 1662, - [1663] = 1663, - [1664] = 1144, - [1665] = 1539, - [1666] = 1028, - [1667] = 1187, - [1668] = 1162, - [1669] = 1265, - [1670] = 1645, - [1671] = 1573, - [1672] = 1243, - [1673] = 1153, - [1674] = 1637, - [1675] = 1235, - [1676] = 1638, - [1677] = 1677, - [1678] = 1216, - [1679] = 1507, - [1680] = 1646, - [1681] = 1647, - [1682] = 1662, - [1683] = 1179, - [1684] = 1684, - [1685] = 1661, - [1686] = 1191, - [1687] = 1663, - [1688] = 1684, - [1689] = 1634, - [1690] = 1608, - [1691] = 1567, - [1692] = 1660, - [1693] = 1677, - [1694] = 1694, - [1695] = 1695, - [1696] = 1696, - [1697] = 410, - [1698] = 390, - [1699] = 416, - [1700] = 1700, - [1701] = 1701, - [1702] = 1694, - [1703] = 1703, - [1704] = 1169, - [1705] = 1185, - [1706] = 1189, - [1707] = 1193, - [1708] = 1195, - [1709] = 1196, - [1710] = 1202, - [1711] = 1212, - [1712] = 1222, - [1713] = 1232, - [1714] = 1714, - [1715] = 1236, - [1716] = 1238, - [1717] = 1703, - [1718] = 1701, - [1719] = 1714, - [1720] = 1700, - [1721] = 416, - [1722] = 335, - [1723] = 93, - [1724] = 1724, - [1725] = 1725, - [1726] = 385, + [1574] = 1574, + [1575] = 1569, + [1576] = 1570, + [1577] = 1571, + [1578] = 1578, + [1579] = 1579, + [1580] = 1543, + [1581] = 1545, + [1582] = 1572, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, + [1587] = 1546, + [1588] = 1547, + [1589] = 1573, + [1590] = 1574, + [1591] = 1184, + [1592] = 1192, + [1593] = 1194, + [1594] = 1196, + [1595] = 1199, + [1596] = 1152, + [1597] = 1203, + [1598] = 1206, + [1599] = 1208, + [1600] = 1210, + [1601] = 1211, + [1602] = 1212, + [1603] = 1235, + [1604] = 1238, + [1605] = 1239, + [1606] = 1241, + [1607] = 1243, + [1608] = 1245, + [1609] = 1247, + [1610] = 1249, + [1611] = 1250, + [1612] = 1251, + [1613] = 1252, + [1614] = 1265, + [1615] = 1267, + [1616] = 1268, + [1617] = 1269, + [1618] = 1272, + [1619] = 1277, + [1620] = 1279, + [1621] = 1280, + [1622] = 1282, + [1623] = 1283, + [1624] = 1285, + [1625] = 1266, + [1626] = 1220, + [1627] = 1189, + [1628] = 1229, + [1629] = 1181, + [1630] = 1579, + [1631] = 1217, + [1632] = 1234, + [1633] = 1246, + [1634] = 1177, + [1635] = 1560, + [1636] = 1191, + [1637] = 1213, + [1638] = 1226, + [1639] = 1561, + [1640] = 1179, + [1641] = 1185, + [1642] = 1186, + [1643] = 1188, + [1644] = 1190, + [1645] = 1193, + [1646] = 1195, + [1647] = 1198, + [1648] = 1216, + [1649] = 1218, + [1650] = 1222, + [1651] = 1224, + [1652] = 1227, + [1653] = 1288, + [1654] = 1230, + [1655] = 1231, + [1656] = 1233, + [1657] = 1236, + [1658] = 1240, + [1659] = 1244, + [1660] = 1248, + [1661] = 1270, + [1662] = 1271, + [1663] = 1273, + [1664] = 1274, + [1665] = 1276, + [1666] = 1278, + [1667] = 1281, + [1668] = 1156, + [1669] = 1157, + [1670] = 1158, + [1671] = 1159, + [1672] = 1160, + [1673] = 1161, + [1674] = 1162, + [1675] = 1163, + [1676] = 1167, + [1677] = 1168, + [1678] = 1169, + [1679] = 1170, + [1680] = 1171, + [1681] = 1172, + [1682] = 1173, + [1683] = 1174, + [1684] = 1175, + [1685] = 1176, + [1686] = 1178, + [1687] = 1180, + [1688] = 1583, + [1689] = 1584, + [1690] = 1585, + [1691] = 1586, + [1692] = 1253, + [1693] = 1254, + [1694] = 1255, + [1695] = 1256, + [1696] = 1257, + [1697] = 1258, + [1698] = 1259, + [1699] = 1260, + [1700] = 1261, + [1701] = 1262, + [1702] = 1263, + [1703] = 1264, + [1704] = 1578, + [1705] = 1197, + [1706] = 1706, + [1707] = 1707, + [1708] = 1708, + [1709] = 1709, + [1710] = 1710, + [1711] = 1707, + [1712] = 1712, + [1713] = 1253, + [1714] = 1254, + [1715] = 1255, + [1716] = 1256, + [1717] = 1257, + [1718] = 1258, + [1719] = 1259, + [1720] = 1260, + [1721] = 1261, + [1722] = 1262, + [1723] = 1263, + [1724] = 1264, + [1725] = 406, + [1726] = 418, [1727] = 1727, - [1728] = 333, - [1729] = 405, - [1730] = 92, - [1731] = 404, - [1732] = 391, - [1733] = 410, + [1728] = 412, + [1729] = 1706, + [1730] = 1708, + [1731] = 1727, + [1732] = 1712, + [1733] = 393, [1734] = 1734, - [1735] = 406, - [1736] = 96, - [1737] = 414, - [1738] = 342, - [1739] = 335, - [1740] = 343, - [1741] = 403, - [1742] = 346, + [1735] = 418, + [1736] = 412, + [1737] = 93, + [1738] = 1738, + [1739] = 422, + [1740] = 389, + [1741] = 343, + [1742] = 416, [1743] = 1743, - [1744] = 1744, - [1745] = 1745, - [1746] = 1746, - [1747] = 413, - [1748] = 408, - [1749] = 411, - [1750] = 348, - [1751] = 340, - [1752] = 341, - [1753] = 93, - [1754] = 1744, - [1755] = 404, - [1756] = 347, - [1757] = 98, - [1758] = 92, - [1759] = 1759, - [1760] = 1760, - [1761] = 469, - [1762] = 405, - [1763] = 333, - [1764] = 1734, - [1765] = 1745, - [1766] = 1734, - [1767] = 1743, - [1768] = 1743, - [1769] = 1734, - [1770] = 1743, - [1771] = 1771, - [1772] = 93, - [1773] = 1746, - [1774] = 92, - [1775] = 349, - [1776] = 1776, - [1777] = 1777, - [1778] = 440, - [1779] = 1779, - [1780] = 1780, - [1781] = 1779, - [1782] = 347, - [1783] = 1783, - [1784] = 349, - [1785] = 469, + [1744] = 92, + [1745] = 344, + [1746] = 364, + [1747] = 100, + [1748] = 1748, + [1749] = 421, + [1750] = 93, + [1751] = 422, + [1752] = 348, + [1753] = 1753, + [1754] = 96, + [1755] = 344, + [1756] = 92, + [1757] = 357, + [1758] = 343, + [1759] = 360, + [1760] = 349, + [1761] = 92, + [1762] = 351, + [1763] = 420, + [1764] = 93, + [1765] = 1765, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 464, + [1770] = 1770, + [1771] = 424, + [1772] = 1768, + [1773] = 1773, + [1774] = 1767, + [1775] = 416, + [1776] = 415, + [1777] = 417, + [1778] = 419, + [1779] = 1770, + [1780] = 1773, + [1781] = 1770, + [1782] = 1773, + [1783] = 359, + [1784] = 1770, + [1785] = 1773, [1786] = 1786, - [1787] = 1787, - [1788] = 1777, - [1789] = 450, - [1790] = 107, - [1791] = 341, - [1792] = 342, - [1793] = 340, - [1794] = 343, - [1795] = 346, - [1796] = 1777, - [1797] = 1783, - [1798] = 336, - [1799] = 1787, - [1800] = 1779, - [1801] = 1801, - [1802] = 1802, - [1803] = 348, - [1804] = 109, - [1805] = 369, - [1806] = 1777, - [1807] = 96, - [1808] = 98, - [1809] = 98, - [1810] = 96, - [1811] = 1802, - [1812] = 1779, - [1813] = 108, - [1814] = 1801, + [1787] = 1753, + [1788] = 354, + [1789] = 1789, + [1790] = 1790, + [1791] = 459, + [1792] = 359, + [1793] = 364, + [1794] = 1794, + [1795] = 1790, + [1796] = 96, + [1797] = 1789, + [1798] = 1790, + [1799] = 464, + [1800] = 100, + [1801] = 357, + [1802] = 360, + [1803] = 1794, + [1804] = 106, + [1805] = 450, + [1806] = 1806, + [1807] = 1807, + [1808] = 379, + [1809] = 1790, + [1810] = 347, + [1811] = 354, + [1812] = 348, + [1813] = 349, + [1814] = 1794, [1815] = 1815, - [1816] = 108, - [1817] = 1817, - [1818] = 1815, - [1819] = 1819, - [1820] = 369, + [1816] = 1816, + [1817] = 107, + [1818] = 1794, + [1819] = 96, + [1820] = 100, [1821] = 1821, - [1822] = 107, - [1823] = 1823, - [1824] = 109, - [1825] = 1825, - [1826] = 108, + [1822] = 1806, + [1823] = 1816, + [1824] = 1807, + [1825] = 104, + [1826] = 351, [1827] = 1827, - [1828] = 481, - [1829] = 477, - [1830] = 440, + [1828] = 1828, + [1829] = 1829, + [1830] = 106, [1831] = 1831, - [1832] = 450, - [1833] = 1833, - [1834] = 352, - [1835] = 107, - [1836] = 1833, + [1832] = 1831, + [1833] = 1827, + [1834] = 1834, + [1835] = 104, + [1836] = 1827, [1837] = 1837, - [1838] = 1838, - [1839] = 336, - [1840] = 338, - [1841] = 109, - [1842] = 1825, - [1843] = 1843, - [1844] = 1815, - [1845] = 1817, - [1846] = 1815, - [1847] = 355, - [1848] = 1848, - [1849] = 1833, - [1850] = 1833, - [1851] = 1825, - [1852] = 1817, - [1853] = 1833, - [1854] = 1854, - [1855] = 1817, - [1856] = 1817, - [1857] = 1815, - [1858] = 1825, - [1859] = 1833, - [1860] = 1817, - [1861] = 1815, - [1862] = 1825, - [1863] = 1825, - [1864] = 348, - [1865] = 355, - [1866] = 493, - [1867] = 488, - [1868] = 498, - [1869] = 481, - [1870] = 477, - [1871] = 1871, - [1872] = 372, - [1873] = 1873, - [1874] = 1874, - [1875] = 555, - [1876] = 556, - [1877] = 713, - [1878] = 340, - [1879] = 341, - [1880] = 808, - [1881] = 809, - [1882] = 729, - [1883] = 811, - [1884] = 812, - [1885] = 478, - [1886] = 1886, - [1887] = 848, - [1888] = 849, - [1889] = 472, - [1890] = 342, - [1891] = 352, - [1892] = 343, - [1893] = 346, - [1894] = 338, - [1895] = 343, - [1896] = 348, - [1897] = 1897, - [1898] = 729, - [1899] = 340, - [1900] = 497, - [1901] = 505, + [1838] = 489, + [1839] = 1839, + [1840] = 481, + [1841] = 450, + [1842] = 1831, + [1843] = 1827, + [1844] = 106, + [1845] = 1845, + [1846] = 1846, + [1847] = 459, + [1848] = 1837, + [1849] = 1828, + [1850] = 1850, + [1851] = 1837, + [1852] = 1852, + [1853] = 107, + [1854] = 1837, + [1855] = 107, + [1856] = 1828, + [1857] = 1857, + [1858] = 353, + [1859] = 1828, + [1860] = 367, + [1861] = 1861, + [1862] = 1828, + [1863] = 1837, + [1864] = 104, + [1865] = 347, + [1866] = 350, + [1867] = 379, + [1868] = 1868, + [1869] = 1831, + [1870] = 1827, + [1871] = 1837, + [1872] = 1828, + [1873] = 1831, + [1874] = 1827, + [1875] = 1831, + [1876] = 354, + [1877] = 810, + [1878] = 901, + [1879] = 515, + [1880] = 353, + [1881] = 528, + [1882] = 516, + [1883] = 383, + [1884] = 517, + [1885] = 1885, + [1886] = 493, + [1887] = 489, + [1888] = 737, + [1889] = 690, + [1890] = 814, + [1891] = 481, + [1892] = 815, + [1893] = 367, + [1894] = 348, + [1895] = 360, + [1896] = 1896, + [1897] = 697, + [1898] = 349, + [1899] = 350, + [1900] = 487, + [1901] = 357, [1902] = 1902, - [1903] = 555, - [1904] = 92, - [1905] = 478, - [1906] = 341, - [1907] = 556, - [1908] = 507, - [1909] = 1909, - [1910] = 713, - [1911] = 498, - [1912] = 812, - [1913] = 1464, - [1914] = 335, - [1915] = 472, - [1916] = 346, - [1917] = 811, - [1918] = 493, - [1919] = 333, - [1920] = 495, - [1921] = 1886, - [1922] = 848, - [1923] = 440, - [1924] = 342, - [1925] = 496, - [1926] = 808, - [1927] = 372, - [1928] = 93, + [1903] = 809, + [1904] = 1904, + [1905] = 745, + [1906] = 351, + [1907] = 344, + [1908] = 459, + [1909] = 357, + [1910] = 506, + [1911] = 487, + [1912] = 515, + [1913] = 516, + [1914] = 517, + [1915] = 1915, + [1916] = 814, + [1917] = 360, + [1918] = 815, + [1919] = 383, + [1920] = 697, + [1921] = 745, + [1922] = 351, + [1923] = 901, + [1924] = 1924, + [1925] = 354, + [1926] = 348, + [1927] = 349, + [1928] = 499, [1929] = 809, - [1930] = 491, - [1931] = 488, - [1932] = 1909, - [1933] = 450, - [1934] = 849, - [1935] = 1897, - [1936] = 343, - [1937] = 1937, - [1938] = 346, - [1939] = 477, - [1940] = 342, - [1941] = 347, - [1942] = 440, - [1943] = 96, - [1944] = 1944, - [1945] = 92, - [1946] = 348, - [1947] = 98, - [1948] = 341, - [1949] = 1496, + [1930] = 810, + [1931] = 92, + [1932] = 1484, + [1933] = 690, + [1934] = 93, + [1935] = 507, + [1936] = 508, + [1937] = 528, + [1938] = 737, + [1939] = 510, + [1940] = 1915, + [1941] = 1941, + [1942] = 450, + [1943] = 343, + [1944] = 1885, + [1945] = 493, + [1946] = 498, + [1947] = 1941, + [1948] = 1948, + [1949] = 348, [1950] = 349, - [1951] = 481, - [1952] = 1944, - [1953] = 450, - [1954] = 93, - [1955] = 340, - [1956] = 701, - [1957] = 957, - [1958] = 1958, - [1959] = 1959, - [1960] = 1960, - [1961] = 107, - [1962] = 1962, - [1963] = 933, - [1964] = 1964, - [1965] = 974, - [1966] = 98, - [1967] = 705, - [1968] = 1464, - [1969] = 963, - [1970] = 738, - [1971] = 1971, - [1972] = 965, + [1951] = 354, + [1952] = 96, + [1953] = 360, + [1954] = 1954, + [1955] = 92, + [1956] = 1948, + [1957] = 459, + [1958] = 93, + [1959] = 1508, + [1960] = 357, + [1961] = 100, + [1962] = 489, + [1963] = 481, + [1964] = 359, + [1965] = 364, + [1966] = 450, + [1967] = 351, + [1968] = 1968, + [1969] = 930, + [1970] = 1970, + [1971] = 931, + [1972] = 1972, [1973] = 1973, - [1974] = 724, - [1975] = 718, - [1976] = 938, - [1977] = 704, - [1978] = 941, - [1979] = 108, - [1980] = 336, - [1981] = 488, - [1982] = 477, - [1983] = 717, + [1974] = 1974, + [1975] = 96, + [1976] = 937, + [1977] = 106, + [1978] = 1978, + [1979] = 1484, + [1980] = 107, + [1981] = 1981, + [1982] = 933, + [1983] = 1983, [1984] = 1984, - [1985] = 702, - [1986] = 703, - [1987] = 706, - [1988] = 498, - [1989] = 1989, - [1990] = 1990, + [1985] = 1985, + [1986] = 1986, + [1987] = 1987, + [1988] = 1498, + [1989] = 515, + [1990] = 347, [1991] = 1991, - [1992] = 493, - [1993] = 369, - [1994] = 96, - [1995] = 1499, - [1996] = 917, - [1997] = 1997, + [1992] = 100, + [1993] = 516, + [1994] = 517, + [1995] = 104, + [1996] = 1996, + [1997] = 379, [1998] = 1998, - [1999] = 109, - [2000] = 931, - [2001] = 2001, - [2002] = 1989, - [2003] = 481, - [2004] = 2004, - [2005] = 2005, - [2006] = 1194, - [2007] = 488, - [2008] = 498, - [2009] = 1528, - [2010] = 107, - [2011] = 2011, - [2012] = 1496, - [2013] = 974, - [2014] = 1499, - [2015] = 2015, - [2016] = 2016, - [2017] = 957, - [2018] = 2011, - [2019] = 335, - [2020] = 1464, - [2021] = 963, - [2022] = 965, - [2023] = 917, - [2024] = 931, - [2025] = 738, - [2026] = 983, - [2027] = 738, - [2028] = 2028, - [2029] = 2029, - [2030] = 2016, - [2031] = 485, - [2032] = 933, - [2033] = 938, - [2034] = 1144, - [2035] = 109, - [2036] = 1187, - [2037] = 1162, - [2038] = 941, - [2039] = 1265, - [2040] = 338, - [2041] = 1243, - [2042] = 1153, - [2043] = 2043, - [2044] = 1235, - [2045] = 1216, - [2046] = 1179, - [2047] = 1191, - [2048] = 1197, - [2049] = 1217, - [2050] = 352, - [2051] = 716, - [2052] = 355, - [2053] = 2053, - [2054] = 1273, - [2055] = 1147, + [1999] = 934, + [2000] = 730, + [2001] = 1974, + [2002] = 489, + [2003] = 2003, + [2004] = 743, + [2005] = 698, + [2006] = 728, + [2007] = 929, + [2008] = 720, + [2009] = 935, + [2010] = 696, + [2011] = 724, + [2012] = 725, + [2013] = 727, + [2014] = 927, + [2015] = 920, + [2016] = 481, + [2017] = 936, + [2018] = 1185, + [2019] = 2019, + [2020] = 1161, + [2021] = 1162, + [2022] = 1163, + [2023] = 2023, + [2024] = 2024, + [2025] = 1222, + [2026] = 1484, + [2027] = 2027, + [2028] = 1224, + [2029] = 343, + [2030] = 2030, + [2031] = 2031, + [2032] = 503, + [2033] = 742, + [2034] = 1167, + [2035] = 1168, + [2036] = 1169, + [2037] = 1170, + [2038] = 935, + [2039] = 1045, + [2040] = 927, + [2041] = 1171, + [2042] = 1172, + [2043] = 1173, + [2044] = 1174, + [2045] = 2045, + [2046] = 1175, + [2047] = 1176, + [2048] = 1178, + [2049] = 1180, + [2050] = 1227, + [2051] = 1288, + [2052] = 1230, + [2053] = 929, + [2054] = 1231, + [2055] = 927, [2056] = 2056, - [2057] = 1172, - [2058] = 1188, - [2059] = 1223, - [2060] = 1237, - [2061] = 1258, - [2062] = 1269, - [2063] = 1141, - [2064] = 1146, - [2065] = 1207, - [2066] = 1210, - [2067] = 1214, - [2068] = 1218, - [2069] = 1225, - [2070] = 1250, - [2071] = 1256, - [2072] = 1260, - [2073] = 1263, - [2074] = 1267, - [2075] = 1274, - [2076] = 1215, - [2077] = 1142, - [2078] = 1148, - [2079] = 1152, - [2080] = 1156, - [2081] = 1174, - [2082] = 1186, - [2083] = 2083, - [2084] = 1190, - [2085] = 933, - [2086] = 1242, - [2087] = 983, - [2088] = 1198, - [2089] = 1158, - [2090] = 1177, - [2091] = 1192, - [2092] = 1208, - [2093] = 974, - [2094] = 1262, - [2095] = 1157, - [2096] = 1160, - [2097] = 1165, - [2098] = 1170, - [2099] = 2011, - [2100] = 1175, - [2101] = 1180, - [2102] = 1184, - [2103] = 108, - [2104] = 1200, - [2105] = 1228, - [2106] = 1143, - [2107] = 1145, - [2108] = 1161, - [2109] = 1163, - [2110] = 1166, - [2111] = 1168, - [2112] = 1171, - [2113] = 2011, - [2114] = 1173, - [2115] = 1176, - [2116] = 1178, - [2117] = 1181, - [2118] = 1183, - [2119] = 1199, - [2120] = 2011, - [2121] = 1201, - [2122] = 1204, - [2123] = 1206, - [2124] = 1209, - [2125] = 1276, - [2126] = 1219, - [2127] = 2011, - [2128] = 1221, - [2129] = 1224, - [2130] = 1226, - [2131] = 1229, - [2132] = 1231, - [2133] = 1234, - [2134] = 938, - [2135] = 941, - [2136] = 1245, - [2137] = 1247, - [2138] = 1249, - [2139] = 1251, - [2140] = 1253, - [2141] = 1255, - [2142] = 1257, - [2143] = 1259, - [2144] = 1264, - [2145] = 1266, - [2146] = 1268, - [2147] = 1205, - [2148] = 2148, - [2149] = 2149, - [2150] = 2011, - [2151] = 2151, - [2152] = 493, - [2153] = 2153, - [2154] = 1151, - [2155] = 2155, - [2156] = 2156, - [2157] = 1528, - [2158] = 346, - [2159] = 790, - [2160] = 791, - [2161] = 792, - [2162] = 793, - [2163] = 348, - [2164] = 340, - [2165] = 341, - [2166] = 918, - [2167] = 503, - [2168] = 798, - [2169] = 799, - [2170] = 865, - [2171] = 934, - [2172] = 372, - [2173] = 527, - [2174] = 2174, - [2175] = 848, - [2176] = 800, - [2177] = 849, - [2178] = 713, - [2179] = 967, - [2180] = 927, - [2181] = 878, - [2182] = 881, - [2183] = 729, - [2184] = 983, - [2185] = 1499, - [2186] = 2186, - [2187] = 342, - [2188] = 2188, - [2189] = 508, - [2190] = 2156, - [2191] = 2174, - [2192] = 914, - [2193] = 884, - [2194] = 2194, - [2195] = 712, - [2196] = 2156, - [2197] = 2174, - [2198] = 808, - [2199] = 809, - [2200] = 811, - [2201] = 812, - [2202] = 1496, - [2203] = 343, - [2204] = 970, - [2205] = 2205, - [2206] = 710, - [2207] = 2207, - [2208] = 2208, - [2209] = 1222, - [2210] = 1196, - [2211] = 2211, - [2212] = 1169, - [2213] = 1193, - [2214] = 1202, - [2215] = 2211, - [2216] = 2208, - [2217] = 2208, - [2218] = 1212, - [2219] = 1232, - [2220] = 1236, - [2221] = 2208, - [2222] = 2208, - [2223] = 1238, - [2224] = 2208, - [2225] = 1222, - [2226] = 2208, - [2227] = 1232, - [2228] = 1185, - [2229] = 1169, - [2230] = 1189, - [2231] = 1528, - [2232] = 1195, - [2233] = 1196, - [2234] = 1193, - [2235] = 1236, - [2236] = 1202, - [2237] = 1212, - [2238] = 2211, - [2239] = 1195, - [2240] = 1185, - [2241] = 485, - [2242] = 1238, - [2243] = 1189, - [2244] = 2211, - [2245] = 2208, - [2246] = 2246, - [2247] = 2246, - [2248] = 2246, - [2249] = 2246, - [2250] = 2246, - [2251] = 2246, - [2252] = 527, - [2253] = 2253, - [2254] = 2254, - [2255] = 1464, - [2256] = 485, - [2257] = 2257, - [2258] = 2253, + [2057] = 2023, + [2058] = 936, + [2059] = 937, + [2060] = 935, + [2061] = 1184, + [2062] = 1192, + [2063] = 1194, + [2064] = 1233, + [2065] = 1196, + [2066] = 930, + [2067] = 1199, + [2068] = 1152, + [2069] = 1203, + [2070] = 1206, + [2071] = 2027, + [2072] = 1208, + [2073] = 1210, + [2074] = 1211, + [2075] = 1212, + [2076] = 1521, + [2077] = 1236, + [2078] = 936, + [2079] = 1240, + [2080] = 931, + [2081] = 933, + [2082] = 2082, + [2083] = 934, + [2084] = 1244, + [2085] = 920, + [2086] = 937, + [2087] = 1248, + [2088] = 104, + [2089] = 1270, + [2090] = 1271, + [2091] = 1273, + [2092] = 1274, + [2093] = 1276, + [2094] = 1235, + [2095] = 1238, + [2096] = 1239, + [2097] = 1241, + [2098] = 1243, + [2099] = 1245, + [2100] = 1247, + [2101] = 1249, + [2102] = 1250, + [2103] = 1251, + [2104] = 1252, + [2105] = 1265, + [2106] = 1267, + [2107] = 1268, + [2108] = 1278, + [2109] = 1269, + [2110] = 1272, + [2111] = 1277, + [2112] = 2112, + [2113] = 2023, + [2114] = 1279, + [2115] = 1280, + [2116] = 1282, + [2117] = 2023, + [2118] = 353, + [2119] = 367, + [2120] = 1283, + [2121] = 2023, + [2122] = 2023, + [2123] = 350, + [2124] = 1285, + [2125] = 1266, + [2126] = 1220, + [2127] = 1189, + [2128] = 1281, + [2129] = 1229, + [2130] = 1284, + [2131] = 1181, + [2132] = 2132, + [2133] = 1156, + [2134] = 1157, + [2135] = 1158, + [2136] = 1197, + [2137] = 1217, + [2138] = 1234, + [2139] = 515, + [2140] = 1246, + [2141] = 920, + [2142] = 1177, + [2143] = 2023, + [2144] = 2144, + [2145] = 1191, + [2146] = 1159, + [2147] = 1508, + [2148] = 1213, + [2149] = 1498, + [2150] = 1226, + [2151] = 107, + [2152] = 1045, + [2153] = 106, + [2154] = 516, + [2155] = 517, + [2156] = 1160, + [2157] = 1179, + [2158] = 1216, + [2159] = 1186, + [2160] = 1188, + [2161] = 1190, + [2162] = 1193, + [2163] = 1195, + [2164] = 1198, + [2165] = 2165, + [2166] = 1218, + [2167] = 2167, + [2168] = 2168, + [2169] = 354, + [2170] = 348, + [2171] = 349, + [2172] = 1508, + [2173] = 737, + [2174] = 783, + [2175] = 357, + [2176] = 740, + [2177] = 953, + [2178] = 810, + [2179] = 2179, + [2180] = 2180, + [2181] = 360, + [2182] = 945, + [2183] = 2183, + [2184] = 744, + [2185] = 954, + [2186] = 762, + [2187] = 784, + [2188] = 795, + [2189] = 1498, + [2190] = 809, + [2191] = 2167, + [2192] = 903, + [2193] = 383, + [2194] = 949, + [2195] = 2195, + [2196] = 530, + [2197] = 814, + [2198] = 509, + [2199] = 2195, + [2200] = 917, + [2201] = 815, + [2202] = 697, + [2203] = 2167, + [2204] = 772, + [2205] = 2195, + [2206] = 1521, + [2207] = 351, + [2208] = 974, + [2209] = 775, + [2210] = 776, + [2211] = 777, + [2212] = 978, + [2213] = 511, + [2214] = 900, + [2215] = 2215, + [2216] = 1045, + [2217] = 745, + [2218] = 901, + [2219] = 2219, + [2220] = 2220, + [2221] = 1262, + [2222] = 1264, + [2223] = 503, + [2224] = 1263, + [2225] = 1256, + [2226] = 1255, + [2227] = 1254, + [2228] = 2220, + [2229] = 1261, + [2230] = 1264, + [2231] = 2231, + [2232] = 1253, + [2233] = 2231, + [2234] = 1254, + [2235] = 1260, + [2236] = 2231, + [2237] = 1256, + [2238] = 1257, + [2239] = 1257, + [2240] = 2231, + [2241] = 1258, + [2242] = 1259, + [2243] = 1258, + [2244] = 1260, + [2245] = 2231, + [2246] = 1261, + [2247] = 2220, + [2248] = 1521, + [2249] = 2231, + [2250] = 1262, + [2251] = 2220, + [2252] = 1263, + [2253] = 2231, + [2254] = 1253, + [2255] = 1259, + [2256] = 2231, + [2257] = 1255, + [2258] = 2258, [2259] = 2259, - [2260] = 2260, - [2261] = 343, - [2262] = 348, - [2263] = 2263, - [2264] = 2264, - [2265] = 2265, - [2266] = 341, + [2260] = 2259, + [2261] = 2259, + [2262] = 2259, + [2263] = 2259, + [2264] = 530, + [2265] = 2259, + [2266] = 2266, [2267] = 2267, - [2268] = 1496, - [2269] = 346, - [2270] = 527, - [2271] = 340, - [2272] = 2272, - [2273] = 1499, - [2274] = 342, + [2268] = 2258, + [2269] = 503, + [2270] = 2270, + [2271] = 2271, + [2272] = 1484, + [2273] = 2273, + [2274] = 348, [2275] = 2275, - [2276] = 2016, - [2277] = 2277, - [2278] = 1464, - [2279] = 2279, - [2280] = 1496, + [2276] = 349, + [2277] = 360, + [2278] = 2027, + [2279] = 1498, + [2280] = 2280, [2281] = 2281, - [2282] = 1499, - [2283] = 1528, - [2284] = 2284, + [2282] = 2282, + [2283] = 2283, + [2284] = 354, [2285] = 2285, - [2286] = 1528, - [2287] = 2287, - [2288] = 2288, - [2289] = 2289, - [2290] = 2287, - [2291] = 372, + [2286] = 1508, + [2287] = 1484, + [2288] = 357, + [2289] = 351, + [2290] = 530, + [2291] = 2291, [2292] = 2292, [2293] = 2293, - [2294] = 2288, - [2295] = 2295, - [2296] = 333, - [2297] = 2297, - [2298] = 347, - [2299] = 349, + [2294] = 1498, + [2295] = 1508, + [2296] = 2296, + [2297] = 1521, + [2298] = 2298, + [2299] = 1521, [2300] = 2300, - [2301] = 405, - [2302] = 404, - [2303] = 2303, - [2304] = 2304, + [2301] = 2301, + [2302] = 383, + [2303] = 2298, + [2304] = 2300, [2305] = 2305, [2306] = 2306, [2307] = 2307, - [2308] = 335, - [2309] = 390, + [2308] = 344, + [2309] = 2309, [2310] = 2310, [2311] = 2311, [2312] = 2312, - [2313] = 2313, + [2313] = 343, [2314] = 2314, [2315] = 2315, [2316] = 2316, @@ -7374,430 +7374,430 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2325] = 2325, [2326] = 2326, [2327] = 2327, - [2328] = 2317, - [2329] = 385, - [2330] = 390, - [2331] = 410, - [2332] = 416, - [2333] = 369, - [2334] = 403, - [2335] = 410, - [2336] = 416, + [2328] = 359, + [2329] = 364, + [2330] = 422, + [2331] = 416, + [2332] = 2332, + [2333] = 2333, + [2334] = 2334, + [2335] = 2335, + [2336] = 2334, [2337] = 2337, [2338] = 2338, - [2339] = 2339, + [2339] = 406, [2340] = 2340, - [2341] = 2341, - [2342] = 2342, - [2343] = 93, - [2344] = 92, - [2345] = 390, - [2346] = 385, - [2347] = 413, - [2348] = 408, - [2349] = 411, - [2350] = 2337, - [2351] = 2338, - [2352] = 2339, - [2353] = 2340, - [2354] = 2341, - [2355] = 2342, - [2356] = 92, - [2357] = 403, - [2358] = 413, - [2359] = 408, - [2360] = 411, - [2361] = 385, - [2362] = 96, - [2363] = 390, - [2364] = 98, - [2365] = 93, - [2366] = 410, - [2367] = 469, - [2368] = 416, - [2369] = 343, - [2370] = 333, - [2371] = 346, - [2372] = 403, - [2373] = 413, - [2374] = 408, - [2375] = 411, - [2376] = 416, - [2377] = 335, - [2378] = 469, - [2379] = 348, - [2380] = 340, - [2381] = 96, - [2382] = 341, - [2383] = 410, - [2384] = 98, - [2385] = 107, - [2386] = 109, - [2387] = 108, - [2388] = 440, - [2389] = 385, - [2390] = 450, - [2391] = 497, - [2392] = 507, - [2393] = 333, - [2394] = 342, - [2395] = 93, - [2396] = 92, - [2397] = 98, - [2398] = 481, - [2399] = 1464, - [2400] = 477, - [2401] = 450, - [2402] = 109, - [2403] = 108, - [2404] = 403, - [2405] = 390, - [2406] = 469, - [2407] = 2407, - [2408] = 93, - [2409] = 347, - [2410] = 405, - [2411] = 440, + [2341] = 379, + [2342] = 412, + [2343] = 389, + [2344] = 406, + [2345] = 418, + [2346] = 389, + [2347] = 93, + [2348] = 2348, + [2349] = 406, + [2350] = 2350, + [2351] = 424, + [2352] = 2348, + [2353] = 415, + [2354] = 417, + [2355] = 419, + [2356] = 2356, + [2357] = 418, + [2358] = 2358, + [2359] = 2358, + [2360] = 2356, + [2361] = 2361, + [2362] = 412, + [2363] = 2363, + [2364] = 2361, + [2365] = 2350, + [2366] = 2363, + [2367] = 92, + [2368] = 92, + [2369] = 100, + [2370] = 96, + [2371] = 464, + [2372] = 418, + [2373] = 424, + [2374] = 412, + [2375] = 406, + [2376] = 389, + [2377] = 93, + [2378] = 415, + [2379] = 417, + [2380] = 419, + [2381] = 415, + [2382] = 100, + [2383] = 92, + [2384] = 412, + [2385] = 104, + [2386] = 106, + [2387] = 107, + [2388] = 450, + [2389] = 357, + [2390] = 360, + [2391] = 351, + [2392] = 354, + [2393] = 348, + [2394] = 349, + [2395] = 424, + [2396] = 417, + [2397] = 419, + [2398] = 418, + [2399] = 93, + [2400] = 389, + [2401] = 343, + [2402] = 344, + [2403] = 507, + [2404] = 510, + [2405] = 464, + [2406] = 459, + [2407] = 96, + [2408] = 344, + [2409] = 464, + [2410] = 406, + [2411] = 489, [2412] = 2412, [2413] = 2413, - [2414] = 2414, + [2414] = 422, [2415] = 2415, - [2416] = 335, - [2417] = 404, - [2418] = 408, - [2419] = 349, - [2420] = 92, - [2421] = 411, - [2422] = 107, - [2423] = 96, - [2424] = 413, + [2416] = 93, + [2417] = 481, + [2418] = 424, + [2419] = 96, + [2420] = 450, + [2421] = 2421, + [2422] = 416, + [2423] = 107, + [2424] = 1484, [2425] = 2425, - [2426] = 336, - [2427] = 404, - [2428] = 2428, - [2429] = 369, - [2430] = 2430, - [2431] = 469, - [2432] = 96, - [2433] = 555, - [2434] = 108, - [2435] = 410, - [2436] = 416, - [2437] = 440, - [2438] = 369, - [2439] = 405, - [2440] = 495, - [2441] = 98, - [2442] = 496, - [2443] = 107, - [2444] = 505, - [2445] = 93, - [2446] = 450, - [2447] = 92, - [2448] = 481, - [2449] = 493, - [2450] = 347, - [2451] = 349, - [2452] = 1499, - [2453] = 488, - [2454] = 498, - [2455] = 477, - [2456] = 333, - [2457] = 335, - [2458] = 556, - [2459] = 109, - [2460] = 1496, - [2461] = 385, - [2462] = 491, - [2463] = 493, - [2464] = 109, - [2465] = 1854, - [2466] = 477, - [2467] = 1528, - [2468] = 413, - [2469] = 408, - [2470] = 411, - [2471] = 2471, - [2472] = 108, - [2473] = 555, - [2474] = 556, - [2475] = 440, - [2476] = 96, - [2477] = 342, - [2478] = 450, - [2479] = 404, - [2480] = 403, - [2481] = 98, - [2482] = 347, - [2483] = 349, - [2484] = 355, - [2485] = 338, - [2486] = 440, - [2487] = 346, - [2488] = 107, - [2489] = 481, - [2490] = 488, - [2491] = 348, - [2492] = 340, - [2493] = 498, - [2494] = 341, - [2495] = 333, - [2496] = 343, - [2497] = 450, - [2498] = 405, - [2499] = 335, - [2500] = 352, - [2501] = 702, - [2502] = 493, - [2503] = 488, - [2504] = 498, - [2505] = 481, - [2506] = 2506, - [2507] = 336, - [2508] = 333, - [2509] = 1854, - [2510] = 507, - [2511] = 2511, - [2512] = 477, - [2513] = 2513, + [2426] = 92, + [2427] = 415, + [2428] = 343, + [2429] = 100, + [2430] = 417, + [2431] = 419, + [2432] = 359, + [2433] = 104, + [2434] = 459, + [2435] = 106, + [2436] = 364, + [2437] = 96, + [2438] = 379, + [2439] = 506, + [2440] = 343, + [2441] = 2441, + [2442] = 508, + [2443] = 516, + [2444] = 389, + [2445] = 2445, + [2446] = 1508, + [2447] = 93, + [2448] = 422, + [2449] = 464, + [2450] = 450, + [2451] = 100, + [2452] = 418, + [2453] = 499, + [2454] = 107, + [2455] = 515, + [2456] = 1498, + [2457] = 517, + [2458] = 104, + [2459] = 359, + [2460] = 364, + [2461] = 347, + [2462] = 106, + [2463] = 416, + [2464] = 489, + [2465] = 92, + [2466] = 528, + [2467] = 379, + [2468] = 690, + [2469] = 2469, + [2470] = 498, + [2471] = 344, + [2472] = 481, + [2473] = 412, + [2474] = 459, + [2475] = 2475, + [2476] = 357, + [2477] = 107, + [2478] = 100, + [2479] = 104, + [2480] = 1834, + [2481] = 364, + [2482] = 354, + [2483] = 348, + [2484] = 349, + [2485] = 515, + [2486] = 459, + [2487] = 450, + [2488] = 416, + [2489] = 96, + [2490] = 690, + [2491] = 489, + [2492] = 516, + [2493] = 517, + [2494] = 344, + [2495] = 481, + [2496] = 351, + [2497] = 343, + [2498] = 1521, + [2499] = 450, + [2500] = 415, + [2501] = 528, + [2502] = 417, + [2503] = 360, + [2504] = 419, + [2505] = 106, + [2506] = 424, + [2507] = 459, + [2508] = 359, + [2509] = 350, + [2510] = 353, + [2511] = 367, + [2512] = 422, + [2513] = 360, [2514] = 2514, - [2515] = 405, - [2516] = 343, - [2517] = 440, - [2518] = 369, - [2519] = 346, - [2520] = 107, - [2521] = 109, - [2522] = 108, - [2523] = 481, - [2524] = 2524, - [2525] = 477, - [2526] = 450, - [2527] = 440, - [2528] = 555, - [2529] = 2513, - [2530] = 2513, - [2531] = 2531, - [2532] = 556, - [2533] = 349, - [2534] = 450, - [2535] = 2513, - [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 491, - [2541] = 495, + [2515] = 508, + [2516] = 2516, + [2517] = 2517, + [2518] = 347, + [2519] = 2519, + [2520] = 2520, + [2521] = 489, + [2522] = 344, + [2523] = 351, + [2524] = 515, + [2525] = 422, + [2526] = 481, + [2527] = 106, + [2528] = 2528, + [2529] = 517, + [2530] = 1834, + [2531] = 528, + [2532] = 2532, + [2533] = 2533, + [2534] = 489, + [2535] = 450, + [2536] = 481, + [2537] = 459, + [2538] = 450, + [2539] = 343, + [2540] = 690, + [2541] = 104, [2542] = 2542, - [2543] = 335, - [2544] = 348, - [2545] = 340, - [2546] = 341, - [2547] = 342, - [2548] = 335, - [2549] = 496, - [2550] = 497, - [2551] = 2551, - [2552] = 2552, - [2553] = 2553, - [2554] = 347, - [2555] = 705, - [2556] = 505, - [2557] = 717, - [2558] = 701, - [2559] = 703, - [2560] = 404, - [2561] = 477, - [2562] = 556, - [2563] = 342, - [2564] = 450, - [2565] = 481, - [2566] = 2566, - [2567] = 343, - [2568] = 346, + [2543] = 2543, + [2544] = 359, + [2545] = 2545, + [2546] = 354, + [2547] = 730, + [2548] = 348, + [2549] = 349, + [2550] = 2550, + [2551] = 2517, + [2552] = 107, + [2553] = 499, + [2554] = 696, + [2555] = 724, + [2556] = 725, + [2557] = 727, + [2558] = 510, + [2559] = 364, + [2560] = 498, + [2561] = 506, + [2562] = 379, + [2563] = 507, + [2564] = 357, + [2565] = 2565, + [2566] = 343, + [2567] = 416, + [2568] = 2517, [2569] = 2569, - [2570] = 348, - [2571] = 340, - [2572] = 341, - [2573] = 477, - [2574] = 355, - [2575] = 335, - [2576] = 738, - [2577] = 496, - [2578] = 974, - [2579] = 2579, - [2580] = 496, - [2581] = 495, - [2582] = 493, - [2583] = 488, - [2584] = 498, - [2585] = 481, - [2586] = 347, - [2587] = 2587, - [2588] = 2588, - [2589] = 497, - [2590] = 493, - [2591] = 957, - [2592] = 2542, - [2593] = 2551, - [2594] = 941, - [2595] = 2595, - [2596] = 2596, - [2597] = 333, - [2598] = 555, - [2599] = 2599, - [2600] = 505, - [2601] = 2601, - [2602] = 2602, - [2603] = 336, - [2604] = 2604, - [2605] = 933, - [2606] = 2606, - [2607] = 338, - [2608] = 963, - [2609] = 349, - [2610] = 2610, - [2611] = 343, - [2612] = 346, - [2613] = 965, - [2614] = 2614, - [2615] = 505, - [2616] = 917, - [2617] = 2614, - [2618] = 440, - [2619] = 2619, - [2620] = 931, - [2621] = 2552, - [2622] = 488, - [2623] = 348, - [2624] = 495, - [2625] = 369, - [2626] = 340, - [2627] = 341, - [2628] = 705, - [2629] = 2629, - [2630] = 498, - [2631] = 347, - [2632] = 349, + [2570] = 2517, + [2571] = 516, + [2572] = 459, + [2573] = 353, + [2574] = 528, + [2575] = 2575, + [2576] = 2576, + [2577] = 499, + [2578] = 507, + [2579] = 344, + [2580] = 508, + [2581] = 510, + [2582] = 498, + [2583] = 506, + [2584] = 515, + [2585] = 516, + [2586] = 517, + [2587] = 508, + [2588] = 347, + [2589] = 498, + [2590] = 506, + [2591] = 379, + [2592] = 367, + [2593] = 350, + [2594] = 920, + [2595] = 927, + [2596] = 929, + [2597] = 930, + [2598] = 931, + [2599] = 933, + [2600] = 934, + [2601] = 935, + [2602] = 936, + [2603] = 937, + [2604] = 359, + [2605] = 364, + [2606] = 450, + [2607] = 357, + [2608] = 360, + [2609] = 351, + [2610] = 354, + [2611] = 348, + [2612] = 349, + [2613] = 357, + [2614] = 727, + [2615] = 489, + [2616] = 360, + [2617] = 351, + [2618] = 354, + [2619] = 348, + [2620] = 349, + [2621] = 481, + [2622] = 515, + [2623] = 516, + [2624] = 517, + [2625] = 489, + [2626] = 481, + [2627] = 2627, + [2628] = 343, + [2629] = 2532, + [2630] = 2545, + [2631] = 2514, + [2632] = 2632, [2633] = 2633, - [2634] = 491, + [2634] = 2634, [2635] = 2635, - [2636] = 717, - [2637] = 938, - [2638] = 701, - [2639] = 702, - [2640] = 703, - [2641] = 507, - [2642] = 352, - [2643] = 342, - [2644] = 2595, - [2645] = 491, - [2646] = 498, + [2636] = 2636, + [2637] = 2637, + [2638] = 2638, + [2639] = 2639, + [2640] = 2640, + [2641] = 2641, + [2642] = 2642, + [2643] = 2643, + [2644] = 690, + [2645] = 730, + [2646] = 2646, [2647] = 2647, - [2648] = 2648, - [2649] = 503, - [2650] = 493, - [2651] = 372, - [2652] = 338, - [2653] = 450, - [2654] = 347, - [2655] = 505, + [2648] = 359, + [2649] = 364, + [2650] = 2650, + [2651] = 2627, + [2652] = 696, + [2653] = 724, + [2654] = 725, + [2655] = 459, [2656] = 2656, - [2657] = 508, - [2658] = 440, - [2659] = 2566, - [2660] = 2579, - [2661] = 938, - [2662] = 2662, - [2663] = 941, - [2664] = 917, - [2665] = 481, - [2666] = 472, - [2667] = 2619, - [2668] = 495, - [2669] = 2633, - [2670] = 963, - [2671] = 2635, - [2672] = 2672, - [2673] = 507, - [2674] = 336, - [2675] = 965, - [2676] = 352, - [2677] = 503, - [2678] = 488, + [2657] = 350, + [2658] = 927, + [2659] = 929, + [2660] = 383, + [2661] = 515, + [2662] = 930, + [2663] = 931, + [2664] = 933, + [2665] = 934, + [2666] = 516, + [2667] = 517, + [2668] = 935, + [2669] = 1045, + [2670] = 498, + [2671] = 459, + [2672] = 515, + [2673] = 936, + [2674] = 516, + [2675] = 517, + [2676] = 937, + [2677] = 2677, + [2678] = 2678, [2679] = 2679, - [2680] = 355, - [2681] = 555, - [2682] = 498, - [2683] = 495, - [2684] = 2684, - [2685] = 496, - [2686] = 705, - [2687] = 717, - [2688] = 701, - [2689] = 702, - [2690] = 703, - [2691] = 2588, - [2692] = 2692, - [2693] = 931, - [2694] = 1937, - [2695] = 2588, - [2696] = 505, - [2697] = 496, - [2698] = 933, - [2699] = 983, - [2700] = 2569, - [2701] = 349, - [2702] = 478, - [2703] = 556, - [2704] = 508, - [2705] = 477, - [2706] = 957, - [2707] = 493, - [2708] = 2596, - [2709] = 369, - [2710] = 497, - [2711] = 488, - [2712] = 974, - [2713] = 738, - [2714] = 2714, - [2715] = 477, - [2716] = 702, - [2717] = 2717, - [2718] = 703, - [2719] = 1937, - [2720] = 2720, - [2721] = 2721, - [2722] = 491, - [2723] = 497, - [2724] = 505, - [2725] = 507, - [2726] = 495, - [2727] = 496, - [2728] = 493, - [2729] = 2729, + [2680] = 359, + [2681] = 487, + [2682] = 2634, + [2683] = 2683, + [2684] = 2635, + [2685] = 493, + [2686] = 2636, + [2687] = 2646, + [2688] = 2647, + [2689] = 2650, + [2690] = 506, + [2691] = 920, + [2692] = 1954, + [2693] = 2693, + [2694] = 2575, + [2695] = 2576, + [2696] = 508, + [2697] = 509, + [2698] = 690, + [2699] = 528, + [2700] = 450, + [2701] = 2632, + [2702] = 2632, + [2703] = 511, + [2704] = 498, + [2705] = 506, + [2706] = 489, + [2707] = 2707, + [2708] = 499, + [2709] = 2709, + [2710] = 2710, + [2711] = 509, + [2712] = 379, + [2713] = 347, + [2714] = 730, + [2715] = 696, + [2716] = 724, + [2717] = 725, + [2718] = 727, + [2719] = 481, + [2720] = 507, + [2721] = 511, + [2722] = 353, + [2723] = 508, + [2724] = 367, + [2725] = 510, + [2726] = 364, + [2727] = 708, + [2728] = 2728, + [2729] = 1045, [2730] = 2730, - [2731] = 2731, + [2731] = 730, [2732] = 2732, - [2733] = 440, - [2734] = 957, - [2735] = 2735, + [2733] = 2733, + [2734] = 487, + [2735] = 696, [2736] = 2736, - [2737] = 732, + [2737] = 347, [2738] = 2738, - [2739] = 2739, - [2740] = 707, - [2741] = 2741, - [2742] = 2742, - [2743] = 2743, - [2744] = 2744, - [2745] = 2745, - [2746] = 2746, - [2747] = 2747, - [2748] = 2748, - [2749] = 2749, - [2750] = 2750, - [2751] = 2751, + [2739] = 493, + [2740] = 509, + [2741] = 367, + [2742] = 379, + [2743] = 515, + [2744] = 724, + [2745] = 350, + [2746] = 511, + [2747] = 516, + [2748] = 353, + [2749] = 517, + [2750] = 725, + [2751] = 727, [2752] = 2752, [2753] = 2753, [2754] = 2754, @@ -7806,57 +7806,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2757] = 2757, [2758] = 2758, [2759] = 2759, - [2760] = 963, + [2760] = 2760, [2761] = 2761, [2762] = 2762, - [2763] = 965, + [2763] = 2763, [2764] = 2764, [2765] = 2765, [2766] = 2766, - [2767] = 917, + [2767] = 2767, [2768] = 2768, - [2769] = 931, + [2769] = 2769, [2770] = 2770, [2771] = 2771, - [2772] = 450, - [2773] = 738, - [2774] = 933, + [2772] = 2772, + [2773] = 2773, + [2774] = 2774, [2775] = 2775, [2776] = 2776, [2777] = 2777, [2778] = 2778, [2779] = 2779, - [2780] = 705, - [2781] = 478, + [2780] = 2780, + [2781] = 2781, [2782] = 2782, - [2783] = 450, + [2783] = 2783, [2784] = 2784, [2785] = 2785, [2786] = 2786, - [2787] = 2731, - [2788] = 2788, - [2789] = 938, - [2790] = 941, + [2787] = 2787, + [2788] = 927, + [2789] = 489, + [2790] = 929, [2791] = 2791, - [2792] = 372, + [2792] = 705, [2793] = 2793, - [2794] = 2794, + [2794] = 713, [2795] = 2795, [2796] = 2796, [2797] = 2797, - [2798] = 2798, + [2798] = 450, [2799] = 2799, [2800] = 2800, - [2801] = 336, + [2801] = 459, [2802] = 2802, [2803] = 2803, [2804] = 2804, - [2805] = 717, + [2805] = 2805, [2806] = 2806, [2807] = 2807, [2808] = 2808, - [2809] = 2809, - [2810] = 355, + [2809] = 459, + [2810] = 2810, [2811] = 2811, [2812] = 2812, [2813] = 2813, @@ -7864,52 +7864,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2815] = 2815, [2816] = 2816, [2817] = 2817, - [2818] = 488, + [2818] = 2818, [2819] = 2819, [2820] = 2820, [2821] = 2821, [2822] = 2822, [2823] = 2823, [2824] = 2824, - [2825] = 338, + [2825] = 930, [2826] = 2826, [2827] = 2827, [2828] = 2828, [2829] = 2829, - [2830] = 708, + [2830] = 931, [2831] = 2831, - [2832] = 2832, - [2833] = 2833, - [2834] = 2834, + [2832] = 2632, + [2833] = 714, + [2834] = 481, [2835] = 2835, [2836] = 2836, - [2837] = 2837, - [2838] = 2838, - [2839] = 2839, - [2840] = 508, - [2841] = 974, - [2842] = 2842, - [2843] = 709, - [2844] = 369, - [2845] = 498, + [2837] = 499, + [2838] = 507, + [2839] = 508, + [2840] = 510, + [2841] = 498, + [2842] = 506, + [2843] = 933, + [2844] = 2844, + [2845] = 2845, [2846] = 2846, - [2847] = 2847, - [2848] = 983, + [2847] = 934, + [2848] = 2848, [2849] = 2849, - [2850] = 2731, - [2851] = 352, - [2852] = 481, - [2853] = 2853, + [2850] = 2850, + [2851] = 2851, + [2852] = 2852, + [2853] = 920, [2854] = 2854, - [2855] = 2588, - [2856] = 2856, + [2855] = 2855, + [2856] = 935, [2857] = 2857, [2858] = 2858, [2859] = 2859, [2860] = 2860, [2861] = 2861, - [2862] = 2588, - [2863] = 1962, + [2862] = 2862, + [2863] = 2863, [2864] = 2864, [2865] = 2865, [2866] = 2866, @@ -7926,1109 +7926,1109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2877] = 2877, [2878] = 2878, [2879] = 2879, - [2880] = 2880, + [2880] = 2632, [2881] = 2881, [2882] = 2882, [2883] = 2883, [2884] = 2884, [2885] = 2885, [2886] = 2886, - [2887] = 701, - [2888] = 2679, + [2887] = 2887, + [2888] = 1954, [2889] = 2889, - [2890] = 2714, + [2890] = 2890, [2891] = 2891, [2892] = 2892, [2893] = 2893, - [2894] = 2894, - [2895] = 2895, + [2894] = 2821, + [2895] = 2821, [2896] = 2896, [2897] = 2897, [2898] = 2898, [2899] = 2899, [2900] = 2900, [2901] = 2901, - [2902] = 503, - [2903] = 472, + [2902] = 2902, + [2903] = 1998, [2904] = 2904, [2905] = 2905, - [2906] = 2906, - [2907] = 2907, - [2908] = 477, + [2906] = 936, + [2907] = 937, + [2908] = 383, [2909] = 2909, - [2910] = 2895, - [2911] = 1962, - [2912] = 2870, - [2913] = 717, - [2914] = 914, - [2915] = 2871, - [2916] = 983, - [2917] = 478, + [2910] = 2709, + [2911] = 2710, + [2912] = 2912, + [2913] = 2913, + [2914] = 2914, + [2915] = 2915, + [2916] = 2916, + [2917] = 2917, [2918] = 2918, - [2919] = 2514, - [2920] = 2506, - [2921] = 352, - [2922] = 729, - [2923] = 2776, - [2924] = 2874, - [2925] = 2882, + [2919] = 2867, + [2920] = 2865, + [2921] = 2866, + [2922] = 930, + [2923] = 2868, + [2924] = 2869, + [2925] = 2899, [2926] = 2926, - [2927] = 716, - [2928] = 2817, - [2929] = 2929, - [2930] = 2930, - [2931] = 2931, - [2932] = 963, - [2933] = 716, - [2934] = 2816, - [2935] = 2935, - [2936] = 493, - [2937] = 2531, - [2938] = 2892, - [2939] = 931, - [2940] = 732, - [2941] = 967, - [2942] = 2876, - [2943] = 2943, - [2944] = 390, - [2945] = 2945, - [2946] = 2877, - [2947] = 2892, - [2948] = 472, - [2949] = 2949, - [2950] = 933, - [2951] = 2730, - [2952] = 2536, - [2953] = 2894, - [2954] = 2895, - [2955] = 2896, - [2956] = 2537, - [2957] = 2878, + [2927] = 727, + [2928] = 2928, + [2929] = 2528, + [2930] = 2846, + [2931] = 516, + [2932] = 2916, + [2933] = 2917, + [2934] = 2934, + [2935] = 2516, + [2936] = 978, + [2937] = 2937, + [2938] = 2569, + [2939] = 2844, + [2940] = 2542, + [2941] = 1045, + [2942] = 708, + [2943] = 2819, + [2944] = 2944, + [2945] = 367, + [2946] = 953, + [2947] = 517, + [2948] = 487, + [2949] = 742, + [2950] = 2950, + [2951] = 2951, + [2952] = 697, + [2953] = 2953, + [2954] = 2954, + [2955] = 515, + [2956] = 737, + [2957] = 2550, [2958] = 2958, - [2959] = 965, - [2960] = 2960, - [2961] = 488, - [2962] = 2962, + [2959] = 459, + [2960] = 489, + [2961] = 2520, + [2962] = 481, [2963] = 2963, - [2964] = 941, - [2965] = 957, - [2966] = 2524, - [2967] = 738, - [2968] = 2930, - [2969] = 917, - [2970] = 2970, - [2971] = 2894, + [2964] = 2964, + [2965] = 2533, + [2966] = 2519, + [2967] = 2550, + [2968] = 2528, + [2969] = 2969, + [2970] = 350, + [2971] = 2971, [2972] = 2972, - [2973] = 2880, - [2974] = 498, - [2975] = 2881, - [2976] = 2524, - [2977] = 2897, - [2978] = 2898, - [2979] = 2899, - [2980] = 2900, - [2981] = 918, - [2982] = 2731, - [2983] = 2901, - [2984] = 2904, - [2985] = 2905, - [2986] = 2986, - [2987] = 372, - [2988] = 708, + [2973] = 2973, + [2974] = 2974, + [2975] = 353, + [2976] = 2915, + [2977] = 2977, + [2978] = 2542, + [2979] = 713, + [2980] = 714, + [2981] = 742, + [2982] = 2831, + [2983] = 730, + [2984] = 2984, + [2985] = 2985, + [2986] = 2519, + [2987] = 696, + [2988] = 2969, [2989] = 2989, [2990] = 2990, - [2991] = 2536, - [2992] = 701, - [2993] = 2531, - [2994] = 2858, - [2995] = 2514, - [2996] = 338, - [2997] = 713, - [2998] = 702, - [2999] = 703, - [3000] = 2860, - [3001] = 709, - [3002] = 3002, - [3003] = 938, - [3004] = 927, - [3005] = 2842, - [3006] = 2931, - [3007] = 2935, - [3008] = 705, - [3009] = 2849, - [3010] = 3010, - [3011] = 3011, - [3012] = 3012, - [3013] = 355, - [3014] = 3014, - [3015] = 974, - [3016] = 2538, - [3017] = 2861, - [3018] = 3018, - [3019] = 2742, - [3020] = 450, - [3021] = 3021, - [3022] = 2506, - [3023] = 2990, - [3024] = 3024, - [3025] = 481, - [3026] = 707, - [3027] = 2896, - [3028] = 2806, - [3029] = 2539, - [3030] = 3030, - [3031] = 3031, - [3032] = 2537, - [3033] = 2835, - [3034] = 811, - [3035] = 791, - [3036] = 792, - [3037] = 793, - [3038] = 918, - [3039] = 798, - [3040] = 416, - [3041] = 799, - [3042] = 800, - [3043] = 712, - [3044] = 970, - [3045] = 3045, - [3046] = 710, - [3047] = 808, - [3048] = 809, + [2991] = 2864, + [2992] = 2793, + [2993] = 2990, + [2994] = 383, + [2995] = 406, + [2996] = 2996, + [2997] = 2997, + [2998] = 954, + [2999] = 935, + [3000] = 927, + [3001] = 2926, + [3002] = 933, + [3003] = 3003, + [3004] = 2791, + [3005] = 934, + [3006] = 2849, + [3007] = 1998, + [3008] = 2989, + [3009] = 705, + [3010] = 2851, + [3011] = 929, + [3012] = 2915, + [3013] = 931, + [3014] = 936, + [3015] = 937, + [3016] = 2916, + [3017] = 2917, + [3018] = 2793, + [3019] = 3019, + [3020] = 724, + [3021] = 2852, + [3022] = 725, + [3023] = 3023, + [3024] = 2854, + [3025] = 2855, + [3026] = 974, + [3027] = 2516, + [3028] = 493, + [3029] = 2857, + [3030] = 2569, + [3031] = 2996, + [3032] = 2826, + [3033] = 2918, + [3034] = 2821, + [3035] = 2828, + [3036] = 2858, + [3037] = 3037, + [3038] = 3038, + [3039] = 2859, + [3040] = 2835, + [3041] = 920, + [3042] = 2860, + [3043] = 3043, + [3044] = 2861, + [3045] = 2862, + [3046] = 2863, + [3047] = 3019, + [3048] = 2915, [3049] = 3049, - [3050] = 865, + [3050] = 406, [3051] = 3051, - [3052] = 934, - [3053] = 812, - [3054] = 3054, - [3055] = 390, - [3056] = 914, - [3057] = 878, - [3058] = 881, - [3059] = 884, - [3060] = 848, - [3061] = 849, - [3062] = 967, - [3063] = 790, - [3064] = 791, - [3065] = 792, - [3066] = 793, - [3067] = 798, - [3068] = 799, - [3069] = 800, - [3070] = 2986, - [3071] = 3071, - [3072] = 3010, - [3073] = 2606, - [3074] = 808, - [3075] = 809, - [3076] = 3076, - [3077] = 811, - [3078] = 812, - [3079] = 3079, - [3080] = 3080, - [3081] = 3081, - [3082] = 927, - [3083] = 3083, - [3084] = 848, - [3085] = 849, - [3086] = 3086, - [3087] = 3087, - [3088] = 918, - [3089] = 2960, - [3090] = 914, + [3052] = 3052, + [3053] = 760, + [3054] = 764, + [3055] = 765, + [3056] = 2542, + [3057] = 768, + [3058] = 2219, + [3059] = 2926, + [3060] = 737, + [3061] = 920, + [3062] = 927, + [3063] = 2639, + [3064] = 929, + [3065] = 2640, + [3066] = 2641, + [3067] = 930, + [3068] = 782, + [3069] = 931, + [3070] = 2642, + [3071] = 933, + [3072] = 934, + [3073] = 788, + [3074] = 790, + [3075] = 406, + [3076] = 935, + [3077] = 2693, + [3078] = 2637, + [3079] = 936, + [3080] = 937, + [3081] = 2916, + [3082] = 785, + [3083] = 786, + [3084] = 801, + [3085] = 802, + [3086] = 803, + [3087] = 804, + [3088] = 805, + [3089] = 3089, + [3090] = 3090, [3091] = 3091, - [3092] = 967, + [3092] = 2996, [3093] = 3093, [3094] = 3094, - [3095] = 3095, - [3096] = 3096, - [3097] = 3097, - [3098] = 3098, + [3095] = 740, + [3096] = 3003, + [3097] = 945, + [3098] = 744, [3099] = 3099, - [3100] = 390, + [3100] = 3100, [3101] = 3101, - [3102] = 3014, - [3103] = 2963, - [3104] = 738, - [3105] = 974, - [3106] = 3106, - [3107] = 3107, - [3108] = 2929, - [3109] = 3109, - [3110] = 957, - [3111] = 3111, - [3112] = 963, - [3113] = 965, - [3114] = 917, - [3115] = 931, - [3116] = 390, - [3117] = 933, - [3118] = 983, - [3119] = 938, - [3120] = 941, - [3121] = 2514, - [3122] = 2945, - [3123] = 2536, - [3124] = 2537, - [3125] = 2909, - [3126] = 2610, - [3127] = 2656, - [3128] = 372, - [3129] = 3129, + [3102] = 2638, + [3103] = 762, + [3104] = 949, + [3105] = 418, + [3106] = 954, + [3107] = 795, + [3108] = 903, + [3109] = 2550, + [3110] = 917, + [3111] = 2917, + [3112] = 772, + [3113] = 3113, + [3114] = 775, + [3115] = 776, + [3116] = 777, + [3117] = 978, + [3118] = 900, + [3119] = 412, + [3120] = 783, + [3121] = 784, + [3122] = 3122, + [3123] = 515, + [3124] = 516, + [3125] = 517, + [3126] = 740, + [3127] = 2643, + [3128] = 945, + [3129] = 744, [3130] = 3130, [3131] = 3131, [3132] = 3132, [3133] = 3133, [3134] = 3134, - [3135] = 3135, + [3135] = 809, [3136] = 3136, - [3137] = 493, - [3138] = 488, - [3139] = 498, + [3137] = 3137, + [3138] = 3138, + [3139] = 810, [3140] = 3140, [3141] = 3141, - [3142] = 3142, - [3143] = 450, - [3144] = 2587, - [3145] = 2629, - [3146] = 3146, - [3147] = 3147, + [3142] = 762, + [3143] = 949, + [3144] = 814, + [3145] = 815, + [3146] = 406, + [3147] = 459, [3148] = 3148, [3149] = 3149, - [3150] = 2892, + [3150] = 3150, [3151] = 3151, [3152] = 3152, - [3153] = 3153, + [3153] = 953, [3154] = 3154, [3155] = 3155, [3156] = 3156, - [3157] = 2894, - [3158] = 3158, - [3159] = 3159, - [3160] = 2531, - [3161] = 2506, - [3162] = 2514, - [3163] = 3163, - [3164] = 3164, - [3165] = 3165, + [3157] = 3157, + [3158] = 2915, + [3159] = 2520, + [3160] = 3160, + [3161] = 795, + [3162] = 903, + [3163] = 2533, + [3164] = 2528, + [3165] = 745, [3166] = 3166, - [3167] = 3167, - [3168] = 3168, - [3169] = 3169, - [3170] = 3170, - [3171] = 3171, - [3172] = 2536, - [3173] = 385, - [3174] = 2537, - [3175] = 2892, - [3176] = 3176, - [3177] = 3177, - [3178] = 3178, + [3167] = 901, + [3168] = 974, + [3169] = 2916, + [3170] = 772, + [3171] = 1045, + [3172] = 3160, + [3173] = 775, + [3174] = 776, + [3175] = 777, + [3176] = 2179, + [3177] = 2180, + [3178] = 900, [3179] = 3179, - [3180] = 3180, - [3181] = 2524, - [3182] = 2894, - [3183] = 2895, - [3184] = 3184, - [3185] = 3185, - [3186] = 2896, - [3187] = 716, - [3188] = 713, + [3180] = 783, + [3181] = 784, + [3182] = 3182, + [3183] = 3183, + [3184] = 2215, + [3185] = 2519, + [3186] = 3186, + [3187] = 3187, + [3188] = 2793, [3189] = 3189, - [3190] = 485, - [3191] = 3191, - [3192] = 2531, - [3193] = 2207, - [3194] = 729, - [3195] = 2506, + [3190] = 3190, + [3191] = 2542, + [3192] = 2528, + [3193] = 3193, + [3194] = 3193, + [3195] = 383, [3196] = 3196, - [3197] = 2778, - [3198] = 2538, - [3199] = 2539, - [3200] = 2186, - [3201] = 2155, - [3202] = 2194, + [3197] = 3197, + [3198] = 3198, + [3199] = 3199, + [3200] = 3200, + [3201] = 3201, + [3202] = 389, [3203] = 3203, - [3204] = 2895, - [3205] = 2896, - [3206] = 2788, - [3207] = 824, - [3208] = 3208, - [3209] = 780, - [3210] = 783, - [3211] = 784, - [3212] = 788, - [3213] = 794, - [3214] = 795, - [3215] = 796, - [3216] = 2599, - [3217] = 2601, - [3218] = 801, - [3219] = 802, - [3220] = 803, - [3221] = 804, - [3222] = 805, - [3223] = 806, - [3224] = 807, - [3225] = 2602, - [3226] = 712, - [3227] = 2604, - [3228] = 970, - [3229] = 710, - [3230] = 865, - [3231] = 934, - [3232] = 410, - [3233] = 927, - [3234] = 878, - [3235] = 881, + [3204] = 3204, + [3205] = 2516, + [3206] = 2973, + [3207] = 3207, + [3208] = 2917, + [3209] = 2569, + [3210] = 3210, + [3211] = 3211, + [3212] = 3212, + [3213] = 3213, + [3214] = 809, + [3215] = 810, + [3216] = 2793, + [3217] = 742, + [3218] = 3218, + [3219] = 3219, + [3220] = 3220, + [3221] = 3221, + [3222] = 3222, + [3223] = 3223, + [3224] = 3224, + [3225] = 3225, + [3226] = 814, + [3227] = 815, + [3228] = 3228, + [3229] = 3037, + [3230] = 3230, + [3231] = 3231, + [3232] = 3232, + [3233] = 697, + [3234] = 3234, + [3235] = 954, [3236] = 3236, - [3237] = 884, + [3237] = 3237, [3238] = 3238, - [3239] = 790, - [3240] = 3240, - [3241] = 2524, - [3242] = 3242, - [3243] = 390, - [3244] = 3244, - [3245] = 927, - [3246] = 403, - [3247] = 914, - [3248] = 385, - [3249] = 3141, - [3250] = 2186, - [3251] = 2155, - [3252] = 3252, - [3253] = 2194, - [3254] = 3148, - [3255] = 3142, - [3256] = 416, - [3257] = 3257, - [3258] = 413, - [3259] = 408, - [3260] = 411, - [3261] = 3203, - [3262] = 3262, - [3263] = 918, + [3239] = 2516, + [3240] = 2996, + [3241] = 2569, + [3242] = 3043, + [3243] = 745, + [3244] = 901, + [3245] = 2820, + [3246] = 978, + [3247] = 2822, + [3248] = 2519, + [3249] = 774, + [3250] = 2926, + [3251] = 953, + [3252] = 974, + [3253] = 2934, + [3254] = 3254, + [3255] = 503, + [3256] = 3038, + [3257] = 2633, + [3258] = 2550, + [3259] = 917, + [3260] = 777, + [3261] = 3204, + [3262] = 412, + [3263] = 765, [3264] = 3264, - [3265] = 3265, - [3266] = 3266, - [3267] = 3178, - [3268] = 712, - [3269] = 3149, - [3270] = 970, - [3271] = 710, - [3272] = 3179, - [3273] = 865, - [3274] = 934, + [3265] = 418, + [3266] = 974, + [3267] = 389, + [3268] = 768, + [3269] = 745, + [3270] = 3270, + [3271] = 3271, + [3272] = 418, + [3273] = 901, + [3274] = 2633, [3275] = 3275, - [3276] = 3180, - [3277] = 824, - [3278] = 527, + [3276] = 3276, + [3277] = 3277, + [3278] = 3278, [3279] = 3279, - [3280] = 385, + [3280] = 3280, [3281] = 3281, - [3282] = 410, + [3282] = 3282, [3283] = 3283, - [3284] = 416, - [3285] = 3130, - [3286] = 927, - [3287] = 878, - [3288] = 881, - [3289] = 884, - [3290] = 3290, - [3291] = 780, - [3292] = 783, - [3293] = 784, - [3294] = 3203, - [3295] = 788, - [3296] = 2610, - [3297] = 3151, + [3284] = 412, + [3285] = 2693, + [3286] = 3286, + [3287] = 412, + [3288] = 3288, + [3289] = 3228, + [3290] = 772, + [3291] = 3291, + [3292] = 2984, + [3293] = 954, + [3294] = 775, + [3295] = 3219, + [3296] = 776, + [3297] = 3297, [3298] = 3298, - [3299] = 2656, - [3300] = 3031, - [3301] = 3021, - [3302] = 3147, - [3303] = 790, - [3304] = 791, - [3305] = 792, - [3306] = 793, - [3307] = 918, - [3308] = 794, - [3309] = 795, - [3310] = 796, - [3311] = 798, - [3312] = 3152, - [3313] = 3313, - [3314] = 799, - [3315] = 800, - [3316] = 801, - [3317] = 802, - [3318] = 803, - [3319] = 804, - [3320] = 805, - [3321] = 806, - [3322] = 807, - [3323] = 2587, - [3324] = 2629, - [3325] = 3136, - [3326] = 3129, - [3327] = 2601, - [3328] = 2602, - [3329] = 2604, - [3330] = 2606, + [3299] = 406, + [3300] = 2179, + [3301] = 978, + [3302] = 954, + [3303] = 2985, + [3304] = 795, + [3305] = 3230, + [3306] = 389, + [3307] = 782, + [3308] = 3308, + [3309] = 3222, + [3310] = 788, + [3311] = 3282, + [3312] = 3283, + [3313] = 790, + [3314] = 903, + [3315] = 3275, + [3316] = 424, + [3317] = 3317, + [3318] = 415, + [3319] = 417, + [3320] = 419, + [3321] = 900, + [3322] = 2215, + [3323] = 3223, + [3324] = 3324, + [3325] = 3236, + [3326] = 3326, + [3327] = 3327, + [3328] = 783, + [3329] = 784, + [3330] = 917, [3331] = 3331, [3332] = 3332, - [3333] = 410, - [3334] = 808, - [3335] = 809, - [3336] = 3336, - [3337] = 3337, - [3338] = 811, - [3339] = 812, - [3340] = 914, - [3341] = 3341, - [3342] = 3342, - [3343] = 848, - [3344] = 849, - [3345] = 3184, - [3346] = 3185, - [3347] = 3347, - [3348] = 3348, - [3349] = 967, - [3350] = 3350, - [3351] = 410, - [3352] = 3352, - [3353] = 3353, - [3354] = 967, + [3333] = 3333, + [3334] = 3113, + [3335] = 3212, + [3336] = 3225, + [3337] = 785, + [3338] = 3338, + [3339] = 3339, + [3340] = 978, + [3341] = 801, + [3342] = 802, + [3343] = 803, + [3344] = 804, + [3345] = 805, + [3346] = 2637, + [3347] = 2638, + [3348] = 740, + [3349] = 2639, + [3350] = 2640, + [3351] = 2641, + [3352] = 3276, + [3353] = 3207, + [3354] = 2642, [3355] = 3355, - [3356] = 3356, - [3357] = 416, - [3358] = 3131, - [3359] = 3132, + [3356] = 945, + [3357] = 3357, + [3358] = 3358, + [3359] = 3359, [3360] = 3360, - [3361] = 3360, - [3362] = 3360, - [3363] = 3283, - [3364] = 3244, - [3365] = 3290, - [3366] = 3283, - [3367] = 390, - [3368] = 3368, - [3369] = 3156, - [3370] = 3133, - [3371] = 3371, - [3372] = 385, - [3373] = 3155, - [3374] = 3106, - [3375] = 3107, - [3376] = 3109, - [3377] = 3163, - [3378] = 3164, - [3379] = 3165, - [3380] = 3166, - [3381] = 3236, - [3382] = 3238, - [3383] = 3240, - [3384] = 3076, - [3385] = 3134, - [3386] = 2207, - [3387] = 3387, - [3388] = 3352, - [3389] = 3353, - [3390] = 3146, - [3391] = 3391, - [3392] = 3392, - [3393] = 3393, - [3394] = 3135, - [3395] = 2599, - [3396] = 3396, - [3397] = 807, - [3398] = 3398, - [3399] = 3399, - [3400] = 3400, - [3401] = 3401, - [3402] = 3402, - [3403] = 3403, - [3404] = 3264, - [3405] = 3265, - [3406] = 3406, - [3407] = 3407, - [3408] = 3408, - [3409] = 3266, - [3410] = 410, - [3411] = 3411, + [3361] = 3140, + [3362] = 3141, + [3363] = 3363, + [3364] = 2643, + [3365] = 3365, + [3366] = 809, + [3367] = 810, + [3368] = 744, + [3369] = 760, + [3370] = 3370, + [3371] = 2180, + [3372] = 3298, + [3373] = 953, + [3374] = 3207, + [3375] = 418, + [3376] = 762, + [3377] = 764, + [3378] = 949, + [3379] = 974, + [3380] = 3297, + [3381] = 3298, + [3382] = 2219, + [3383] = 3210, + [3384] = 3211, + [3385] = 814, + [3386] = 406, + [3387] = 3297, + [3388] = 815, + [3389] = 3224, + [3390] = 3390, + [3391] = 3254, + [3392] = 3213, + [3393] = 3218, + [3394] = 3220, + [3395] = 3179, + [3396] = 3182, + [3397] = 3183, + [3398] = 3186, + [3399] = 3089, + [3400] = 3090, + [3401] = 3091, + [3402] = 3131, + [3403] = 953, + [3404] = 3196, + [3405] = 3197, + [3406] = 774, + [3407] = 3198, + [3408] = 3199, + [3409] = 3200, + [3410] = 530, + [3411] = 3201, [3412] = 3203, - [3413] = 3413, - [3414] = 3313, - [3415] = 416, + [3413] = 389, + [3414] = 3414, + [3415] = 786, [3416] = 3416, - [3417] = 3417, + [3417] = 3288, [3418] = 3418, [3419] = 3419, - [3420] = 3242, - [3421] = 2536, + [3420] = 3420, + [3421] = 3421, [3422] = 3422, - [3423] = 3423, - [3424] = 3424, + [3423] = 785, + [3424] = 786, [3425] = 3425, [3426] = 3426, - [3427] = 3427, + [3427] = 801, [3428] = 3428, [3429] = 3429, [3430] = 3430, [3431] = 3431, - [3432] = 2537, - [3433] = 416, - [3434] = 3434, - [3435] = 3435, - [3436] = 3436, - [3437] = 3437, - [3438] = 3438, + [3432] = 802, + [3433] = 3433, + [3434] = 803, + [3435] = 804, + [3436] = 3279, + [3437] = 805, + [3438] = 2516, [3439] = 3439, - [3440] = 3440, - [3441] = 3441, - [3442] = 3442, + [3440] = 2569, + [3441] = 92, + [3442] = 343, [3443] = 3443, - [3444] = 413, - [3445] = 2524, - [3446] = 3446, - [3447] = 408, + [3444] = 424, + [3445] = 3445, + [3446] = 344, + [3447] = 2519, [3448] = 3448, - [3449] = 3449, + [3449] = 93, [3450] = 3450, - [3451] = 3356, - [3452] = 3452, - [3453] = 390, + [3451] = 3207, + [3452] = 774, + [3453] = 3355, [3454] = 3454, [3455] = 3455, - [3456] = 391, + [3456] = 418, [3457] = 3457, - [3458] = 3458, - [3459] = 3449, + [3458] = 406, + [3459] = 3459, [3460] = 3460, [3461] = 3461, [3462] = 3462, [3463] = 3463, [3464] = 3464, [3465] = 3465, - [3466] = 3466, + [3466] = 424, [3467] = 3467, [3468] = 3468, - [3469] = 3469, - [3470] = 3470, - [3471] = 3471, - [3472] = 411, + [3469] = 3222, + [3470] = 3280, + [3471] = 3230, + [3472] = 3472, [3473] = 3473, [3474] = 3474, - [3475] = 794, - [3476] = 3476, - [3477] = 3477, - [3478] = 795, - [3479] = 3479, - [3480] = 3480, - [3481] = 403, - [3482] = 413, - [3483] = 408, - [3484] = 411, + [3475] = 3475, + [3476] = 424, + [3477] = 415, + [3478] = 417, + [3479] = 419, + [3480] = 3357, + [3481] = 3358, + [3482] = 415, + [3483] = 417, + [3484] = 419, [3485] = 3485, - [3486] = 3486, - [3487] = 3147, + [3486] = 3428, + [3487] = 2550, [3488] = 3488, [3489] = 3489, - [3490] = 3151, - [3491] = 796, - [3492] = 3152, - [3493] = 3156, + [3490] = 3490, + [3491] = 3491, + [3492] = 3359, + [3493] = 2528, [3494] = 3494, - [3495] = 93, + [3495] = 3236, [3496] = 3496, - [3497] = 92, - [3498] = 801, - [3499] = 802, - [3500] = 403, - [3501] = 3501, - [3502] = 93, - [3503] = 333, + [3497] = 3324, + [3498] = 3291, + [3499] = 3360, + [3500] = 415, + [3501] = 417, + [3502] = 3281, + [3503] = 2542, [3504] = 3504, - [3505] = 92, - [3506] = 3355, - [3507] = 3507, - [3508] = 803, + [3505] = 419, + [3506] = 2984, + [3507] = 2985, + [3508] = 3327, [3509] = 3509, - [3510] = 3510, + [3510] = 93, [3511] = 3511, - [3512] = 3368, + [3512] = 3512, [3513] = 3513, [3514] = 3514, - [3515] = 413, - [3516] = 408, - [3517] = 411, - [3518] = 3348, - [3519] = 3392, - [3520] = 804, - [3521] = 3393, + [3515] = 3515, + [3516] = 3370, + [3517] = 3517, + [3518] = 3518, + [3519] = 3519, + [3520] = 3520, + [3521] = 3521, [3522] = 3522, - [3523] = 3031, - [3524] = 3021, + [3523] = 412, + [3524] = 3524, [3525] = 3525, - [3526] = 3526, - [3527] = 3257, + [3526] = 760, + [3527] = 92, [3528] = 3528, [3529] = 3529, - [3530] = 93, - [3531] = 3531, - [3532] = 3532, - [3533] = 805, + [3530] = 3530, + [3531] = 764, + [3532] = 765, + [3533] = 3533, [3534] = 3534, - [3535] = 806, - [3536] = 92, - [3537] = 485, + [3535] = 3535, + [3536] = 768, + [3537] = 3278, [3538] = 3538, [3539] = 3539, [3540] = 3540, [3541] = 3541, - [3542] = 3542, - [3543] = 2531, - [3544] = 2506, - [3545] = 410, - [3546] = 3350, - [3547] = 3155, - [3548] = 3106, - [3549] = 3107, - [3550] = 3109, - [3551] = 3163, - [3552] = 3164, - [3553] = 3165, - [3554] = 3166, - [3555] = 3236, - [3556] = 3238, - [3557] = 3240, - [3558] = 3076, - [3559] = 3337, - [3560] = 3298, - [3561] = 2514, - [3562] = 335, - [3563] = 93, - [3564] = 824, - [3565] = 403, - [3566] = 92, - [3567] = 3360, - [3568] = 3387, - [3569] = 3283, - [3570] = 3342, + [3542] = 782, + [3543] = 788, + [3544] = 3308, + [3545] = 790, + [3546] = 3546, + [3547] = 92, + [3548] = 3390, + [3549] = 3254, + [3550] = 3213, + [3551] = 3218, + [3552] = 3220, + [3553] = 3179, + [3554] = 3182, + [3555] = 3183, + [3556] = 3186, + [3557] = 3089, + [3558] = 3090, + [3559] = 3091, + [3560] = 3131, + [3561] = 393, + [3562] = 93, + [3563] = 3563, + [3564] = 3564, + [3565] = 93, + [3566] = 3566, + [3567] = 3567, + [3568] = 3568, + [3569] = 3331, + [3570] = 3332, [3571] = 3571, [3572] = 3572, - [3573] = 3573, + [3573] = 418, [3574] = 3574, [3575] = 3575, - [3576] = 780, - [3577] = 3577, - [3578] = 3578, - [3579] = 783, - [3580] = 784, - [3581] = 788, + [3576] = 3333, + [3577] = 503, + [3578] = 412, + [3579] = 3579, + [3580] = 3228, + [3581] = 3581, [3582] = 3582, [3583] = 3583, [3584] = 3584, - [3585] = 414, + [3585] = 3585, [3586] = 3586, [3587] = 3587, - [3588] = 93, - [3589] = 96, - [3590] = 405, - [3591] = 92, + [3588] = 3588, + [3589] = 3589, + [3590] = 3590, + [3591] = 3297, [3592] = 3592, - [3593] = 98, - [3594] = 404, - [3595] = 96, - [3596] = 469, - [3597] = 3597, - [3598] = 98, - [3599] = 410, - [3600] = 93, - [3601] = 92, - [3602] = 385, - [3603] = 3584, - [3604] = 406, - [3605] = 3584, + [3593] = 3593, + [3594] = 3594, + [3595] = 3298, + [3596] = 3596, + [3597] = 92, + [3598] = 3598, + [3599] = 3599, + [3600] = 3600, + [3601] = 3601, + [3602] = 3602, + [3603] = 3603, + [3604] = 3604, + [3605] = 3605, [3606] = 3606, - [3607] = 3607, - [3608] = 527, + [3607] = 96, + [3608] = 422, [3609] = 3609, - [3610] = 98, - [3611] = 93, - [3612] = 342, - [3613] = 3584, - [3614] = 92, - [3615] = 343, - [3616] = 346, - [3617] = 348, - [3618] = 340, - [3619] = 341, - [3620] = 347, - [3621] = 349, - [3622] = 3584, - [3623] = 96, - [3624] = 98, - [3625] = 3283, - [3626] = 416, + [3610] = 412, + [3611] = 3611, + [3612] = 357, + [3613] = 359, + [3614] = 3614, + [3615] = 364, + [3616] = 92, + [3617] = 530, + [3618] = 3618, + [3619] = 3619, + [3620] = 3620, + [3621] = 3619, + [3622] = 3619, + [3623] = 354, + [3624] = 3619, + [3625] = 93, + [3626] = 93, [3627] = 3627, - [3628] = 96, - [3629] = 96, - [3630] = 98, - [3631] = 109, - [3632] = 3632, - [3633] = 108, - [3634] = 3634, - [3635] = 413, - [3636] = 450, - [3637] = 369, - [3638] = 3638, - [3639] = 450, - [3640] = 3640, - [3641] = 107, - [3642] = 3640, - [3643] = 3643, - [3644] = 3643, - [3645] = 411, - [3646] = 109, - [3647] = 3647, + [3628] = 3619, + [3629] = 389, + [3630] = 348, + [3631] = 349, + [3632] = 418, + [3633] = 92, + [3634] = 96, + [3635] = 3298, + [3636] = 100, + [3637] = 96, + [3638] = 360, + [3639] = 351, + [3640] = 96, + [3641] = 464, + [3642] = 3642, + [3643] = 100, + [3644] = 92, + [3645] = 421, + [3646] = 100, + [3647] = 416, [3648] = 3648, [3649] = 3649, - [3650] = 108, - [3651] = 3632, - [3652] = 450, - [3653] = 3597, - [3654] = 3634, - [3655] = 2471, - [3656] = 96, - [3657] = 450, - [3658] = 403, + [3650] = 93, + [3651] = 100, + [3652] = 420, + [3653] = 3653, + [3654] = 107, + [3655] = 459, + [3656] = 3656, + [3657] = 3657, + [3658] = 459, [3659] = 3659, - [3660] = 98, - [3661] = 107, - [3662] = 3640, - [3663] = 3643, - [3664] = 3659, - [3665] = 3640, - [3666] = 3643, - [3667] = 3640, - [3668] = 3643, - [3669] = 3659, - [3670] = 3640, - [3671] = 3643, - [3672] = 3659, - [3673] = 440, - [3674] = 109, - [3675] = 3640, - [3676] = 3643, - [3677] = 3659, - [3678] = 96, - [3679] = 3640, - [3680] = 3643, - [3681] = 3659, - [3682] = 3640, - [3683] = 3643, - [3684] = 3659, - [3685] = 3640, - [3686] = 3643, - [3687] = 3659, - [3688] = 3640, - [3689] = 3643, - [3690] = 3659, - [3691] = 3640, - [3692] = 3643, - [3693] = 3659, - [3694] = 3640, - [3695] = 3643, - [3696] = 3659, - [3697] = 3640, - [3698] = 3643, - [3699] = 3659, - [3700] = 3659, - [3701] = 3659, - [3702] = 3659, - [3703] = 3659, - [3704] = 3659, - [3705] = 3659, - [3706] = 3659, - [3707] = 3659, - [3708] = 3648, - [3709] = 108, - [3710] = 3649, - [3711] = 3659, - [3712] = 440, - [3713] = 98, - [3714] = 440, - [3715] = 107, - [3716] = 440, - [3717] = 107, - [3718] = 109, - [3719] = 108, - [3720] = 3659, - [3721] = 408, - [3722] = 3722, - [3723] = 3723, - [3724] = 1854, - [3725] = 342, - [3726] = 3723, - [3727] = 3727, - [3728] = 3727, - [3729] = 343, - [3730] = 108, - [3731] = 3722, - [3732] = 3722, - [3733] = 346, - [3734] = 3734, - [3735] = 3722, - [3736] = 3734, - [3737] = 1854, - [3738] = 107, - [3739] = 481, - [3740] = 3722, - [3741] = 348, - [3742] = 3734, - [3743] = 340, - [3744] = 341, - [3745] = 477, - [3746] = 3722, - [3747] = 3722, - [3748] = 93, - [3749] = 3734, - [3750] = 3722, - [3751] = 3734, - [3752] = 3727, - [3753] = 3722, - [3754] = 3734, - [3755] = 3755, - [3756] = 450, - [3757] = 3734, - [3758] = 3722, - [3759] = 3638, - [3760] = 3722, - [3761] = 3722, - [3762] = 3722, - [3763] = 3763, - [3764] = 3722, - [3765] = 3765, - [3766] = 3722, - [3767] = 3722, - [3768] = 92, - [3769] = 3722, - [3770] = 107, - [3771] = 3727, - [3772] = 477, - [3773] = 107, - [3774] = 3734, - [3775] = 481, - [3776] = 440, - [3777] = 3722, - [3778] = 440, - [3779] = 109, - [3780] = 108, - [3781] = 495, - [3782] = 505, - [3783] = 3734, - [3784] = 3734, - [3785] = 3765, - [3786] = 477, - [3787] = 3734, - [3788] = 3723, - [3789] = 3765, - [3790] = 481, - [3791] = 477, - [3792] = 109, - [3793] = 3734, - [3794] = 3765, - [3795] = 3795, - [3796] = 450, - [3797] = 3734, - [3798] = 109, - [3799] = 108, - [3800] = 3723, - [3801] = 496, - [3802] = 481, - [3803] = 3803, - [3804] = 3804, - [3805] = 477, - [3806] = 3806, - [3807] = 498, - [3808] = 493, - [3809] = 3804, - [3810] = 3804, - [3811] = 3811, - [3812] = 488, - [3813] = 3804, - [3814] = 3804, - [3815] = 96, - [3816] = 555, - [3817] = 3804, - [3818] = 493, - [3819] = 481, - [3820] = 488, - [3821] = 3804, - [3822] = 3822, - [3823] = 333, - [3824] = 3804, - [3825] = 498, - [3826] = 493, - [3827] = 3804, - [3828] = 3804, - [3829] = 488, - [3830] = 556, - [3831] = 498, - [3832] = 3804, - [3833] = 493, - [3834] = 3834, - [3835] = 555, - [3836] = 3804, - [3837] = 555, - [3838] = 92, - [3839] = 3811, - [3840] = 498, - [3841] = 488, - [3842] = 481, - [3843] = 477, - [3844] = 93, - [3845] = 556, - [3846] = 98, - [3847] = 335, - [3848] = 556, - [3849] = 3804, - [3850] = 3795, - [3851] = 503, - [3852] = 497, - [3853] = 3853, - [3854] = 3854, - [3855] = 3855, - [3856] = 3856, - [3857] = 556, - [3858] = 3858, - [3859] = 3859, - [3860] = 3860, - [3861] = 3861, - [3862] = 3862, - [3863] = 497, - [3864] = 491, - [3865] = 3865, - [3866] = 3866, - [3867] = 109, - [3868] = 556, - [3869] = 3869, - [3870] = 3870, - [3871] = 3871, - [3872] = 3872, - [3873] = 3869, - [3874] = 3862, - [3875] = 3869, - [3876] = 3876, - [3877] = 493, - [3878] = 450, - [3879] = 488, + [3660] = 107, + [3661] = 106, + [3662] = 3656, + [3663] = 3663, + [3664] = 3664, + [3665] = 3657, + [3666] = 3656, + [3667] = 3657, + [3668] = 3653, + [3669] = 100, + [3670] = 3656, + [3671] = 3657, + [3672] = 3653, + [3673] = 3656, + [3674] = 3657, + [3675] = 3653, + [3676] = 3656, + [3677] = 3657, + [3678] = 3653, + [3679] = 3656, + [3680] = 3657, + [3681] = 3653, + [3682] = 3656, + [3683] = 3657, + [3684] = 3653, + [3685] = 3656, + [3686] = 3657, + [3687] = 3653, + [3688] = 3656, + [3689] = 3657, + [3690] = 3653, + [3691] = 3653, + [3692] = 3653, + [3693] = 3653, + [3694] = 3653, + [3695] = 3653, + [3696] = 3653, + [3697] = 3653, + [3698] = 3653, + [3699] = 2475, + [3700] = 3653, + [3701] = 96, + [3702] = 424, + [3703] = 459, + [3704] = 3653, + [3705] = 104, + [3706] = 96, + [3707] = 3707, + [3708] = 100, + [3709] = 100, + [3710] = 104, + [3711] = 107, + [3712] = 3656, + [3713] = 3657, + [3714] = 3648, + [3715] = 104, + [3716] = 3653, + [3717] = 450, + [3718] = 450, + [3719] = 3719, + [3720] = 459, + [3721] = 417, + [3722] = 3719, + [3723] = 96, + [3724] = 106, + [3725] = 419, + [3726] = 3656, + [3727] = 3657, + [3728] = 3728, + [3729] = 3664, + [3730] = 3728, + [3731] = 450, + [3732] = 379, + [3733] = 106, + [3734] = 106, + [3735] = 3656, + [3736] = 3657, + [3737] = 3653, + [3738] = 3653, + [3739] = 3663, + [3740] = 415, + [3741] = 450, + [3742] = 3656, + [3743] = 3657, + [3744] = 107, + [3745] = 104, + [3746] = 3746, + [3747] = 3747, + [3748] = 107, + [3749] = 3746, + [3750] = 489, + [3751] = 3747, + [3752] = 106, + [3753] = 3753, + [3754] = 3746, + [3755] = 106, + [3756] = 3746, + [3757] = 3757, + [3758] = 3757, + [3759] = 3759, + [3760] = 3747, + [3761] = 3747, + [3762] = 3746, + [3763] = 3746, + [3764] = 3707, + [3765] = 498, + [3766] = 3746, + [3767] = 360, + [3768] = 3757, + [3769] = 3747, + [3770] = 3770, + [3771] = 3747, + [3772] = 3746, + [3773] = 3759, + [3774] = 3774, + [3775] = 104, + [3776] = 104, + [3777] = 3774, + [3778] = 3746, + [3779] = 3746, + [3780] = 357, + [3781] = 3746, + [3782] = 489, + [3783] = 351, + [3784] = 3747, + [3785] = 489, + [3786] = 93, + [3787] = 3746, + [3788] = 107, + [3789] = 3746, + [3790] = 3747, + [3791] = 3791, + [3792] = 3747, + [3793] = 3747, + [3794] = 3774, + [3795] = 3774, + [3796] = 1834, + [3797] = 481, + [3798] = 3759, + [3799] = 3746, + [3800] = 459, + [3801] = 354, + [3802] = 3747, + [3803] = 3747, + [3804] = 3757, + [3805] = 106, + [3806] = 3759, + [3807] = 450, + [3808] = 92, + [3809] = 349, + [3810] = 107, + [3811] = 104, + [3812] = 3746, + [3813] = 348, + [3814] = 3746, + [3815] = 489, + [3816] = 3746, + [3817] = 481, + [3818] = 3747, + [3819] = 3746, + [3820] = 506, + [3821] = 450, + [3822] = 1834, + [3823] = 481, + [3824] = 508, + [3825] = 459, + [3826] = 481, + [3827] = 528, + [3828] = 517, + [3829] = 93, + [3830] = 3830, + [3831] = 3831, + [3832] = 3831, + [3833] = 517, + [3834] = 690, + [3835] = 690, + [3836] = 516, + [3837] = 3831, + [3838] = 3831, + [3839] = 3831, + [3840] = 481, + [3841] = 96, + [3842] = 3831, + [3843] = 3843, + [3844] = 3831, + [3845] = 515, + [3846] = 100, + [3847] = 515, + [3848] = 3831, + [3849] = 3849, + [3850] = 489, + [3851] = 3851, + [3852] = 3831, + [3853] = 3831, + [3854] = 3831, + [3855] = 343, + [3856] = 344, + [3857] = 516, + [3858] = 3831, + [3859] = 690, + [3860] = 515, + [3861] = 517, + [3862] = 3831, + [3863] = 528, + [3864] = 3843, + [3865] = 516, + [3866] = 489, + [3867] = 3867, + [3868] = 516, + [3869] = 515, + [3870] = 92, + [3871] = 517, + [3872] = 528, + [3873] = 481, + [3874] = 3874, + [3875] = 459, + [3876] = 344, + [3877] = 515, + [3878] = 516, + [3879] = 517, [3880] = 3880, - [3881] = 108, - [3882] = 3869, - [3883] = 3866, - [3884] = 2569, - [3885] = 507, - [3886] = 3870, - [3887] = 717, - [3888] = 496, - [3889] = 3871, - [3890] = 498, - [3891] = 507, - [3892] = 493, - [3893] = 3856, - [3894] = 3869, - [3895] = 3854, - [3896] = 3855, - [3897] = 701, - [3898] = 702, - [3899] = 703, - [3900] = 440, - [3901] = 3876, - [3902] = 3861, - [3903] = 347, - [3904] = 3834, - [3905] = 3638, - [3906] = 3906, - [3907] = 3853, - [3908] = 335, - [3909] = 3909, - [3910] = 1886, - [3911] = 495, - [3912] = 3869, - [3913] = 472, - [3914] = 495, - [3915] = 335, - [3916] = 3869, - [3917] = 3917, + [3881] = 3881, + [3882] = 690, + [3883] = 3883, + [3884] = 506, + [3885] = 2575, + [3886] = 528, + [3887] = 3887, + [3888] = 487, + [3889] = 3887, + [3890] = 3890, + [3891] = 3891, + [3892] = 511, + [3893] = 1885, + [3894] = 3843, + [3895] = 3707, + [3896] = 450, + [3897] = 3874, + [3898] = 3898, + [3899] = 3899, + [3900] = 3900, + [3901] = 3901, + [3902] = 690, + [3903] = 3903, + [3904] = 3904, + [3905] = 3905, + [3906] = 450, + [3907] = 3907, + [3908] = 507, + [3909] = 510, + [3910] = 450, + [3911] = 3911, + [3912] = 499, + [3913] = 3887, + [3914] = 359, + [3915] = 3915, + [3916] = 528, + [3917] = 690, [3918] = 3918, - [3919] = 2566, - [3920] = 3869, - [3921] = 440, - [3922] = 491, - [3923] = 450, - [3924] = 3869, - [3925] = 440, - [3926] = 508, - [3927] = 555, - [3928] = 555, - [3929] = 478, - [3930] = 98, - [3931] = 488, - [3932] = 2595, - [3933] = 450, - [3934] = 498, - [3935] = 107, - [3936] = 440, - [3937] = 496, - [3938] = 333, - [3939] = 505, - [3940] = 3869, - [3941] = 3941, - [3942] = 555, - [3943] = 556, - [3944] = 450, - [3945] = 349, - [3946] = 3865, - [3947] = 96, - [3948] = 3806, - [3949] = 3859, - [3950] = 3856, - [3951] = 3869, - [3952] = 507, - [3953] = 3856, - [3954] = 3811, - [3955] = 3906, - [3956] = 497, - [3957] = 3860, - [3958] = 3941, - [3959] = 3959, - [3960] = 3960, - [3961] = 3961, - [3962] = 2579, - [3963] = 3963, - [3964] = 3917, - [3965] = 3872, - [3966] = 481, - [3967] = 450, - [3968] = 349, - [3969] = 3969, - [3970] = 450, - [3971] = 3971, - [3972] = 3972, - [3973] = 3973, - [3974] = 3974, - [3975] = 3975, - [3976] = 3976, - [3977] = 477, - [3978] = 3978, - [3979] = 3979, - [3980] = 3980, - [3981] = 3981, - [3982] = 3982, + [3919] = 364, + [3920] = 3920, + [3921] = 528, + [3922] = 507, + [3923] = 3770, + [3924] = 3867, + [3925] = 3830, + [3926] = 3926, + [3927] = 2646, + [3928] = 459, + [3929] = 3887, + [3930] = 3911, + [3931] = 3887, + [3932] = 3887, + [3933] = 510, + [3934] = 3887, + [3935] = 498, + [3936] = 343, + [3937] = 3887, + [3938] = 499, + [3939] = 459, + [3940] = 515, + [3941] = 493, + [3942] = 3887, + [3943] = 516, + [3944] = 3944, + [3945] = 517, + [3946] = 107, + [3947] = 459, + [3948] = 104, + [3949] = 3949, + [3950] = 3887, + [3951] = 3926, + [3952] = 3890, + [3953] = 3891, + [3954] = 3899, + [3955] = 3901, + [3956] = 3944, + [3957] = 3898, + [3958] = 3905, + [3959] = 3915, + [3960] = 3918, + [3961] = 3907, + [3962] = 498, + [3963] = 696, + [3964] = 3949, + [3965] = 510, + [3966] = 724, + [3967] = 725, + [3968] = 727, + [3969] = 3883, + [3970] = 343, + [3971] = 506, + [3972] = 507, + [3973] = 3887, + [3974] = 450, + [3975] = 508, + [3976] = 509, + [3977] = 106, + [3978] = 96, + [3979] = 100, + [3980] = 3883, + [3981] = 3883, + [3982] = 2647, [3983] = 3983, [3984] = 3984, [3985] = 3985, @@ -9037,956 +9037,956 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3988] = 3988, [3989] = 3989, [3990] = 3990, - [3991] = 477, + [3991] = 3991, [3992] = 3992, - [3993] = 3993, + [3993] = 730, [3994] = 3994, - [3995] = 342, + [3995] = 3995, [3996] = 3996, [3997] = 3997, [3998] = 3998, [3999] = 3999, [4000] = 4000, - [4001] = 343, - [4002] = 346, - [4003] = 1460, - [4004] = 2588, + [4001] = 4001, + [4002] = 4002, + [4003] = 4003, + [4004] = 4004, [4005] = 4005, - [4006] = 348, - [4007] = 340, - [4008] = 341, + [4006] = 4006, + [4007] = 4007, + [4008] = 4008, [4009] = 4009, [4010] = 4010, [4011] = 4011, [4012] = 4012, - [4013] = 347, - [4014] = 717, - [4015] = 481, - [4016] = 349, + [4013] = 4013, + [4014] = 4014, + [4015] = 4015, + [4016] = 459, [4017] = 4017, [4018] = 4018, - [4019] = 4019, - [4020] = 4020, + [4019] = 696, + [4020] = 1954, [4021] = 4021, [4022] = 4022, [4023] = 4023, - [4024] = 4024, - [4025] = 4025, + [4024] = 489, + [4025] = 730, [4026] = 4026, - [4027] = 4027, - [4028] = 4028, - [4029] = 4029, + [4027] = 489, + [4028] = 481, + [4029] = 357, [4030] = 4030, [4031] = 4031, - [4032] = 2596, - [4033] = 701, - [4034] = 702, - [4035] = 4035, - [4036] = 703, - [4037] = 477, - [4038] = 3973, - [4039] = 505, - [4040] = 495, - [4041] = 496, - [4042] = 1937, - [4043] = 3979, - [4044] = 3980, - [4045] = 3981, - [4046] = 336, - [4047] = 4047, - [4048] = 4048, - [4049] = 3990, - [4050] = 705, - [4051] = 4051, - [4052] = 4052, - [4053] = 2588, + [4032] = 360, + [4033] = 351, + [4034] = 4034, + [4035] = 450, + [4036] = 4036, + [4037] = 4037, + [4038] = 4038, + [4039] = 4036, + [4040] = 4040, + [4041] = 4041, + [4042] = 4042, + [4043] = 354, + [4044] = 348, + [4045] = 349, + [4046] = 4046, + [4047] = 2709, + [4048] = 2710, + [4049] = 489, + [4050] = 4050, + [4051] = 508, + [4052] = 498, + [4053] = 506, [4054] = 4054, - [4055] = 3974, - [4056] = 1937, - [4057] = 4057, - [4058] = 4058, - [4059] = 3975, + [4055] = 4055, + [4056] = 4056, + [4057] = 3987, + [4058] = 481, + [4059] = 4059, [4060] = 4060, [4061] = 4061, [4062] = 4062, [4063] = 4063, - [4064] = 4064, - [4065] = 4065, - [4066] = 4066, + [4064] = 364, + [4065] = 3880, + [4066] = 3881, [4067] = 4067, - [4068] = 481, - [4069] = 4069, - [4070] = 4070, + [4068] = 4068, + [4069] = 2632, + [4070] = 481, [4071] = 4071, - [4072] = 4072, + [4072] = 347, [4073] = 4073, - [4074] = 3979, + [4074] = 4074, [4075] = 4075, [4076] = 4076, [4077] = 4077, [4078] = 4078, [4079] = 4079, - [4080] = 369, - [4081] = 3990, + [4080] = 4050, + [4081] = 4081, [4082] = 4082, - [4083] = 705, + [4083] = 4083, [4084] = 4084, - [4085] = 717, - [4086] = 3979, - [4087] = 3980, - [4088] = 3981, - [4089] = 4089, - [4090] = 3990, + [4085] = 4085, + [4086] = 4086, + [4087] = 4087, + [4088] = 4088, + [4089] = 1464, + [4090] = 4090, [4091] = 4091, - [4092] = 440, - [4093] = 4093, - [4094] = 3979, - [4095] = 3980, - [4096] = 3981, + [4092] = 4092, + [4093] = 4054, + [4094] = 450, + [4095] = 4055, + [4096] = 4056, [4097] = 4097, - [4098] = 3990, - [4099] = 4099, - [4100] = 3979, - [4101] = 3980, - [4102] = 3981, - [4103] = 3990, - [4104] = 3979, - [4105] = 4105, - [4106] = 4106, - [4107] = 4107, - [4108] = 3990, - [4109] = 701, - [4110] = 702, + [4098] = 2632, + [4099] = 3987, + [4100] = 4054, + [4101] = 4055, + [4102] = 4056, + [4103] = 4103, + [4104] = 3987, + [4105] = 379, + [4106] = 4054, + [4107] = 4055, + [4108] = 4056, + [4109] = 4109, + [4110] = 3987, [4111] = 4111, [4112] = 4112, - [4113] = 703, - [4114] = 3979, - [4115] = 3990, - [4116] = 3979, - [4117] = 4117, + [4113] = 4113, + [4114] = 4114, + [4115] = 4054, + [4116] = 724, + [4117] = 725, [4118] = 4118, - [4119] = 3990, + [4119] = 3987, [4120] = 4120, [4121] = 4121, - [4122] = 4122, + [4122] = 4054, [4123] = 4123, - [4124] = 481, - [4125] = 4125, - [4126] = 4126, - [4127] = 477, - [4128] = 450, - [4129] = 2679, - [4130] = 2714, - [4131] = 4131, - [4132] = 4132, - [4133] = 347, - [4134] = 450, + [4124] = 359, + [4125] = 3987, + [4126] = 459, + [4127] = 727, + [4128] = 696, + [4129] = 4054, + [4130] = 3987, + [4131] = 450, + [4132] = 3987, + [4133] = 4133, + [4134] = 4134, [4135] = 4135, - [4136] = 4136, - [4137] = 107, - [4138] = 109, - [4139] = 108, - [4140] = 4089, - [4141] = 3993, + [4136] = 459, + [4137] = 359, + [4138] = 459, + [4139] = 450, + [4140] = 4140, + [4141] = 4141, [4142] = 4142, [4143] = 4143, - [4144] = 4144, - [4145] = 440, + [4144] = 4026, + [4145] = 4030, [4146] = 4146, - [4147] = 717, - [4148] = 701, - [4149] = 702, - [4150] = 703, - [4151] = 347, - [4152] = 3980, - [4153] = 3973, - [4154] = 3974, - [4155] = 3975, - [4156] = 4156, - [4157] = 3981, + [4147] = 4041, + [4148] = 1954, + [4149] = 4149, + [4150] = 4150, + [4151] = 4151, + [4152] = 4055, + [4153] = 4153, + [4154] = 4154, + [4155] = 4155, + [4156] = 364, + [4157] = 4157, [4158] = 4158, - [4159] = 450, - [4160] = 4160, + [4159] = 4054, + [4160] = 4054, [4161] = 4161, - [4162] = 3973, - [4163] = 3974, - [4164] = 3975, - [4165] = 349, - [4166] = 4106, - [4167] = 4107, - [4168] = 4111, - [4169] = 440, - [4170] = 440, + [4162] = 4056, + [4163] = 4163, + [4164] = 4164, + [4165] = 4165, + [4166] = 696, + [4167] = 724, + [4168] = 725, + [4169] = 727, + [4170] = 4055, [4171] = 4171, - [4172] = 4172, - [4173] = 3982, - [4174] = 4174, - [4175] = 4175, - [4176] = 4176, - [4177] = 488, - [4178] = 738, - [4179] = 4179, - [4180] = 4180, - [4181] = 4176, + [4172] = 4026, + [4173] = 4030, + [4174] = 4041, + [4175] = 4056, + [4176] = 4092, + [4177] = 2576, + [4178] = 489, + [4179] = 364, + [4180] = 481, + [4181] = 459, [4182] = 4182, - [4183] = 931, - [4184] = 477, - [4185] = 4176, - [4186] = 4182, - [4187] = 477, - [4188] = 4188, - [4189] = 4189, - [4190] = 4179, - [4191] = 4191, - [4192] = 4192, - [4193] = 931, - [4194] = 4176, - [4195] = 4182, - [4196] = 4179, - [4197] = 917, - [4198] = 718, - [4199] = 4174, - [4200] = 4078, - [4201] = 4189, - [4202] = 4202, - [4203] = 4176, - [4204] = 4182, - [4205] = 4189, - [4206] = 933, - [4207] = 4207, - [4208] = 355, - [4209] = 3587, - [4210] = 4189, - [4211] = 4211, - [4212] = 338, - [4213] = 498, - [4214] = 931, - [4215] = 738, - [4216] = 4047, - [4217] = 4217, - [4218] = 4176, - [4219] = 4182, + [4183] = 4183, + [4184] = 4026, + [4185] = 4030, + [4186] = 4041, + [4187] = 4062, + [4188] = 4074, + [4189] = 4088, + [4190] = 104, + [4191] = 106, + [4192] = 107, + [4193] = 724, + [4194] = 725, + [4195] = 359, + [4196] = 4196, + [4197] = 727, + [4198] = 4198, + [4199] = 2650, + [4200] = 4200, + [4201] = 742, + [4202] = 2520, + [4203] = 4203, + [4204] = 515, + [4205] = 4200, + [4206] = 4203, + [4207] = 4034, + [4208] = 4208, + [4209] = 4209, + [4210] = 4210, + [4211] = 934, + [4212] = 920, + [4213] = 3339, + [4214] = 4214, + [4215] = 4200, + [4216] = 4203, + [4217] = 4208, + [4218] = 4218, + [4219] = 4219, [4220] = 4220, - [4221] = 4221, - [4222] = 4189, - [4223] = 938, - [4224] = 738, - [4225] = 493, - [4226] = 4176, - [4227] = 4182, + [4221] = 459, + [4222] = 4208, + [4223] = 516, + [4224] = 517, + [4225] = 4059, + [4226] = 4200, + [4227] = 4203, [4228] = 4228, - [4229] = 941, - [4230] = 963, - [4231] = 4189, - [4232] = 333, - [4233] = 974, - [4234] = 4234, - [4235] = 933, - [4236] = 4176, - [4237] = 965, - [4238] = 4176, - [4239] = 3998, - [4240] = 493, - [4241] = 4176, - [4242] = 4189, - [4243] = 555, - [4244] = 4176, - [4245] = 495, - [4246] = 493, - [4247] = 498, - [4248] = 933, - [4249] = 4176, - [4250] = 369, - [4251] = 488, - [4252] = 498, - [4253] = 4176, - [4254] = 4176, - [4255] = 941, - [4256] = 4176, - [4257] = 4176, - [4258] = 1962, - [4259] = 2588, - [4260] = 4260, - [4261] = 4176, - [4262] = 488, - [4263] = 4176, - [4264] = 4180, - [4265] = 4176, - [4266] = 4266, - [4267] = 4234, - [4268] = 938, - [4269] = 336, - [4270] = 493, - [4271] = 4228, - [4272] = 4176, - [4273] = 496, - [4274] = 4266, - [4275] = 4182, - [4276] = 4189, - [4277] = 4182, - [4278] = 965, - [4279] = 481, - [4280] = 4280, - [4281] = 4091, + [4229] = 459, + [4230] = 920, + [4231] = 4208, + [4232] = 4220, + [4233] = 489, + [4234] = 933, + [4235] = 367, + [4236] = 4236, + [4237] = 4200, + [4238] = 4203, + [4239] = 4060, + [4240] = 506, + [4241] = 929, + [4242] = 698, + [4243] = 4208, + [4244] = 498, + [4245] = 934, + [4246] = 4246, + [4247] = 4200, + [4248] = 930, + [4249] = 379, + [4250] = 3363, + [4251] = 4251, + [4252] = 4200, + [4253] = 481, + [4254] = 4200, + [4255] = 920, + [4256] = 935, + [4257] = 4200, + [4258] = 489, + [4259] = 4200, + [4260] = 4251, + [4261] = 4200, + [4262] = 929, + [4263] = 1998, + [4264] = 4200, + [4265] = 516, + [4266] = 4200, + [4267] = 4200, + [4268] = 4200, + [4269] = 4200, + [4270] = 1986, + [4271] = 4200, + [4272] = 4200, + [4273] = 481, + [4274] = 4208, + [4275] = 4086, + [4276] = 4087, + [4277] = 4203, + [4278] = 690, + [4279] = 4279, + [4280] = 2533, + [4281] = 4281, [4282] = 4282, - [4283] = 4093, - [4284] = 963, - [4285] = 477, - [4286] = 4286, - [4287] = 983, - [4288] = 2858, - [4289] = 965, - [4290] = 704, - [4291] = 2538, - [4292] = 335, - [4293] = 2539, - [4294] = 3281, - [4295] = 481, - [4296] = 4296, - [4297] = 4082, - [4298] = 716, - [4299] = 4282, - [4300] = 4180, - [4301] = 4301, - [4302] = 450, - [4303] = 488, - [4304] = 1962, - [4305] = 498, - [4306] = 917, - [4307] = 957, - [4308] = 3347, - [4309] = 450, - [4310] = 481, - [4311] = 4311, - [4312] = 1984, - [4313] = 352, - [4314] = 4180, - [4315] = 4176, - [4316] = 4182, - [4317] = 3806, - [4318] = 4179, - [4319] = 3834, - [4320] = 4220, - [4321] = 957, - [4322] = 4322, - [4323] = 477, - [4324] = 556, - [4325] = 938, - [4326] = 481, - [4327] = 941, - [4328] = 4328, - [4329] = 738, - [4330] = 917, - [4331] = 957, - [4332] = 963, - [4333] = 4189, - [4334] = 3999, - [4335] = 941, + [4283] = 350, + [4284] = 344, + [4285] = 528, + [4286] = 936, + [4287] = 936, + [4288] = 937, + [4289] = 4209, + [4290] = 937, + [4291] = 931, + [4292] = 2899, + [4293] = 929, + [4294] = 4200, + [4295] = 933, + [4296] = 3649, + [4297] = 4203, + [4298] = 481, + [4299] = 481, + [4300] = 347, + [4301] = 1998, + [4302] = 515, + [4303] = 4023, + [4304] = 4304, + [4305] = 489, + [4306] = 4306, + [4307] = 515, + [4308] = 4308, + [4309] = 4306, + [4310] = 4209, + [4311] = 517, + [4312] = 930, + [4313] = 931, + [4314] = 4208, + [4315] = 489, + [4316] = 343, + [4317] = 4317, + [4318] = 4281, + [4319] = 920, + [4320] = 935, + [4321] = 927, + [4322] = 935, + [4323] = 4306, + [4324] = 4200, + [4325] = 4203, + [4326] = 3867, + [4327] = 4327, + [4328] = 3830, + [4329] = 515, + [4330] = 4330, + [4331] = 4209, + [4332] = 516, + [4333] = 517, + [4334] = 516, + [4335] = 1045, [4336] = 4336, - [4337] = 824, - [4338] = 4338, - [4339] = 4339, - [4340] = 4340, - [4341] = 4341, - [4342] = 4342, - [4343] = 4343, + [4337] = 4337, + [4338] = 933, + [4339] = 2632, + [4340] = 4208, + [4341] = 517, + [4342] = 4306, + [4343] = 4282, [4344] = 4344, [4345] = 4345, - [4346] = 4346, - [4347] = 4286, - [4348] = 4348, - [4349] = 4349, - [4350] = 983, - [4351] = 1355, - [4352] = 4352, - [4353] = 4353, - [4354] = 347, - [4355] = 4355, - [4356] = 4356, - [4357] = 4357, - [4358] = 927, - [4359] = 440, - [4360] = 884, - [4361] = 349, + [4346] = 930, + [4347] = 4200, + [4348] = 4337, + [4349] = 4203, + [4350] = 4037, + [4351] = 934, + [4352] = 4038, + [4353] = 936, + [4354] = 4208, + [4355] = 937, + [4356] = 931, + [4357] = 728, + [4358] = 353, + [4359] = 4359, + [4360] = 4360, + [4361] = 934, [4362] = 4362, [4363] = 4363, - [4364] = 963, + [4364] = 4364, [4365] = 4365, - [4366] = 705, - [4367] = 717, - [4368] = 965, + [4366] = 4366, + [4367] = 4367, + [4368] = 4368, [4369] = 4369, - [4370] = 780, - [4371] = 783, - [4372] = 784, + [4370] = 4370, + [4371] = 3038, + [4372] = 4372, [4373] = 4373, - [4374] = 788, - [4375] = 2610, - [4376] = 3755, + [4374] = 783, + [4375] = 4375, + [4376] = 357, [4377] = 4377, - [4378] = 4286, - [4379] = 3763, - [4380] = 701, - [4381] = 702, - [4382] = 703, - [4383] = 3917, - [4384] = 3872, - [4385] = 4385, - [4386] = 790, - [4387] = 4387, - [4388] = 4388, - [4389] = 4389, + [4378] = 2640, + [4379] = 724, + [4380] = 725, + [4381] = 935, + [4382] = 4382, + [4383] = 727, + [4384] = 4384, + [4385] = 3880, + [4386] = 3881, + [4387] = 515, + [4388] = 359, + [4389] = 2637, [4390] = 4390, [4391] = 4391, - [4392] = 918, - [4393] = 957, - [4394] = 794, - [4395] = 795, - [4396] = 796, - [4397] = 798, - [4398] = 4362, + [4392] = 2638, + [4393] = 4377, + [4394] = 360, + [4395] = 351, + [4396] = 4396, + [4397] = 4397, + [4398] = 4398, [4399] = 4399, [4400] = 4400, [4401] = 4401, [4402] = 4402, [4403] = 4403, - [4404] = 963, - [4405] = 965, + [4404] = 4404, + [4405] = 4405, [4406] = 4406, - [4407] = 799, - [4408] = 801, - [4409] = 802, - [4410] = 803, - [4411] = 804, - [4412] = 805, - [4413] = 806, - [4414] = 807, - [4415] = 2587, - [4416] = 2629, - [4417] = 4417, - [4418] = 917, - [4419] = 488, - [4420] = 931, - [4421] = 2599, - [4422] = 2601, - [4423] = 2602, - [4424] = 2604, - [4425] = 2606, + [4407] = 3231, + [4408] = 4408, + [4409] = 4409, + [4410] = 3232, + [4411] = 517, + [4412] = 4412, + [4413] = 4413, + [4414] = 4382, + [4415] = 4415, + [4416] = 936, + [4417] = 937, + [4418] = 936, + [4419] = 937, + [4420] = 920, + [4421] = 4421, + [4422] = 788, + [4423] = 4423, + [4424] = 4424, + [4425] = 4425, [4426] = 4426, - [4427] = 738, - [4428] = 933, - [4429] = 4429, - [4430] = 4430, - [4431] = 974, - [4432] = 1399, + [4427] = 4427, + [4428] = 4428, + [4429] = 2641, + [4430] = 790, + [4431] = 354, + [4432] = 740, [4433] = 4433, - [4434] = 4434, - [4435] = 4435, + [4434] = 348, + [4435] = 364, [4436] = 4436, - [4437] = 450, - [4438] = 4438, - [4439] = 4439, + [4437] = 4437, + [4438] = 349, + [4439] = 4382, [4440] = 4440, - [4441] = 3647, - [4442] = 4390, - [4443] = 4417, - [4444] = 498, + [4441] = 4441, + [4442] = 927, + [4443] = 801, + [4444] = 744, [4445] = 4445, - [4446] = 4446, + [4446] = 516, [4447] = 4447, - [4448] = 914, + [4448] = 4382, [4449] = 4449, [4450] = 4450, - [4451] = 4451, - [4452] = 1819, - [4453] = 1821, + [4451] = 935, + [4452] = 1045, + [4453] = 4453, [4454] = 4454, - [4455] = 4455, + [4455] = 933, [4456] = 4456, - [4457] = 4457, + [4457] = 4382, [4458] = 4458, [4459] = 4459, - [4460] = 4460, - [4461] = 4461, + [4460] = 920, + [4461] = 974, [4462] = 4462, - [4463] = 342, - [4464] = 933, + [4463] = 4463, + [4464] = 4464, [4465] = 4465, - [4466] = 4301, - [4467] = 343, - [4468] = 346, + [4466] = 4466, + [4467] = 762, + [4468] = 4468, [4469] = 4469, - [4470] = 967, + [4470] = 935, [4471] = 4471, - [4472] = 4472, - [4473] = 938, - [4474] = 4362, + [4472] = 978, + [4473] = 4382, + [4474] = 3753, [4475] = 4475, - [4476] = 348, - [4477] = 340, - [4478] = 341, - [4479] = 4479, - [4480] = 4426, + [4476] = 2642, + [4477] = 4477, + [4478] = 3791, + [4479] = 804, + [4480] = 4480, [4481] = 4481, - [4482] = 4365, + [4482] = 4482, [4483] = 4483, - [4484] = 738, + [4484] = 4484, [4485] = 4485, - [4486] = 917, - [4487] = 4328, - [4488] = 974, + [4486] = 4486, + [4487] = 4487, + [4488] = 4382, [4489] = 4489, - [4490] = 1827, - [4491] = 4491, - [4492] = 1823, + [4490] = 4490, + [4491] = 1845, + [4492] = 1861, [4493] = 4493, - [4494] = 933, + [4494] = 4494, [4495] = 4495, - [4496] = 983, + [4496] = 4436, [4497] = 4497, - [4498] = 4362, + [4498] = 4382, [4499] = 4499, [4500] = 4500, - [4501] = 4501, - [4502] = 4502, + [4501] = 927, + [4502] = 774, [4503] = 4503, [4504] = 4504, - [4505] = 4505, - [4506] = 4506, + [4505] = 4382, + [4506] = 515, [4507] = 4507, [4508] = 4508, - [4509] = 4509, - [4510] = 4510, - [4511] = 957, - [4512] = 4362, - [4513] = 488, - [4514] = 498, - [4515] = 3153, - [4516] = 3154, - [4517] = 4517, - [4518] = 957, - [4519] = 4519, - [4520] = 938, - [4521] = 4521, + [4509] = 4344, + [4510] = 4382, + [4511] = 4453, + [4512] = 4512, + [4513] = 930, + [4514] = 4382, + [4515] = 929, + [4516] = 4516, + [4517] = 931, + [4518] = 4382, + [4519] = 900, + [4520] = 4520, + [4521] = 367, [4522] = 4522, - [4523] = 4523, + [4523] = 929, [4524] = 4524, - [4525] = 4362, - [4526] = 941, - [4527] = 4527, + [4525] = 1412, + [4526] = 4526, + [4527] = 515, [4528] = 4528, - [4529] = 4529, + [4529] = 805, [4530] = 4530, - [4531] = 4531, - [4532] = 4362, + [4531] = 931, + [4532] = 4532, [4533] = 4533, - [4534] = 4534, - [4535] = 1831, - [4536] = 1837, + [4534] = 1045, + [4535] = 934, + [4536] = 516, [4537] = 4537, - [4538] = 4538, + [4538] = 517, [4539] = 4539, - [4540] = 4540, + [4540] = 516, [4541] = 4541, - [4542] = 4362, + [4542] = 4542, [4543] = 4543, - [4544] = 963, - [4545] = 965, - [4546] = 355, - [4547] = 4362, - [4548] = 4548, - [4549] = 931, + [4544] = 4544, + [4545] = 515, + [4546] = 4382, + [4547] = 929, + [4548] = 953, + [4549] = 936, [4550] = 4550, - [4551] = 938, - [4552] = 4552, + [4551] = 937, + [4552] = 517, [4553] = 4553, - [4554] = 4362, - [4555] = 917, - [4556] = 931, - [4557] = 4557, - [4558] = 4558, - [4559] = 4362, + [4554] = 383, + [4555] = 930, + [4556] = 936, + [4557] = 931, + [4558] = 937, + [4559] = 4462, [4560] = 4560, - [4561] = 4561, - [4562] = 738, - [4563] = 933, - [4564] = 983, - [4565] = 4565, - [4566] = 4362, + [4561] = 802, + [4562] = 933, + [4563] = 4563, + [4564] = 4564, + [4565] = 934, + [4566] = 4566, [4567] = 4567, - [4568] = 4568, - [4569] = 4495, - [4570] = 4570, - [4571] = 4362, - [4572] = 4572, - [4573] = 941, - [4574] = 372, - [4575] = 4362, - [4576] = 4531, + [4568] = 785, + [4569] = 4344, + [4570] = 516, + [4571] = 4543, + [4572] = 920, + [4573] = 4573, + [4574] = 4574, + [4575] = 4575, + [4576] = 1370, [4577] = 4577, [4578] = 4578, - [4579] = 4579, + [4579] = 772, [4580] = 4580, [4581] = 4581, - [4582] = 352, - [4583] = 4445, - [4584] = 2960, - [4585] = 938, - [4586] = 941, + [4582] = 4582, + [4583] = 4382, + [4584] = 4228, + [4585] = 4585, + [4586] = 4586, [4587] = 4587, - [4588] = 4579, - [4589] = 4524, - [4590] = 4590, - [4591] = 4591, - [4592] = 4191, + [4588] = 350, + [4589] = 1868, + [4590] = 459, + [4591] = 4236, + [4592] = 1839, [4593] = 4593, - [4594] = 493, + [4594] = 4594, [4595] = 4595, [4596] = 4596, - [4597] = 4597, - [4598] = 488, - [4599] = 498, + [4597] = 353, + [4598] = 4598, + [4599] = 4599, [4600] = 4600, - [4601] = 4601, + [4601] = 4539, [4602] = 4602, - [4603] = 3158, + [4603] = 786, [4604] = 4604, - [4605] = 4605, - [4606] = 4606, - [4607] = 4607, - [4608] = 4608, + [4605] = 933, + [4606] = 4382, + [4607] = 4440, + [4608] = 935, [4609] = 4609, - [4610] = 4610, - [4611] = 4611, + [4610] = 4382, + [4611] = 4382, [4612] = 4612, - [4613] = 4362, - [4614] = 4614, - [4615] = 4362, - [4616] = 4362, - [4617] = 4617, + [4613] = 4613, + [4614] = 954, + [4615] = 4615, + [4616] = 517, + [4617] = 927, [4618] = 4618, - [4619] = 4619, - [4620] = 4620, - [4621] = 4621, - [4622] = 4622, + [4619] = 696, + [4620] = 2643, + [4621] = 3659, + [4622] = 730, [4623] = 4623, - [4624] = 3159, - [4625] = 712, - [4626] = 4626, - [4627] = 4627, - [4628] = 710, - [4629] = 4629, - [4630] = 4362, - [4631] = 493, - [4632] = 4429, + [4624] = 450, + [4625] = 4550, + [4626] = 782, + [4627] = 4279, + [4628] = 4628, + [4629] = 917, + [4630] = 4630, + [4631] = 4631, + [4632] = 4632, [4633] = 4633, - [4634] = 493, - [4635] = 4510, - [4636] = 4552, - [4637] = 4357, - [4638] = 488, + [4634] = 4382, + [4635] = 4635, + [4636] = 930, + [4637] = 3237, + [4638] = 2639, [4639] = 4639, - [4640] = 498, - [4641] = 338, - [4642] = 4642, - [4643] = 4429, - [4644] = 4510, - [4645] = 4552, - [4646] = 4357, - [4647] = 865, - [4648] = 974, - [4649] = 4649, - [4650] = 493, - [4651] = 4457, - [4652] = 4538, - [4653] = 4653, + [4640] = 4640, + [4641] = 803, + [4642] = 1829, + [4643] = 4643, + [4644] = 4644, + [4645] = 1846, + [4646] = 3238, + [4647] = 4647, + [4648] = 4503, + [4649] = 4567, + [4650] = 4650, + [4651] = 4544, + [4652] = 4615, + [4653] = 760, [4654] = 4654, [4655] = 4655, - [4656] = 4591, - [4657] = 811, + [4656] = 764, + [4657] = 4657, [4658] = 4658, - [4659] = 3184, - [4660] = 812, - [4661] = 4539, - [4662] = 477, - [4663] = 4663, - [4664] = 4600, - [4665] = 914, - [4666] = 2894, - [4667] = 2531, - [4668] = 481, - [4669] = 2514, - [4670] = 2188, - [4671] = 4434, - [4672] = 4655, - [4673] = 4595, + [4659] = 4643, + [4660] = 765, + [4661] = 4643, + [4662] = 4503, + [4663] = 4567, + [4664] = 4544, + [4665] = 4665, + [4666] = 4666, + [4667] = 1045, + [4668] = 4668, + [4669] = 768, + [4670] = 2633, + [4671] = 4671, + [4672] = 4672, + [4673] = 4673, [4674] = 4674, - [4675] = 4517, - [4676] = 4455, - [4677] = 4658, - [4678] = 4678, - [4679] = 2895, - [4680] = 4373, - [4681] = 4577, - [4682] = 4540, - [4683] = 4683, - [4684] = 4458, - [4685] = 4685, - [4686] = 4618, - [4687] = 4553, - [4688] = 4541, - [4689] = 4655, - [4690] = 2896, + [4675] = 4675, + [4676] = 4676, + [4677] = 4677, + [4678] = 4390, + [4679] = 4391, + [4680] = 4437, + [4681] = 4512, + [4682] = 4682, + [4683] = 4516, + [4684] = 4684, + [4685] = 784, + [4686] = 4686, + [4687] = 4687, + [4688] = 4688, + [4689] = 4481, + [4690] = 4482, [4691] = 4691, - [4692] = 450, + [4692] = 4522, [4693] = 4693, - [4694] = 4658, - [4695] = 1404, - [4696] = 4450, - [4697] = 4697, - [4698] = 4698, - [4699] = 4699, - [4700] = 4700, + [4694] = 4400, + [4695] = 2916, + [4696] = 4524, + [4697] = 4528, + [4698] = 2917, + [4699] = 4673, + [4700] = 745, [4701] = 4701, - [4702] = 4693, + [4702] = 901, [4703] = 4703, [4704] = 4704, - [4705] = 4557, - [4706] = 4543, - [4707] = 4391, - [4708] = 4342, - [4709] = 4402, - [4710] = 4403, - [4711] = 4633, - [4712] = 4642, - [4713] = 848, - [4714] = 713, - [4715] = 4343, - [4716] = 4716, - [4717] = 849, - [4718] = 4349, + [4705] = 4483, + [4706] = 4494, + [4707] = 4450, + [4708] = 4423, + [4709] = 4424, + [4710] = 481, + [4711] = 4711, + [4712] = 4712, + [4713] = 2516, + [4714] = 4714, + [4715] = 4715, + [4716] = 4566, + [4717] = 4717, + [4718] = 4718, [4719] = 4719, - [4720] = 4438, - [4721] = 4655, - [4722] = 4722, - [4723] = 3179, - [4724] = 4601, - [4725] = 4460, - [4726] = 4726, - [4727] = 2186, - [4728] = 800, + [4720] = 2793, + [4721] = 4721, + [4722] = 4688, + [4723] = 4485, + [4724] = 4560, + [4725] = 4426, + [4726] = 4487, + [4727] = 4727, + [4728] = 4728, [4729] = 4729, [4730] = 4730, - [4731] = 4462, - [4732] = 485, - [4733] = 4439, - [4734] = 2155, + [4731] = 4731, + [4732] = 4674, + [4733] = 4733, + [4734] = 4650, [4735] = 4735, - [4736] = 878, - [4737] = 4737, - [4738] = 4738, - [4739] = 450, - [4740] = 4740, - [4741] = 2194, - [4742] = 4435, - [4743] = 881, - [4744] = 4385, - [4745] = 4745, - [4746] = 4596, - [4747] = 4747, - [4748] = 4658, - [4749] = 4497, - [4750] = 3279, + [4736] = 4736, + [4737] = 4401, + [4738] = 2219, + [4739] = 4574, + [4740] = 4406, + [4741] = 4408, + [4742] = 4742, + [4743] = 2550, + [4744] = 4412, + [4745] = 4673, + [4746] = 4363, + [4747] = 4582, + [4748] = 4609, + [4749] = 4639, + [4750] = 4413, [4751] = 4751, - [4752] = 4493, - [4753] = 4701, - [4754] = 4620, - [4755] = 4755, - [4756] = 4489, - [4757] = 4639, - [4758] = 4527, - [4759] = 4500, - [4760] = 4558, - [4761] = 369, - [4762] = 4560, - [4763] = 4561, - [4764] = 4565, - [4765] = 4614, - [4766] = 4567, - [4767] = 4568, - [4768] = 4747, - [4769] = 4570, - [4770] = 4610, - [4771] = 4611, - [4772] = 4499, - [4773] = 4572, + [4752] = 4752, + [4753] = 4688, + [4754] = 2528, + [4755] = 4415, + [4756] = 4756, + [4757] = 459, + [4758] = 4421, + [4759] = 4364, + [4760] = 4575, + [4761] = 4577, + [4762] = 4477, + [4763] = 4763, + [4764] = 4764, + [4765] = 4673, + [4766] = 4766, + [4767] = 1417, + [4768] = 4751, + [4769] = 379, + [4770] = 1385, + [4771] = 4578, + [4772] = 945, + [4773] = 4580, [4774] = 4774, - [4775] = 4433, - [4776] = 4465, - [4777] = 4617, + [4775] = 4775, + [4776] = 4402, + [4777] = 4673, [4778] = 4778, - [4779] = 4627, - [4780] = 4501, - [4781] = 4781, - [4782] = 4602, - [4783] = 4502, - [4784] = 4503, - [4785] = 1366, + [4779] = 4751, + [4780] = 4425, + [4781] = 4654, + [4782] = 4587, + [4783] = 4783, + [4784] = 4365, + [4785] = 4397, [4786] = 4786, [4787] = 4787, - [4788] = 4788, - [4789] = 4789, - [4790] = 4504, + [4788] = 4673, + [4789] = 2569, + [4790] = 4674, [4791] = 4791, - [4792] = 508, - [4793] = 4793, - [4794] = 4794, - [4795] = 4529, - [4796] = 4533, - [4797] = 4446, - [4798] = 4534, - [4799] = 4704, - [4800] = 4800, - [4801] = 4471, - [4802] = 4528, - [4803] = 4700, - [4804] = 4604, - [4805] = 4619, - [4806] = 4806, - [4807] = 4807, - [4808] = 4605, - [4809] = 4809, - [4810] = 4606, - [4811] = 4607, - [4812] = 4812, - [4813] = 4813, - [4814] = 4814, - [4815] = 4815, - [4816] = 4816, - [4817] = 4608, - [4818] = 4818, - [4819] = 4348, - [4820] = 4820, - [4821] = 4774, - [4822] = 4609, - [4823] = 4823, + [4792] = 4792, + [4793] = 4751, + [4794] = 4751, + [4795] = 4366, + [4796] = 4367, + [4797] = 4797, + [4798] = 949, + [4799] = 4799, + [4800] = 4368, + [4801] = 4752, + [4802] = 4369, + [4803] = 4803, + [4804] = 4370, + [4805] = 2542, + [4806] = 4398, + [4807] = 4403, + [4808] = 4593, + [4809] = 489, + [4810] = 4372, + [4811] = 4655, + [4812] = 4594, + [4813] = 4596, + [4814] = 4598, + [4815] = 4599, + [4816] = 4404, + [4817] = 4657, + [4818] = 4600, + [4819] = 4819, + [4820] = 4628, + [4821] = 509, + [4822] = 4630, + [4823] = 4373, [4824] = 4824, [4825] = 4825, - [4826] = 4580, - [4827] = 4827, - [4828] = 4828, - [4829] = 4581, - [4830] = 4830, - [4831] = 440, - [4832] = 4507, - [4833] = 2207, - [4834] = 2892, - [4835] = 2536, - [4836] = 4836, - [4837] = 4789, - [4838] = 4658, + [4826] = 697, + [4827] = 4631, + [4828] = 4686, + [4829] = 4665, + [4830] = 809, + [4831] = 4602, + [4832] = 4832, + [4833] = 4537, + [4834] = 4632, + [4835] = 4733, + [4836] = 4633, + [4837] = 4837, + [4838] = 4838, [4839] = 4839, - [4840] = 4454, - [4841] = 4841, - [4842] = 4842, - [4843] = 336, - [4844] = 4701, + [4840] = 4840, + [4841] = 347, + [4842] = 4635, + [4843] = 1377, + [4844] = 810, [4845] = 4845, - [4846] = 808, - [4847] = 809, - [4848] = 4436, - [4849] = 4509, - [4850] = 1363, - [4851] = 729, - [4852] = 4852, - [4853] = 503, - [4854] = 4774, - [4855] = 4508, - [4856] = 4856, - [4857] = 4857, - [4858] = 2524, - [4859] = 4859, - [4860] = 2537, - [4861] = 4861, - [4862] = 970, - [4863] = 4863, - [4864] = 4864, + [4846] = 4674, + [4847] = 737, + [4848] = 4497, + [4849] = 4618, + [4850] = 3338, + [4851] = 511, + [4852] = 4542, + [4853] = 777, + [4854] = 4504, + [4855] = 4666, + [4856] = 4682, + [4857] = 4427, + [4858] = 4564, + [4859] = 4644, + [4860] = 4860, + [4861] = 4673, + [4862] = 4508, + [4863] = 974, + [4864] = 3113, [4865] = 4865, - [4866] = 4655, + [4866] = 4824, [4867] = 4867, - [4868] = 4868, + [4868] = 4751, [4869] = 4869, - [4870] = 4870, - [4871] = 4871, - [4872] = 4336, + [4870] = 953, + [4871] = 4499, + [4872] = 4872, [4873] = 4873, - [4874] = 4691, - [4875] = 4875, - [4876] = 4876, - [4877] = 4406, - [4878] = 4521, - [4879] = 4522, - [4880] = 4597, - [4881] = 4649, + [4874] = 503, + [4875] = 4500, + [4876] = 4688, + [4877] = 4877, + [4878] = 4878, + [4879] = 4751, + [4880] = 4752, + [4881] = 4581, [4882] = 4882, - [4883] = 4863, - [4884] = 4338, - [4885] = 4658, - [4886] = 4701, - [4887] = 4693, - [4888] = 4388, - [4889] = 4889, - [4890] = 4658, - [4891] = 4693, - [4892] = 4892, + [4883] = 450, + [4884] = 795, + [4885] = 903, + [4886] = 4886, + [4887] = 4887, + [4888] = 4888, + [4889] = 2915, + [4890] = 4890, + [4891] = 4891, + [4892] = 4495, [4893] = 4893, - [4894] = 4894, - [4895] = 4593, - [4896] = 2506, - [4897] = 3178, - [4898] = 4774, + [4894] = 3212, + [4895] = 2179, + [4896] = 2180, + [4897] = 4897, + [4898] = 2215, [4899] = 4899, - [4900] = 4655, - [4901] = 791, - [4902] = 792, - [4903] = 4537, - [4904] = 793, - [4905] = 934, - [4906] = 4655, - [4907] = 4389, - [4908] = 4523, - [4909] = 4774, - [4910] = 967, - [4911] = 4911, - [4912] = 4912, - [4913] = 4913, + [4900] = 4900, + [4901] = 4901, + [4902] = 4399, + [4903] = 4903, + [4904] = 4904, + [4905] = 4905, + [4906] = 4752, + [4907] = 4774, + [4908] = 4908, + [4909] = 4428, + [4910] = 4764, + [4911] = 4475, + [4912] = 4480, + [4913] = 4490, [4914] = 4914, - [4915] = 4915, - [4916] = 352, - [4917] = 4917, - [4918] = 3185, + [4915] = 814, + [4916] = 815, + [4917] = 2519, + [4918] = 4493, [4919] = 4919, - [4920] = 4920, - [4921] = 4921, - [4922] = 941, + [4920] = 459, + [4921] = 4674, + [4922] = 2168, [4923] = 4923, - [4924] = 4924, - [4925] = 974, - [4926] = 488, - [4927] = 3180, - [4928] = 4928, + [4924] = 776, + [4925] = 3140, + [4926] = 4586, + [4927] = 775, + [4928] = 4595, [4929] = 4929, - [4930] = 931, + [4930] = 1045, [4931] = 4931, [4932] = 4932, - [4933] = 926, - [4934] = 4934, - [4935] = 4915, + [4933] = 937, + [4934] = 930, + [4935] = 4935, [4936] = 4936, [4937] = 4937, - [4938] = 4911, - [4939] = 933, - [4940] = 4940, + [4938] = 4938, + [4939] = 4939, + [4940] = 4937, [4941] = 4941, [4942] = 4942, [4943] = 4943, @@ -9994,570 +9994,588 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4945] = 4945, [4946] = 4946, [4947] = 4947, - [4948] = 4942, + [4948] = 4948, [4949] = 4949, [4950] = 4950, [4951] = 4951, - [4952] = 4932, - [4953] = 4945, - [4954] = 4954, - [4955] = 983, - [4956] = 4685, - [4957] = 4936, - [4958] = 4940, - [4959] = 4959, + [4952] = 4952, + [4953] = 4953, + [4954] = 4949, + [4955] = 489, + [4956] = 4956, + [4957] = 4957, + [4958] = 4956, + [4959] = 4944, [4960] = 4960, [4961] = 4961, [4962] = 4962, [4963] = 4963, - [4964] = 4964, - [4965] = 4965, + [4964] = 935, + [4965] = 931, [4966] = 4966, - [4967] = 4286, - [4968] = 4968, - [4969] = 958, + [4967] = 4967, + [4968] = 933, + [4969] = 1039, [4970] = 4970, - [4971] = 4949, - [4972] = 4972, + [4971] = 4936, + [4972] = 4951, [4973] = 4973, [4974] = 4974, - [4975] = 4914, + [4975] = 4975, [4976] = 4976, [4977] = 4977, - [4978] = 4917, + [4978] = 4978, [4979] = 4979, - [4980] = 4980, - [4981] = 2015, - [4982] = 966, - [4983] = 527, - [4984] = 498, - [4985] = 4965, - [4986] = 4931, - [4987] = 4987, - [4988] = 4970, - [4989] = 4934, - [4990] = 4944, + [4980] = 2984, + [4981] = 4961, + [4982] = 2693, + [4983] = 4983, + [4984] = 4984, + [4985] = 4975, + [4986] = 4986, + [4987] = 4978, + [4988] = 4344, + [4989] = 350, + [4990] = 4990, [4991] = 4991, [4992] = 4992, - [4993] = 355, - [4994] = 4962, + [4993] = 4935, + [4994] = 4994, [4995] = 4995, - [4996] = 4996, - [4997] = 4997, - [4998] = 4923, - [4999] = 944, - [5000] = 4942, - [5001] = 5001, - [5002] = 338, + [4996] = 934, + [4997] = 4929, + [4998] = 4998, + [4999] = 3753, + [5000] = 5000, + [5001] = 530, + [5002] = 3791, [5003] = 5003, - [5004] = 5004, - [5005] = 4920, - [5006] = 4924, - [5007] = 5007, - [5008] = 4974, - [5009] = 4976, - [5010] = 4921, - [5011] = 951, - [5012] = 5012, - [5013] = 3031, - [5014] = 3021, - [5015] = 5015, + [5004] = 1530, + [5005] = 353, + [5006] = 5006, + [5007] = 2985, + [5008] = 979, + [5009] = 2045, + [5010] = 980, + [5011] = 4945, + [5012] = 4718, + [5013] = 4977, + [5014] = 5014, + [5015] = 4957, [5016] = 5016, [5017] = 5017, [5018] = 5018, - [5019] = 738, + [5019] = 5019, [5020] = 5020, - [5021] = 5021, - [5022] = 1507, - [5023] = 5023, - [5024] = 5024, - [5025] = 5025, - [5026] = 4919, - [5027] = 481, + [5021] = 4931, + [5022] = 517, + [5023] = 929, + [5024] = 936, + [5025] = 4983, + [5026] = 516, + [5027] = 5027, [5028] = 5028, - [5029] = 4949, + [5029] = 5029, [5030] = 5030, [5031] = 5031, - [5032] = 4947, - [5033] = 477, - [5034] = 1028, - [5035] = 4937, - [5036] = 5036, - [5037] = 957, - [5038] = 938, + [5032] = 5032, + [5033] = 4941, + [5034] = 5034, + [5035] = 5035, + [5036] = 4979, + [5037] = 5037, + [5038] = 515, [5039] = 5039, - [5040] = 493, + [5040] = 5040, [5041] = 5041, [5042] = 5042, - [5043] = 5043, - [5044] = 5044, - [5045] = 4947, - [5046] = 4995, - [5047] = 4947, - [5048] = 5048, - [5049] = 5049, + [5043] = 4938, + [5044] = 4986, + [5045] = 4944, + [5046] = 5046, + [5047] = 3225, + [5048] = 4929, + [5049] = 4975, [5050] = 5050, - [5051] = 4947, - [5052] = 4960, - [5053] = 5053, - [5054] = 3755, - [5055] = 3763, - [5056] = 4972, - [5057] = 4973, - [5058] = 5003, - [5059] = 5043, - [5060] = 4963, - [5061] = 4942, - [5062] = 4949, - [5063] = 4912, - [5064] = 963, - [5065] = 4972, - [5066] = 4973, - [5067] = 5067, - [5068] = 965, - [5069] = 917, - [5070] = 4992, - [5071] = 2148, - [5072] = 4972, - [5073] = 4973, - [5074] = 5074, - [5075] = 2149, - [5076] = 4950, - [5077] = 4964, - [5078] = 5050, - [5079] = 2656, - [5080] = 5080, - [5081] = 5081, + [5051] = 5051, + [5052] = 4962, + [5053] = 4929, + [5054] = 4970, + [5055] = 481, + [5056] = 4991, + [5057] = 920, + [5058] = 4990, + [5059] = 927, + [5060] = 5041, + [5061] = 5061, + [5062] = 5062, + [5063] = 5061, + [5064] = 5064, + [5065] = 4929, + [5066] = 5032, + [5067] = 2165, + [5068] = 4992, + [5069] = 2019, + [5070] = 4962, + [5071] = 4970, + [5072] = 5003, + [5073] = 5073, + [5074] = 4944, + [5075] = 4962, + [5076] = 4970, + [5077] = 4939, + [5078] = 4947, + [5079] = 4975, + [5080] = 5042, + [5081] = 4953, [5082] = 5082, [5083] = 5083, - [5084] = 5084, - [5085] = 5085, + [5084] = 4932, + [5085] = 4952, [5086] = 5086, - [5087] = 5087, - [5088] = 5088, + [5087] = 924, + [5088] = 367, [5089] = 5089, - [5090] = 5087, - [5091] = 508, - [5092] = 5092, - [5093] = 5087, - [5094] = 5092, - [5095] = 5095, + [5090] = 3141, + [5091] = 5091, + [5092] = 972, + [5093] = 5083, + [5094] = 5094, + [5095] = 951, [5096] = 5096, - [5097] = 5097, + [5097] = 5086, [5098] = 5098, - [5099] = 5081, - [5100] = 5084, + [5099] = 5099, + [5100] = 5100, [5101] = 5101, [5102] = 5102, - [5103] = 5082, - [5104] = 5089, + [5103] = 5103, + [5104] = 5104, [5105] = 5105, [5106] = 5106, - [5107] = 5106, - [5108] = 5087, - [5109] = 5092, - [5110] = 5095, + [5107] = 5101, + [5108] = 5108, + [5109] = 5109, + [5110] = 2550, [5111] = 5111, - [5112] = 5097, - [5113] = 5098, - [5114] = 5081, - [5115] = 5084, - [5116] = 5095, - [5117] = 5106, + [5112] = 5112, + [5113] = 5113, + [5114] = 5114, + [5115] = 5115, + [5116] = 5100, + [5117] = 2542, [5118] = 5118, - [5119] = 5089, - [5120] = 5095, + [5119] = 5109, + [5120] = 5105, [5121] = 5121, - [5122] = 5087, - [5123] = 5087, - [5124] = 5124, - [5125] = 5097, - [5126] = 5098, - [5127] = 5081, - [5128] = 5128, - [5129] = 5097, - [5130] = 5089, - [5131] = 5098, - [5132] = 5081, - [5133] = 5097, - [5134] = 5087, - [5135] = 5098, - [5136] = 5097, - [5137] = 5098, - [5138] = 5081, - [5139] = 5111, - [5140] = 5140, - [5141] = 5089, - [5142] = 5087, - [5143] = 5081, - [5144] = 503, - [5145] = 5097, - [5146] = 5098, - [5147] = 5081, - [5148] = 5148, - [5149] = 5106, - [5150] = 5089, - [5151] = 5111, - [5152] = 5097, - [5153] = 5098, - [5154] = 5081, - [5155] = 5155, - [5156] = 5156, - [5157] = 5089, + [5122] = 5122, + [5123] = 5123, + [5124] = 5109, + [5125] = 5111, + [5126] = 5126, + [5127] = 5113, + [5128] = 5114, + [5129] = 5115, + [5130] = 5100, + [5131] = 5131, + [5132] = 5126, + [5133] = 5102, + [5134] = 5105, + [5135] = 5135, + [5136] = 5136, + [5137] = 5111, + [5138] = 5109, + [5139] = 517, + [5140] = 5113, + [5141] = 5114, + [5142] = 5115, + [5143] = 5143, + [5144] = 5144, + [5145] = 5105, + [5146] = 5146, + [5147] = 5113, + [5148] = 5114, + [5149] = 5109, + [5150] = 5150, + [5151] = 5113, + [5152] = 5114, + [5153] = 5115, + [5154] = 5115, + [5155] = 5105, + [5156] = 5105, + [5157] = 5114, [5158] = 5158, - [5159] = 5097, - [5160] = 5098, - [5161] = 5081, - [5162] = 5162, - [5163] = 5163, - [5164] = 5089, + [5159] = 5159, + [5160] = 5104, + [5161] = 5113, + [5162] = 5114, + [5163] = 5115, + [5164] = 5164, [5165] = 5165, - [5166] = 5097, - [5167] = 5098, - [5168] = 5081, - [5169] = 5083, - [5170] = 5170, - [5171] = 5089, - [5172] = 5083, - [5173] = 5097, - [5174] = 5098, - [5175] = 5081, - [5176] = 5176, - [5177] = 5148, - [5178] = 5089, + [5166] = 5105, + [5167] = 5167, + [5168] = 5113, + [5169] = 5114, + [5170] = 5115, + [5171] = 5171, + [5172] = 5099, + [5173] = 5105, + [5174] = 5174, + [5175] = 5113, + [5176] = 5114, + [5177] = 5115, + [5178] = 5109, [5179] = 5179, - [5180] = 5097, - [5181] = 5098, - [5182] = 5081, - [5183] = 5080, - [5184] = 5089, + [5180] = 5105, + [5181] = 5100, + [5182] = 5113, + [5183] = 5114, + [5184] = 5115, [5185] = 5185, - [5186] = 5097, - [5187] = 5098, - [5188] = 5081, - [5189] = 5158, - [5190] = 5089, - [5191] = 5191, - [5192] = 5097, - [5193] = 5098, - [5194] = 5081, - [5195] = 5185, - [5196] = 5196, - [5197] = 5197, - [5198] = 5083, - [5199] = 5084, + [5186] = 5102, + [5187] = 5105, + [5188] = 5106, + [5189] = 5113, + [5190] = 5114, + [5191] = 5115, + [5192] = 5192, + [5193] = 5193, + [5194] = 5105, + [5195] = 5195, + [5196] = 5113, + [5197] = 5114, + [5198] = 5115, + [5199] = 5199, [5200] = 5105, - [5201] = 5201, - [5202] = 5202, - [5203] = 5203, - [5204] = 503, + [5201] = 2519, + [5202] = 5113, + [5203] = 5114, + [5204] = 5115, [5205] = 5205, - [5206] = 5206, - [5207] = 5080, - [5208] = 5208, - [5209] = 5209, - [5210] = 5163, - [5211] = 5203, - [5212] = 5083, - [5213] = 5087, - [5214] = 5140, - [5215] = 5080, + [5206] = 5105, + [5207] = 5104, + [5208] = 5113, + [5209] = 5114, + [5210] = 5115, + [5211] = 5104, + [5212] = 5212, + [5213] = 5118, + [5214] = 5214, + [5215] = 5215, [5216] = 5216, - [5217] = 5092, - [5218] = 5218, - [5219] = 5102, - [5220] = 5095, - [5221] = 5221, + [5217] = 5185, + [5218] = 5165, + [5219] = 5109, + [5220] = 5158, + [5221] = 5100, [5222] = 5222, - [5223] = 5218, - [5224] = 5197, - [5225] = 5191, - [5226] = 5208, + [5223] = 5215, + [5224] = 5123, + [5225] = 5225, + [5226] = 5122, [5227] = 5227, - [5228] = 5092, - [5229] = 5229, - [5230] = 5230, - [5231] = 5083, + [5228] = 5105, + [5229] = 5109, + [5230] = 5105, + [5231] = 511, [5232] = 5232, - [5233] = 5080, + [5233] = 5123, [5234] = 5234, - [5235] = 5197, - [5236] = 5236, - [5237] = 5092, + [5235] = 5235, + [5236] = 5111, + [5237] = 5237, [5238] = 5238, - [5239] = 5084, - [5240] = 5089, - [5241] = 5165, - [5242] = 5191, - [5243] = 5243, - [5244] = 5244, - [5245] = 5245, - [5246] = 914, - [5247] = 5247, + [5239] = 5106, + [5240] = 5111, + [5241] = 5105, + [5242] = 5126, + [5243] = 5171, + [5244] = 5158, + [5245] = 5199, + [5246] = 5246, + [5247] = 5099, [5248] = 5248, [5249] = 5249, [5250] = 5250, - [5251] = 5208, - [5252] = 5197, - [5253] = 5086, - [5254] = 5084, - [5255] = 5179, - [5256] = 5197, + [5251] = 5225, + [5252] = 5111, + [5253] = 974, + [5254] = 5106, + [5255] = 5109, + [5256] = 5174, [5257] = 5257, - [5258] = 5084, - [5259] = 5259, + [5258] = 5123, + [5259] = 5135, [5260] = 5260, - [5261] = 5087, - [5262] = 5262, - [5263] = 2524, - [5264] = 5264, - [5265] = 5092, - [5266] = 508, - [5267] = 5196, - [5268] = 5208, - [5269] = 5269, - [5270] = 5270, - [5271] = 5271, - [5272] = 5106, - [5273] = 5083, - [5274] = 5247, - [5275] = 5201, - [5276] = 5095, + [5261] = 5103, + [5262] = 5106, + [5263] = 5126, + [5264] = 5179, + [5265] = 5265, + [5266] = 5111, + [5267] = 5109, + [5268] = 5268, + [5269] = 5111, + [5270] = 5159, + [5271] = 5123, + [5272] = 511, + [5273] = 5214, + [5274] = 5274, + [5275] = 5113, + [5276] = 5114, [5277] = 5277, - [5278] = 5278, - [5279] = 5118, - [5280] = 5148, - [5281] = 2531, - [5282] = 5140, - [5283] = 5283, - [5284] = 5097, - [5285] = 5098, - [5286] = 5081, - [5287] = 5206, - [5288] = 5250, - [5289] = 5278, - [5290] = 5271, - [5291] = 5111, - [5292] = 5292, - [5293] = 5098, - [5294] = 5185, - [5295] = 5283, - [5296] = 2506, - [5297] = 5081, - [5298] = 5083, - [5299] = 5250, - [5300] = 5080, - [5301] = 5301, - [5302] = 5202, - [5303] = 5229, - [5304] = 5304, - [5305] = 5197, - [5306] = 5140, - [5307] = 5218, - [5308] = 5308, - [5309] = 5084, - [5310] = 5089, - [5311] = 5208, - [5312] = 5312, - [5313] = 5218, - [5314] = 5314, - [5315] = 5086, - [5316] = 5292, - [5317] = 5089, - [5318] = 5140, - [5319] = 5128, - [5320] = 5089, - [5321] = 5321, - [5322] = 5221, - [5323] = 5118, - [5324] = 493, - [5325] = 5111, - [5326] = 5084, - [5327] = 5158, - [5328] = 5250, - [5329] = 5097, + [5278] = 5126, + [5279] = 5115, + [5280] = 509, + [5281] = 5281, + [5282] = 5282, + [5283] = 5111, + [5284] = 5113, + [5285] = 5159, + [5286] = 5286, + [5287] = 5126, + [5288] = 5114, + [5289] = 5113, + [5290] = 5114, + [5291] = 5099, + [5292] = 5115, + [5293] = 5250, + [5294] = 5174, + [5295] = 5295, + [5296] = 5159, + [5297] = 5297, + [5298] = 5212, + [5299] = 5115, + [5300] = 5300, + [5301] = 5179, + [5302] = 5100, + [5303] = 5195, + [5304] = 5102, + [5305] = 5305, + [5306] = 509, + [5307] = 5307, + [5308] = 5100, + [5309] = 5215, + [5310] = 5192, + [5311] = 2516, + [5312] = 5225, + [5313] = 5313, + [5314] = 5286, + [5315] = 5159, + [5316] = 5113, + [5317] = 5216, + [5318] = 5318, + [5319] = 5099, + [5320] = 5297, + [5321] = 5104, + [5322] = 5313, + [5323] = 5323, + [5324] = 5305, + [5325] = 5227, + [5326] = 5326, + [5327] = 5327, + [5328] = 5328, + [5329] = 5238, [5330] = 5330, - [5331] = 5218, - [5332] = 5087, - [5333] = 5087, - [5334] = 5095, - [5335] = 5089, - [5336] = 5083, - [5337] = 5321, + [5331] = 5105, + [5332] = 2569, + [5333] = 5333, + [5334] = 5327, + [5335] = 5335, + [5336] = 5336, + [5337] = 5106, [5338] = 5338, - [5339] = 5092, - [5340] = 508, - [5341] = 738, - [5342] = 5087, - [5343] = 5196, - [5344] = 5105, - [5345] = 5201, - [5346] = 5202, - [5347] = 5095, - [5348] = 488, - [5349] = 5222, - [5350] = 5092, - [5351] = 498, - [5352] = 2514, - [5353] = 5232, - [5354] = 5106, - [5355] = 5355, - [5356] = 5356, - [5357] = 5222, - [5358] = 967, - [5359] = 5095, - [5360] = 5089, - [5361] = 5361, - [5362] = 5097, - [5363] = 5082, - [5364] = 5355, - [5365] = 5098, - [5366] = 5081, - [5367] = 5243, - [5368] = 5368, - [5369] = 5111, - [5370] = 5158, - [5371] = 5218, - [5372] = 5264, - [5373] = 5179, + [5339] = 5174, + [5340] = 5174, + [5341] = 5341, + [5342] = 5105, + [5343] = 5109, + [5344] = 5179, + [5345] = 5100, + [5346] = 5346, + [5347] = 5123, + [5348] = 5109, + [5349] = 511, + [5350] = 5111, + [5351] = 5351, + [5352] = 5099, + [5353] = 5126, + [5354] = 5354, + [5355] = 5123, + [5356] = 4960, + [5357] = 5102, + [5358] = 5150, + [5359] = 5212, + [5360] = 5216, + [5361] = 5185, + [5362] = 5165, + [5363] = 5257, + [5364] = 5364, + [5365] = 5179, + [5366] = 5238, + [5367] = 5111, + [5368] = 5099, + [5369] = 5100, + [5370] = 5192, + [5371] = 5193, + [5372] = 920, + [5373] = 5144, [5374] = 5374, - [5375] = 5375, - [5376] = 5087, - [5377] = 5083, - [5378] = 5080, - [5379] = 5270, - [5380] = 5197, - [5381] = 5084, - [5382] = 5092, - [5383] = 5383, - [5384] = 5095, - [5385] = 5196, - [5386] = 5105, - [5387] = 5201, - [5388] = 5202, - [5389] = 5101, - [5390] = 5222, - [5391] = 5097, - [5392] = 5098, - [5393] = 5081, - [5394] = 5196, - [5395] = 5105, - [5396] = 5201, - [5397] = 5202, - [5398] = 5196, - [5399] = 5105, - [5400] = 5201, - [5401] = 5202, - [5402] = 5196, - [5403] = 5105, - [5404] = 5201, - [5405] = 5202, - [5406] = 5196, - [5407] = 5201, - [5408] = 5202, - [5409] = 5196, - [5410] = 5201, - [5411] = 5202, - [5412] = 5196, - [5413] = 5201, - [5414] = 5202, - [5415] = 5196, - [5416] = 5201, - [5417] = 5202, - [5418] = 5196, - [5419] = 5201, - [5420] = 5202, - [5421] = 5196, - [5422] = 5201, - [5423] = 5202, - [5424] = 5196, - [5425] = 5201, - [5426] = 5202, - [5427] = 5196, - [5428] = 5201, - [5429] = 5202, - [5430] = 5196, - [5431] = 5201, - [5432] = 5202, - [5433] = 5196, - [5434] = 5201, - [5435] = 5202, - [5436] = 5196, - [5437] = 5201, - [5438] = 5202, - [5439] = 5196, - [5440] = 5201, - [5441] = 5202, - [5442] = 5196, - [5443] = 5201, - [5444] = 5202, - [5445] = 5196, - [5446] = 5201, - [5447] = 5202, - [5448] = 5170, - [5449] = 5097, - [5450] = 5176, - [5451] = 5208, - [5452] = 5270, - [5453] = 5262, - [5454] = 5096, - [5455] = 5140, - [5456] = 5111, - [5457] = 5375, - [5458] = 5458, - [5459] = 5083, - [5460] = 5084, - [5461] = 5208, - [5462] = 5106, - [5463] = 5375, - [5464] = 5097, - [5465] = 5101, - [5466] = 5247, - [5467] = 5467, - [5468] = 5375, - [5469] = 5218, - [5470] = 5269, - [5471] = 5101, - [5472] = 5247, - [5473] = 5321, - [5474] = 5081, - [5475] = 5475, - [5476] = 5148, - [5477] = 5250, - [5478] = 5245, - [5479] = 5208, - [5480] = 5111, - [5481] = 5089, - [5482] = 5089, - [5483] = 5483, - [5484] = 5218, - [5485] = 5098, - [5486] = 5234, - [5487] = 5140, - [5488] = 5488, - [5489] = 5250, - [5490] = 5095, - [5491] = 5087, - [5492] = 5269, - [5493] = 503, - [5494] = 5494, - [5495] = 5095, - [5496] = 5089, - [5497] = 5259, - [5498] = 5269, - [5499] = 2536, - [5500] = 5321, - [5501] = 5097, - [5502] = 5250, - [5503] = 4943, - [5504] = 2537, - [5505] = 5270, - [5506] = 5098, - [5507] = 5179, - [5508] = 5081, - [5509] = 5095, + [5375] = 515, + [5376] = 5113, + [5377] = 5114, + [5378] = 5115, + [5379] = 5379, + [5380] = 5232, + [5381] = 5158, + [5382] = 5159, + [5383] = 5179, + [5384] = 5102, + [5385] = 5099, + [5386] = 5174, + [5387] = 5150, + [5388] = 5330, + [5389] = 5179, + [5390] = 5100, + [5391] = 5099, + [5392] = 5102, + [5393] = 5192, + [5394] = 5248, + [5395] = 5192, + [5396] = 5286, + [5397] = 5397, + [5398] = 5106, + [5399] = 5123, + [5400] = 5112, + [5401] = 5104, + [5402] = 5212, + [5403] = 5216, + [5404] = 5185, + [5405] = 5165, + [5406] = 5327, + [5407] = 5238, + [5408] = 5249, + [5409] = 5330, + [5410] = 5354, + [5411] = 5305, + [5412] = 5212, + [5413] = 5216, + [5414] = 5185, + [5415] = 5165, + [5416] = 5212, + [5417] = 5216, + [5418] = 5185, + [5419] = 5165, + [5420] = 5212, + [5421] = 5216, + [5422] = 5185, + [5423] = 5165, + [5424] = 5212, + [5425] = 5185, + [5426] = 5165, + [5427] = 5212, + [5428] = 5185, + [5429] = 5165, + [5430] = 5212, + [5431] = 5185, + [5432] = 5165, + [5433] = 5212, + [5434] = 5185, + [5435] = 5165, + [5436] = 5212, + [5437] = 5185, + [5438] = 5165, + [5439] = 5212, + [5440] = 5185, + [5441] = 5165, + [5442] = 5212, + [5443] = 5185, + [5444] = 5165, + [5445] = 5212, + [5446] = 5185, + [5447] = 5165, + [5448] = 5212, + [5449] = 5185, + [5450] = 5165, + [5451] = 5212, + [5452] = 5185, + [5453] = 5165, + [5454] = 5212, + [5455] = 5185, + [5456] = 5165, + [5457] = 5212, + [5458] = 5185, + [5459] = 5165, + [5460] = 5212, + [5461] = 5185, + [5462] = 5165, + [5463] = 5212, + [5464] = 5185, + [5465] = 5165, + [5466] = 5174, + [5467] = 5105, + [5468] = 5468, + [5469] = 953, + [5470] = 5470, + [5471] = 5286, + [5472] = 5282, + [5473] = 5260, + [5474] = 5150, + [5475] = 5109, + [5476] = 5476, + [5477] = 516, + [5478] = 5327, + [5479] = 5123, + [5480] = 5330, + [5481] = 5111, + [5482] = 5265, + [5483] = 5113, + [5484] = 5114, + [5485] = 5115, + [5486] = 5199, + [5487] = 5297, + [5488] = 5098, + [5489] = 5192, + [5490] = 5159, + [5491] = 5159, + [5492] = 5265, + [5493] = 5099, + [5494] = 5192, + [5495] = 5100, + [5496] = 5496, + [5497] = 5102, + [5498] = 2528, + [5499] = 5113, + [5500] = 5297, + [5501] = 5205, + [5502] = 5104, + [5503] = 509, + [5504] = 5104, + [5505] = 5118, + [5506] = 5114, + [5507] = 5115, + [5508] = 5105, + [5509] = 5313, [5510] = 5098, [5511] = 5511, + [5512] = 5468, + [5513] = 5115, + [5514] = 5496, + [5515] = 5199, + [5516] = 5109, + [5517] = 5109, + [5518] = 5098, + [5519] = 5519, + [5520] = 5351, + [5521] = 5111, + [5522] = 5105, + [5523] = 5113, + [5524] = 5114, + [5525] = 5115, + [5526] = 5305, + [5527] = 5123, + [5528] = 5099, + [5529] = 5529, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -11220,1803 +11238,1803 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '"', 1713, - '#', 2216, - '$', 1538, - '&', 839, - '\'', 1716, - '(', 1589, - ')', 1644, - '*', 1135, - '+', 1140, - ',', 1497, - '-', 1141, - '.', 1749, - '/', 1137, - ':', 1741, - ';', 1479, - '<', 1164, - '=', 683, - '>', 1167, - '?', 1745, - '@', 1509, - '[', 1693, - ']', 1494, - '^', 1759, - '_', 1530, - '`', 1720, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1745, + '"', 1712, + '#', 2215, + '$', 1537, + '&', 838, + '\'', 1715, + '(', 1588, + ')', 1643, + '*', 1134, + '+', 1139, + ',', 1496, + '-', 1140, + '.', 1748, + '/', 1136, + ':', 1740, + ';', 1478, + '<', 1163, + '=', 682, + '>', 1166, + '?', 1744, + '@', 1508, + '[', 1692, + ']', 1493, + '^', 1758, + '_', 1529, + '`', 1719, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(576); + lookahead == ' ') SKIP(575); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1396); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1395); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '#', 2216, - '$', 1498, - '(', 1495, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1753, - ':', 1491, - '<', 1164, - '=', 683, - '>', 1507, - '?', 1745, - '@', 1509, - '[', 1493, - ']', 1494, - '|', 1480, + '!', 1745, + '#', 2215, + '$', 1497, + '(', 1494, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1752, + ':', 1490, + '<', 1163, + '=', 682, + '>', 1506, + '?', 1744, + '@', 1508, + '[', 1492, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '#', 2216, - '$', 1498, - '(', 1495, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1752, - ':', 1491, - '=', 683, - '>', 1507, - '?', 1745, - '[', 1493, - ']', 1494, - '|', 1480, + '!', 1745, + '#', 2215, + '$', 1497, + '(', 1494, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1751, + ':', 1490, + '=', 682, + '>', 1506, + '?', 1744, + '[', 1492, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '#', 2216, - '(', 1495, - ')', 1496, - '-', 297, - '.', 1748, - ':', 1741, - ';', 1479, - '=', 685, - '>', 1507, - '?', 1745, - '[', 1493, - 'a', 424, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1745, + '#', 2215, + '(', 1494, + ')', 1495, + '-', 296, + '.', 1747, + ':', 1740, + ';', 1478, + '=', 684, + '>', 1506, + '?', 1744, + '[', 1492, + 'a', 423, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '#', 2216, - '(', 1495, - ')', 1496, - '-', 297, - '.', 1750, - ':', 1741, - ';', 1479, - '=', 685, - '>', 1507, - '?', 1745, - '[', 1493, - 'a', 424, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1745, + '#', 2215, + '(', 1494, + ')', 1495, + '-', 296, + '.', 1749, + ':', 1740, + ';', 1478, + '=', 684, + '>', 1506, + '?', 1744, + '[', 1492, + 'a', 423, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '#', 2216, - ')', 1496, - '.', 1748, - ':', 1741, - ';', 1479, - '=', 323, - '?', 1745, - 'a', 424, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1745, + '#', 2215, + ')', 1495, + '.', 1747, + ':', 1740, + ';', 1478, + '=', 322, + '?', 1744, + 'a', 423, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(6); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '#', 2216, - ')', 1496, - '.', 1750, - ':', 1741, - ';', 1479, - '=', 323, - '?', 1745, - 'a', 424, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1745, + '#', 2215, + ')', 1495, + '.', 1749, + ':', 1740, + ';', 1478, + '=', 322, + '?', 1744, + 'a', 423, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(6); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '$', 1498, - '(', 1589, - '*', 1540, - '+', 1604, - '-', 1521, - '.', 1632, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1894, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, - '{', 1526, + '!', 1820, + '#', 2215, + '$', 1497, + '(', 1588, + '*', 1539, + '+', 1603, + '-', 1520, + '.', 1631, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1893, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 9: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '$', 1498, - '(', 1589, - '*', 1540, - '+', 1604, - '-', 1521, - '.', 1843, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1894, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, - '{', 1526, + '!', 1820, + '#', 2215, + '$', 1497, + '(', 1588, + '*', 1539, + '+', 1603, + '-', 1520, + '.', 1842, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1893, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1623, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1833, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1907, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '{', 1526, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1622, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1832, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1906, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '{', 1525, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1623, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, - '{', 1526, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1622, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1843, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '_', 1841, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1833, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1907, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '{', 1526, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '_', 1840, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1832, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1906, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '{', 1525, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1833, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1907, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '{', 1526, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1832, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1906, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '{', 1525, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1836, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1907, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '{', 1526, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1835, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1906, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '{', 1525, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, - '{', 1526, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1843, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, - '{', 1526, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1843, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'a', 1893, - 'b', 1880, - 'e', 1894, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, - '{', 1526, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'a', 1892, + 'b', 1879, + 'e', 1893, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1622, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, - '{', 1526, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1621, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1843, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, - '{', 1526, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1843, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, - '{', 1526, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1843, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - '<', 1578, - '=', 1823, - '>', 1508, - 'a', 1893, - 'b', 1880, - 'e', 1894, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, - '{', 1526, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + '<', 1577, + '=', 1822, + '>', 1507, + 'a', 1892, + 'b', 1879, + 'e', 1893, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '$', 1498, - '*', 1540, - '+', 1605, - '-', 1522, - '.', 337, - '/', 1595, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 428, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 456, - 's', 490, - 'x', 435, - '{', 1526, + '!', 319, + '#', 2215, + '$', 1497, + '*', 1539, + '+', 1604, + '-', 1521, + '.', 336, + '/', 1594, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 427, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 455, + 's', 489, + 'x', 434, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, + '!', 319, + '#', 2215, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 287, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 289, - 's', 490, - 'x', 435, - '|', 1480, + '!', 319, + '#', 2215, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 286, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 288, + 's', 489, + 'x', 434, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ':', 1741, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ':', 1740, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 287, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 289, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 286, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 288, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, + '!', 319, + '#', 2215, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 287, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 289, - 's', 490, - 'x', 435, - '|', 1480, + '!', 319, + '#', 2215, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 286, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 288, + 's', 489, + 'x', 434, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 428, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 456, - 's', 490, - 'x', 435, - '{', 1526, + '!', 319, + '#', 2215, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 427, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 455, + 's', 489, + 'x', 434, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - ')', 1496, - '+', 712, - '-', 1519, - '.', 707, - '0', 1651, - ':', 1741, - ';', 1479, - '=', 1757, - '@', 1490, - 'I', 824, - 'N', 820, - '[', 1493, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 't', 786, - 'u', 799, - 'w', 758, - '{', 1526, - '}', 1527, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + ')', 1495, + '+', 711, + '-', 1518, + '.', 706, + '0', 1650, + ':', 1740, + ';', 1478, + '=', 1756, + '@', 1489, + 'I', 823, + 'N', 819, + '[', 1492, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 't', 785, + 'u', 798, + 'w', 757, + '{', 1525, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - ')', 1496, - '+', 712, - '-', 1519, - '.', 707, - '0', 1651, - ':', 1741, - ';', 1479, - '@', 1490, - 'I', 824, - 'N', 820, - '[', 1493, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 't', 786, - 'u', 799, - 'w', 758, - '{', 1526, - '}', 1527, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + ')', 1495, + '+', 711, + '-', 1518, + '.', 706, + '0', 1650, + ':', 1740, + ';', 1478, + '@', 1489, + 'I', 823, + 'N', 819, + '[', 1492, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 't', 785, + 'u', 798, + 'w', 757, + '{', 1525, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - ')', 1496, - '+', 1608, - '-', 1519, - '.', 708, - '0', 1651, - ':', 1491, - ';', 1479, - '<', 1164, - '=', 323, - '>', 1507, - '@', 1490, - 'I', 824, - 'N', 820, - '[', 1493, - ']', 1494, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 't', 786, - 'u', 799, - 'w', 758, - '{', 1526, - '|', 1480, - '}', 1527, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + ')', 1495, + '+', 1607, + '-', 1518, + '.', 707, + '0', 1650, + ':', 1490, + ';', 1478, + '<', 1163, + '=', 322, + '>', 1506, + '@', 1489, + 'I', 823, + 'N', 819, + '[', 1492, + ']', 1493, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 't', 785, + 'u', 798, + 'w', 757, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(839); + (lookahead < '+' || '.' < lookahead)) ADVANCE(838); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - ')', 1496, - '+', 1608, - '-', 1519, - '.', 708, - '0', 1651, - ':', 1491, - ';', 1479, - '=', 323, - '>', 1507, - '@', 1490, - 'I', 824, - 'N', 820, - '[', 1493, - ']', 1494, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 't', 786, - 'u', 799, - 'w', 758, - '{', 1526, - '|', 1480, - '}', 1527, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + ')', 1495, + '+', 1607, + '-', 1518, + '.', 707, + '0', 1650, + ':', 1490, + ';', 1478, + '=', 322, + '>', 1506, + '@', 1489, + 'I', 823, + 'N', 819, + '[', 1492, + ']', 1493, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 't', 785, + 'u', 798, + 'w', 757, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(839); + (lookahead < '0' || '>' < lookahead)) ADVANCE(838); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 712, - '-', 1519, - '.', 707, - '0', 1651, - ';', 1479, - '=', 1757, - 'I', 824, - 'N', 820, - '[', 1493, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 't', 786, - 'u', 799, - 'w', 762, - '{', 1526, - '\t', 1478, - ' ', 1478, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 711, + '-', 1518, + '.', 706, + '0', 1650, + ';', 1478, + '=', 1756, + 'I', 823, + 'N', 819, + '[', 1492, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 't', 785, + 'u', 798, + 'w', 761, + '{', 1525, + '\t', 1477, + ' ', 1477, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 712, - '-', 1519, - '.', 707, - '0', 1651, - '=', 683, - '>', 1507, - '@', 1509, - 'I', 824, - 'N', 820, - '[', 1493, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 't', 786, - 'u', 799, - 'w', 762, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 711, + '-', 1518, + '.', 706, + '0', 1650, + '=', 682, + '>', 1506, + '@', 1508, + 'I', 823, + 'N', 819, + '[', 1492, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 't', 785, + 'u', 798, + 'w', 761, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 712, - '-', 1519, - '.', 707, - '0', 1651, - '=', 683, - '>', 1507, - 'I', 824, - 'N', 820, - '[', 1493, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 't', 786, - 'u', 799, - 'w', 762, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 711, + '-', 1518, + '.', 706, + '0', 1650, + '=', 682, + '>', 1506, + 'I', 823, + 'N', 819, + '[', 1492, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 't', 785, + 'u', 798, + 'w', 761, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 712, - '-', 299, - '.', 728, - '=', 1757, - 'I', 824, - 'N', 820, - '[', 1493, - ']', 1494, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 711, + '-', 298, + '.', 727, + '=', 1756, + 'I', 823, + 'N', 819, + '[', 1492, + ']', 1493, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 712, - '-', 299, - '.', 728, - 'I', 824, - 'N', 820, - '[', 1493, - ']', 1494, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 711, + '-', 298, + '.', 727, + 'I', 823, + 'N', 819, + '[', 1492, + ']', 1493, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 309, - '-', 1519, - '.', 310, - '0', 1654, - ':', 1741, - 'N', 538, - '[', 1493, - '_', 339, - '`', 1720, - 'f', 348, - 'n', 446, - 't', 461, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 308, + '-', 1518, + '.', 309, + '0', 1653, + ':', 1740, + 'N', 537, + '[', 1492, + '_', 338, + '`', 1719, + 'f', 347, + 'n', 445, + 't', 460, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(547); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1670); + lookahead == 'i') ADVANCE(546); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 1608, - '-', 1519, - '.', 711, - '0', 1656, - 'I', 824, - 'N', 820, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - '}', 1527, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 1607, + '-', 1518, + '.', 710, + '0', 1655, + 'I', 823, + 'N', 819, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 42: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2028, - '-', 1519, - '.', 2026, - '0', 1652, - 'N', 2075, - '[', 1493, - '_', 2040, - '`', 1720, - 'f', 2043, - 'n', 2055, - 't', 2058, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2027, + '-', 1518, + '.', 2025, + '0', 1651, + 'N', 2074, + '[', 1492, + '_', 2039, + '`', 1719, + 'f', 2042, + 'n', 2054, + 't', 2057, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(42); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2079); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(2078); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); case 43: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2028, - '-', 1516, - '.', 2027, - '0', 1652, - ':', 1741, - ';', 1479, - 'N', 2075, - '[', 1493, - '_', 2040, - '`', 1720, - 'e', 2017, - 'f', 2043, - 'n', 2071, - 'o', 2018, - 't', 2058, - '{', 1526, - '|', 1480, - '}', 1527, - '\t', 1477, - ' ', 1477, - 'I', 2079, - 'i', 2079, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2027, + '-', 1515, + '.', 2026, + '0', 1651, + ':', 1740, + ';', 1478, + 'N', 2074, + '[', 1492, + '_', 2039, + '`', 1719, + 'e', 2016, + 'f', 2042, + 'n', 2070, + 'o', 2017, + 't', 2057, + '{', 1525, + '|', 1479, + '}', 1526, + '\t', 1476, + ' ', 1476, + 'I', 2078, + 'i', 2078, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2098); + lookahead != ']') ADVANCE(2097); END_STATE(); case 44: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2028, - '-', 1516, - '.', 2027, - '0', 1652, - ';', 1479, - 'N', 2075, - '[', 1493, - '_', 2040, - '`', 1720, - 'e', 2021, - 'f', 2043, - 'n', 2071, - 'o', 2022, - 't', 2058, - '{', 1526, - '\t', 1478, - ' ', 1478, - 'I', 2079, - 'i', 2079, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2027, + '-', 1515, + '.', 2026, + '0', 1651, + ';', 1478, + 'N', 2074, + '[', 1492, + '_', 2039, + '`', 1719, + 'e', 2020, + 'f', 2042, + 'n', 2070, + 'o', 2021, + 't', 2057, + '{', 1525, + '\t', 1477, + ' ', 1477, + 'I', 2078, + 'i', 2078, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); case 45: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2110, - ',', 1497, - '-', 2109, - '.', 2111, - '0', 1653, - 'N', 2128, - '[', 1493, - ']', 1494, - '_', 2115, - '`', 1720, - 'f', 2118, - 'n', 2127, - 't', 2124, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2109, + ',', 1496, + '-', 2108, + '.', 2110, + '0', 1652, + 'N', 2127, + '[', 1492, + ']', 1493, + '_', 2114, + '`', 1719, + 'f', 2117, + 'n', 2126, + 't', 2123, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2134); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); + lookahead == 'i') ADVANCE(2133); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2155); END_STATE(); case 46: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2167, - '-', 2166, - '.', 2165, - '0', 1655, - 'N', 2182, - '[', 1493, - '_', 2169, - '`', 1720, - 'f', 2172, - 'n', 2181, - 't', 2178, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2166, + '-', 2165, + '.', 2164, + '0', 1654, + 'N', 2181, + '[', 1492, + '_', 2168, + '`', 1719, + 'f', 2171, + 'n', 2180, + 't', 2177, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2188); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2202); + lookahead == 'i') ADVANCE(2187); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2201); END_STATE(); case 47: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1498, - '\'', 1716, - '(', 1495, - '+', 2028, - '-', 298, - '.', 2026, - '0', 1652, - 'N', 2075, - '[', 1493, - '_', 1529, - '`', 1720, - 'f', 2043, - 'n', 2071, - 't', 2058, - '{', 1526, - '}', 1527, + '"', 1712, + '#', 2215, + '$', 1497, + '\'', 1715, + '(', 1494, + '+', 2027, + '-', 297, + '.', 2025, + '0', 1651, + 'N', 2074, + '[', 1492, + '_', 1528, + '`', 1719, + 'f', 2042, + 'n', 2070, + 't', 2057, + '{', 1525, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(47); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2079); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(2078); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); case 48: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1498, - '\'', 1716, - '(', 1495, - '+', 2110, - ',', 1497, - '-', 2109, - '.', 2108, - '0', 1653, - 'N', 2128, - '[', 1493, - ']', 1494, - '_', 2115, - '`', 1720, - 'f', 2118, - 'n', 2127, - 't', 2124, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1497, + '\'', 1715, + '(', 1494, + '+', 2109, + ',', 1496, + '-', 2108, + '.', 2107, + '0', 1652, + 'N', 2127, + '[', 1492, + ']', 1493, + '_', 2114, + '`', 1719, + 'f', 2117, + 'n', 2126, + 't', 2123, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(48); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2134); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); + lookahead == 'i') ADVANCE(2133); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2155); END_STATE(); case 49: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1498, - '\'', 1716, - '(', 1495, - '-', 1514, - '`', 1720, - 'f', 1543, - 'n', 1547, - 't', 1548, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1497, + '\'', 1715, + '(', 1494, + '-', 1513, + '`', 1719, + 'f', 1542, + 'n', 1546, + 't', 1547, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(49); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 50: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 2167, - '-', 2166, - '.', 2165, - '>', 1507, - 'N', 2182, - '_', 2169, - '`', 1720, - 'f', 2172, - 'n', 2181, - 't', 2178, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 2166, + '-', 2165, + '.', 2164, + '>', 1506, + 'N', 2181, + '_', 2168, + '`', 1719, + 'f', 2171, + 'n', 2180, + 't', 2177, ); if (lookahead == '\t' || lookahead == ' ') SKIP(50); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2188); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2202); + lookahead == 'i') ADVANCE(2187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2201); END_STATE(); case 51: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2219, - '$', 1500, - '\'', 1716, - '(', 1495, - '+', 863, - '-', 1520, - '.', 864, - '0', 879, - ':', 1741, - 'N', 1040, - '[', 1493, - '_', 881, - '`', 1720, - 'f', 889, - 'n', 963, - 't', 978, - '{', 1526, + '"', 1712, + '#', 2218, + '$', 1499, + '\'', 1715, + '(', 1494, + '+', 862, + '-', 1519, + '.', 863, + '0', 878, + ':', 1740, + 'N', 1039, + '[', 1492, + '_', 880, + '`', 1719, + 'f', 888, + 'n', 962, + 't', 977, + '{', 1525, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1045); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(884); + lookahead == 'i') ADVANCE(1044); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(883); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1066); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1065); END_STATE(); case 52: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - '+', 1989, - ',', 1497, - '-', 1517, - '.', 1628, - ':', 1491, - '=', 683, - ']', 1494, - '_', 1368, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + '+', 1988, + ',', 1496, + '-', 1516, + '.', 1627, + ':', 1490, + '=', 682, + ']', 1493, + '_', 1367, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); @@ -13026,27 +13044,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 53: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - '+', 1989, - ',', 1497, - '-', 1517, - '.', 1990, - ':', 1491, - '=', 683, - ']', 1494, - '_', 1368, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + '+', 1988, + ',', 1496, + '-', 1516, + '.', 1989, + ':', 1490, + '=', 682, + ']', 1493, + '_', 1367, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); @@ -13056,49 +13074,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 54: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1629, - ':', 1491, - '=', 683, - 'E', 1358, - 'G', 1366, - 'K', 1366, - 'M', 1366, - 'P', 1366, - 'T', 1366, - ']', 1494, - 'd', 1371, - 'e', 1357, - 'g', 1365, - 'h', 1389, - 'k', 1365, - 'm', 1367, - 'n', 1391, - 'p', 1365, - 's', 1376, - 't', 1365, - 'u', 1391, - 'w', 1377, - '|', 1480, - 0xb5, 1391, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1628, + ':', 1490, + '=', 682, + 'E', 1357, + 'G', 1365, + 'K', 1365, + 'M', 1365, + 'P', 1365, + 'T', 1365, + ']', 1493, + 'd', 1370, + 'e', 1356, + 'g', 1364, + 'h', 1388, + 'k', 1364, + 'm', 1366, + 'n', 1390, + 'p', 1364, + 's', 1375, + 't', 1364, + 'u', 1390, + 'w', 1376, + '|', 1479, + 0xb5, 1390, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); + lookahead == 'b') ADVANCE(1684); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13106,29 +13124,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 55: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1629, - ':', 1491, - '=', 683, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1628, + ':', 1490, + '=', 682, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1359); + lookahead == 'e') ADVANCE(1358); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13136,49 +13154,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 56: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1993, - ':', 1491, - '=', 683, - 'E', 1358, - 'G', 1366, - 'K', 1366, - 'M', 1366, - 'P', 1366, - 'T', 1366, - ']', 1494, - '_', 1368, - 'd', 1371, - 'e', 1357, - 'g', 1365, - 'h', 1389, - 'k', 1365, - 'm', 1367, - 'n', 1391, - 'p', 1365, - 's', 1376, - 't', 1365, - 'u', 1391, - 'w', 1377, - '|', 1480, - 0xb5, 1391, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1992, + ':', 1490, + '=', 682, + 'E', 1357, + 'G', 1365, + 'K', 1365, + 'M', 1365, + 'P', 1365, + 'T', 1365, + ']', 1493, + '_', 1367, + 'd', 1370, + 'e', 1356, + 'g', 1364, + 'h', 1388, + 'k', 1364, + 'm', 1366, + 'n', 1390, + 'p', 1364, + 's', 1375, + 't', 1364, + 'u', 1390, + 'w', 1376, + '|', 1479, + 0xb5, 1390, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); + lookahead == 'b') ADVANCE(1684); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13186,49 +13204,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 57: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1993, - ':', 1491, - '=', 683, - 'E', 1358, - 'G', 1366, - 'K', 1366, - 'M', 1366, - 'P', 1366, - 'T', 1366, - ']', 1494, - 'd', 1371, - 'e', 1357, - 'g', 1365, - 'h', 1389, - 'k', 1365, - 'm', 1367, - 'n', 1391, - 'p', 1365, - 's', 1376, - 't', 1365, - 'u', 1391, - 'w', 1377, - '|', 1480, - 0xb5, 1391, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1992, + ':', 1490, + '=', 682, + 'E', 1357, + 'G', 1365, + 'K', 1365, + 'M', 1365, + 'P', 1365, + 'T', 1365, + ']', 1493, + 'd', 1370, + 'e', 1356, + 'g', 1364, + 'h', 1388, + 'k', 1364, + 'm', 1366, + 'n', 1390, + 'p', 1364, + 's', 1375, + 't', 1364, + 'u', 1390, + 'w', 1376, + '|', 1479, + 0xb5, 1390, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); + lookahead == 'b') ADVANCE(1684); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13236,48 +13254,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 58: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1993, - ':', 1491, - '=', 683, - 'E', 1366, - 'G', 1366, - 'K', 1366, - 'M', 1366, - 'P', 1366, - 'T', 1366, - ']', 1494, - 'd', 1371, - 'e', 1365, - 'g', 1365, - 'h', 1389, - 'k', 1365, - 'm', 1367, - 'n', 1391, - 'p', 1365, - 's', 1376, - 't', 1365, - 'u', 1391, - 'w', 1377, - '|', 1480, - 0xb5, 1391, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1992, + ':', 1490, + '=', 682, + 'E', 1365, + 'G', 1365, + 'K', 1365, + 'M', 1365, + 'P', 1365, + 'T', 1365, + ']', 1493, + 'd', 1370, + 'e', 1364, + 'g', 1364, + 'h', 1388, + 'k', 1364, + 'm', 1366, + 'n', 1390, + 'p', 1364, + 's', 1375, + 't', 1364, + 'u', 1390, + 'w', 1376, + '|', 1479, + 0xb5, 1390, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); + lookahead == 'b') ADVANCE(1684); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13285,30 +13303,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 59: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1993, - ':', 1491, - '=', 683, - ']', 1494, - '_', 1368, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1992, + ':', 1490, + '=', 682, + ']', 1493, + '_', 1367, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1359); + lookahead == 'e') ADVANCE(1358); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13316,30 +13334,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 60: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1993, - ':', 1491, - '=', 683, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1992, + ':', 1490, + '=', 682, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1359); + lookahead == 'e') ADVANCE(1358); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13347,27 +13365,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 61: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1993, - ':', 1491, - '=', 683, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1992, + ':', 1490, + '=', 682, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13375,29 +13393,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 62: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1627, - ':', 1491, - '=', 683, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1626, + ':', 1490, + '=', 682, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1359); + lookahead == 'e') ADVANCE(1358); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13405,30 +13423,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 63: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1991, - ':', 1491, - '=', 683, - ']', 1494, - '_', 1368, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1990, + ':', 1490, + '=', 682, + ']', 1493, + '_', 1367, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1359); + lookahead == 'e') ADVANCE(1358); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13436,30 +13454,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 64: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1991, - ':', 1491, - '=', 683, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1990, + ':', 1490, + '=', 682, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1359); + lookahead == 'e') ADVANCE(1358); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13467,27 +13485,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 65: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1991, - ':', 1491, - '=', 683, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 1990, + ':', 1490, + '=', 682, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(75); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13495,3080 +13513,3054 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); + lookahead == '^') ADVANCE(2013); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1395); END_STATE(); case 66: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - '.', 1632, - ';', 1479, - '_', 1841, - '\t', 1478, - ' ', 1478, - '+', 1819, - '-', 1819, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1631, + ';', 1478, + '_', 1840, + '\t', 1477, + ' ', 1477, + '+', 1818, + '-', 1818, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 67: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - '.', 1632, - '=', 1824, - '_', 1841, - 'i', 1873, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1631, + '=', 1823, + '_', 1840, + 'i', 1872, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(77); + lookahead == ' ') SKIP(76); if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + lookahead == '-') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - '.', 1632, - '=', 1824, - '_', 1841, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1631, + '=', 1823, + '_', 1840, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(78); + lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + lookahead == '-') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 69: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - '.', 1843, - ';', 1479, - '_', 1841, - '\t', 1478, - ' ', 1478, - '+', 1819, - '-', 1819, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1842, + ';', 1478, + '_', 1840, + '\t', 1477, + ' ', 1477, + '+', 1818, + '-', 1818, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - '.', 1843, - '=', 1824, - '_', 1841, - 'i', 1873, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1842, + '=', 1823, + '_', 1840, + 'i', 1872, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(77); + lookahead == ' ') SKIP(76); if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + lookahead == '-') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - '.', 1843, - '=', 1824, - '_', 1841, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1842, + '=', 1823, + '_', 1840, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(78); + lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + lookahead == '-') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1495, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 312, - ':', 1491, - '=', 683, - '[', 1493, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1494, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 311, + ':', 1490, + '=', 682, + '?', 1510, + '[', 1692, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); + lookahead == ' ') SKIP(73); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1495, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 1991, - ':', 1491, - '=', 683, - '[', 1693, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + '(', 1494, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 311, + ':', 1490, + '=', 682, + '[', 1492, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(2014); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1396); + lookahead == ' ') SKIP(73); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - ')', 1496, - '+', 314, - ',', 1497, - '-', 1518, - '.', 313, - ':', 1491, - '=', 683, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + ')', 1495, + '+', 313, + ',', 1496, + '-', 1517, + '.', 312, + ':', 1490, + '=', 682, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 312, - ':', 1491, - '=', 683, - '?', 1511, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + ')', 1495, + ',', 1496, + '-', 1514, + '.', 311, + ':', 1490, + '=', 682, + ']', 1493, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); + lookahead == ' ') SKIP(75); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); END_STATE(); case 76: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - ')', 1496, - ',', 1497, - '-', 1515, - '.', 312, - ':', 1491, - '=', 683, - ']', 1494, - '|', 1480, + '#', 2215, + '$', 1497, + '.', 336, + '=', 322, + 'i', 385, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); + if (lookahead == '+' || + lookahead == '-') ADVANCE(313); END_STATE(); case 77: - ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '#', 2216, - '$', 1498, - '.', 337, - '=', 323, - 'i', 386, - '|', 1480, - ); + if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1497); + if (lookahead == '.') ADVANCE(336); + if (lookahead == '=') ADVANCE(322); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(313); END_STATE(); case 78: - if (lookahead == '\n') ADVANCE(1476); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1480); - if (lookahead == '\t' || - lookahead == ' ') SKIP(78); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + ADVANCE_MAP( + '\n', 1475, + '\r', 1, + '#', 2215, + '(', 1588, + '.', 1622, + ';', 1478, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 0xb5, 1918, + '\t', 1477, + ' ', 1477, + 'B', 1680, + 'b', 1680, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - '.', 1623, - ';', 1479, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 0xb5, 1919, - '\t', 1478, - ' ', 1478, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1622, + ';', 1478, + '\t', 1477, + ' ', 1477, + 'E', 1846, + 'e', 1846, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - '.', 1623, - ';', 1479, - '\t', 1478, - ' ', 1478, - 'E', 1847, - 'e', 1847, + '#', 2215, + '(', 1588, + '.', 1817, + ';', 1478, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '_', 1840, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 0xb5, 1918, + '\t', 1477, + ' ', 1477, + 'B', 1680, + 'b', 1680, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - '.', 1818, - ';', 1479, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '_', 1841, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 0xb5, 1919, - '\t', 1478, - ' ', 1478, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1817, + ';', 1478, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 0xb5, 1918, + '\t', 1477, + ' ', 1477, + 'B', 1680, + 'b', 1680, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 82: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - '.', 1818, - ';', 1479, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 0xb5, 1919, - '\t', 1478, - ' ', 1478, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1817, + ';', 1478, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1836, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 0xb5, 1918, + '\t', 1477, + ' ', 1477, + 'B', 1680, + 'b', 1680, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - '.', 1818, - ';', 1479, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1837, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 0xb5, 1919, - '\t', 1478, - ' ', 1478, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1817, + ';', 1478, + '_', 1840, + '\t', 1477, + ' ', 1477, + 'E', 1846, + 'e', 1846, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - '.', 1818, - ';', 1479, - '_', 1841, - '\t', 1478, - ' ', 1478, - 'E', 1847, - 'e', 1847, + '#', 2215, + '(', 1588, + '.', 1817, + ';', 1478, + '\t', 1477, + ' ', 1477, + 'E', 1846, + 'e', 1846, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - '.', 1818, - ';', 1479, - '\t', 1478, - ' ', 1478, - 'E', 1847, - 'e', 1847, + '#', 2215, + '(', 1588, + '.', 1817, + ';', 1478, + '\t', 1477, + ' ', 1477, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - '.', 1818, - ';', 1479, - '\t', 1478, - ' ', 1478, + '#', 2215, + '(', 1588, + '.', 1621, + ';', 1478, + '\t', 1477, + ' ', 1477, + 'E', 1846, + 'e', 1846, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - '.', 1622, - ';', 1479, - '\t', 1478, - ' ', 1478, - 'E', 1847, - 'e', 1847, + '#', 2215, + '(', 1588, + ';', 1478, + '_', 1840, + '\t', 1477, + ' ', 1477, + 'E', 1846, + 'e', 1846, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 88: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ';', 1479, - '_', 1841, - '\t', 1478, - ' ', 1478, - 'E', 1847, - 'e', 1847, + '#', 2215, + '(', 1588, + ';', 1478, + '\t', 1477, + ' ', 1477, + 'E', 1846, + 'e', 1846, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 89: + if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == ';') ADVANCE(1478); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1477); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + END_STATE(); + case 90: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ';', 1479, - '\t', 1478, - ' ', 1478, - 'E', 1847, - 'e', 1847, + '#', 2215, + '(', 1494, + ')', 1495, + ',', 1496, + '-', 296, + '.', 1750, + ':', 1490, + ';', 1478, + '=', 682, + '>', 1506, + '@', 1508, + '[', 1492, + ']', 1493, + 'c', 1373, + 'f', 1392, + 'i', 1381, + 'o', 1384, + 'v', 1369, + '{', 1525, + '}', 1526, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); - END_STATE(); - case 90: - if (lookahead == '\n') ADVANCE(1476); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == ';') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1478); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(91); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1495, - ')', 1496, - ',', 1497, - '-', 297, - '.', 1751, - ':', 1491, - ';', 1479, - '=', 683, - '>', 1507, - '@', 1509, - '[', 1493, - ']', 1494, - 'c', 1374, - 'f', 1393, - 'i', 1382, - 'o', 1385, - 'v', 1370, - '{', 1526, - '}', 1527, + '#', 2215, + '(', 1494, + ')', 1495, + ',', 1496, + '-', 296, + '.', 1750, + ':', 1490, + ';', 1478, + '=', 682, + '>', 1506, + '[', 1492, + ']', 1493, + 'c', 1373, + 'f', 1392, + 'i', 1381, + 'o', 1384, + 'v', 1369, + '{', 1525, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(92); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); + lookahead == ' ') SKIP(91); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1495, - ')', 1496, - ',', 1497, - '-', 297, - '.', 1751, - ':', 1491, - ';', 1479, - '=', 683, - '>', 1507, - '[', 1493, - ']', 1494, - 'c', 1374, - 'f', 1393, - 'i', 1382, - 'o', 1385, - 'v', 1370, - '{', 1526, - '}', 1527, + '#', 2215, + '.', 1622, + '=', 1823, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'i', 1872, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(92); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); + lookahead == ' ') SKIP(113); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '.', 1623, - '=', 1824, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'i', 1873, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - 0xb5, 1919, + '#', 2215, + '.', 1622, + '=', 1823, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 94: - ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '#', 2216, - '.', 1623, - '=', 1824, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - 0xb5, 1919, - ); + if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1622); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == 'i') ADVANCE(1872); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(113); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1623); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == 'i') ADVANCE(1873); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1622); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(1476); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1623); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == '|') ADVANCE(1480); + ADVANCE_MAP( + '\n', 1475, + '\r', 1, + '#', 2215, + '.', 1817, + '=', 1823, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '_', 1840, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'i', 1872, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + 0xb5, 1918, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(113); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 97: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '.', 1818, - '=', 1824, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '_', 1841, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'i', 1873, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - 0xb5, 1919, + '#', 2215, + '.', 1817, + '=', 1823, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '_', 1840, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '.', 1818, - '=', 1824, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '_', 1841, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - 0xb5, 1919, + '#', 2215, + '.', 1817, + '=', 1823, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'i', 1872, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '.', 1818, - '=', 1824, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'i', 1873, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - 0xb5, 1919, + '#', 2215, + '.', 1817, + '=', 1823, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '.', 1818, - '=', 1824, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - 0xb5, 1919, + '#', 2215, + '.', 1817, + '=', 1823, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1836, + 'g', 1836, + 'h', 1905, + 'i', 1872, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '.', 1818, - '=', 1824, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1837, - 'g', 1837, - 'h', 1906, - 'i', 1873, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - 0xb5, 1919, + '#', 2215, + '.', 1817, + '=', 1823, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1836, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 102: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '.', 1818, - '=', 1824, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1837, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - 0xb5, 1919, + '#', 2215, + '.', 1817, + '=', 1823, + '_', 1840, + 'i', 1872, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(113); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 103: - ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '#', 2216, - '.', 1818, - '=', 1824, - '_', 1841, - 'i', 1873, - '|', 1480, - ); + if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1817); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == '_') ADVANCE(1840); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'e') ADVANCE(1846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 104: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == '_') ADVANCE(1841); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1817); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == 'i') ADVANCE(1872); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == 'i') ADVANCE(1873); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1817); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == 'i') ADVANCE(1872); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') SKIP(114); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(113); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == 'i') ADVANCE(1873); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1817); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || lookahead == ' ') SKIP(114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1817); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(114); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1621); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == 'i') ADVANCE(1872); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(113); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1622); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == 'i') ADVANCE(1873); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1621); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(1476); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1622); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == '|') ADVANCE(1480); - if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); - END_STATE(); - case 111: ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - ':', 1741, - ';', 1479, - '=', 1757, - 'e', 288, - 'o', 290, - '|', 1480, - '}', 1527, - '\t', 1477, - ' ', 1477, + '#', 2215, + ':', 1740, + ';', 1478, + '=', 1756, + 'e', 287, + 'o', 289, + '|', 1479, + '}', 1526, + '\t', 1476, + ' ', 1476, ); END_STATE(); + case 111: + if (lookahead == '\n') ADVANCE(1475); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == ':') ADVANCE(1740); + if (lookahead == '{') ADVANCE(1525); + if (lookahead == '\t' || + lookahead == ' ') SKIP(111); + END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == ':') ADVANCE(1741); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == ';') ADVANCE(1478); + if (lookahead == '=') ADVANCE(1756); if (lookahead == '\t' || - lookahead == ' ') SKIP(112); + lookahead == ' ') ADVANCE(1477); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1474); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == ';') ADVANCE(1479); - if (lookahead == '=') ADVANCE(1757); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '=') ADVANCE(322); + if (lookahead == 'i') ADVANCE(385); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1478); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1475); + lookahead == ' ') SKIP(113); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '=') ADVANCE(323); - if (lookahead == 'i') ADVANCE(386); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '=') ADVANCE(322); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || lookahead == ' ') SKIP(114); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == '_') ADVANCE(1840); + if (lookahead == 'i') ADVANCE(1872); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(113); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == '_') ADVANCE(1841); - if (lookahead == 'i') ADVANCE(1873); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == '_') ADVANCE(1840); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'e') ADVANCE(1846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == '_') ADVANCE(1841); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == 'i') ADVANCE(1872); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == 'i') ADVANCE(1873); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == 'i') ADVANCE(1872); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') SKIP(114); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(113); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == 'i') ADVANCE(1873); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || lookahead == ' ') SKIP(114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '=') ADVANCE(1823); + if (lookahead == '|') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(114); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '\n') ADVANCE(1475); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '=') ADVANCE(1824); - if (lookahead == '|') ADVANCE(1480); + if (lookahead == '#') ADVANCE(2218); + if (lookahead == ':') ADVANCE(1740); + if (lookahead == '{') ADVANCE(1525); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(1476); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2219); - if (lookahead == ':') ADVANCE(1741); - if (lookahead == '{') ADVANCE(1526); - if (lookahead == '\t' || - lookahead == ' ') SKIP(112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); - END_STATE(); - case 123: ADVANCE_MAP( - '\n', 1735, - '\r', 1735, - '!', 1747, - '#', 2216, - '(', 1589, - '*', 1541, - '+', 1606, - '-', 1523, - '.', 1750, - '/', 1596, - ':', 1741, - ';', 1479, - '<', 1578, - '=', 684, - '>', 1508, - '?', 1745, - '@', 1509, - '[', 1493, - ']', 1494, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, - '\t', 1736, - ' ', 1736, - 0x0b, 1735, - '\f', 1735, - ',', 1735, + '\n', 1734, + '\r', 1734, + '!', 1746, + '#', 2215, + '(', 1588, + '*', 1540, + '+', 1605, + '-', 1522, + '.', 1749, + '/', 1595, + ':', 1740, + ';', 1478, + '<', 1577, + '=', 683, + '>', 1507, + '?', 1744, + '@', 1508, + '[', 1492, + ']', 1493, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, + '\t', 1735, + ' ', 1735, + 0x0b, 1734, + '\f', 1734, + ',', 1734, ); END_STATE(); - case 124: + case 123: ADVANCE_MAP( - '!', 1746, - '"', 1713, - '#', 2216, - '$', 180, - '\'', 1716, - '.', 1748, - ';', 1744, - '?', 1745, - '`', 1720, - '\t', 124, - ' ', 124, + '!', 1745, + '"', 1712, + '#', 2215, + '$', 179, + '\'', 1715, + '.', 1747, + ';', 1743, + '?', 1744, + '`', 1719, + '\t', 123, + ' ', 123, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); END_STATE(); - case 125: + case 124: ADVANCE_MAP( - '!', 1746, - '"', 1713, - '#', 2216, - '$', 180, - '\'', 1716, - '.', 1748, - ';', 1744, - '?', 1745, - '`', 1720, - '\t', 124, - ' ', 124, + '!', 1745, + '"', 1712, + '#', 2215, + '$', 179, + '\'', 1715, + '.', 1747, + ';', 1743, + '?', 1744, + '`', 1719, + '\t', 123, + ' ', 123, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1758); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1757); + END_STATE(); + case 125: + ADVANCE_MAP( + '!', 1745, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 298, + '.', 1753, + '?', 1744, + 'I', 823, + 'N', 819, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 126: ADVANCE_MAP( - '!', 1746, - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 299, - '.', 1754, - '?', 1745, - 'I', 824, - 'N', 820, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, + '!', 1745, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 298, + '.', 1753, + 'I', 823, + 'N', 819, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, ); if (lookahead == '\t' || lookahead == ' ') SKIP(126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 127: ADVANCE_MAP( - '!', 1746, - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 299, - '.', 1754, - 'I', 824, - 'N', 820, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, + '!', 1745, + '#', 2215, + ',', 1734, + '.', 1750, + ';', 1743, + '?', 1744, + ']', 1493, + '\t', 1737, + ' ', 1737, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1738); END_STATE(); case 128: ADVANCE_MAP( - '!', 1746, - '#', 2216, - ',', 1735, - '.', 1751, - ';', 1744, - '?', 1745, - ']', 1494, - '\t', 1738, - ' ', 1738, + '!', 1745, + '#', 2215, + '.', 1749, + ':', 1740, + '>', 1506, + '?', 1744, + 'E', 332, + 'G', 332, + 'K', 332, + 'M', 332, + 'P', 332, + 'T', 332, + ']', 1493, + 'd', 343, + 'e', 331, + 'g', 331, + 'h', 454, + 'k', 331, + 'm', 334, + 'n', 472, + 'p', 331, + 's', 375, + 't', 331, + 'u', 472, + 'w', 408, + '}', 1526, + 0xb5, 472, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1739); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1734); END_STATE(); case 129: ADVANCE_MAP( - '!', 1746, - '#', 2216, + '!', 1745, + '#', 2215, '.', 1750, - ':', 1741, - '>', 1507, - '?', 1745, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - ']', 1494, - 'd', 344, - 'e', 332, - 'g', 332, - 'h', 455, - 'k', 332, - 'm', 335, - 'n', 473, - 'p', 332, - 's', 376, - 't', 332, - 'u', 473, - 'w', 409, - '}', 1527, - 0xb5, 473, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + ':', 1490, + '>', 1506, + '?', 1744, + ']', 1493, + '}', 1526, + '\t', 1739, + ' ', 1739, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); END_STATE(); case 130: ADVANCE_MAP( - '!', 1746, - '#', 2216, - '.', 1751, - ':', 1491, + '!', 1820, + '#', 2215, + '$', 1497, + '(', 1588, + '*', 1539, + '+', 1603, + '-', 1520, + '.', 1631, + '/', 1594, + '<', 1577, + '=', 1821, '>', 1507, - '?', 1745, - ']', 1494, - '}', 1527, - '\t', 1740, - ' ', 1740, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1893, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + if (lookahead == '\t' || + lookahead == ' ') SKIP(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 131: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '$', 1498, - '(', 1589, - '*', 1540, - '+', 1604, - '-', 1521, - '.', 1632, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1894, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, + '!', 1820, + '#', 2215, + '$', 1497, + '(', 1588, + '*', 1539, + '+', 1603, + '-', 1520, + '.', 1842, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1893, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 132: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '$', 1498, - '(', 1589, - '*', 1540, - '+', 1604, - '-', 1521, - '.', 1843, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1894, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1622, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1832, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1906, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 133: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1623, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1833, - 'g', 1837, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1622, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1843, 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, + 'i', 1890, + 'l', 1878, + 'm', 1901, 'n', 1900, - 'o', 1907, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - 0xb5, 1919, + 'o', 1906, + 's', 1926, + 'x', 1898, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 134: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1623, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '_', 1840, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1832, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1906, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 135: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '_', 1841, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1833, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1907, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1832, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1906, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 136: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1833, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1907, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'B', 1680, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1835, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1906, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 137: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'B', 1681, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1836, - 'g', 1837, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'E', 1846, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1843, 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, + 'i', 1890, + 'l', 1878, + 'm', 1901, 'n', 1900, - 'o', 1907, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - 0xb5, 1919, + 'o', 1906, + 's', 1926, + 'x', 1898, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 138: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'E', 1847, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1843, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 139: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'a', 1892, + 'b', 1879, + 'e', 1893, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 140: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'a', 1893, - 'b', 1880, - 'e', 1894, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1621, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1843, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 141: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1622, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'E', 1846, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1843, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 142: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'E', 1847, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1843, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 143: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1844, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, + '!', 1820, + '#', 2215, + '(', 1588, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + '<', 1577, + '=', 1821, + '>', 1507, + 'a', 1892, + 'b', 1879, + 'e', 1893, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1906, + 's', 1926, + 'x', 1898, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 144: ADVANCE_MAP( - '!', 1821, - '#', 2216, - '(', 1589, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - '<', 1578, - '=', 1822, - '>', 1508, - 'a', 1893, - 'b', 1880, - 'e', 1894, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1907, - 's', 1927, - 'x', 1899, + '!', 319, + '#', 2215, + '$', 1497, + '*', 1539, + '+', 1604, + '-', 1521, + '.', 336, + '/', 1594, + '<', 1577, + '=', 320, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 427, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 455, + 's', 489, + 'x', 434, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(144); END_STATE(); case 145: ADVANCE_MAP( - '!', 320, - '#', 2216, - '$', 1498, - '*', 1540, - '+', 1605, - '-', 1522, - '.', 337, - '/', 1595, - '<', 1578, - '=', 321, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 428, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 456, - 's', 490, - 'x', 435, + '!', 319, + '#', 2215, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + '<', 1577, + '=', 320, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 427, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 455, + 's', 489, + 'x', 434, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); END_STATE(); case 146: ADVANCE_MAP( - '!', 320, - '#', 2216, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - '<', 1578, - '=', 321, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 428, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 456, - 's', 490, - 'x', 435, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - END_STATE(); - case 147: - ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1589, - '+', 2028, - '-', 308, - '.', 2026, - '0', 1652, - ';', 1744, - 'N', 2075, - '[', 1493, - '_', 2040, - '`', 1720, - 'f', 2043, - 'n', 2071, - 't', 2058, - '{', 1526, - '\t', 150, - ' ', 150, - 'I', 2079, - 'i', 2079, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1588, + '+', 2027, + '-', 307, + '.', 2025, + '0', 1651, + ';', 1743, + 'N', 2074, + '[', 1492, + '_', 2039, + '`', 1719, + 'f', 2042, + 'n', 2070, + 't', 2057, + '{', 1525, + '\t', 149, + ' ', 149, + 'I', 2078, + 'i', 2078, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); - case 148: + case 147: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 1608, - '-', 1519, - '.', 711, - '0', 1656, - ':', 1491, - '<', 1164, - '>', 1507, - '@', 1509, - 'I', 824, - 'N', 820, - ']', 1494, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - '}', 1527, - '\t', 1740, - ' ', 1740, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 1607, + '-', 1518, + '.', 710, + '0', 1655, + ':', 1490, + '<', 1163, + '>', 1506, + '@', 1508, + 'I', 823, + 'N', 819, + ']', 1493, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + '}', 1526, + '\t', 1739, + ' ', 1739, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1672); + lookahead == ',') ADVANCE(1734); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1671); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); - case 149: + case 148: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2028, - '-', 308, - '.', 2026, - '0', 1652, - ':', 1741, - 'N', 2075, - '[', 1493, - '_', 2040, - '`', 1720, - 'f', 2043, - 'n', 2071, - 't', 2058, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2027, + '-', 307, + '.', 2025, + '0', 1651, + ':', 1740, + 'N', 2074, + '[', 1492, + '_', 2039, + '`', 1719, + 'f', 2042, + 'n', 2070, + 't', 2057, + '{', 1525, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(149); + lookahead == ' ') SKIP(148); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2079); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(2078); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); - case 150: + case 149: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2028, - '-', 308, - '.', 2026, - '0', 1652, - ';', 1744, - 'N', 2075, - '[', 1493, - '_', 2040, - '`', 1720, - 'f', 2043, - 'n', 2071, - 't', 2058, - '{', 1526, - '\t', 150, - ' ', 150, - 'I', 2079, - 'i', 2079, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2027, + '-', 307, + '.', 2025, + '0', 1651, + ';', 1743, + 'N', 2074, + '[', 1492, + '_', 2039, + '`', 1719, + 'f', 2042, + 'n', 2070, + 't', 2057, + '{', 1525, + '\t', 149, + ' ', 149, + 'I', 2078, + 'i', 2078, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); - case 151: + case 150: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2028, - '-', 308, - '.', 2026, - '0', 1652, - 'N', 2075, - '[', 1493, - '_', 2040, - '`', 1720, - 'f', 2043, - 'n', 2071, - 't', 2058, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2027, + '-', 307, + '.', 2025, + '0', 1651, + 'N', 2074, + '[', 1492, + '_', 2039, + '`', 1719, + 'f', 2042, + 'n', 2070, + 't', 2057, + '{', 1525, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(151); + lookahead == ' ') SKIP(150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2079); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(2078); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); - case 152: + case 151: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2028, - '-', 308, - '.', 2026, - ':', 1741, - 'N', 2075, - '_', 2040, - '`', 1720, - 'f', 2043, - 'n', 2071, - 't', 2058, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2027, + '-', 307, + '.', 2025, + ':', 1740, + 'N', 2074, + '_', 2039, + '`', 1719, + 'f', 2042, + 'n', 2070, + 't', 2057, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(2078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); - case 153: + case 152: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2028, - '-', 308, - '.', 2026, - 'N', 2075, - '_', 2040, - '`', 1720, - 'f', 2043, - 'n', 2071, - 't', 2058, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2027, + '-', 307, + '.', 2025, + 'N', 2074, + '_', 2039, + '`', 1719, + 'f', 2042, + 'n', 2070, + 't', 2057, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); + lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(2078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); - case 154: + case 153: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 2110, - '-', 2109, - '.', 2111, - '0', 1653, - 'N', 2128, - '[', 1493, - ']', 1494, - '_', 2115, - '`', 1720, - 'f', 2118, - 'n', 2127, - 't', 2124, - '{', 1526, - '\t', 1740, - ' ', 1740, - 'I', 2134, - 'i', 2134, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 2109, + '-', 2108, + '.', 2110, + '0', 1652, + 'N', 2127, + '[', 1492, + ']', 1493, + '_', 2114, + '`', 1719, + 'f', 2117, + 'n', 2126, + 't', 2123, + '{', 1525, + '\t', 1739, + ' ', 1739, + 'I', 2133, + 'i', 2133, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); + lookahead == ',') ADVANCE(1734); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2155); END_STATE(); - case 155: - if (lookahead == '"') ADVANCE(1713); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1499); - if (lookahead == '\'') ADVANCE(1716); - if (lookahead == '(') ADVANCE(1495); - if (lookahead == '`') ADVANCE(1720); + case 154: + if (lookahead == '"') ADVANCE(1712); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == '\'') ADVANCE(1715); + if (lookahead == '(') ADVANCE(1494); + if (lookahead == '`') ADVANCE(1719); if (lookahead == '\t' || - lookahead == ' ') SKIP(155); + lookahead == ' ') SKIP(154); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2015); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2014); END_STATE(); - case 156: + case 155: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1498, - '\'', 1716, - '(', 1495, - '+', 2028, - ',', 1735, - '-', 308, - '.', 2026, - '0', 1652, - 'N', 2075, - '[', 1493, - '_', 1529, - '`', 1720, - 'f', 2043, - 'n', 2071, - 't', 2058, - '{', 1526, - '}', 1527, - '\t', 1737, - ' ', 1737, - 'I', 2079, - 'i', 2079, + '"', 1712, + '#', 2215, + '$', 1497, + '\'', 1715, + '(', 1494, + '+', 2027, + ',', 1734, + '-', 307, + '.', 2025, + '0', 1651, + 'N', 2074, + '[', 1492, + '_', 1528, + '`', 1719, + 'f', 2042, + 'n', 2070, + 't', 2057, + '{', 1525, + '}', 1526, + '\t', 1736, + ' ', 1736, + 'I', 2078, + 'i', 2078, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1735); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1734); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); - case 157: + case 156: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1498, - '\'', 1716, - '(', 1495, - '+', 2028, - '-', 308, - '.', 2026, - '0', 1652, - 'N', 2075, - '[', 1493, - '_', 2040, - '`', 1720, - 'f', 2043, - 'n', 2071, - 't', 2058, - '{', 1526, + '"', 1712, + '#', 2215, + '$', 1497, + '\'', 1715, + '(', 1494, + '+', 2027, + '-', 307, + '.', 2025, + '0', 1651, + 'N', 2074, + '[', 1492, + '_', 2039, + '`', 1719, + 'f', 2042, + 'n', 2070, + 't', 2057, + '{', 1525, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(157); + lookahead == ' ') SKIP(156); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2079); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(2078); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2097); END_STATE(); - case 158: + case 157: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '$', 1498, - '\'', 1716, - '(', 1495, - '+', 2110, - '-', 2109, - '.', 2108, - '0', 1653, - 'N', 2128, - '[', 1493, - ']', 1494, - '_', 2115, - '`', 1720, - 'f', 2118, - 'n', 2127, - 't', 2124, - '{', 1526, - '\t', 1740, - ' ', 1740, - 'I', 2134, - 'i', 2134, + '"', 1712, + '#', 2215, + '$', 1497, + '\'', 1715, + '(', 1494, + '+', 2109, + '-', 2108, + '.', 2107, + '0', 1652, + 'N', 2127, + '[', 1492, + ']', 1493, + '_', 2114, + '`', 1719, + 'f', 2117, + 'n', 2126, + 't', 2123, + '{', 1525, + '\t', 1739, + ' ', 1739, + 'I', 2133, + 'i', 2133, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); + lookahead == ',') ADVANCE(1734); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2155); END_STATE(); - case 159: + case 158: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '(', 1589, - '+', 712, - '-', 308, - '.', 728, - ':', 1491, - '>', 1507, - 'I', 824, - 'N', 820, - ']', 1494, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - '}', 1527, - '\t', 1740, - ' ', 1740, + '"', 1712, + '#', 2215, + '\'', 1715, + '(', 1588, + '+', 711, + '-', 307, + '.', 727, + ':', 1490, + '>', 1506, + 'I', 823, + 'N', 819, + ']', 1493, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + '}', 1526, + '\t', 1739, + ' ', 1739, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); + END_STATE(); + case 159: + ADVANCE_MAP( + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 307, + '.', 727, + ':', 1740, + 'I', 823, + 'N', 819, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 160: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 308, - '.', 728, - ':', 1741, - 'I', 824, - 'N', 820, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 298, + '.', 1753, + '?', 1744, + 'I', 823, + 'N', 819, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, ); if (lookahead == '\t' || lookahead == ' ') SKIP(160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 161: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 299, - '.', 1754, - '?', 1745, - 'I', 824, - 'N', 820, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 298, + '.', 1753, + 'I', 823, + 'N', 819, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, ); if (lookahead == '\t' || lookahead == ' ') SKIP(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 162: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 299, - '.', 1754, - 'I', 824, - 'N', 820, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 298, + '.', 727, + ':', 1740, + 'I', 823, + 'N', 819, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 163: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 299, - '.', 728, - ':', 1741, - 'I', 824, - 'N', 820, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 298, + '.', 727, + '=', 1756, + 'I', 1470, + 'N', 1465, + '_', 1401, + '`', 1719, + 'a', 1426, + 'c', 1402, + 'd', 1410, + 'e', 1433, + 'f', 1403, + 'i', 1400, + 'l', 1417, + 'm', 1406, + 'n', 1460, + 't', 1443, + 'u', 1449, + 'w', 1423, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + lookahead == ' ') SKIP(164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1401); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1474); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 164: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 299, - '.', 728, - '=', 1757, - 'I', 1471, - 'N', 1466, - '_', 1402, - '`', 1720, - 'a', 1427, - 'c', 1403, - 'd', 1411, - 'e', 1434, - 'f', 1404, - 'i', 1401, - 'l', 1418, - 'm', 1407, - 'n', 1461, - 't', 1444, - 'u', 1450, - 'w', 1424, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 298, + '.', 727, + 'I', 823, + 'N', 819, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(165); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1402); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1475); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + lookahead == ' ') SKIP(164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 165: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 299, - '.', 728, - 'I', 824, - 'N', 820, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(165); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); - END_STATE(); - case 166: - ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 1810, - '.', 1624, - 'E', 719, - 'G', 724, - 'I', 824, - 'K', 724, - 'M', 724, - 'N', 820, - 'P', 724, - 'T', 724, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 733, - 'e', 718, - 'f', 732, - 'g', 723, - 'h', 788, - 'i', 725, - 'k', 723, - 'l', 750, - 'm', 720, - 'n', 796, - 'p', 723, - 's', 751, - 't', 722, - 'u', 798, - 'w', 761, - 0xb5, 797, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 1809, + '.', 1623, + 'E', 718, + 'G', 723, + 'I', 823, + 'K', 723, + 'M', 723, + 'N', 819, + 'P', 723, + 'T', 723, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 732, + 'e', 717, + 'f', 731, + 'g', 722, + 'h', 787, + 'i', 724, + 'k', 722, + 'l', 749, + 'm', 719, + 'n', 795, + 'p', 722, + 's', 750, + 't', 721, + 'u', 797, + 'w', 760, + 0xb5, 796, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(165); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); + lookahead == 'b') ADVANCE(1680); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + lookahead == '^') ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); - case 167: + case 166: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 1810, - '.', 728, - 'I', 824, - 'N', 820, - '[', 1693, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 1809, + '.', 727, + 'I', 823, + 'N', 819, + '[', 1692, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(165); + lookahead == ' ') SKIP(164); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + lookahead == '^') ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); - case 168: + case 167: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 1810, - '.', 710, - 'E', 719, - 'G', 724, - 'I', 824, - 'K', 724, - 'M', 724, - 'N', 820, - 'P', 724, - 'T', 724, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 733, - 'e', 718, - 'f', 732, - 'g', 723, - 'h', 788, - 'i', 725, - 'k', 723, - 'l', 750, - 'm', 720, - 'n', 796, - 'p', 723, - 's', 751, - 't', 722, - 'u', 798, - 'w', 761, - 0xb5, 797, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 1809, + '.', 709, + 'E', 718, + 'G', 723, + 'I', 823, + 'K', 723, + 'M', 723, + 'N', 819, + 'P', 723, + 'T', 723, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 732, + 'e', 717, + 'f', 731, + 'g', 722, + 'h', 787, + 'i', 724, + 'k', 722, + 'l', 749, + 'm', 719, + 'n', 795, + 'p', 722, + 's', 750, + 't', 721, + 'u', 797, + 'w', 760, + 0xb5, 796, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(165); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); + lookahead == 'b') ADVANCE(1680); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + lookahead == '^') ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); - case 169: + case 168: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 1810, - '.', 710, - 'E', 719, - 'G', 724, - 'I', 824, - 'K', 724, - 'M', 724, - 'N', 820, - 'P', 724, - 'T', 724, - '_', 730, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 733, - 'e', 718, - 'f', 732, - 'g', 723, - 'h', 788, - 'i', 725, - 'k', 723, - 'l', 750, - 'm', 720, - 'n', 796, - 'p', 723, - 's', 751, - 't', 722, - 'u', 798, - 'w', 761, - 0xb5, 797, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 1809, + '.', 709, + 'E', 718, + 'G', 723, + 'I', 823, + 'K', 723, + 'M', 723, + 'N', 819, + 'P', 723, + 'T', 723, + '_', 729, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 732, + 'e', 717, + 'f', 731, + 'g', 722, + 'h', 787, + 'i', 724, + 'k', 722, + 'l', 749, + 'm', 719, + 'n', 795, + 'p', 722, + 's', 750, + 't', 721, + 'u', 797, + 'w', 760, + 0xb5, 796, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(165); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); + lookahead == 'b') ADVANCE(1680); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == '^') ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); - case 170: + case 169: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 712, - '-', 1810, - '.', 710, - 'E', 724, - 'G', 724, - 'I', 824, - 'K', 724, - 'M', 724, - 'N', 820, - 'P', 724, - 'T', 724, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 733, - 'e', 721, - 'f', 732, - 'g', 723, - 'h', 788, - 'i', 725, - 'k', 723, - 'l', 750, - 'm', 720, - 'n', 796, - 'p', 723, - 's', 751, - 't', 722, - 'u', 798, - 'w', 761, - 0xb5, 797, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 711, + '-', 1809, + '.', 709, + 'E', 723, + 'G', 723, + 'I', 823, + 'K', 723, + 'M', 723, + 'N', 819, + 'P', 723, + 'T', 723, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 732, + 'e', 720, + 'f', 731, + 'g', 722, + 'h', 787, + 'i', 724, + 'k', 722, + 'l', 749, + 'm', 719, + 'n', 795, + 'p', 722, + 's', 750, + 't', 721, + 'u', 797, + 'w', 760, + 0xb5, 796, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(165); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); + lookahead == 'b') ADVANCE(1680); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + lookahead == '^') ADVANCE(1961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); - case 171: + case 170: ADVANCE_MAP( - '"', 1713, - '#', 2216, - '\'', 1716, - '+', 2167, - '-', 2166, - '.', 2165, - '>', 1507, - 'N', 2182, - '_', 2169, - '`', 1720, - 'f', 2172, - 'n', 2181, - 't', 2178, - '\t', 1740, - ' ', 1740, - 'I', 2188, - 'i', 2188, + '"', 1712, + '#', 2215, + '\'', 1715, + '+', 2166, + '-', 2165, + '.', 2164, + '>', 1506, + 'N', 2181, + '_', 2168, + '`', 1719, + 'f', 2171, + 'n', 2180, + 't', 2177, + '\t', 1739, + ' ', 1739, + 'I', 2187, + 'i', 2187, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2202); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2201); END_STATE(); - case 172: - if (lookahead == '"') ADVANCE(1713); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '\'') ADVANCE(1716); - if (lookahead == '`') ADVANCE(1720); + case 171: + if (lookahead == '"') ADVANCE(1712); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '\'') ADVANCE(1715); + if (lookahead == '`') ADVANCE(1719); if (lookahead == '\t' || - lookahead == ' ') SKIP(172); + lookahead == ' ') SKIP(171); END_STATE(); - case 173: + case 172: ADVANCE_MAP( - '"', 1713, - '#', 2219, - '$', 1500, - '\'', 1716, - '(', 1495, - '+', 863, - '-', 862, - '.', 864, - '0', 880, - ':', 1741, - 'N', 1040, - '[', 1493, - '_', 881, - '`', 1720, - 'f', 889, - 'n', 1029, - 't', 978, - '{', 1526, + '"', 1712, + '#', 2218, + '$', 1499, + '\'', 1715, + '(', 1494, + '+', 862, + '-', 861, + '.', 863, + '0', 879, + ':', 1740, + 'N', 1039, + '[', 1492, + '_', 880, + '`', 1719, + 'f', 888, + 'n', 1028, + 't', 977, + '{', 1525, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(149); + lookahead == ' ') SKIP(148); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1045); + lookahead == 'i') ADVANCE(1044); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2098); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(887); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2097); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(886); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1066); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1065); END_STATE(); - case 174: + case 173: ADVANCE_MAP( - '"', 1713, - '#', 2219, - '$', 1500, - '\'', 1716, - '(', 1495, - '+', 863, - '-', 862, - '.', 864, - '0', 880, - 'N', 1040, - '[', 1493, - '_', 881, - '`', 1720, - 'f', 889, - 'n', 1029, - 't', 978, - '{', 1526, + '"', 1712, + '#', 2218, + '$', 1499, + '\'', 1715, + '(', 1494, + '+', 862, + '-', 861, + '.', 863, + '0', 879, + 'N', 1039, + '[', 1492, + '_', 880, + '`', 1719, + 'f', 888, + 'n', 1028, + 't', 977, + '{', 1525, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(151); + lookahead == ' ') SKIP(150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1045); + lookahead == 'i') ADVANCE(1044); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2098); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(887); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2097); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(886); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1066); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1065); END_STATE(); - case 175: + case 174: ADVANCE_MAP( - '"', 1713, - '#', 2219, - '$', 1500, - '\'', 1716, - '(', 1495, - '+', 863, - '-', 862, - '.', 864, - ':', 1741, - 'N', 1040, - '_', 881, - '`', 1720, - 'f', 889, - 'n', 1029, - 't', 978, + '"', 1712, + '#', 2218, + '$', 1499, + '\'', 1715, + '(', 1494, + '+', 862, + '-', 861, + '.', 863, + ':', 1740, + 'N', 1039, + '_', 880, + '`', 1719, + 'f', 888, + 'n', 1028, + 't', 977, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1045); + lookahead == 'i') ADVANCE(1044); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2098); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(887); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(886); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1066); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1065); END_STATE(); - case 176: + case 175: ADVANCE_MAP( - '"', 1713, - '#', 2219, - '$', 1500, - '\'', 1716, - '(', 1495, - '+', 863, - '-', 862, - '.', 864, - 'N', 1040, - '_', 881, - '`', 1720, - 'f', 889, - 'n', 1029, - 't', 978, + '"', 1712, + '#', 2218, + '$', 1499, + '\'', 1715, + '(', 1494, + '+', 862, + '-', 861, + '.', 863, + 'N', 1039, + '_', 880, + '`', 1719, + 'f', 888, + 'n', 1028, + 't', 977, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); + lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1045); + lookahead == 'i') ADVANCE(1044); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2098); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(887); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(886); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1066); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1065); END_STATE(); - case 177: + case 176: ADVANCE_MAP( - '"', 1713, - '#', 2219, - '\'', 1716, - '+', 863, - '-', 862, - '.', 881, - ':', 1741, - 'I', 1045, - 'N', 1040, - '_', 881, - '`', 1720, - 'a', 949, - 'c', 894, - 'd', 911, - 'e', 953, - 'f', 888, - 'i', 876, - 'l', 921, - 'm', 897, - 'n', 1029, - 't', 983, - 'u', 999, - 'w', 932, + '"', 1712, + '#', 2218, + '\'', 1715, + '+', 862, + '-', 861, + '.', 880, + ':', 1740, + 'I', 1044, + 'N', 1039, + '_', 880, + '`', 1719, + 'a', 948, + 'c', 893, + 'd', 910, + 'e', 952, + 'f', 887, + 'i', 875, + 'l', 920, + 'm', 896, + 'n', 1028, + 't', 982, + 'u', 998, + 'w', 931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(160); + lookahead == ' ') SKIP(159); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1066); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == '^') ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); - case 178: + case 177: ADVANCE_MAP( - '"', 1713, - '#', 2219, - '\'', 1716, - '+', 863, - '-', 855, - '.', 881, - ':', 1741, - 'I', 1045, - 'N', 1040, - '_', 881, - '`', 1720, - 'a', 949, - 'c', 894, - 'd', 911, - 'e', 953, - 'f', 888, - 'i', 876, - 'l', 921, - 'm', 897, - 'n', 1029, - 't', 983, - 'u', 999, - 'w', 932, + '"', 1712, + '#', 2218, + '\'', 1715, + '+', 862, + '-', 854, + '.', 880, + ':', 1740, + 'I', 1044, + 'N', 1039, + '_', 880, + '`', 1719, + 'a', 948, + 'c', 893, + 'd', 910, + 'e', 952, + 'f', 887, + 'i', 875, + 'l', 920, + 'm', 896, + 'n', 1028, + 't', 982, + 'u', 998, + 'w', 931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(162); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1066); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == '^') ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); - case 179: - if (lookahead == '"') ADVANCE(1713); - if (lookahead == '#') ADVANCE(1715); - if (lookahead == '\\') ADVANCE(516); + case 178: + if (lookahead == '"') ADVANCE(1712); + if (lookahead == '#') ADVANCE(1714); + if (lookahead == '\\') ADVANCE(515); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1714); - if (lookahead != 0) ADVANCE(1715); + lookahead == ' ') ADVANCE(1713); + if (lookahead != 0) ADVANCE(1714); + END_STATE(); + case 179: + if (lookahead == '"') ADVANCE(1729); + if (lookahead == '\'') ADVANCE(1728); END_STATE(); case 180: if (lookahead == '"') ADVANCE(1730); - if (lookahead == '\'') ADVANCE(1729); - END_STATE(); - case 181: - if (lookahead == '"') ADVANCE(1731); - if (lookahead == '#') ADVANCE(1726); - if (lookahead == '(') ADVANCE(1495); - if (lookahead == '\\') ADVANCE(511); + if (lookahead == '#') ADVANCE(1725); + if (lookahead == '(') ADVANCE(1494); + if (lookahead == '\\') ADVANCE(510); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1725); - if (lookahead != 0) ADVANCE(1726); + lookahead == ' ') ADVANCE(1724); + if (lookahead != 0) ADVANCE(1725); END_STATE(); - case 182: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(1841); - if (lookahead == '{') ADVANCE(1526); + case 181: + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1497); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '.') ADVANCE(1631); + if (lookahead == '_') ADVANCE(1840); + if (lookahead == '{') ADVANCE(1525); if (lookahead == '\t' || - lookahead == ' ') SKIP(191); + lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + lookahead == '-') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); - case 183: + case 182: ADVANCE_MAP( - '#', 2216, - '$', 1498, - '(', 1589, + '#', 2215, + '$', 1497, + '(', 1588, '.', 1630, - ']', 1494, - '_', 2003, - '}', 1527, - '\t', 1740, - ' ', 1740, - '+', 1989, - '-', 1989, + ']', 1493, + '_', 1971, + '}', 1526, + '\t', 1739, + ' ', 1739, + '+', 1965, + '-', 1965, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 184: + case 183: ADVANCE_MAP( - '#', 2216, - '$', 1498, - '(', 1589, - '.', 2000, - '_', 2003, - '}', 1527, - '\t', 1740, - ' ', 1740, - '+', 1989, - '-', 1989, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1999, + '_', 2002, + '}', 1526, + '\t', 1739, + ' ', 1739, + '+', 1988, + '-', 1988, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2013); END_STATE(); - case 185: + case 184: ADVANCE_MAP( - '#', 2216, - '$', 1498, - '(', 1589, - '.', 1973, - ']', 1494, - '_', 1972, - '\t', 1740, - ' ', 1740, - '+', 1966, - '-', 1966, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1972, + ']', 1493, + '_', 1971, + '\t', 1739, + ' ', 1739, + '+', 1965, + '-', 1965, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16576,24 +16568,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 186: + case 185: ADVANCE_MAP( - '#', 2216, - '$', 1498, - '(', 1589, - '.', 1964, - ']', 1494, - '_', 1972, - '\t', 1740, - ' ', 1740, - '+', 1966, - '-', 1966, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1963, + ']', 1493, + '_', 1971, + '\t', 1739, + ' ', 1739, + '+', 1965, + '-', 1965, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16601,143 +16593,136 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 187: + case 186: ADVANCE_MAP( - '#', 2216, - '$', 1498, - '(', 1589, - '.', 1631, - ']', 1494, - '_', 1972, - '\t', 1740, - ' ', 1740, - '+', 1966, - '-', 1966, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1629, + '_', 2002, + '}', 1526, + '\t', 1739, + ' ', 1739, + '+', 1988, + '-', 1988, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2013); END_STATE(); - case 188: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '.') ADVANCE(1843); - if (lookahead == '_') ADVANCE(1841); - if (lookahead == '{') ADVANCE(1526); + case 187: + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1497); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '.') ADVANCE(1842); + if (lookahead == '_') ADVANCE(1840); + if (lookahead == '{') ADVANCE(1525); if (lookahead == '\t' || - lookahead == ' ') SKIP(191); + lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + lookahead == '-') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); - case 189: + case 188: ADVANCE_MAP( - '#', 2216, - '$', 1498, - '(', 1589, - '.', 1626, - '[', 1693, - ']', 1494, - '_', 1972, - '}', 1527, - '\t', 1740, - ' ', 1740, - '+', 1966, - '-', 1966, + '#', 2215, + '$', 1497, + '(', 1588, + '.', 1625, + '[', 1692, + ']', 1493, + '_', 1971, + '}', 1526, + '\t', 1739, + ' ', 1739, + '+', 1965, + '-', 1965, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + END_STATE(); + case 189: + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1497); + if (lookahead == '.') ADVANCE(336); + if (lookahead == ']') ADVANCE(1493); + if (lookahead == '\t' || + lookahead == ' ') SKIP(189); + if (lookahead == '+' || + lookahead == '-') ADVANCE(313); END_STATE(); case 190: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == '.') ADVANCE(337); - if (lookahead == ']') ADVANCE(1494); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1497); + if (lookahead == '.') ADVANCE(336); + if (lookahead == '{') ADVANCE(1525); if (lookahead == '\t' || lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(313); END_STATE(); case 191: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1497); + if (lookahead == '.') ADVANCE(336); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(313); END_STATE(); case 192: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1497); + if (lookahead == ':') ADVANCE(1740); if (lookahead == '\t' || lookahead == ' ') SKIP(192); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); END_STATE(); case 193: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == ':') ADVANCE(1741); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); - END_STATE(); - case 194: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1623, - 'E', 1968, - 'G', 1970, - 'K', 1970, - 'M', 1970, - 'P', 1970, - 'T', 1970, - ']', 1494, - 'd', 1977, - 'e', 1967, - 'g', 1969, - 'h', 1983, - 'k', 1969, - 'm', 1971, - 'n', 1984, - 'p', 1969, - 's', 1980, - 't', 1969, - 'u', 1984, - 'w', 1981, - '}', 1527, - 0xb5, 1984, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1622, + 'E', 1967, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 1493, + 'd', 1976, + 'e', 1966, + 'g', 1968, + 'h', 1982, + 'k', 1968, + 'm', 1970, + 'n', 1983, + 'p', 1968, + 's', 1979, + 't', 1968, + 'u', 1983, + 'w', 1980, + '}', 1526, + 0xb5, 1983, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16745,40 +16730,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 195: + case 194: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1623, - 'E', 1968, - 'G', 1970, - 'K', 1970, - 'M', 1970, - 'P', 1970, - 'T', 1970, - ']', 1494, - 'd', 1977, - 'e', 1967, - 'g', 1969, - 'h', 1983, - 'k', 1969, - 'm', 1971, - 'n', 1984, - 'p', 1969, - 's', 1980, - 't', 1969, - 'u', 1984, - 'w', 1981, - 0xb5, 1984, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1622, + 'E', 1967, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 1493, + '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, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16786,56 +16771,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 196: + case 195: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1623, - 'E', 1995, - 'G', 1997, - 'K', 1997, - 'M', 1997, - 'P', 1997, - 'T', 1997, - 'd', 2004, - 'e', 1994, - 'g', 1996, - 'h', 2010, - 'k', 1996, - 'm', 1998, - 'n', 2011, - 'p', 1996, - 's', 2007, - 't', 1996, - 'u', 2011, - 'w', 2008, - '}', 1527, - 0xb5, 2011, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1622, + 'E', 1994, + 'G', 1996, + 'K', 1996, + 'M', 1996, + 'P', 1996, + 'T', 1996, + 'd', 2003, + 'e', 1993, + 'g', 1995, + 'h', 2009, + 'k', 1995, + 'm', 1997, + 'n', 2010, + 'p', 1995, + 's', 2006, + 't', 1995, + 'u', 2010, + 'w', 2007, + '}', 1526, + 0xb5, 2010, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); - case 197: + case 196: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1623, - ']', 1494, - '}', 1527, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, + '#', 2215, + '(', 1588, + '.', 1622, + ']', 1493, + '}', 1526, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16843,21 +16828,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 198: + case 197: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1623, - ']', 1494, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, + '#', 2215, + '(', 1588, + '.', 1622, + ']', 1493, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16865,96 +16850,140 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + END_STATE(); + case 198: + ADVANCE_MAP( + '#', 2215, + '(', 1588, + '.', 1622, + '}', 1526, + '\t', 1739, + ' ', 1739, + 'E', 2000, + 'e', 2000, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 199: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1623, - '}', 1527, - '\t', 1740, - ' ', 1740, - 'E', 2001, - 'e', 2001, + '#', 2215, + '(', 1588, + '.', 1621, + ']', 1493, + '}', 1526, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 200: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1622, - ']', 1494, - '}', 1527, - '\t', 1740, - ' ', 1740, - 'E', 2001, - 'e', 2001, + '#', 2215, + '(', 1588, + '.', 1621, + '}', 1526, + '\t', 1739, + ' ', 1739, + 'E', 2000, + 'e', 2000, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 201: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1622, - ']', 1494, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, + '#', 2215, + '(', 1588, + '.', 1962, + 'E', 1967, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 1493, + '_', 1971, + 'd', 1976, + 'e', 1966, + 'g', 1968, + 'h', 1982, + 'k', 1968, + 'm', 1970, + 'n', 1983, + 'p', 1968, + 's', 1979, + 't', 1968, + 'u', 1983, + 'w', 1980, + '}', 1526, + 0xb5, 1983, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && + lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 202: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1963, - 'E', 1968, - 'G', 1970, - 'K', 1970, - 'M', 1970, - 'P', 1970, - 'T', 1970, - ']', 1494, - '_', 1972, - 'd', 1977, - 'e', 1967, - 'g', 1969, - 'h', 1983, - 'k', 1969, - 'm', 1971, - 'n', 1984, - 'p', 1969, - 's', 1980, - 't', 1969, - 'u', 1984, - 'w', 1981, - '}', 1527, - 0xb5, 1984, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1962, + 'E', 1967, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 1493, + '_', 1971, + '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, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16963,85 +16992,82 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 203: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1963, - 'E', 1968, - 'G', 1970, - 'K', 1970, - 'M', 1970, - 'P', 1970, - 'T', 1970, - ']', 1494, - '_', 1972, - 'd', 1977, - 'e', 1967, - 'g', 1969, - 'h', 1983, - 'k', 1969, - 'm', 1971, - 'n', 1984, - 'p', 1969, - 's', 1980, - 't', 1969, - 'u', 1984, - 'w', 1981, - 0xb5, 1984, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1962, + 'E', 1967, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 1493, + 'd', 1976, + 'e', 1966, + 'g', 1968, + 'h', 1982, + 'k', 1968, + 'm', 1970, + 'n', 1983, + 'p', 1968, + 's', 1979, + 't', 1968, + 'u', 1983, + 'w', 1980, + '}', 1526, + 0xb5, 1983, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && - lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 204: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1963, - 'E', 1968, - 'G', 1970, - 'K', 1970, - 'M', 1970, - 'P', 1970, - 'T', 1970, - ']', 1494, - 'd', 1977, - 'e', 1967, - 'g', 1969, - 'h', 1983, - 'k', 1969, - 'm', 1971, - 'n', 1984, - 'p', 1969, - 's', 1980, - 't', 1969, - 'u', 1984, - 'w', 1981, - '}', 1527, - 0xb5, 1984, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1962, + 'E', 1967, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 1493, + '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, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17049,40 +17075,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 205: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1963, - 'E', 1968, - 'G', 1970, - 'K', 1970, - 'M', 1970, - 'P', 1970, - 'T', 1970, - ']', 1494, - 'd', 1977, - 'e', 1967, - 'g', 1969, - 'h', 1983, - 'k', 1969, - 'm', 1971, - 'n', 1984, - 'p', 1969, - 's', 1980, - 't', 1969, - 'u', 1984, - 'w', 1981, - 0xb5, 1984, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1962, + 'E', 1969, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 1493, + 'd', 1976, + 'e', 1968, + 'g', 1968, + 'h', 1982, + 'k', 1968, + 'm', 1970, + 'n', 1983, + 'p', 1968, + 's', 1979, + 't', 1968, + 'u', 1983, + 'w', 1980, + '}', 1526, + 0xb5, 1983, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17090,41 +17117,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 206: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1963, - 'E', 1970, - 'G', 1970, - 'K', 1970, - 'M', 1970, - 'P', 1970, - 'T', 1970, - ']', 1494, - 'd', 1977, - 'e', 1969, - 'g', 1969, - 'h', 1983, - 'k', 1969, - 'm', 1971, - 'n', 1984, - 'p', 1969, - 's', 1980, - 't', 1969, - 'u', 1984, - 'w', 1981, - '}', 1527, - 0xb5, 1984, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1962, + 'E', 1969, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 1493, + '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, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17132,65 +17158,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 207: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1963, - 'E', 1970, - 'G', 1970, - 'K', 1970, - 'M', 1970, - 'P', 1970, - 'T', 1970, - ']', 1494, - 'd', 1977, - 'e', 1969, - 'g', 1969, - 'h', 1983, - 'k', 1969, - 'm', 1971, - 'n', 1984, - 'p', 1969, - 's', 1980, - 't', 1969, - 'u', 1984, - 'w', 1981, - 0xb5, 1984, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1962, + ']', 1493, + '_', 1971, + '}', 1526, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && + lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 208: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1963, - ']', 1494, - '_', 1972, - '}', 1527, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, + '#', 2215, + '(', 1588, + '.', 1962, + ']', 1493, + '_', 1971, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17199,47 +17209,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 209: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1963, - ']', 1494, - '_', 1972, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, + '#', 2215, + '(', 1588, + '.', 1962, + ']', 1493, + '}', 1526, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && - lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 210: - ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1963, - ']', 1494, - '}', 1527, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, - ); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '.') ADVANCE(1962); + if (lookahead == ']') ADVANCE(1493); + if (lookahead == '}') ADVANCE(1526); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1739); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17247,18 +17251,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 211: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '.') ADVANCE(1963); - if (lookahead == ']') ADVANCE(1494); - if (lookahead == '}') ADVANCE(1527); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1740); + ADVANCE_MAP( + '#', 2215, + '(', 1588, + '.', 1962, + ']', 1493, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17266,21 +17273,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 212: - ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1963, - ']', 1494, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, - ); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '.') ADVANCE(1962); + if (lookahead == ']') ADVANCE(1493); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1739); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17288,64 +17291,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 213: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '.') ADVANCE(1963); - if (lookahead == ']') ADVANCE(1494); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1740); + ADVANCE_MAP( + '#', 2215, + '(', 1588, + '.', 1964, + ']', 1493, + '_', 1971, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && + lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 214: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1965, - ']', 1494, - '_', 1972, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, + '#', 2215, + '(', 1588, + '.', 1964, + ']', 1493, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && - lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 215: - ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1965, - ']', 1494, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, - ); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '.') ADVANCE(1964); + if (lookahead == ']') ADVANCE(1493); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1739); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17353,17 +17356,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 216: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '.') ADVANCE(1965); - if (lookahead == ']') ADVANCE(1494); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1740); + ADVANCE_MAP( + '#', 2215, + '(', 1588, + '.', 1624, + ']', 1493, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17371,191 +17378,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); case 217: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1625, - ']', 1494, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, + '#', 2215, + '(', 1588, + '.', 1987, + 'E', 1994, + 'G', 1996, + 'K', 1996, + 'M', 1996, + 'P', 1996, + 'T', 1996, + '_', 2002, + 'd', 2003, + 'e', 1993, + 'g', 1995, + 'h', 2009, + 'k', 1995, + 'm', 1997, + 'n', 2010, + 'p', 1995, + 's', 2006, + 't', 1995, + 'u', 2010, + 'w', 2007, + '}', 1526, + 0xb5, 2010, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 218: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1988, - 'E', 1995, - 'G', 1997, - 'K', 1997, - 'M', 1997, - 'P', 1997, - 'T', 1997, - '_', 2003, - 'd', 2004, - 'e', 1994, - 'g', 1996, - 'h', 2010, - 'k', 1996, - 'm', 1998, - 'n', 2011, - 'p', 1996, - 's', 2007, - 't', 1996, - 'u', 2011, - 'w', 2008, - '}', 1527, - 0xb5, 2011, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1987, + 'E', 1994, + 'G', 1996, + 'K', 1996, + 'M', 1996, + 'P', 1996, + 'T', 1996, + 'd', 2003, + 'e', 1993, + 'g', 1995, + 'h', 2009, + 'k', 1995, + 'm', 1997, + 'n', 2010, + 'p', 1995, + 's', 2006, + 't', 1995, + 'u', 2010, + 'w', 2007, + '}', 1526, + 0xb5, 2010, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 219: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1988, - 'E', 1995, - 'G', 1997, - 'K', 1997, - 'M', 1997, - 'P', 1997, - 'T', 1997, - 'd', 2004, - 'e', 1994, - 'g', 1996, - 'h', 2010, - 'k', 1996, - 'm', 1998, - 'n', 2011, - 'p', 1996, - 's', 2007, - 't', 1996, - 'u', 2011, - 'w', 2008, - '}', 1527, - 0xb5, 2011, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1987, + 'E', 1996, + 'G', 1996, + 'K', 1996, + 'M', 1996, + 'P', 1996, + 'T', 1996, + 'd', 2003, + 'e', 1995, + 'g', 1995, + 'h', 2009, + 'k', 1995, + 'm', 1997, + 'n', 2010, + 'p', 1995, + 's', 2006, + 't', 1995, + 'u', 2010, + 'w', 2007, + '}', 1526, + 0xb5, 2010, + '\t', 1739, + ' ', 1739, + 'B', 1680, + 'b', 1680, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 220: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1988, - 'E', 1997, - 'G', 1997, - 'K', 1997, - 'M', 1997, - 'P', 1997, - 'T', 1997, - 'd', 2004, - 'e', 1996, - 'g', 1996, - 'h', 2010, - 'k', 1996, - 'm', 1998, - 'n', 2011, - 'p', 1996, - 's', 2007, - 't', 1996, - 'u', 2011, - 'w', 2008, - '}', 1527, - 0xb5, 2011, - '\t', 1740, - ' ', 1740, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + '.', 1987, + '_', 2002, + '}', 1526, + '\t', 1739, + ' ', 1739, + 'E', 2000, + 'e', 2000, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 221: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1988, - '_', 2003, - '}', 1527, - '\t', 1740, - ' ', 1740, - 'E', 2001, - 'e', 2001, + '#', 2215, + '(', 1588, + '.', 1987, + '}', 1526, + '\t', 1739, + ' ', 1739, + 'E', 2000, + 'e', 2000, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 222: - ADVANCE_MAP( - '#', 2216, - '(', 1589, - '.', 1988, - '}', 1527, - '\t', 1740, - ' ', 1740, - 'E', 2001, - 'e', 2001, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); - END_STATE(); - case 223: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '.') ADVANCE(1988); - if (lookahead == '}') ADVANCE(1527); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '.') ADVANCE(1987); + if (lookahead == '}') ADVANCE(1526); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1740); + lookahead == ' ') ADVANCE(1739); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); - case 224: + case 223: ADVANCE_MAP( - '#', 2216, - '(', 1589, - ']', 1494, - '_', 1972, - '\t', 1740, - ' ', 1740, - 'E', 1975, - 'e', 1975, + '#', 2215, + '(', 1588, + ']', 1493, + '_', 1971, + '\t', 1739, + ' ', 1739, + 'E', 1974, + 'e', 1974, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17564,17 +17549,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 225: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == ']') ADVANCE(1494); - if (lookahead == '}') ADVANCE(1527); + case 224: + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == ']') ADVANCE(1493); + if (lookahead == '}') ADVANCE(1526); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1740); + lookahead == ' ') ADVANCE(1739); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17582,18 +17567,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 226: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == ']') ADVANCE(1494); + case 225: + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == ']') ADVANCE(1493); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1740); + lookahead == ' ') ADVANCE(1739); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1975); + lookahead == 'e') ADVANCE(1974); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17601,678 +17586,678 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 227: + case 226: ADVANCE_MAP( - '#', 2216, - '(', 1589, - '_', 2003, - '}', 1527, - '\t', 1740, - ' ', 1740, - 'E', 2001, - 'e', 2001, + '#', 2215, + '(', 1588, + '_', 2002, + '}', 1526, + '\t', 1739, + ' ', 1739, + 'E', 2000, + 'e', 2000, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + END_STATE(); + case 227: + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '{') ADVANCE(1525); + if (lookahead == '\t' || + lookahead == ' ') SKIP(269); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 228: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '}') ADVANCE(1526); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') ADVANCE(1739); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2000); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 229: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '}') ADVANCE(1527); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '}') ADVANCE(1526); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1740); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2001); + lookahead == ' ') ADVANCE(1739); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 230: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '}') ADVANCE(1527); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1740); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 231: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1588); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 232: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1589); + ADVANCE_MAP( + '#', 2215, + '(', 1494, + '-', 1810, + '.', 1622, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '[', 1492, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 0xb5, 1918, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + lookahead == ' ') SKIP(238); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 233: ADVANCE_MAP( - '#', 2216, - '(', 1495, - '-', 1811, - '.', 1623, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '[', 1493, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 0xb5, 1919, + '#', 2215, + '(', 1494, + '-', 1810, + '.', 1817, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '[', 1492, + '_', 1840, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(239); + lookahead == ' ') SKIP(238); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 234: ADVANCE_MAP( - '#', 2216, - '(', 1495, - '-', 1811, - '.', 1818, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '[', 1493, - '_', 1841, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 0xb5, 1919, + '#', 2215, + '(', 1494, + '-', 1810, + '.', 1817, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '[', 1492, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(239); + lookahead == ' ') SKIP(238); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 235: ADVANCE_MAP( - '#', 2216, - '(', 1495, - '-', 1811, - '.', 1818, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '[', 1493, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 0xb5, 1919, + '#', 2215, + '(', 1494, + '-', 1810, + '.', 1817, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '[', 1492, + 'd', 1851, + 'e', 1836, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(239); + lookahead == ' ') SKIP(238); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 236: - ADVANCE_MAP( - '#', 2216, - '(', 1495, - '-', 1811, - '.', 1818, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '[', 1493, - 'd', 1852, - 'e', 1837, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 0xb5, 1919, - ); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1494); + if (lookahead == '-') ADVANCE(1810); + if (lookahead == '[') ADVANCE(1492); if (lookahead == '\t' || - lookahead == ' ') SKIP(239); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(238); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 237: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1495); - if (lookahead == '-') ADVANCE(1811); - if (lookahead == '[') ADVANCE(1493); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1494); + if (lookahead == '-') ADVANCE(296); + if (lookahead == '=') ADVANCE(1756); + if (lookahead == '[') ADVANCE(1492); if (lookahead == '\t' || - lookahead == ' ') SKIP(239); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(238); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1474); END_STATE(); case 238: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1495); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '=') ADVANCE(1757); - if (lookahead == '[') ADVANCE(1493); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '(') ADVANCE(1494); + if (lookahead == '-') ADVANCE(296); + if (lookahead == '[') ADVANCE(1492); if (lookahead == '\t' || - lookahead == ' ') SKIP(239); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1475); + lookahead == ' ') SKIP(238); END_STATE(); case 239: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '(') ADVANCE(1495); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '[') ADVANCE(1493); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == ',') ADVANCE(1496); + if (lookahead == ']') ADVANCE(1493); if (lookahead == '\t' || lookahead == ' ') SKIP(239); - END_STATE(); - case 240: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == ',') ADVANCE(1497); - if (lookahead == ']') ADVANCE(1494); - if (lookahead == '\t' || - lookahead == ' ') SKIP(240); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1694); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1693); END_STATE(); - case 241: + case 240: ADVANCE_MAP( - '#', 2216, - '.', 1623, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '{', 1526, - 0xb5, 1919, + '#', 2215, + '.', 1622, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '{', 1525, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(269); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); - case 242: + case 241: ADVANCE_MAP( - '#', 2216, - '.', 1623, - 'E', 1995, - 'G', 1997, - 'K', 1997, - 'M', 1997, - 'P', 1997, - 'T', 1997, - 'd', 2004, - 'e', 1994, - 'g', 1996, - 'h', 2010, - 'k', 1996, - 'm', 1998, - 'n', 2011, - 'p', 1996, - 's', 2007, - 't', 1996, - 'u', 2011, - 'w', 2008, - 0xb5, 2011, + '#', 2215, + '.', 1622, + 'E', 1994, + 'G', 1996, + 'K', 1996, + 'M', 1996, + 'P', 1996, + 'T', 1996, + 'd', 2003, + 'e', 1993, + 'g', 1995, + 'h', 2009, + 'k', 1995, + 'm', 1997, + 'n', 2010, + 'p', 1995, + 's', 2006, + 't', 1995, + 'u', 2010, + 'w', 2007, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(271); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); + END_STATE(); + case 242: + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1622); + if (lookahead == '{') ADVANCE(1525); + if (lookahead == '\t' || + lookahead == ' ') SKIP(269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 243: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1623); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1622); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'e') ADVANCE(2000); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 244: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1623); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1747); + if (lookahead == 'i') ADVANCE(1383); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2001); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ' ') SKIP(244); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1395); END_STATE(); case 245: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1748); - if (lookahead == 'i') ADVANCE(1384); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1631); + if (lookahead == '_') ADVANCE(1840); if (lookahead == '\t' || - lookahead == ' ') SKIP(245); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); + lookahead == ' ') SKIP(254); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 246: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(1841); + ADVANCE_MAP( + '#', 2215, + '.', 1817, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '_', 1840, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '{', 1525, + 0xb5, 1918, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(269); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 247: ADVANCE_MAP( - '#', 2216, - '.', 1818, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '_', 1841, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '{', 1526, - 0xb5, 1919, + '#', 2215, + '.', 1817, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1833, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '{', 1525, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(269); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 248: ADVANCE_MAP( - '#', 2216, - '.', 1818, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1834, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '{', 1526, - 0xb5, 1919, + '#', 2215, + '.', 1817, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1836, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '{', 1525, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(269); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 249: - ADVANCE_MAP( - '#', 2216, - '.', 1818, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1837, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '{', 1526, - 0xb5, 1919, - ); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1817); + if (lookahead == '_') ADVANCE(1840); + if (lookahead == '{') ADVANCE(1525); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 250: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '_') ADVANCE(1841); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1817); + if (lookahead == '{') ADVANCE(1525); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(269); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 251: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1817); + if (lookahead == '{') ADVANCE(1525); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(269); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 252: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1621); + if (lookahead == '{') ADVANCE(1525); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 253: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1622); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1621); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'e') ADVANCE(2000); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 254: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1622); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(336); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2001); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ' ') SKIP(254); + if (lookahead == '+' || + lookahead == '-') ADVANCE(313); END_STATE(); case 255: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1999); + if (lookahead == '_') ADVANCE(2002); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 256: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1630); - if (lookahead == '_') ADVANCE(2003); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1629); + if (lookahead == '_') ADVANCE(2002); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(1989); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == '-') ADVANCE(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 257: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(2000); - if (lookahead == '_') ADVANCE(2003); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1842); + if (lookahead == '_') ADVANCE(1840); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(1989); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == '-') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 258: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1843); - if (lookahead == '_') ADVANCE(1841); + ADVANCE_MAP( + '#', 2215, + '.', 1987, + 'E', 1994, + 'G', 1996, + 'K', 1996, + 'M', 1996, + 'P', 1996, + 'T', 1996, + '_', 2002, + 'd', 2003, + 'e', 1993, + 'g', 1995, + 'h', 2009, + 'k', 1995, + 'm', 1997, + 'n', 2010, + 'p', 1995, + 's', 2006, + 't', 1995, + 'u', 2010, + 'w', 2007, + 0xb5, 2010, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(271); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 259: ADVANCE_MAP( - '#', 2216, - '.', 1988, - 'E', 1995, - 'G', 1997, - 'K', 1997, - 'M', 1997, - 'P', 1997, - 'T', 1997, - '_', 2003, - 'd', 2004, - 'e', 1994, - 'g', 1996, - 'h', 2010, - 'k', 1996, - 'm', 1998, - 'n', 2011, - 'p', 1996, - 's', 2007, - 't', 1996, - 'u', 2011, - 'w', 2008, - 0xb5, 2011, + '#', 2215, + '.', 1987, + 'E', 1994, + 'G', 1996, + 'K', 1996, + 'M', 1996, + 'P', 1996, + 'T', 1996, + 'd', 2003, + 'e', 1993, + 'g', 1995, + 'h', 2009, + 'k', 1995, + 'm', 1997, + 'n', 2010, + 'p', 1995, + 's', 2006, + 't', 1995, + 'u', 2010, + 'w', 2007, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(271); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 260: ADVANCE_MAP( - '#', 2216, - '.', 1988, - 'E', 1995, - 'G', 1997, - 'K', 1997, - 'M', 1997, - 'P', 1997, - 'T', 1997, - 'd', 2004, - 'e', 1994, - 'g', 1996, - 'h', 2010, - 'k', 1996, - 'm', 1998, - 'n', 2011, - 'p', 1996, - 's', 2007, - 't', 1996, - 'u', 2011, - 'w', 2008, - 0xb5, 2011, + '#', 2215, + '.', 1987, + 'E', 1996, + 'G', 1996, + 'K', 1996, + 'M', 1996, + 'P', 1996, + 'T', 1996, + 'd', 2003, + 'e', 1995, + 'g', 1995, + 'h', 2009, + 'k', 1995, + 'm', 1997, + 'n', 2010, + 'p', 1995, + 's', 2006, + 't', 1995, + 'u', 2010, + 'w', 2007, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(271); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 261: - ADVANCE_MAP( - '#', 2216, - '.', 1988, - 'E', 1997, - 'G', 1997, - 'K', 1997, - 'M', 1997, - 'P', 1997, - 'T', 1997, - 'd', 2004, - 'e', 1996, - 'g', 1996, - 'h', 2010, - 'k', 1996, - 'm', 1998, - 'n', 2011, - 'p', 1996, - 's', 2007, - 't', 1996, - 'u', 2011, - 'w', 2008, - 0xb5, 2011, - ); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1987); + if (lookahead == '_') ADVANCE(2002); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ' ') SKIP(271); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1988); - if (lookahead == '_') ADVANCE(2003); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1987); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2001); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == 'e') ADVANCE(2000); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 263: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1988); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(1987); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2001); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 264: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1988); + ADVANCE_MAP( + '#', 2215, + ':', 1740, + 'a', 415, + 'c', 443, + 'd', 373, + 'e', 521, + 'm', 440, + 'u', 478, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ' ') SKIP(264); END_STATE(); case 265: - ADVANCE_MAP( - '#', 2216, - ':', 1741, - 'a', 416, - 'c', 444, - 'd', 374, - 'e', 522, - 'm', 441, - 'u', 479, - ); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == ':') ADVANCE(1740); if (lookahead == '\t' || lookahead == ' ') SKIP(265); END_STATE(); case 266: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == ':') ADVANCE(1741); - if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - END_STATE(); - case 267: ADVANCE_MAP( - '#', 2216, - '>', 1507, - '[', 1493, - ']', 1494, - 'c', 1374, - 'f', 1393, - 'i', 1382, - 'o', 1385, - 'v', 1370, - '\t', 1740, - ' ', 1740, + '#', 2215, + '>', 1506, + '[', 1492, + ']', 1493, + 'c', 1373, + 'f', 1392, + 'i', 1381, + 'o', 1384, + 'v', 1369, + '\t', 1739, + ' ', 1739, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -18280,75 +18265,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1396); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1395); + END_STATE(); + case 267: + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '_') ADVANCE(1840); + if (lookahead == '{') ADVANCE(1525); + if (lookahead == '\t' || + lookahead == ' ') SKIP(269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 268: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '_') ADVANCE(1841); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '_') ADVANCE(2002); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'e') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 269: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '_') ADVANCE(2003); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '{') ADVANCE(1525); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2001); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ' ') SKIP(269); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '{') ADVANCE(1525); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 271: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '{') ADVANCE(1526); + if (lookahead == '#') ADVANCE(2215); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(271); END_STATE(); case 272: - if (lookahead == '#') ADVANCE(2216); + if (lookahead == '#') ADVANCE(2215); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(271); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2000); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 273: - if (lookahead == '#') ADVANCE(2216); + if (lookahead == '#') ADVANCE(2215); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2001); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == ' ') SKIP(271); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1488); END_STATE(); case 274: - if (lookahead == '#') ADVANCE(2216); + if (lookahead == '#') ADVANCE(2215); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1489); + lookahead == ' ') SKIP(271); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1524); END_STATE(); case 275: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1525); - END_STATE(); - case 276: - if (lookahead == '#') ADVANCE(2219); - if (lookahead == '$') ADVANCE(1501); - if (lookahead == ':') ADVANCE(1741); + if (lookahead == '#') ADVANCE(2218); + if (lookahead == '$') ADVANCE(1500); + if (lookahead == ':') ADVANCE(1740); if (lookahead == '\t' || - lookahead == ' ') SKIP(193); + lookahead == ' ') SKIP(192); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -18357,299 +18342,303 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1066); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1050); + lookahead == '^') ADVANCE(1065); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); - case 277: + case 276: ADVANCE_MAP( - '#', 2219, - ':', 1741, - 'a', 949, - 'c', 970, - 'd', 911, - 'e', 1038, - 'm', 971, - 'u', 999, + '#', 2218, + ':', 1740, + 'a', 948, + 'c', 969, + 'd', 910, + 'e', 1037, + 'm', 970, + 'u', 998, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == ' ') SKIP(264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); - case 278: - if (lookahead == '#') ADVANCE(1728); - if (lookahead == '\'') ADVANCE(1719); - if (lookahead == '(') ADVANCE(1495); + case 277: + if (lookahead == '#') ADVANCE(1727); + if (lookahead == '\'') ADVANCE(1718); + if (lookahead == '(') ADVANCE(1494); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1727); - if (lookahead != 0) ADVANCE(1728); + lookahead == ' ') ADVANCE(1726); + if (lookahead != 0) ADVANCE(1727); + END_STATE(); + case 278: + if (lookahead == '+') ADVANCE(377); + if (lookahead == '>') ADVANCE(1766); + if (lookahead == 'r') ADVANCE(1558); + if (lookahead == 'u') ADVANCE(491); END_STATE(); case 279: if (lookahead == '+') ADVANCE(378); - if (lookahead == '>') ADVANCE(1767); - if (lookahead == 'r') ADVANCE(1559); - if (lookahead == 'u') ADVANCE(492); + if (lookahead == '>') ADVANCE(1762); END_STATE(); case 280: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(1763); - END_STATE(); - case 281: ADVANCE_MAP( - '+', 434, - '>', 1765, - 'I', 539, - 'i', 539, - 'n', 364, - 'r', 457, - 'x', 449, - 'B', 1681, - 'b', 1681, + '+', 433, + '>', 1764, + 'I', 538, + 'i', 538, + 'n', 363, + 'r', 456, + 'x', 448, + 'B', 1680, + 'b', 1680, ); END_STATE(); + case 281: + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'l') ADVANCE(476); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(456); + END_STATE(); case 282: - if (lookahead == '+') ADVANCE(434); - if (lookahead == '>') ADVANCE(1765); - if (lookahead == 'l') ADVANCE(477); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(457); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'l') ADVANCE(476); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(456); + if (lookahead == 'x') ADVANCE(448); END_STATE(); case 283: - if (lookahead == '+') ADVANCE(434); - if (lookahead == '>') ADVANCE(1765); - if (lookahead == 'l') ADVANCE(477); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(457); - if (lookahead == 'x') ADVANCE(449); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(456); END_STATE(); case 284: - if (lookahead == '+') ADVANCE(434); - if (lookahead == '>') ADVANCE(1765); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(457); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(456); + if (lookahead == 'x') ADVANCE(448); END_STATE(); case 285: - if (lookahead == '+') ADVANCE(434); - if (lookahead == '>') ADVANCE(1765); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(457); - if (lookahead == 'x') ADVANCE(449); + if (lookahead == '+') ADVANCE(432); + if (lookahead == '>') ADVANCE(1760); END_STATE(); case 286: - if (lookahead == '+') ADVANCE(433); - if (lookahead == '>') ADVANCE(1761); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(527); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(461); END_STATE(); case 287: - if (lookahead == '+') ADVANCE(442); - if (lookahead == '>') ADVANCE(528); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(462); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(527); + if (lookahead == 'r') ADVANCE(461); END_STATE(); case 288: - if (lookahead == '+') ADVANCE(442); + if (lookahead == '+') ADVANCE(379); if (lookahead == '>') ADVANCE(528); - if (lookahead == 'r') ADVANCE(462); + if (lookahead == 'r') ADVANCE(1558); + if (lookahead == 'u') ADVANCE(496); END_STATE(); case 289: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(529); - if (lookahead == 'r') ADVANCE(1559); - if (lookahead == 'u') ADVANCE(497); + if (lookahead == '+') ADVANCE(379); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'u') ADVANCE(496); END_STATE(); case 290: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(529); - if (lookahead == 'u') ADVANCE(497); + if (lookahead == '+') ADVANCE(446); + if (lookahead == '>') ADVANCE(530); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(447); - if (lookahead == '>') ADVANCE(531); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(532); END_STATE(); case 292: - if (lookahead == '+') ADVANCE(383); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '-') ADVANCE(354); END_STATE(); case 293: - if (lookahead == '-') ADVANCE(355); + if (lookahead == '-') ADVANCE(383); END_STATE(); case 294: - if (lookahead == '-') ADVANCE(384); + if (lookahead == '-') ADVANCE(383); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1587); END_STATE(); case 295: - if (lookahead == '-') ADVANCE(384); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1588); + if (lookahead == '-') ADVANCE(516); END_STATE(); case 296: - if (lookahead == '-') ADVANCE(517); + if (lookahead == '-') ADVANCE(1511); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1511); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '>') ADVANCE(1491); + if (lookahead == '_') ADVANCE(308); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(1512); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '>') ADVANCE(1492); - if (lookahead == '_') ADVANCE(309); + if (lookahead == '-') ADVANCE(1511); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(308); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + lookahead == 'i') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(1512); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(309); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if (lookahead == '-') ADVANCE(1511); + if (lookahead == '>') ADVANCE(1491); END_STATE(); case 300: - if (lookahead == '-') ADVANCE(1512); - if (lookahead == '>') ADVANCE(1492); + if (lookahead == '-') ADVANCE(436); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(437); + if (lookahead == '-') ADVANCE(494); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(495); + if (lookahead == '-') ADVANCE(564); END_STATE(); case 303: - if (lookahead == '-') ADVANCE(565); + if (lookahead == '-') ADVANCE(517); END_STATE(); case 304: if (lookahead == '-') ADVANCE(518); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(519); + if (lookahead == '-') ADVANCE(453); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(454); + if (lookahead == '-') ADVANCE(519); END_STATE(); case 307: - if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(308); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(309); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(308); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 309: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(309); + if (lookahead == '.') ADVANCE(1534); + if (lookahead == '_') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1535); - if (lookahead == '_') ADVANCE(340); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if (lookahead == '.') ADVANCE(1509); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(1510); + if (lookahead == '.') ADVANCE(310); END_STATE(); case 312: - if (lookahead == '.') ADVANCE(311); + if (lookahead == '.') ADVANCE(310); + if (lookahead == '_') ADVANCE(336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 313: - if (lookahead == '.') ADVANCE(311); - if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 314: - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '2') ADVANCE(552); + if (lookahead == '0' || + lookahead == '1') ADVANCE(558); END_STATE(); case 315: - if (lookahead == '2') ADVANCE(553); - if (lookahead == '0' || - lookahead == '1') ADVANCE(559); + if (lookahead == ':') ADVANCE(559); END_STATE(); case 316: if (lookahead == ':') ADVANCE(560); END_STATE(); case 317: - if (lookahead == ':') ADVANCE(561); + if (lookahead == ';') ADVANCE(1743); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(317); END_STATE(); case 318: - if (lookahead == ';') ADVANCE(1744); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(318); + if (lookahead == '=') ADVANCE(1161); + if (lookahead == '~') ADVANCE(1143); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1162); - if (lookahead == '~') ADVANCE(1144); + if (lookahead == '=') ADVANCE(1575); + if (lookahead == '~') ADVANCE(1581); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1576); - if (lookahead == '~') ADVANCE(1582); + if (lookahead == '=') ADVANCE(1574); + if (lookahead == '>') ADVANCE(1527); + if (lookahead == '~') ADVANCE(1580); END_STATE(); case 321: - if (lookahead == '=') ADVANCE(1575); - if (lookahead == '>') ADVANCE(1528); - if (lookahead == '~') ADVANCE(1581); + if (lookahead == '=') ADVANCE(1574); + if (lookahead == '~') ADVANCE(1580); END_STATE(); case 322: - if (lookahead == '=') ADVANCE(1575); - if (lookahead == '~') ADVANCE(1581); + if (lookahead == '>') ADVANCE(1527); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1528); + if (lookahead == '>') ADVANCE(1774); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(1775); + if (lookahead == '>') ADVANCE(1772); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1773); + if (lookahead == '>') ADVANCE(1768); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1769); + if (lookahead == '>') ADVANCE(1770); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(1771); + if (lookahead == '>') ADVANCE(529); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(530); + if (lookahead == '>') ADVANCE(531); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(532); + if (lookahead == '>') ADVANCE(533); END_STATE(); case 330: if (lookahead == '>') ADVANCE(534); END_STATE(); case 331: - if (lookahead == '>') ADVANCE(535); + if (lookahead == 'I') ADVANCE(538); + if (lookahead == 'i') ADVANCE(538); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(539); - if (lookahead == 'i') ADVANCE(539); + if (lookahead == 'I') ADVANCE(538); + if (lookahead == 'i') ADVANCE(356); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); + lookahead == 'b') ADVANCE(1680); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(539); - if (lookahead == 'i') ADVANCE(357); + if (lookahead == 'I') ADVANCE(538); + if (lookahead == 'i') ADVANCE(422); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 's') ADVANCE(1685); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); + lookahead == 'b') ADVANCE(1680); END_STATE(); case 334: - if (lookahead == 'I') ADVANCE(539); - if (lookahead == 'i') ADVANCE(423); - if (lookahead == 'o') ADVANCE(362); - if (lookahead == 's') ADVANCE(1686); + if (lookahead == 'I') ADVANCE(538); + if (lookahead == 'i') ADVANCE(422); + if (lookahead == 's') ADVANCE(1685); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); + lookahead == 'b') ADVANCE(1680); END_STATE(); case 335: - if (lookahead == 'I') ADVANCE(539); - if (lookahead == 'i') ADVANCE(423); - if (lookahead == 's') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); + if (lookahead == '_') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); END_STATE(); case 336: if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 337: if (lookahead == '_') ADVANCE(337); @@ -18657,216 +18646,215 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 338: if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 339: if (lookahead == '_') ADVANCE(339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); case 340: - if (lookahead == '_') ADVANCE(340); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if (lookahead == 'a') ADVANCE(473); END_STATE(); case 341: - if (lookahead == 'a') ADVANCE(474); + if (lookahead == 'a') ADVANCE(473); + if (lookahead == 'r') ADVANCE(1685); END_STATE(); case 342: - if (lookahead == 'a') ADVANCE(474); - if (lookahead == 'r') ADVANCE(1686); + if (lookahead == 'a') ADVANCE(414); END_STATE(); case 343: - if (lookahead == 'a') ADVANCE(415); + if (lookahead == 'a') ADVANCE(523); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(524); + if (lookahead == 'a') ADVANCE(523); + if (lookahead == 'e') ADVANCE(387); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(524); - if (lookahead == 'e') ADVANCE(388); + if (lookahead == 'a') ADVANCE(464); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(465); + if (lookahead == 'a') ADVANCE(474); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(475); + if (lookahead == 'a') ADVANCE(420); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(421); + if (lookahead == 'a') ADVANCE(420); + if (lookahead == 'i') ADVANCE(428); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(421); - if (lookahead == 'i') ADVANCE(429); + if (lookahead == 'a') ADVANCE(471); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(472); + if (lookahead == 'a') ADVANCE(485); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'a') ADVANCE(502); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(503); + if (lookahead == 'a') ADVANCE(504); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(505); + if (lookahead == 'a') ADVANCE(503); END_STATE(); case 354: - if (lookahead == 'a') ADVANCE(504); + if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'o') ADVANCE(458); + if (lookahead == 's') ADVANCE(390); + if (lookahead == 'x') ADVANCE(442); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(430); - if (lookahead == 'o') ADVANCE(459); - if (lookahead == 's') ADVANCE(391); - if (lookahead == 'x') ADVANCE(443); + if (lookahead == 'a') ADVANCE(470); END_STATE(); case 356: - if (lookahead == 'a') ADVANCE(471); + if (lookahead == 'b') ADVANCE(1680); END_STATE(); case 357: - if (lookahead == 'b') ADVANCE(1681); + if (lookahead == 'c') ADVANCE(1685); END_STATE(); case 358: - if (lookahead == 'c') ADVANCE(1686); + if (lookahead == 'c') ADVANCE(389); END_STATE(); case 359: - if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'c') ADVANCE(384); END_STATE(); case 360: - if (lookahead == 'c') ADVANCE(385); + if (lookahead == 'd') ADVANCE(1554); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(1555); + if (lookahead == 'd') ADVANCE(1598); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(1599); + if (lookahead == 'd') ADVANCE(1612); END_STATE(); case 363: - if (lookahead == 'd') ADVANCE(1613); + if (lookahead == 'd') ADVANCE(475); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(476); + if (lookahead == 'd') ADVANCE(513); END_STATE(); case 365: - if (lookahead == 'd') ADVANCE(514); + if (lookahead == 'd') ADVANCE(481); END_STATE(); case 366: - if (lookahead == 'd') ADVANCE(482); + if (lookahead == 'e') ADVANCE(1066); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(1090); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1091); + if (lookahead == 'e') ADVANCE(1111); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(1112); + if (lookahead == 'e') ADVANCE(1114); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1115); + if (lookahead == 'e') ADVANCE(1075); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1076); + if (lookahead == 'e') ADVANCE(1583); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1584); + if (lookahead == 'e') ADVANCE(1585); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(1586); + if (lookahead == 'e') ADVANCE(387); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(388); + if (lookahead == 'e') ADVANCE(1505); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(1506); + if (lookahead == 'e') ADVANCE(357); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'e') ADVANCE(357); + if (lookahead == 't') ADVANCE(345); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(358); - if (lookahead == 't') ADVANCE(346); + if (lookahead == 'e') ADVANCE(324); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'e') ADVANCE(466); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(467); + if (lookahead == 'e') ADVANCE(328); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(329); + if (lookahead == 'e') ADVANCE(463); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'e') ADVANCE(465); END_STATE(); case 382: - if (lookahead == 'e') ADVANCE(466); + if (lookahead == 'e') ADVANCE(467); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(468); + if (lookahead == 'e') ADVANCE(431); + if (lookahead == 'h') ADVANCE(346); + if (lookahead == 'i') ADVANCE(425); + if (lookahead == 'l') ADVANCE(406); + if (lookahead == 's') ADVANCE(509); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(432); - if (lookahead == 'h') ADVANCE(347); - if (lookahead == 'i') ADVANCE(426); - if (lookahead == 'l') ADVANCE(407); - if (lookahead == 's') ADVANCE(510); + if (lookahead == 'e') ADVANCE(417); END_STATE(); case 385: - if (lookahead == 'e') ADVANCE(418); + if (lookahead == 'f') ADVANCE(1087); END_STATE(); case 386: - if (lookahead == 'f') ADVANCE(1088); + if (lookahead == 'f') ADVANCE(1087); + if (lookahead == 'n') ADVANCE(1105); END_STATE(); case 387: - if (lookahead == 'f') ADVANCE(1088); - if (lookahead == 'n') ADVANCE(1106); + if (lookahead == 'f') ADVANCE(839); END_STATE(); case 388: - if (lookahead == 'f') ADVANCE(840); + if (lookahead == 'f') ADVANCE(1504); END_STATE(); case 389: - if (lookahead == 'f') ADVANCE(1505); + if (lookahead == 'h') ADVANCE(1096); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(1097); + if (lookahead == 'h') ADVANCE(412); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(413); + if (lookahead == 'h') ADVANCE(1570); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1571); + if (lookahead == 'h') ADVANCE(1566); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(1567); + if (lookahead == 'h') ADVANCE(1572); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(1573); + if (lookahead == 'h') ADVANCE(1568); END_STATE(); case 395: - if (lookahead == 'h') ADVANCE(1569); + if (lookahead == 'h') ADVANCE(1501); END_STATE(); case 396: if (lookahead == 'h') ADVANCE(1502); END_STATE(); case 397: - if (lookahead == 'h') ADVANCE(1503); + if (lookahead == 'h') ADVANCE(300); END_STATE(); case 398: - if (lookahead == 'h') ADVANCE(301); + if (lookahead == 'i') ADVANCE(409); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'i') ADVANCE(484); END_STATE(); case 400: - if (lookahead == 'i') ADVANCE(485); + if (lookahead == 'i') ADVANCE(428); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(429); + if (lookahead == 'i') ADVANCE(492); END_STATE(); case 402: if (lookahead == 'i') ADVANCE(493); END_STATE(); case 403: - if (lookahead == 'i') ADVANCE(494); + if (lookahead == 'i') ADVANCE(497); END_STATE(); case 404: if (lookahead == 'i') ADVANCE(498); @@ -18875,150 +18863,150 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(499); END_STATE(); case 406: - if (lookahead == 'i') ADVANCE(500); + if (lookahead == 'i') ADVANCE(410); END_STATE(); case 407: - if (lookahead == 'i') ADVANCE(411); + if (lookahead == 'i') ADVANCE(349); END_STATE(); case 408: - if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'k') ADVANCE(1685); END_STATE(); case 409: - if (lookahead == 'k') ADVANCE(1686); + if (lookahead == 'k') ADVANCE(371); END_STATE(); case 410: if (lookahead == 'k') ADVANCE(372); END_STATE(); case 411: - if (lookahead == 'k') ADVANCE(373); + if (lookahead == 'l') ADVANCE(1117); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(1118); + if (lookahead == 'l') ADVANCE(1608); + if (lookahead == 'r') ADVANCE(1610); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(1609); - if (lookahead == 'r') ADVANCE(1611); + if (lookahead == 'l') ADVANCE(522); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(523); + if (lookahead == 'l') ADVANCE(413); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(414); + if (lookahead == 'l') ADVANCE(407); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(408); + if (lookahead == 'l') ADVANCE(411); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(412); + if (lookahead == 'l') ADVANCE(418); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(419); + if (lookahead == 'l') ADVANCE(305); END_STATE(); case 419: - if (lookahead == 'l') ADVANCE(306); + if (lookahead == 'l') ADVANCE(370); END_STATE(); case 420: - if (lookahead == 'l') ADVANCE(371); + if (lookahead == 'l') ADVANCE(477); END_STATE(); case 421: - if (lookahead == 'l') ADVANCE(478); + if (lookahead == 'n') ADVANCE(1072); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1073); + if (lookahead == 'n') ADVANCE(1685); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); + if (lookahead == 'n') ADVANCE(360); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'n') ADVANCE(1105); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(1106); + if (lookahead == 'n') ADVANCE(1560); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(1561); + if (lookahead == 'n') ADVANCE(1503); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(1504); + if (lookahead == 'n') ADVANCE(363); END_STATE(); case 428: - if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'n') ADVANCE(342); END_STATE(); case 429: - if (lookahead == 'n') ADVANCE(343); + if (lookahead == 'n') ADVANCE(362); END_STATE(); case 430: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'n') ADVANCE(479); END_STATE(); case 431: - if (lookahead == 'n') ADVANCE(480); + if (lookahead == 'n') ADVANCE(365); END_STATE(); case 432: - if (lookahead == 'n') ADVANCE(366); + if (lookahead == 'o') ADVANCE(511); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(512); + if (lookahead == 'o') ADVANCE(323); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(324); + if (lookahead == 'o') ADVANCE(457); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(458); + if (lookahead == 'o') ADVANCE(388); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'o') ADVANCE(450); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(451); + if (lookahead == 'o') ADVANCE(490); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'o') ADVANCE(490); + if (lookahead == 's') ADVANCE(1685); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(491); - if (lookahead == 's') ADVANCE(1686); + if (lookahead == 'o') ADVANCE(361); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'o') ADVANCE(364); END_STATE(); case 441: - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'o') ADVANCE(327); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(328); + if (lookahead == 'o') ADVANCE(459); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(460); + if (lookahead == 'o') ADVANCE(430); END_STATE(); case 444: - if (lookahead == 'o') ADVANCE(431); + if (lookahead == 'o') ADVANCE(487); END_STATE(); case 445: if (lookahead == 'o') ADVANCE(488); + if (lookahead == 'u') ADVANCE(416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(544); END_STATE(); case 446: - if (lookahead == 'o') ADVANCE(489); - if (lookahead == 'u') ADVANCE(417); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(545); + if (lookahead == 'o') ADVANCE(514); END_STATE(); case 447: - if (lookahead == 'o') ADVANCE(515); + if (lookahead == 'o') ADVANCE(469); END_STATE(); case 448: - if (lookahead == 'o') ADVANCE(470); + if (lookahead == 'p') ADVANCE(447); + if (lookahead == 't') ADVANCE(380); END_STATE(); case 449: - if (lookahead == 'p') ADVANCE(448); - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'p') ADVANCE(374); END_STATE(); case 450: - if (lookahead == 'p') ADVANCE(375); + if (lookahead == 'p') ADVANCE(501); END_STATE(); case 451: - if (lookahead == 'p') ADVANCE(502); + if (lookahead == 'p') ADVANCE(351); END_STATE(); case 452: if (lookahead == 'p') ADVANCE(352); @@ -19027,197 +19015,197 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'p') ADVANCE(353); END_STATE(); case 454: - if (lookahead == 'p') ADVANCE(354); + if (lookahead == 'r') ADVANCE(1685); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(1686); + if (lookahead == 'r') ADVANCE(1558); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(285); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(286); + if (lookahead == 'r') ADVANCE(1556); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(1557); + if (lookahead == 'r') ADVANCE(1616); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(1617); + if (lookahead == 'r') ADVANCE(1614); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(1615); + if (lookahead == 'r') ADVANCE(512); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(513); + if (lookahead == 'r') ADVANCE(290); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(291); + if (lookahead == 'r') ADVANCE(326); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(327); + if (lookahead == 'r') ADVANCE(421); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(422); + if (lookahead == 'r') ADVANCE(507); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(508); + if (lookahead == 'r') ADVANCE(426); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(427); + if (lookahead == 'r') ADVANCE(462); END_STATE(); case 467: - if (lookahead == 'r') ADVANCE(463); + if (lookahead == 'r') ADVANCE(468); END_STATE(); case 468: - if (lookahead == 'r') ADVANCE(469); + if (lookahead == 'r') ADVANCE(330); END_STATE(); case 469: - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 'r') ADVANCE(486); END_STATE(); case 470: - if (lookahead == 'r') ADVANCE(487); + if (lookahead == 'r') ADVANCE(508); END_STATE(); case 471: - if (lookahead == 'r') ADVANCE(509); + if (lookahead == 's') ADVANCE(679); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(680); + if (lookahead == 's') ADVANCE(1685); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(1686); + if (lookahead == 's') ADVANCE(1562); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(1563); + if (lookahead == 's') ADVANCE(1564); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(1565); + if (lookahead == 's') ADVANCE(295); END_STATE(); case 476: - if (lookahead == 's') ADVANCE(296); + if (lookahead == 's') ADVANCE(367); END_STATE(); case 477: - if (lookahead == 's') ADVANCE(368); + if (lookahead == 's') ADVANCE(369); END_STATE(); case 478: - if (lookahead == 's') ADVANCE(370); + if (lookahead == 's') ADVANCE(366); END_STATE(); case 479: - if (lookahead == 's') ADVANCE(367); + if (lookahead == 's') ADVANCE(483); END_STATE(); case 480: - if (lookahead == 's') ADVANCE(484); + if (lookahead == 's') ADVANCE(303); END_STATE(); case 481: if (lookahead == 's') ADVANCE(304); END_STATE(); case 482: - if (lookahead == 's') ADVANCE(305); + if (lookahead == 's') ADVANCE(306); END_STATE(); case 483: - if (lookahead == 's') ADVANCE(307); + if (lookahead == 't') ADVANCE(691); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(692); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 't') ADVANCE(358); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(359); + if (lookahead == 't') ADVANCE(675); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(676); + if (lookahead == 't') ADVANCE(294); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(295); + if (lookahead == 't') ADVANCE(553); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(554); + if (lookahead == 't') ADVANCE(345); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(346); + if (lookahead == 't') ADVANCE(293); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 't') ADVANCE(279); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(280); + if (lookahead == 't') ADVANCE(391); END_STATE(); case 493: if (lookahead == 't') ADVANCE(392); END_STATE(); case 494: - if (lookahead == 't') ADVANCE(393); + if (lookahead == 't') ADVANCE(524); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(525); + if (lookahead == 't') ADVANCE(325); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(326); + if (lookahead == 't') ADVANCE(291); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 't') ADVANCE(393); END_STATE(); case 498: if (lookahead == 't') ADVANCE(394); END_STATE(); case 499: - if (lookahead == 't') ADVANCE(395); + if (lookahead == 't') ADVANCE(397); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(398); + if (lookahead == 't') ADVANCE(329); END_STATE(); case 501: - if (lookahead == 't') ADVANCE(330); + if (lookahead == 't') ADVANCE(301); END_STATE(); case 502: - if (lookahead == 't') ADVANCE(302); + if (lookahead == 't') ADVANCE(395); END_STATE(); case 503: if (lookahead == 't') ADVANCE(396); END_STATE(); case 504: - if (lookahead == 't') ADVANCE(397); + if (lookahead == 't') ADVANCE(506); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(507); + if (lookahead == 't') ADVANCE(380); END_STATE(); case 506: if (lookahead == 't') ADVANCE(381); END_STATE(); case 507: - if (lookahead == 't') ADVANCE(382); + if (lookahead == 't') ADVANCE(480); END_STATE(); case 508: - if (lookahead == 't') ADVANCE(481); + if (lookahead == 't') ADVANCE(482); END_STATE(); case 509: - if (lookahead == 't') ADVANCE(483); + if (lookahead == 't') ADVANCE(355); END_STATE(); case 510: - if (lookahead == 't') ADVANCE(356); + if (lookahead == 'u') ADVANCE(525); + if (lookahead == 'x') ADVANCE(572); + if (lookahead != 0) ADVANCE(1731); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(526); - if (lookahead == 'x') ADVANCE(573); - if (lookahead != 0) ADVANCE(1732); + if (lookahead == 'u') ADVANCE(495); END_STATE(); case 512: - if (lookahead == 'u') ADVANCE(496); + if (lookahead == 'u') ADVANCE(368); END_STATE(); case 513: - if (lookahead == 'u') ADVANCE(369); + if (lookahead == 'u') ADVANCE(419); END_STATE(); case 514: - if (lookahead == 'u') ADVANCE(420); + if (lookahead == 'u') ADVANCE(500); END_STATE(); case 515: - if (lookahead == 'u') ADVANCE(501); + if (lookahead == 'u') ADVANCE(526); + if (lookahead == 'x') ADVANCE(573); + if (lookahead != 0) ADVANCE(1723); END_STATE(); case 516: - if (lookahead == 'u') ADVANCE(527); - if (lookahead == 'x') ADVANCE(574); - if (lookahead != 0) ADVANCE(1724); + if (lookahead == 'w') ADVANCE(401); END_STATE(); case 517: if (lookahead == 'w') ADVANCE(402); @@ -19232,2829 +19220,2826 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(405); END_STATE(); case 521: - if (lookahead == 'w') ADVANCE(406); + if (lookahead == 'x') ADVANCE(505); END_STATE(); case 522: - if (lookahead == 'x') ADVANCE(506); + if (lookahead == 'y') ADVANCE(1099); END_STATE(); case 523: - if (lookahead == 'y') ADVANCE(1100); + if (lookahead == 'y') ADVANCE(1685); END_STATE(); case 524: - if (lookahead == 'y') ADVANCE(1686); + if (lookahead == 'y') ADVANCE(449); END_STATE(); case 525: - if (lookahead == 'y') ADVANCE(450); + if (lookahead == '{') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(567); END_STATE(); case 526: - if (lookahead == '{') ADVANCE(570); + if (lookahead == '{') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(574); END_STATE(); case 527: - if (lookahead == '{') ADVANCE(572); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(575); + if (lookahead == '|') ADVANCE(1482); END_STATE(); case 528: if (lookahead == '|') ADVANCE(1483); END_STATE(); case 529: - if (lookahead == '|') ADVANCE(1484); + if (lookahead == '|') ADVANCE(1487); END_STATE(); case 530: - if (lookahead == '|') ADVANCE(1488); + if (lookahead == '|') ADVANCE(1480); END_STATE(); case 531: - if (lookahead == '|') ADVANCE(1481); + if (lookahead == '|') ADVANCE(1486); END_STATE(); case 532: - if (lookahead == '|') ADVANCE(1487); + if (lookahead == '|') ADVANCE(1481); END_STATE(); case 533: - if (lookahead == '|') ADVANCE(1482); + if (lookahead == '|') ADVANCE(1484); END_STATE(); case 534: if (lookahead == '|') ADVANCE(1485); END_STATE(); case 535: - if (lookahead == '|') ADVANCE(1486); + if (lookahead == '}') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(535); END_STATE(); case 536: - if (lookahead == '}') ADVANCE(1732); + if (lookahead == '}') ADVANCE(1723); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(536); END_STATE(); case 537: - if (lookahead == '}') ADVANCE(1724); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(537); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(544); END_STATE(); case 538: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(545); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); END_STATE(); case 539: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1127); END_STATE(); case 540: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1128); + lookahead == 'f') ADVANCE(1125); END_STATE(); case 541: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1126); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(548); END_STATE(); case 542: if (lookahead == 'I' || lookahead == 'i') ADVANCE(549); END_STATE(); case 543: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(550); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(539); END_STATE(); case 544: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(540); + lookahead == 'n') ADVANCE(1131); END_STATE(); case 545: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1132); + lookahead == 'n') ADVANCE(541); END_STATE(); case 546: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(542); + lookahead == 'n') ADVANCE(540); END_STATE(); case 547: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(541); + lookahead == 'n') ADVANCE(542); END_STATE(); case 548: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(543); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(551); END_STATE(); case 549: if (lookahead == 'T' || - lookahead == 't') ADVANCE(552); + lookahead == 't') ADVANCE(550); END_STATE(); case 550: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(551); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1120); END_STATE(); case 551: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1121); + lookahead == 'y') ADVANCE(1126); END_STATE(); case 552: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1127); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1698); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1699); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1587); END_STATE(); case 554: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1588); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 555: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); END_STATE(); case 556: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 557: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1706); END_STATE(); case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1707); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1698); END_STATE(); case 559: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1699); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(554); END_STATE(); case 560: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(555); END_STATE(); case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(556); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1705); END_STATE(); case 562: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); END_STATE(); case 563: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(562); END_STATE(); case 564: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(563); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(561); END_STATE(); case 565: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); END_STATE(); case 566: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); END_STATE(); case 567: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(566); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(572); END_STATE(); case 568: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(573); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1731); END_STATE(); case 569: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1732); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(535); END_STATE(); case 570: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(536); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1723); END_STATE(); case 571: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1724); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(536); END_STATE(); case 572: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(537); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); END_STATE(); case 573: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); END_STATE(); case 574: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(571); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(573); END_STATE(); case 575: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(574); - END_STATE(); - case 576: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '"', 1713, - '#', 2216, - '$', 1499, - '&', 839, - '\'', 1716, - '(', 1495, - ')', 1496, - '*', 1540, - '+', 1603, - ',', 1497, - '-', 1514, - '.', 1749, - '/', 1598, - ':', 1741, - ';', 1479, - '<', 1577, - '=', 683, - '>', 1508, - '?', 1745, - '@', 1490, - '[', 1493, - ']', 1494, - '^', 1759, - '_', 1530, - '`', 1720, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1745, + '"', 1712, + '#', 2215, + '$', 1498, + '&', 838, + '\'', 1715, + '(', 1494, + ')', 1495, + '*', 1539, + '+', 1602, + ',', 1496, + '-', 1513, + '.', 1748, + '/', 1597, + ':', 1740, + ';', 1478, + '<', 1576, + '=', 682, + '>', 1507, + '?', 1744, + '@', 1489, + '[', 1492, + ']', 1493, + '^', 1758, + '_', 1529, + '`', 1719, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(576); + lookahead == ' ') SKIP(575); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1396); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1395); END_STATE(); - case 577: - if (eof) ADVANCE(671); + case 576: + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '"', 1713, - '#', 2216, - '\'', 1716, - ')', 1496, - '*', 1539, - '+', 712, - '-', 308, - '.', 1754, - ';', 1479, - '?', 1745, - 'I', 824, - 'N', 820, - '[', 1493, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - '}', 1527, + '!', 1745, + '"', 1712, + '#', 2215, + '\'', 1715, + ')', 1495, + '*', 1538, + '+', 711, + '-', 307, + '.', 1753, + ';', 1478, + '?', 1744, + 'I', 823, + 'N', 819, + '[', 1492, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(577); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + lookahead == ' ') SKIP(576); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); + END_STATE(); + case 577: + if (eof) ADVANCE(670); + ADVANCE_MAP( + '\n', 1475, + '\r', 1, + '!', 1745, + '"', 1712, + '#', 2215, + '\'', 1715, + ')', 1495, + '*', 1538, + '+', 711, + '-', 307, + '.', 1753, + ';', 1478, + 'I', 823, + 'N', 819, + '[', 1492, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + '}', 1526, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 578: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '"', 1713, - '#', 2216, - '\'', 1716, - ')', 1496, - '*', 1539, - '+', 712, - '-', 308, - '.', 1754, - ';', 1479, - 'I', 824, - 'N', 820, - '[', 1493, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - '}', 1527, + '!', 1745, + '#', 2215, + '(', 1494, + ')', 1495, + '-', 299, + '.', 1747, + ':', 1490, + ';', 1478, + '=', 682, + '>', 1506, + '?', 1744, + '[', 1492, + 'a', 423, + 'e', 287, + 'i', 424, + 'o', 288, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 579: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '#', 2216, - '(', 1495, - ')', 1496, - '-', 300, - '.', 1748, - ':', 1491, - ';', 1479, - '=', 683, - '>', 1507, - '?', 1745, - '[', 1493, - 'a', 424, - 'e', 288, - 'i', 425, - 'o', 289, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1745, + '#', 2215, + '(', 1494, + ')', 1495, + '-', 299, + '.', 1749, + ':', 1490, + ';', 1478, + '<', 1163, + '=', 682, + '>', 1506, + '?', 1744, + '@', 1508, + '[', 1492, + 'a', 423, + 'e', 287, + 'i', 424, + 'o', 288, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + lookahead == ' ') SKIP(578); END_STATE(); case 580: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '#', 2216, - '(', 1495, - ')', 1496, - '-', 300, - '.', 1750, - ':', 1491, - ';', 1479, - '<', 1164, - '=', 683, - '>', 1507, - '?', 1745, - '@', 1509, - '[', 1493, - 'a', 424, - 'e', 288, - 'i', 425, - 'o', 289, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1745, + '#', 2215, + '(', 1494, + ')', 1495, + '-', 296, + '.', 1747, + ':', 1490, + ';', 1478, + '=', 684, + '>', 1506, + '?', 1744, + '[', 1492, + 'a', 423, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + lookahead == ' ') SKIP(580); END_STATE(); case 581: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '#', 2216, - '(', 1495, - ')', 1496, - '-', 297, - '.', 1748, - ':', 1491, - ';', 1479, - '=', 685, - '>', 1507, - '?', 1745, - '[', 1493, - 'a', 424, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1745, + '#', 2215, + '(', 1494, + ')', 1495, + '-', 296, + '.', 1749, + ':', 1490, + ';', 1478, + '=', 684, + '>', 1506, + '?', 1744, + '[', 1492, + 'a', 423, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(581); + lookahead == ' ') SKIP(580); END_STATE(); case 582: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1746, - '#', 2216, - '(', 1495, - ')', 1496, - '-', 297, - '.', 1750, - ':', 1491, - ';', 1479, - '=', 685, - '>', 1507, - '?', 1745, - '[', 1493, - 'a', 424, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1745, + '#', 2215, + ')', 1495, + '.', 1749, + ';', 1478, + '=', 1756, + '?', 1744, + 'e', 1396, + 'o', 1397, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(581); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1474); END_STATE(); case 583: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, '!', 1746, - '#', 2216, - ')', 1496, - '.', 1750, - ';', 1479, - '=', 1757, - '?', 1745, - 'e', 1397, - 'o', 1398, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, + '#', 2215, + '$', 1536, + '\'', 1718, + '(', 1588, + ')', 1495, + '*', 1540, + '+', 1605, + '-', 1522, + '.', 1749, + '/', 1595, + ':', 1740, + ';', 1478, + '<', 1577, + '=', 683, + '>', 1507, + '?', 1744, + '@', 1508, + ']', 1493, + '`', 1722, + 'a', 423, + 'b', 399, + 'c', 350, + 'd', 373, + 'e', 282, + 'f', 400, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1475); + if (lookahead == '\t' || + lookahead == ' ') SKIP(586); END_STATE(); case 584: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1747, - '#', 2216, - '$', 1537, - '\'', 1719, - '(', 1589, - ')', 1496, - '*', 1541, - '+', 1606, - '-', 1523, - '.', 1750, - '/', 1596, - ':', 1741, - ';', 1479, - '<', 1578, - '=', 684, - '>', 1508, - '?', 1745, - '@', 1509, - ']', 1494, - '`', 1723, - 'a', 424, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 283, - 'f', 401, + '!', 1746, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1749, + '/', 1594, + ':', 1740, + ';', 1478, + '<', 1577, + '=', 320, + '>', 1507, + '?', 1744, + '@', 1489, + 'B', 1680, + 'E', 332, + 'G', 332, + 'K', 332, + 'M', 332, + 'P', 332, + 'T', 332, + '[', 1692, + 'a', 423, + 'b', 1682, + 'd', 344, + 'e', 280, + 'f', 400, + 'g', 331, 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, + 'i', 386, + 'k', 331, + 'l', 398, + 'm', 333, 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + 'o', 278, + 'p', 331, + 's', 376, + 't', 331, + 'u', 472, + 'w', 408, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, + 0xb5, 472, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(587); + lookahead == ' ') SKIP(585); END_STATE(); case 585: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1747, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1750, - '/', 1595, - ':', 1741, - ';', 1479, - '<', 1578, - '=', 321, - '>', 1508, - '?', 1745, - '@', 1490, - 'B', 1681, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - '[', 1693, - 'a', 424, - 'b', 1683, - 'd', 345, - 'e', 281, - 'f', 401, - 'g', 332, - 'h', 342, - 'i', 387, - 'k', 332, - 'l', 399, - 'm', 334, - 'n', 439, - 'o', 279, - 'p', 332, - 's', 377, - 't', 332, - 'u', 473, - 'w', 409, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, - 0xb5, 473, + '!', 1746, + '#', 2215, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1747, + '/', 1594, + ':', 1740, + ';', 1478, + '<', 1577, + '=', 320, + '>', 1507, + '?', 1744, + '@', 1489, + 'a', 423, + 'b', 399, + 'd', 373, + 'e', 284, + 'f', 400, + 'h', 340, + 'i', 386, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(586); + lookahead == ' ') SKIP(585); END_STATE(); case 586: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1747, - '#', 2216, - ')', 1496, + '!', 1746, + '#', 2215, + ')', 1495, '*', 1540, - '+', 1603, - '-', 1514, - '.', 1748, + '+', 1605, + '-', 1522, + '.', 1747, '/', 1595, - ':', 1741, - ';', 1479, - '<', 1578, - '=', 321, - '>', 1508, - '?', 1745, - '@', 1490, - 'a', 424, - 'b', 400, - 'd', 374, - 'e', 285, - 'f', 401, - 'h', 341, - 'i', 387, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + ':', 1740, + ';', 1478, + '<', 1577, + '=', 683, + '>', 1507, + '?', 1744, + ']', 1493, + 'a', 423, + 'b', 399, + 'c', 350, + 'd', 373, + 'e', 282, + 'f', 400, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(586); END_STATE(); case 587: - if (eof) ADVANCE(671); - ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '!', 1747, - '#', 2216, - ')', 1496, - '*', 1541, - '+', 1606, - '-', 1523, - '.', 1748, - '/', 1596, - ':', 1741, - ';', 1479, - '<', 1578, - '=', 684, - '>', 1508, - '?', 1745, - ']', 1494, - 'a', 424, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 283, - 'f', 401, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(587); - END_STATE(); - case 588: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1604, - '-', 1521, - '.', 1632, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1800, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1791, - 's', 1927, - 'x', 1899, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1603, + '-', 1520, + '.', 1631, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1799, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1790, + 's', 1926, + 'x', 1898, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ' ') SKIP(619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1962); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1961); + END_STATE(); + case 588: + if (eof) ADVANCE(670); + ADVANCE_MAP( + '\n', 1475, + '\r', 1, + '!', 1820, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1603, + '-', 1520, + '.', 1631, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1803, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1805, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 589: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1604, - '-', 1521, - '.', 1632, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1804, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1806, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1603, + '-', 1520, + '.', 1842, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1799, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1790, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 590: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1604, - '-', 1521, - '.', 1843, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1800, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1791, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1603, + '-', 1520, + '.', 1842, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1803, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1805, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 591: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1604, - '-', 1521, - '.', 1843, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1804, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1806, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1622, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1791, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1790, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(624); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 592: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1623, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1792, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1791, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1622, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1793, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1805, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 593: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1623, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1794, - 'g', 1837, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1622, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1792, 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, + 'i', 1890, + 'l', 1878, + 'm', 1901, 'n', 1900, - 'o', 1806, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); - END_STATE(); - case 594: - if (eof) ADVANCE(671); - ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1623, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1793, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1791, - 's', 1927, - 'x', 1899, - '{', 1526, - '|', 1480, - '}', 1527, + 'o', 1790, + 's', 1926, + 'x', 1898, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); + lookahead == ' ') SKIP(623); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1962); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1961); + END_STATE(); + case 594: + if (eof) ADVANCE(670); + ADVANCE_MAP( + '\n', 1475, + '\r', 1, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1622, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1795, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1805, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 595: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1623, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1796, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1806, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '_', 1840, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1791, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1790, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 596: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '_', 1841, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1792, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1791, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '_', 1840, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1793, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1805, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 597: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '_', 1841, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1794, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1806, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1791, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1790, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(624); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 598: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1792, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1791, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1793, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1805, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 599: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1794, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1806, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1798, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1790, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(624); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 600: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1799, - 'g', 1837, - 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, - 'n', 1900, - 'o', 1791, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'B', 1680, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'b', 1683, + 'd', 1851, + 'e', 1801, + 'g', 1836, + 'h', 1849, + 'i', 1890, + 'k', 1836, + 'l', 1878, + 'm', 1838, + 'n', 1899, + 'o', 1805, + 'p', 1836, + 's', 1865, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); if (lookahead == '\t' || lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 601: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'B', 1681, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'b', 1684, - 'd', 1852, - 'e', 1802, - 'g', 1837, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1792, 'h', 1850, - 'i', 1891, - 'k', 1837, - 'l', 1879, - 'm', 1839, + 'i', 1890, + 'l', 1878, + 'm', 1901, 'n', 1900, - 'o', 1806, - 'p', 1837, - 's', 1866, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); - END_STATE(); - case 602: - if (eof) ADVANCE(671); - ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1793, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1791, - 's', 1927, - 'x', 1899, - '{', 1526, - '|', 1480, - '}', 1527, + 'o', 1790, + 's', 1926, + 'x', 1898, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + lookahead == ' ') SKIP(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1962); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1961); END_STATE(); - case 603: - if (eof) ADVANCE(671); + case 602: + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1796, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1806, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1795, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1805, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); - case 604: - if (eof) ADVANCE(671); + case 603: + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1793, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1791, - 's', 1927, - 'x', 1899, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1792, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1790, + 's', 1926, + 'x', 1898, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); + lookahead == ' ') SKIP(623); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1962); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1961); END_STATE(); - case 605: - if (eof) ADVANCE(671); + case 604: + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1796, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1806, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1795, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1805, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); - case 606: - if (eof) ADVANCE(671); + case 605: + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'a', 1893, - 'b', 1880, - 'e', 1800, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1791, - 's', 1927, - 'x', 1899, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'a', 1892, + 'b', 1879, + 'e', 1799, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1790, + 's', 1926, + 'x', 1898, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); + lookahead == ' ') SKIP(623); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1962); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1961); END_STATE(); - case 607: - if (eof) ADVANCE(671); + case 606: + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1818, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'a', 1893, - 'b', 1880, - 'e', 1804, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1806, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1817, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'a', 1892, + 'b', 1879, + 'e', 1803, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1805, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); - case 608: - if (eof) ADVANCE(671); + case 607: + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1622, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1793, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1791, - 's', 1927, - 'x', 1899, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1621, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1792, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1790, + 's', 1926, + 'x', 1898, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); + lookahead == ' ') SKIP(623); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1962); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1961); + END_STATE(); + case 608: + if (eof) ADVANCE(670); + ADVANCE_MAP( + '\n', 1475, + '\r', 1, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1621, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1795, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1805, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 609: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1622, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1796, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1806, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1792, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1790, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 610: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1793, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1791, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + '_', 1840, + 'a', 1892, + 'b', 1879, + 'e', 1795, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1805, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 611: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - '_', 1841, - 'a', 1893, - 'b', 1880, - 'e', 1796, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1806, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1792, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1790, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(624); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 612: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1793, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1791, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'E', 1846, + 'a', 1892, + 'b', 1879, + 'e', 1795, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1805, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 613: - if (eof) ADVANCE(671); - ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'E', 1847, - 'a', 1893, - 'b', 1880, - 'e', 1796, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1806, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); - END_STATE(); - case 614: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'a', 1893, - 'b', 1880, - 'e', 1800, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1791, - 's', 1927, - 'x', 1899, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'a', 1892, + 'b', 1879, + 'e', 1799, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1790, + 's', 1926, + 'x', 1898, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); + lookahead == ' ') SKIP(623); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1962); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1961); + END_STATE(); + case 614: + if (eof) ADVANCE(670); + ADVANCE_MAP( + '\n', 1475, + '\r', 1, + '!', 1820, + '#', 2215, + '(', 1588, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 1822, + '>', 1507, + 'a', 1892, + 'b', 1879, + 'e', 1803, + 'h', 1850, + 'i', 1890, + 'l', 1878, + 'm', 1901, + 'n', 1900, + 'o', 1805, + 's', 1926, + 'x', 1898, + '|', 1479, + '}', 1526, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 615: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1821, - '#', 2216, - '(', 1589, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 1823, - '>', 1508, - 'a', 1893, - 'b', 1880, - 'e', 1804, - 'h', 1851, - 'i', 1891, - 'l', 1879, - 'm', 1902, - 'n', 1901, - 'o', 1806, - 's', 1927, - 'x', 1899, - '|', 1480, - '}', 1527, + '!', 866, + '#', 2218, + ')', 1495, + '*', 1541, + '+', 1606, + '-', 1523, + '/', 1596, + ':', 1740, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 953, + 'b', 933, + 'e', 843, + 'h', 889, + 'i', 954, + 'l', 932, + 'm', 967, + 'n', 968, + 'o', 842, + 's', 1013, + 'x', 966, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1065); END_STATE(); case 616: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 867, - '#', 2219, - ')', 1496, - '*', 1542, - '+', 1607, - '-', 1524, - '/', 1597, - ':', 1741, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 954, - 'b', 934, - 'e', 844, - 'h', 890, - 'i', 955, - 'l', 933, - 'm', 968, - 'n', 969, - 'o', 843, - 's', 1014, - 'x', 967, - '|', 1480, - '}', 1527, + '!', 866, + '#', 2218, + ')', 1495, + '*', 1541, + '+', 1606, + '-', 1523, + '/', 1596, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 953, + 'b', 933, + 'e', 847, + 'h', 889, + 'i', 954, + 'l', 932, + 'm', 967, + 'n', 968, + 'o', 846, + 's', 1013, + 'x', 966, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1066); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1065); END_STATE(); case 617: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 867, - '#', 2219, - ')', 1496, - '*', 1542, - '+', 1607, - '-', 1524, - '/', 1597, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 954, - 'b', 934, - 'e', 848, - 'h', 890, - 'i', 955, - 'l', 933, - 'm', 968, - 'n', 969, - 'o', 847, - 's', 1014, - 'x', 967, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + '$', 1497, + '(', 1494, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1747, + '/', 1594, + ':', 1490, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + '?', 1744, + '[', 1492, + 'a', 423, + 'b', 399, + 'c', 350, + 'e', 281, + 'f', 348, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 444, + 'o', 278, + 's', 489, + 't', 460, + 'x', 434, + '{', 1525, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1066); + lookahead == ' ') SKIP(617); END_STATE(); case 618: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '$', 1498, - '(', 1495, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1748, - '/', 1595, - ':', 1491, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - '?', 1745, - '[', 1493, - 'a', 424, - 'b', 400, - 'c', 351, - 'e', 282, - 'f', 349, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 445, - 'o', 279, - 's', 490, - 't', 461, - 'x', 435, - '{', 1526, - '|', 1480, + '!', 319, + '#', 2215, + '$', 1497, + '(', 1494, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '.', 1749, + '/', 1594, + ':', 1490, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + '?', 1744, + '[', 1492, + 'a', 423, + 'b', 399, + 'c', 350, + 'e', 281, + 'f', 348, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 444, + 'o', 278, + 's', 489, + 't', 460, + 'x', 434, + '{', 1525, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); + lookahead == ' ') SKIP(617); END_STATE(); case 619: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '$', 1498, - '(', 1495, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '.', 1750, - '/', 1595, - ':', 1491, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - '?', 1745, - '[', 1493, - 'a', 424, - 'b', 400, - 'c', 351, - 'e', 282, - 'f', 349, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 445, - 'o', 279, - 's', 490, - 't', 461, - 'x', 435, - '{', 1526, - '|', 1480, + '!', 319, + '#', 2215, + '$', 1497, + ')', 1495, + '*', 1539, + '+', 1604, + '-', 1521, + '.', 336, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); + lookahead == ' ') SKIP(619); END_STATE(); case 620: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '$', 1498, - ')', 1496, - '*', 1540, - '+', 1605, - '-', 1522, - '.', 337, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + '$', 1497, + ')', 1495, + '*', 1539, + '+', 1604, + '-', 1521, + '.', 336, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); END_STATE(); case 621: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '$', 1498, - ')', 1496, - '*', 1540, - '+', 1605, - '-', 1522, - '.', 337, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + '$', 1497, + ')', 1495, + '*', 1539, + '+', 1604, + '-', 1521, + '.', 336, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 286, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 288, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); END_STATE(); case 622: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '$', 1498, - ')', 1496, - '*', 1540, - '+', 1605, - '-', 1522, - '.', 337, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 287, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 289, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ':', 1740, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(622); END_STATE(); case 623: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ':', 1741, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(623); END_STATE(); case 624: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '{', 1526, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(624); END_STATE(); case 625: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - ')', 1496, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + ')', 1495, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 286, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 288, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(625); END_STATE(); case 626: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - ')', 1496, + '!', 319, + '#', 2215, + ')', 1495, '*', 1540, - '+', 1603, - '-', 1514, + '+', 1605, + '-', 1522, + '.', 1747, '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 287, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 289, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, + ':', 1490, + ';', 1478, + '<', 1577, + '=', 683, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(626); END_STATE(); case 627: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - ')', 1496, - '*', 1541, - '+', 1606, - '-', 1523, - '.', 1748, - '/', 1596, - ':', 1491, - ';', 1479, - '<', 1578, - '=', 684, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + ')', 1495, + '*', 1540, + '+', 1605, + '-', 1522, + '.', 1749, + '/', 1595, + ':', 1490, + ';', 1478, + '<', 1577, + '=', 683, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(627); + lookahead == ' ') SKIP(626); END_STATE(); case 628: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - ')', 1496, - '*', 1541, - '+', 1606, - '-', 1523, - '.', 1750, - '/', 1596, - ':', 1491, - ';', 1479, - '<', 1578, - '=', 684, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, - '}', 1527, + '!', 319, + '#', 2215, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 283, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 278, + 's', 489, + 'x', 434, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(627); + lookahead == ' ') SKIP(628); END_STATE(); case 629: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 284, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 279, - 's', 490, - 'x', 435, - '|', 1480, + '!', 319, + '#', 2215, + '*', 1539, + '+', 1602, + '-', 1513, + '/', 1594, + ';', 1478, + '<', 1577, + '=', 321, + '>', 1507, + 'a', 423, + 'b', 399, + 'e', 286, + 'h', 340, + 'i', 424, + 'l', 398, + 'm', 439, + 'n', 437, + 'o', 288, + 's', 489, + 'x', 434, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(629); END_STATE(); case 630: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 320, - '#', 2216, - '*', 1540, - '+', 1603, - '-', 1514, - '/', 1595, - ';', 1479, - '<', 1578, - '=', 322, - '>', 1508, - 'a', 424, - 'b', 400, - 'e', 287, - 'h', 341, - 'i', 425, - 'l', 399, - 'm', 440, - 'n', 438, - 'o', 289, - 's', 490, - 'x', 435, - '|', 1480, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + ')', 1643, + '+', 711, + '-', 1518, + '.', 706, + '0', 1650, + ':', 1490, + ';', 1478, + '=', 682, + '@', 1489, + 'I', 823, + 'N', 819, + '[', 1492, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 't', 785, + 'u', 798, + 'w', 757, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(630); + lookahead == ' ') SKIP(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(838); END_STATE(); case 631: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - ')', 1644, - '+', 712, - '-', 1519, - '.', 707, - '0', 1651, - ':', 1491, - ';', 1479, - '=', 683, - '@', 1490, - 'I', 824, - 'N', 820, - '[', 1493, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 't', 786, - 'u', 799, - 'w', 758, - '{', 1526, - '|', 1480, - '}', 1527, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + ')', 1495, + '+', 711, + '-', 1518, + '.', 706, + '0', 1650, + ':', 1490, + ';', 1478, + '<', 1163, + '=', 682, + '>', 1506, + '@', 1508, + 'I', 823, + 'N', 819, + '[', 1492, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 700, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 'o', 702, + 't', 785, + 'u', 798, + 'w', 757, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == ' ') SKIP(632); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(839); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(838); END_STATE(); case 632: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - ')', 1496, - '+', 712, - '-', 1519, - '.', 707, - '0', 1651, - ':', 1491, - ';', 1479, - '<', 1164, - '=', 683, - '>', 1507, - '@', 1509, - 'I', 824, - 'N', 820, - '[', 1493, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 701, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 'o', 703, - 't', 786, - 'u', 799, - 'w', 758, - '{', 1526, - '|', 1480, - '}', 1527, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + ')', 1495, + '+', 711, + '-', 1518, + '.', 706, + '0', 1650, + ':', 1490, + ';', 1478, + '=', 682, + '>', 1506, + 'I', 823, + 'N', 819, + '[', 1492, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 700, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 'o', 702, + 't', 785, + 'u', 798, + 'w', 757, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == ' ') SKIP(632); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(839); + (lookahead < '0' || '>' < lookahead) && + lookahead != '@' && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(838); END_STATE(); case 633: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - ')', 1496, - '+', 712, - '-', 1519, - '.', 707, - '0', 1651, - ':', 1491, - ';', 1479, - '=', 683, - '>', 1507, - 'I', 824, - 'N', 820, - '[', 1493, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 701, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 'o', 703, - 't', 786, - 'u', 799, - 'w', 758, - '{', 1526, - '|', 1480, - '}', 1527, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + ')', 1495, + '+', 711, + '-', 1518, + '.', 706, + '0', 1650, + ':', 1490, + ';', 1478, + '=', 682, + '@', 1489, + 'I', 823, + 'N', 819, + '[', 1492, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 't', 785, + 'u', 798, + 'w', 757, + '{', 1525, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '@' && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(839); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(838); END_STATE(); case 634: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - ')', 1496, - '+', 712, - '-', 1519, - '.', 707, + '"', 1712, + '#', 2215, + '$', 1498, + '\'', 1715, + '(', 1494, + ')', 1495, + '+', 2027, + '-', 1515, + '.', 2026, '0', 1651, - ':', 1491, - ';', 1479, - '=', 683, - '@', 1490, - 'I', 824, - 'N', 820, - '[', 1493, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 't', 786, - 'u', 799, - 'w', 758, - '{', 1526, - '|', 1480, - '}', 1527, + ';', 1478, + 'N', 2074, + '[', 1492, + '_', 2039, + '`', 1719, + 'e', 2016, + 'f', 2042, + 'n', 2070, + 'o', 2017, + 't', 2057, + '{', 1525, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, + 'I', 2078, + 'i', 2078, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(634); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(839); + lookahead != ']') ADVANCE(2097); END_STATE(); case 635: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '$', 1499, - '\'', 1716, - '(', 1495, - ')', 1496, - '+', 2028, - '-', 1516, - '.', 2027, - '0', 1652, - ';', 1479, - 'N', 2075, - '[', 1493, - '_', 2040, - '`', 1720, - 'e', 2017, - 'f', 2043, - 'n', 2071, - 'o', 2018, - 't', 2058, - '{', 1526, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, - 'I', 2079, - 'i', 2079, + '"', 1712, + '#', 2215, + '\'', 1715, + '(', 1494, + ')', 1495, + '*', 1538, + '+', 711, + '-', 298, + '.', 727, + ';', 1478, + '=', 682, + 'I', 823, + 'N', 819, + '[', 1492, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + '{', 1525, + '}', 1526, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2098); + if (lookahead == '\t' || + lookahead == ' ') SKIP(635); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); case 636: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '\'', 1716, - '(', 1495, - ')', 1496, - '*', 1539, - '+', 712, - '-', 299, - '.', 728, - ';', 1479, - '=', 683, - 'I', 824, - 'N', 820, - '[', 1493, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - '{', 1526, - '}', 1527, + '"', 1712, + '#', 2215, + '\'', 1715, + ')', 1495, + '*', 1538, + '+', 711, + '-', 307, + '.', 1753, + ';', 1478, + '?', 1744, + 'I', 823, + 'N', 819, + '[', 1492, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + '}', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(636); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); - END_STATE(); - case 637: - if (eof) ADVANCE(671); - ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '"', 1713, - '#', 2216, - '\'', 1716, - ')', 1496, - '*', 1539, - '+', 712, - '-', 308, - '.', 1754, - ';', 1479, - '?', 1745, - 'I', 824, - 'N', 820, - '[', 1493, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - '}', 1527, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(637); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); - case 638: - if (eof) ADVANCE(671); + case 637: + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2216, - '\'', 1716, - ')', 1496, - '*', 1539, - '+', 712, - '-', 308, - '.', 1754, - ';', 1479, - 'I', 824, - 'N', 820, - '[', 1493, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 812, - 't', 786, - 'u', 799, - 'w', 762, - '}', 1527, + '"', 1712, + '#', 2215, + '\'', 1715, + ')', 1495, + '*', 1538, + '+', 711, + '-', 307, + '.', 1753, + ';', 1478, + 'I', 823, + 'N', 819, + '[', 1492, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 811, + 't', 785, + 'u', 798, + 'w', 761, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); + lookahead == ' ') SKIP(637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(838); END_STATE(); - case 639: - if (eof) ADVANCE(671); + case 638: + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '"', 1713, - '#', 2218, - '$', 1499, - '\'', 1716, - '(', 1495, - '+', 712, - '-', 1519, - '.', 707, - '0', 1651, - ';', 1479, - '@', 1490, - 'I', 824, - 'N', 820, - '[', 1493, - '^', 1759, - '_', 726, - '`', 1720, - 'a', 765, - 'c', 731, - 'd', 742, - 'e', 772, - 'f', 732, - 'i', 725, - 'l', 750, - 'm', 736, - 'n', 783, - 't', 786, - 'u', 799, - 'w', 758, - '{', 1526, + '"', 1712, + '#', 2217, + '$', 1498, + '\'', 1715, + '(', 1494, + '+', 711, + '-', 1518, + '.', 706, + '0', 1650, + ';', 1478, + '@', 1489, + 'I', 823, + 'N', 819, + '[', 1492, + '^', 1758, + '_', 725, + '`', 1719, + 'a', 764, + 'c', 730, + 'd', 741, + 'e', 771, + 'f', 731, + 'i', 724, + 'l', 749, + 'm', 735, + 'n', 782, + 't', 785, + 'u', 798, + 'w', 757, + '{', 1525, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(639); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == ' ') SKIP(638); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(839); + (lookahead < '{' || '}' < lookahead)) ADVANCE(838); END_STATE(); - case 640: - if (eof) ADVANCE(671); + case 639: + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - '.', 1632, - ';', 1479, - '[', 1693, - '_', 1841, - 'e', 1805, - 'o', 1807, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, - '+', 1819, - '-', 1819, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + '.', 1631, + ';', 1478, + '[', 1692, + '_', 1840, + 'e', 1804, + 'o', 1806, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, + '+', 1818, + '-', 1818, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -22062,7835 +22047,7840 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1962); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + END_STATE(); + case 640: + if (eof) ADVANCE(670); + ADVANCE_MAP( + '\n', 1475, + '\r', 1, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + '.', 1631, + ';', 1478, + '_', 1840, + 'a', 1892, + 'e', 1804, + 'o', 1805, + 'x', 1898, + '|', 1479, + '}', 1526, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(643); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 641: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - '.', 1632, - ';', 1479, - '_', 1841, - 'a', 1893, - 'e', 1805, - 'o', 1806, - 'x', 1899, - '|', 1480, - '}', 1527, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + '.', 1842, + ';', 1478, + '_', 1840, + 'a', 1892, + 'e', 1804, + 'o', 1805, + 'x', 1898, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(644); + lookahead == ' ') SKIP(643); if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + lookahead == '-') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 642: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - '.', 1843, - ';', 1479, - '_', 1841, - 'a', 1893, - 'e', 1805, + '#', 2215, + '$', 1497, + '(', 1588, + ')', 1495, + '.', 1842, + ';', 1478, + '_', 1840, + 'e', 1804, 'o', 1806, - 'x', 1899, - '|', 1480, - '}', 1527, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, + '+', 1818, + '-', 1818, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(644); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1961); END_STATE(); case 643: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - '(', 1589, - ')', 1496, - '.', 1843, - ';', 1479, - '_', 1841, - 'e', 1805, - 'o', 1807, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, - '+', 1819, - '-', 1819, + '#', 2215, + '$', 1497, + ')', 1495, + '.', 336, + ';', 1478, + 'a', 423, + 'e', 287, + 'o', 288, + 'x', 434, + '|', 1479, + '}', 1526, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(643); + if (lookahead == '+' || + lookahead == '-') ADVANCE(313); END_STATE(); case 644: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '$', 1498, - ')', 1496, - '.', 337, - ';', 1479, - 'a', 424, - 'e', 288, - 'o', 289, - 'x', 435, - '|', 1480, - '}', 1527, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1622, + ';', 1478, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'd', 1851, + 'e', 1794, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'o', 1805, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(644); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == ' ') SKIP(669); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 645: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1623, - ';', 1479, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'd', 1852, - 'e', 1795, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1622, + ';', 1478, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1794, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, 'o', 1806, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + '}', 1526, + 0xb5, 1918, + '\t', 1477, + ' ', 1477, + 'B', 1680, + 'b', 1680, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 646: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1623, - ';', 1479, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1795, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'o', 1807, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - '}', 1527, - 0xb5, 1919, - '\t', 1478, - ' ', 1478, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1622, + ';', 1478, + 'E', 1846, + 'a', 1892, + 'e', 1796, + 'o', 1805, + 'x', 1898, + '|', 1479, + '}', 1526, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 647: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1623, - ';', 1479, - 'E', 1847, - 'a', 1893, - 'e', 1797, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1622, + ';', 1478, + 'E', 1846, + 'e', 1796, 'o', 1806, - 'x', 1899, - '|', 1480, - '}', 1527, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 648: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1623, - ';', 1479, - 'E', 1847, - 'e', 1797, - 'o', 1807, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '_', 1840, + 'a', 1892, + 'd', 1851, + 'e', 1794, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'o', 1805, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 649: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '_', 1841, - 'a', 1893, - 'd', 1852, - 'e', 1795, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + '_', 1840, + 'd', 1851, + 'e', 1794, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, 'o', 1806, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + '}', 1526, + 0xb5, 1918, + '\t', 1477, + ' ', 1477, + 'B', 1680, + 'b', 1680, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 650: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - '_', 1841, - 'd', 1852, - 'e', 1795, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'o', 1807, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - '}', 1527, - 0xb5, 1919, - '\t', 1478, - ' ', 1478, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'd', 1851, + 'e', 1794, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'o', 1805, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 651: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'd', 1852, - 'e', 1795, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'E', 1834, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1794, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, 'o', 1806, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + '}', 1526, + 0xb5, 1918, + '\t', 1477, + ' ', 1477, + 'B', 1680, + 'b', 1680, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 652: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'E', 1835, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1795, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'o', 1807, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - '}', 1527, - 0xb5, 1919, - '\t', 1478, - ' ', 1478, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'a', 1892, + 'd', 1851, + 'e', 1802, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, + 'o', 1805, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + 'x', 1898, + '|', 1479, + '}', 1526, + 0xb5, 1918, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 653: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'a', 1893, - 'd', 1852, - 'e', 1803, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'E', 1837, + 'G', 1837, + 'K', 1837, + 'M', 1837, + 'P', 1837, + 'T', 1837, + 'd', 1851, + 'e', 1802, + 'g', 1836, + 'h', 1905, + 'k', 1836, + 'm', 1839, + 'n', 1918, 'o', 1806, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - 'x', 1899, - '|', 1480, - '}', 1527, - 0xb5, 1919, + 'p', 1836, + 's', 1866, + 't', 1836, + 'u', 1918, + 'w', 1885, + '|', 1479, + '}', 1526, + 0xb5, 1918, + '\t', 1477, + ' ', 1477, + 'B', 1680, + 'b', 1680, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 654: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'E', 1838, - 'G', 1838, - 'K', 1838, - 'M', 1838, - 'P', 1838, - 'T', 1838, - 'd', 1852, - 'e', 1803, - 'g', 1837, - 'h', 1906, - 'k', 1837, - 'm', 1840, - 'n', 1919, - 'o', 1807, - 'p', 1837, - 's', 1867, - 't', 1837, - 'u', 1919, - 'w', 1886, - '|', 1480, - '}', 1527, - 0xb5, 1919, - '\t', 1478, - ' ', 1478, - 'B', 1681, - 'b', 1681, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'E', 1846, + '_', 1840, + 'a', 1892, + 'e', 1796, + 'o', 1805, + 'x', 1898, + '|', 1479, + '}', 1526, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 655: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'E', 1847, - '_', 1841, - 'a', 1893, - 'e', 1797, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'E', 1846, + '_', 1840, + 'e', 1796, 'o', 1806, - 'x', 1899, - '|', 1480, - '}', 1527, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 656: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'E', 1847, - '_', 1841, - 'e', 1797, - 'o', 1807, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'E', 1846, + 'a', 1892, + 'e', 1796, + 'o', 1805, + 'x', 1898, + '|', 1479, + '}', 1526, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 657: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'E', 1847, - 'a', 1893, - 'e', 1797, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'E', 1846, + 'e', 1796, 'o', 1806, - 'x', 1899, - '|', 1480, - '}', 1527, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 658: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'E', 1847, - 'e', 1797, - 'o', 1807, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'a', 1892, + 'e', 1804, + 'o', 1805, + 'x', 1898, + '|', 1479, + '}', 1526, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 659: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'a', 1893, - 'e', 1805, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1817, + ';', 1478, + 'e', 1804, 'o', 1806, - 'x', 1899, - '|', 1480, - '}', 1527, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 660: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1818, - ';', 1479, - 'e', 1805, - 'o', 1807, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1621, + ';', 1478, + 'E', 1846, + 'a', 1892, + 'e', 1796, + 'o', 1805, + 'x', 1898, + '|', 1479, + '}', 1526, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 661: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1622, - ';', 1479, - 'E', 1847, - 'a', 1893, - 'e', 1797, + '#', 2215, + '(', 1588, + ')', 1495, + '.', 1621, + ';', 1478, + 'E', 1846, + 'e', 1796, 'o', 1806, - 'x', 1899, - '|', 1480, - '}', 1527, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 662: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - '.', 1622, - ';', 1479, - 'E', 1847, - 'e', 1797, - 'o', 1807, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, + '#', 2215, + '(', 1588, + ')', 1495, + ';', 1478, + 'E', 1846, + '_', 1840, + 'a', 1892, + 'e', 1796, + 'o', 1805, + 'x', 1898, + '|', 1479, + '}', 1526, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 663: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - ';', 1479, - 'E', 1847, - '_', 1841, - 'a', 1893, - 'e', 1797, + '#', 2215, + '(', 1588, + ')', 1495, + ';', 1478, + 'E', 1846, + '_', 1840, + 'e', 1796, 'o', 1806, - 'x', 1899, - '|', 1480, - '}', 1527, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 664: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - ';', 1479, - 'E', 1847, - '_', 1841, - 'e', 1797, - 'o', 1807, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, + '#', 2215, + '(', 1588, + ')', 1495, + ';', 1478, + 'E', 1846, + 'a', 1892, + 'e', 1796, + 'o', 1805, + 'x', 1898, + '|', 1479, + '}', 1526, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 665: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - ';', 1479, - 'E', 1847, - 'a', 1893, - 'e', 1797, + '#', 2215, + '(', 1588, + ')', 1495, + ';', 1478, + 'E', 1846, + 'e', 1796, 'o', 1806, - 'x', 1899, - '|', 1480, - '}', 1527, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 666: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - ';', 1479, - 'E', 1847, - 'e', 1797, - 'o', 1807, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, + '#', 2215, + '(', 1588, + ')', 1495, + ';', 1478, + 'a', 1892, + 'e', 1804, + 'o', 1805, + 'x', 1898, + '|', 1479, + '}', 1526, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 667: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - ';', 1479, - 'a', 1893, - 'e', 1805, + '#', 2215, + '(', 1588, + ')', 1495, + ';', 1478, + 'e', 1804, 'o', 1806, - 'x', 1899, - '|', 1480, - '}', 1527, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 668: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - '(', 1589, - ')', 1496, - ';', 1479, - 'e', 1805, - 'o', 1807, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, + '#', 2215, + ')', 1495, + ';', 1478, + '=', 1756, + 'e', 1783, + 'o', 1784, + '|', 1479, + '}', 1526, + '\t', 1477, + ' ', 1477, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); END_STATE(); case 669: - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '#', 2216, - ')', 1496, - ';', 1479, - '=', 1757, - 'e', 1784, - 'o', 1785, - '|', 1480, - '}', 1527, - '\t', 1478, - ' ', 1478, + '#', 2215, + ')', 1495, + ';', 1478, + 'a', 423, + 'e', 287, + 'o', 288, + 'x', 434, + '|', 1479, + '}', 1526, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); + if (lookahead == '\t' || + lookahead == ' ') SKIP(669); END_STATE(); case 670: - if (eof) ADVANCE(671); - ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '#', 2216, - ')', 1496, - ';', 1479, - 'a', 424, - 'e', 288, - 'o', 289, - 'x', 435, - '|', 1480, - '}', 1527, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(670); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 671: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 672: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); case 673: ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(672); + if (lookahead == '\r') ADVANCE(674); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(673); + if (lookahead != 0) ADVANCE(674); END_STATE(); case 674: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(673); - if (lookahead == '\r') ADVANCE(675); - if (lookahead == '#') ADVANCE(2217); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(674); - if (lookahead != 0) ADVANCE(675); + if (lookahead == '\n') ADVANCE(672); + if (lookahead == '\r') ADVANCE(674); + if (lookahead != 0) ADVANCE(674); END_STATE(); case 675: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(673); - if (lookahead == '\r') ADVANCE(675); - if (lookahead != 0) ADVANCE(675); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 676: ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1419); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 677: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == '-') ADVANCE(752); END_STATE(); case 678: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(753); + if (lookahead == '-') ADVANCE(918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 680: ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 681: ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 683: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1574); + if (lookahead == '~') ADVANCE(1580); END_STATE(); case 684: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1575); - if (lookahead == '~') ADVANCE(1581); + if (lookahead == '>') ADVANCE(1527); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1528); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 686: ACCEPT_TOKEN(anon_sym_let); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 687: ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 689: ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 690: ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 691: - ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 692: ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 693: ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 694: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 695: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 696: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 697: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 698: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 699: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '$') ADVANCE(1644); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '{') ADVANCE(1733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1645); - if (lookahead == '(') ADVANCE(1619); - if (lookahead == '{') ADVANCE(1734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '+') ADVANCE(779); + if (lookahead == '>') ADVANCE(527); + if (lookahead == 'l') ADVANCE(799); + if (lookahead == 'r') ADVANCE(788); + if (lookahead == 'x') ADVANCE(784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(780); - if (lookahead == '>') ADVANCE(528); - if (lookahead == 'l') ADVANCE(800); - if (lookahead == 'r') ADVANCE(789); - if (lookahead == 'x') ADVANCE(785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(781); - if (lookahead == '>') ADVANCE(531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '+') ADVANCE(755); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'u') ADVANCE(808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(756); - if (lookahead == '>') ADVANCE(529); - if (lookahead == 'u') ADVANCE(809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '+') ADVANCE(754); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(755); - if (lookahead == '>') ADVANCE(533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '-') ADVANCE(835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '.') ADVANCE(818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '.') ADVANCE(1534); + if (lookahead == '_') ADVANCE(727); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1535); - if (lookahead == '_') ADVANCE(728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '.') ADVANCE(1531); + if (lookahead == '_') ADVANCE(727); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1532); - if (lookahead == '_') ADVANCE(728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '.') ADVANCE(699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '.') ADVANCE(1620); + if (lookahead == '_') ADVANCE(727); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1621); - if (lookahead == '_') ADVANCE(728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '.') ADVANCE(708); + if (lookahead == '_') ADVANCE(727); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(709); - if (lookahead == '_') ADVANCE(728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '.') ADVANCE(726); + if (lookahead == '_') ADVANCE(711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(727); - if (lookahead == '_') ADVANCE(712); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == ':') ADVANCE(559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 714: 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(839); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 715: 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(839); + if (lookahead == '>') ADVANCE(533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '>') ADVANCE(534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 717: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); - END_STATE(); - case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 821, - '_', 729, - 'i', 821, - 'l', 800, - 'x', 785, - '+', 729, - '-', 729, - 'B', 1681, - 'b', 1681, + 'I', 820, + '_', 728, + 'i', 820, + 'l', 799, + 'x', 784, + '+', 728, + '-', 728, + 'B', 1680, + 'b', 1680, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); - case 719: + case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(821); - if (lookahead == '_') ADVANCE(729); - if (lookahead == 'i') ADVANCE(737); + if (lookahead == 'I') ADVANCE(820); + if (lookahead == '_') ADVANCE(728); + if (lookahead == 'i') ADVANCE(736); if (lookahead == '+' || - lookahead == '-') ADVANCE(729); + lookahead == '-') ADVANCE(728); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); - case 720: + case 719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 821, - 'a', 810, - 'i', 776, - 'o', 741, - 's', 1686, - 'u', 805, - 'B', 1681, - 'b', 1681, + 'I', 820, + 'a', 809, + 'i', 775, + 'o', 740, + 's', 1685, + 'u', 804, + 'B', 1680, + 'b', 1680, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + END_STATE(); + case 720: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I') ADVANCE(820); + if (lookahead == 'i') ADVANCE(820); + if (lookahead == 'l') ADVANCE(799); + if (lookahead == 'x') ADVANCE(784); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(821); - if (lookahead == 'i') ADVANCE(821); - if (lookahead == 'l') ADVANCE(800); - if (lookahead == 'x') ADVANCE(785); + if (lookahead == 'I') ADVANCE(820); + if (lookahead == 'i') ADVANCE(820); + if (lookahead == 'r') ADVANCE(812); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(821); - if (lookahead == 'i') ADVANCE(821); - if (lookahead == 'r') ADVANCE(813); + if (lookahead == 'I') ADVANCE(820); + if (lookahead == 'i') ADVANCE(820); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(821); - if (lookahead == 'i') ADVANCE(821); + if (lookahead == 'I') ADVANCE(820); + if (lookahead == 'i') ADVANCE(736); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(821); - if (lookahead == 'i') ADVANCE(737); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'N') ADVANCE(821); + if (lookahead == 'f') ADVANCE(1087); + if (lookahead == 'n') ADVANCE(1106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(822); - if (lookahead == 'f') ADVANCE(1088); - if (lookahead == 'n') ADVANCE(1107); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '_') ADVANCE(725); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(726); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(729); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'a') ADVANCE(802); + if (lookahead == 'o') ADVANCE(776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(803); - if (lookahead == 'o') ADVANCE(777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'a') ADVANCE(772); + if (lookahead == 'i') ADVANCE(777); + if (lookahead == 'o') ADVANCE(786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(773); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'o') ADVANCE(787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'e') ADVANCE(756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(818); - if (lookahead == 'e') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'a') ADVANCE(794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'a') ADVANCE(768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'a') ADVANCE(809); + if (lookahead == 'o') ADVANCE(740); + if (lookahead == 'u') ADVANCE(804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'o') ADVANCE(741); - if (lookahead == 'u') ADVANCE(805); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'c') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'c') ADVANCE(758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'c') ADVANCE(759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'd') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(1090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(1111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(1114); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(1553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(1084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(1075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(803); + if (lookahead == 'o') ADVANCE(778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(804); - if (lookahead == 'o') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(791); + if (lookahead == 'i') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(792); - if (lookahead == 'i') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'e') ADVANCE(714); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(715); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'f') ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'h') ADVANCE(751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'h') ADVANCE(1096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'h') ADVANCE(1102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'h') ADVANCE(763); + if (lookahead == 'k') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(764); - if (lookahead == 'k') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'h') ADVANCE(763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'i') ADVANCE(733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'i') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'l') ADVANCE(762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'l') ADVANCE(1117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1118); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'l') ADVANCE(816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'l') ADVANCE(765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'l') ADVANCE(747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'l') ADVANCE(799); + if (lookahead == 'x') ADVANCE(784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(800); - if (lookahead == 'x') ADVANCE(785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'l') ADVANCE(801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'n') ADVANCE(1072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'n') ADVANCE(815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(816); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'n') ADVANCE(1685); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'n') ADVANCE(800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'n') ADVANCE(734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'o') ADVANCE(783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'o') ADVANCE(713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'o') ADVANCE(813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(814); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'o') ADVANCE(790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'o') ADVANCE(805); + if (lookahead == 'u') ADVANCE(767); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(806); - if (lookahead == 'u') ADVANCE(768); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'p') ADVANCE(1081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'p') ADVANCE(781); + if (lookahead == 't') ADVANCE(753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(782); - if (lookahead == 't') ADVANCE(754); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'r') ADVANCE(812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'r') ADVANCE(1078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'r') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'r') ADVANCE(701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'r') ADVANCE(773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'r') ADVANCE(807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'r') ADVANCE(746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'r') ADVANCE(793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 793: 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(839); + if (lookahead == 'r') ADVANCE(716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(717); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 's') ADVANCE(679); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 's') ADVANCE(1685); + if (lookahead == 'u') ADVANCE(767); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1686); - if (lookahead == 'u') ADVANCE(768); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 's') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 's') ADVANCE(742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(744); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 's') ADVANCE(806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 's') ADVANCE(745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 't') ADVANCE(738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 't') ADVANCE(685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 't') ADVANCE(688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(689); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 't') ADVANCE(829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 't') ADVANCE(691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 't') ADVANCE(677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 't') ADVANCE(703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 't') ADVANCE(739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 't') ADVANCE(715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(716); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'u') ADVANCE(767); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(768); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'u') ADVANCE(744); + if (lookahead == 'y') ADVANCE(1093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(745); - if (lookahead == 'y') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'u') ADVANCE(810); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(811); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'u') ADVANCE(770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'v') ADVANCE(1069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'y') ADVANCE(1099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'y') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '{') ADVANCE(1733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '{') ADVANCE(1734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(822); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + lookahead == 'n') ADVANCE(1131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + lookahead == 'n') ADVANCE(822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(828); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1121); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(712); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); case 837: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); - END_STATE(); - case 838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); END_STATE(); - case 839: + case 838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(838); + END_STATE(); + case 839: + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 840: ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 841: ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 842: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(915); + if (lookahead == '>') ADVANCE(1766); + if (lookahead == 'r') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(916); - if (lookahead == '>') ADVANCE(1767); - if (lookahead == 'r') ADVANCE(1560); - if (lookahead == 'u') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '+') ADVANCE(963); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'n') ADVANCE(904); + if (lookahead == 'r') ADVANCE(978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(964); - if (lookahead == '>') ADVANCE(1765); - if (lookahead == 'n') ADVANCE(905); - if (lookahead == 'r') ADVANCE(979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '+') ADVANCE(916); + if (lookahead == '>') ADVANCE(1762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(917); - if (lookahead == '>') ADVANCE(1763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '+') ADVANCE(965); + if (lookahead == '>') ADVANCE(1760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(966); - if (lookahead == '>') ADVANCE(1761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '+') ADVANCE(917); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'r') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(1017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(918); - if (lookahead == '>') ADVANCE(529); - if (lookahead == 'r') ADVANCE(1560); - if (lookahead == 'u') ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '+') ADVANCE(971); + if (lookahead == '>') ADVANCE(527); + if (lookahead == 'n') ADVANCE(904); + if (lookahead == 'r') ADVANCE(984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(972); - if (lookahead == '>') ADVANCE(528); - if (lookahead == 'n') ADVANCE(905); - if (lookahead == 'r') ADVANCE(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '+') ADVANCE(973); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(974); - if (lookahead == '>') ADVANCE(531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '+') ADVANCE(921); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(922); - if (lookahead == '>') ADVANCE(533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '-') ADVANCE(1055); + if (lookahead == '_') ADVANCE(880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1056); - if (lookahead == '_') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '-') ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '-') ADVANCE(922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '-') ADVANCE(1033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '-') ADVANCE(1512); + if (lookahead == '.') ADVANCE(880); + if (lookahead == '_') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1513); - if (lookahead == '.') ADVANCE(881); - if (lookahead == '_') ADVANCE(863); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '-') ADVANCE(1057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '-') ADVANCE(1034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '-') ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '-') ADVANCE(1035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '-') ADVANCE(1036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '-') ADVANCE(1063); + if (lookahead == '_') ADVANCE(880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1064); - if (lookahead == '_') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '.') ADVANCE(880); + if (lookahead == '_') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(881); - if (lookahead == '_') ADVANCE(863); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '.') ADVANCE(880); + if (lookahead == '_') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(881); - if (lookahead == '_') ADVANCE(863); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '.') ADVANCE(1535); + if (lookahead == '_') ADVANCE(880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(1536); - if (lookahead == '_') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == ':') ADVANCE(559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == ':') ADVANCE(2096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(2097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '=') ADVANCE(1575); + if (lookahead == '~') ADVANCE(1582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '=') ADVANCE(1576); - if (lookahead == '~') ADVANCE(1583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '>') ADVANCE(1774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '>') ADVANCE(1772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '>') ADVANCE(1768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '>') ADVANCE(1770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 872: 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(1066); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '>') ADVANCE(533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '>') ADVANCE(534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'N') ADVANCE(1040); + if (lookahead == 'f') ADVANCE(1089); + if (lookahead == 'n') ADVANCE(1107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1041); - if (lookahead == 'f') ADVANCE(1090); - if (lookahead == 'n') ADVANCE(1108); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'T') ADVANCE(1058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'T') ADVANCE(1059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '_') ADVANCE(880); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'o') ADVANCE(1689); + if (lookahead == 'x') ADVANCE(1691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(881); - if (lookahead == 'b') ADVANCE(1680); - if (lookahead == 'o') ADVANCE(1690); - if (lookahead == 'x') ADVANCE(1692); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '_') ADVANCE(880); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'o') ADVANCE(1689); + if (lookahead == 'x') ADVANCE(1691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(881); - if (lookahead == 'b') ADVANCE(1680); - if (lookahead == 'o') ADVANCE(1690); - if (lookahead == 'x') ADVANCE(1692); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '_') ADVANCE(880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '_') ADVANCE(880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '_') ADVANCE(880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(881); + if (lookahead == '_') ADVANCE(880); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '_') ADVANCE(880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '_') ADVANCE(880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(881); + if (lookahead == '_') ADVANCE(880); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'a') ADVANCE(943); + if (lookahead == 'i') ADVANCE(960); + if (lookahead == 'o') ADVANCE(983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(944); - if (lookahead == 'i') ADVANCE(961); - if (lookahead == 'o') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'a') ADVANCE(943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'a') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'a') ADVANCE(986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'a') ADVANCE(994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'a') ADVANCE(995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'a') ADVANCE(1005); + if (lookahead == 'o') ADVANCE(959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1006); - if (lookahead == 'o') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'a') ADVANCE(958); + if (lookahead == 'o') ADVANCE(980); + if (lookahead == 's') ADVANCE(924); + if (lookahead == 'x') ADVANCE(972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(959); - if (lookahead == 'o') ADVANCE(981); - if (lookahead == 's') ADVANCE(925); - if (lookahead == 'x') ADVANCE(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'a') ADVANCE(949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(950); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'a') ADVANCE(1021); + if (lookahead == 'o') ADVANCE(903); + if (lookahead == 'u') ADVANCE(1007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1022); - if (lookahead == 'o') ADVANCE(904); - if (lookahead == 'u') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'a') ADVANCE(992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'c') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'c') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'd') ADVANCE(1555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'd') ADVANCE(1599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1600); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'd') ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'd') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'd') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'd') ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1114); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1117); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1584); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1093); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1006); + if (lookahead == 'o') ADVANCE(964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'e') ADVANCE(961); + if (lookahead == 'h') ADVANCE(891); + if (lookahead == 'i') ADVANCE(955); + if (lookahead == 'l') ADVANCE(939); + if (lookahead == 's') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(962); - if (lookahead == 'h') ADVANCE(892); - if (lookahead == 'i') ADVANCE(956); - if (lookahead == 'l') ADVANCE(940); - if (lookahead == 's') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'f') ADVANCE(841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'h') ADVANCE(945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'h') ADVANCE(1571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'h') ADVANCE(1567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1568); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'h') ADVANCE(1573); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'h') ADVANCE(1569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1570); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'h') ADVANCE(1098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'h') ADVANCE(1104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1105); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'h') ADVANCE(934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'i') ADVANCE(941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'i') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'i') ADVANCE(950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'i') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'i') ADVANCE(1016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'i') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'i') ADVANCE(1019); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'i') ADVANCE(942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'i') ADVANCE(892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'k') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'k') ADVANCE(909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'l') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'l') ADVANCE(1119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'l') ADVANCE(1609); + if (lookahead == 'r') ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1610); - if (lookahead == 'r') ADVANCE(1612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'l') ADVANCE(1038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'l') ADVANCE(944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'l') ADVANCE(940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'l') ADVANCE(946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(947); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'l') ADVANCE(913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'l') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'l') ADVANCE(999); + if (lookahead == 'x') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1000); - if (lookahead == 'x') ADVANCE(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'n') ADVANCE(900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'n') ADVANCE(1110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'n') ADVANCE(1561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'n') ADVANCE(1074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1075); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'n') ADVANCE(1032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'n') ADVANCE(902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'n') ADVANCE(1000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'n') ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'n') ADVANCE(905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'o') ADVANCE(1004); + if (lookahead == 'u') ADVANCE(947); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1005); - if (lookahead == 'u') ADVANCE(948); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'o') ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'o') ADVANCE(975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 965: 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(1066); + if (lookahead == 'o') ADVANCE(1029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'o') ADVANCE(979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(980); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'o') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'o') ADVANCE(1014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 969: 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(1066); + if (lookahead == 'o') ADVANCE(959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 970: 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(1066); + if (lookahead == 'o') ADVANCE(903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'o') ADVANCE(871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'o') ADVANCE(981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'o') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'o') ADVANCE(991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'p') ADVANCE(1083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'p') ADVANCE(974); + if (lookahead == 't') ADVANCE(919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(975); - if (lookahead == 't') ADVANCE(920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(956); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 's') ADVANCE(1563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1564); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 's') ADVANCE(1565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 's') ADVANCE(681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 's') ADVANCE(907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 's') ADVANCE(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 's') ADVANCE(911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 's') ADVANCE(912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 's') ADVANCE(1008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 's') ADVANCE(856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 's') ADVANCE(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 's') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(1050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(688); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(691); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 't') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(874); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(1001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 't') ADVANCE(897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'u') ADVANCE(906); + if (lookahead == 'y') ADVANCE(1095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(907); - if (lookahead == 'y') ADVANCE(1096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'u') ADVANCE(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'u') ADVANCE(947); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(948); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'u') ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'u') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'u') ADVANCE(951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'v') ADVANCE(1071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'w') ADVANCE(935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'x') ADVANCE(1022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'y') ADVANCE(1101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'y') ADVANCE(1102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == 'i') ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == 'n') ADVANCE(1040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1046: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); - END_STATE(); - case 1047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == 't') ADVANCE(1047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); - case 1048: + case 1047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == 'y') ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); - case 1049: + case 1048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == '_') ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); - case 1050: + case 1049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1066); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1050); + lookahead == '@') ADVANCE(1065); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); - case 1051: + case 1050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == ' ') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); - case 1052: + case 1051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == '_') ADVANCE(1051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + END_STATE(); + case 1052: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(877); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1055: 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(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1057: 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(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1064: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); - END_STATE(); - case 1065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); - case 1066: + case 1065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + END_STATE(); + case 1066: + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 1067: ACCEPT_TOKEN(anon_sym_use); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1068: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1069: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_export_DASHenv); END_STATE(); case 1070: ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1071: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1072: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 1073: ACCEPT_TOKEN(anon_sym_extern); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1074: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1075: - ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 1076: ACCEPT_TOKEN(anon_sym_module); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1077: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1078: - ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 1079: ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1080: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1081: - ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 1082: ACCEPT_TOKEN(anon_sym_loop); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1083: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1084: - ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 1085: ACCEPT_TOKEN(anon_sym_while); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1086: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1087: - ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 1088: ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1089: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1090: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 1091: ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1092: ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1093: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 1094: ACCEPT_TOKEN(anon_sym_try); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1095: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1096: - ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 1097: ACCEPT_TOKEN(anon_sym_catch); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1098: ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1099: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 1100: ACCEPT_TOKEN(anon_sym_finally); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1101: ACCEPT_TOKEN(anon_sym_finally); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1102: - ACCEPT_TOKEN(anon_sym_finally); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 1103: ACCEPT_TOKEN(anon_sym_match); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1104: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1105: - ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 1106: ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1121); END_STATE(); case 1107: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1122); + lookahead == 'f') ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1108: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == 'f') ADVANCE(1468); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1109: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1469); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1110: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1111: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 1112: ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1113: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 1115: ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1116: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 1118: ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1119: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); END_STATE(); case 1121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(825); END_STATE(); case 1122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(826); + lookahead == 'i') ADVANCE(2079); END_STATE(); case 1123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2080); + lookahead == 'i') ADVANCE(2134); END_STATE(); case 1124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2135); + lookahead == 'i') ADVANCE(2188); END_STATE(); case 1125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2189); + lookahead == 'i') ADVANCE(547); END_STATE(); case 1126: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(548); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); END_STATE(); case 1127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(545); END_STATE(); case 1128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(546); + lookahead == 'i') ADVANCE(1958); END_STATE(); case 1129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1959); + lookahead == 'i') ADVANCE(2136); END_STATE(); case 1130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2137); + lookahead == 'i') ADVANCE(2190); END_STATE(); case 1131: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2191); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); case 1132: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1132); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1133); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1138); END_STATE(); case 1136: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1139); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1133); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1134); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 1146: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); case 1147: - ACCEPT_TOKEN(anon_sym_not_DASHlike); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1148: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1149: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1150: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1151: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1152: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1153: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 1154: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1155: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1156: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1157: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1158: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); case 1159: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1160: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); case 1161: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1162: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1163: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 1164: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1165); END_STATE(); case 1165: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1166); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1166: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1167); END_STATE(); case 1167: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1168); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1168: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ADVANCE_MAP( + '\n', 1475, + '\r', 1, + '!', 1231, + '#', 2215, + ')', 1495, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1622, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - ')', 1496, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + ')', 1495, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1622, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - ')', 1496, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + ')', 1495, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - ')', 1496, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + ')', 1495, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - ')', 1496, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + ')', 1495, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - ')', 1496, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1216, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + ')', 1495, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - ')', 1496, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1219, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + ')', 1495, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1215, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - ')', 1496, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1623, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + ')', 1495, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1218, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - ')', 1496, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1623, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, + '!', 1231, + '#', 2215, + ')', 1495, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'a', 1288, + 'b', 1277, + 'e', 1216, 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, + 'i', 1290, + 'l', 1278, + 'm', 1298, 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + 'o', 1213, + 's', 1324, + 'x', 1297, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - ')', 1496, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'a', 1289, - 'b', 1278, - 'e', 1217, - 'h', 1253, - 'i', 1291, - 'l', 1279, - 'm', 1299, - 'n', 1303, - 'o', 1214, - 's', 1325, - 'x', 1298, - '|', 1480, + '!', 1231, + '#', 2215, + ')', 1495, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'a', 1288, + 'b', 1277, + 'e', 1219, + 'h', 1252, + 'i', 1290, + 'l', 1278, + 'm', 1298, + 'n', 1302, + 'o', 1221, + 's', 1324, + 'x', 1297, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - ')', 1496, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'a', 1289, - 'b', 1278, - 'e', 1220, - 'h', 1253, - 'i', 1291, - 'l', 1279, - 'm', 1299, - 'n', 1303, - 'o', 1222, - 's', 1325, - 'x', 1298, - '|', 1480, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1622, + '/', 1135, + ':', 1740, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ':', 1741, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1622, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ':', 1741, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1622, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ':', 1741, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1216, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1622, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1622, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ':', 1740, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ':', 1740, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ':', 1740, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1215, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1216, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1219, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1215, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1218, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + '}', 1526, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1216, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1219, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1623, - '/', 1136, - ':', 1741, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1623, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1623, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - '}', 1527, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1215, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1623, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1218, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1623, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'a', 1288, + 'b', 1277, + 'e', 1216, 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, + 'i', 1290, + 'l', 1278, + 'm', 1298, 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + 'o', 1213, + 's', 1324, + 'x', 1297, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'a', 1289, - 'b', 1278, - 'e', 1217, - 'h', 1253, - 'i', 1291, - 'l', 1279, - 'm', 1299, - 'n', 1303, - 'o', 1214, - 's', 1325, - 'x', 1298, - '|', 1480, - '}', 1527, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'a', 1288, + 'b', 1277, + 'e', 1219, + 'h', 1252, + 'i', 1290, + 'l', 1278, + 'm', 1298, + 'n', 1302, + 'o', 1221, + 's', 1324, + 'x', 1297, + '|', 1479, + '}', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'a', 1289, - 'b', 1278, - 'e', 1220, - 'h', 1253, - 'i', 1291, - 'l', 1279, - 'm', 1299, - 'n', 1303, - 'o', 1222, - 's', 1325, - 'x', 1298, - '|', 1480, - '}', 1527, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'a', 1288, + 'b', 1277, + 'e', 1216, + 'h', 1252, + 'i', 1290, + 'l', 1278, + 'm', 1298, + 'n', 1302, + 'o', 1213, + 's', 1324, + 'x', 1297, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'a', 1289, - 'b', 1278, - 'e', 1217, - 'h', 1253, - 'i', 1291, - 'l', 1279, - 'm', 1299, - 'n', 1303, - 'o', 1214, - 's', 1325, - 'x', 1298, - '|', 1480, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'a', 1288, + 'b', 1277, + 'e', 1219, + 'h', 1252, + 'i', 1290, + 'l', 1278, + 'm', 1298, + 'n', 1302, + 'o', 1221, + 's', 1324, + 'x', 1297, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'a', 1289, - 'b', 1278, - 'e', 1220, - 'h', 1253, - 'i', 1291, - 'l', 1279, - 'm', 1299, - 'n', 1303, - 'o', 1222, - 's', 1325, - 'x', 1298, - '|', 1480, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1621, + '/', 1135, + ':', 1740, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1240, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1304, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(265); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1622, - '/', 1136, - ':', 1741, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1241, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1305, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1621, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1240, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1304, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1622, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1241, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1305, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + ':', 1740, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1240, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1304, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - ':', 1741, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1241, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1305, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + ':', 1740, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1240, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1304, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(265); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - ':', 1741, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1241, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1305, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + ':', 1740, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1242, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1304, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(265); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - ':', 1741, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1243, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1305, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1240, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1304, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(271); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1241, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1305, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1240, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1304, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1241, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1305, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1242, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1304, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1243, - 'g', 1244, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + '<', 1164, + '=', 318, + '>', 1166, + 'a', 1288, + 'b', 1277, + 'e', 1292, 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, + 'i', 1290, + 'l', 1278, + 'm', 1298, 'n', 1302, - 'o', 1305, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - 0xb5, 1317, + 'o', 1304, + 's', 1324, + 'x', 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - '<', 1165, - '=', 319, - '>', 1167, - 'a', 1289, - 'b', 1278, - 'e', 1293, - 'h', 1253, - 'i', 1291, - 'l', 1279, - 'm', 1299, - 'n', 1303, - 'o', 1305, - 's', 1325, - 'x', 1298, - ); + if (lookahead == '#') ADVANCE(2215); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + ADVANCE_MAP( + '+', 1246, + '-', 1248, + '>', 1764, + 'I', 1344, + '_', 1248, + 'i', 1344, + 'n', 1262, + 'r', 1305, + 'B', 1680, + 'b', 1680, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1248, - '-', 1250, - '>', 1765, - 'I', 1345, - '_', 1250, - 'i', 1345, - 'n', 1263, - 'r', 1306, - 'B', 1681, - 'b', 1681, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '+') ADVANCE(1267); + if (lookahead == '>') ADVANCE(1766); + if (lookahead == 'r') ADVANCE(1152); + if (lookahead == 'u') ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1268); - if (lookahead == '>') ADVANCE(1767); - if (lookahead == 'r') ADVANCE(1153); - if (lookahead == 'u') ADVANCE(1327); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '+') ADVANCE(1296); + if (lookahead == '>') ADVANCE(1760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1297); - if (lookahead == '>') ADVANCE(1761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + ADVANCE_MAP( + '+', 1295, + '>', 1764, + 'I', 1344, + 'i', 1344, + 'n', 1262, + 'r', 1305, + 'B', 1680, + 'b', 1680, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1296, - '>', 1765, - 'I', 1345, - 'i', 1345, - 'n', 1263, - 'r', 1306, - 'B', 1681, - 'b', 1681, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '+') ADVANCE(1295); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'n') ADVANCE(1262); + if (lookahead == 'r') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1296); - if (lookahead == '>') ADVANCE(1765); - if (lookahead == 'n') ADVANCE(1263); - if (lookahead == 'r') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '+') ADVANCE(1268); + if (lookahead == '>') ADVANCE(1762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1269); - if (lookahead == '>') ADVANCE(1763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + ADVANCE_MAP( + '+', 1299, + '>', 527, + 'I', 1344, + 'i', 1344, + 'n', 1262, + 'r', 1310, + 'B', 1680, + 'b', 1680, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1300, - '>', 528, - 'I', 1345, - 'i', 1345, - 'n', 1263, - 'r', 1311, - 'B', 1681, - 'b', 1681, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '+') ADVANCE(1299); + if (lookahead == '>') ADVANCE(527); + if (lookahead == 'n') ADVANCE(1262); + if (lookahead == 'r') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1300); - if (lookahead == '>') ADVANCE(528); - if (lookahead == 'n') ADVANCE(1263); - if (lookahead == 'r') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + ADVANCE_MAP( + '+', 1247, + '-', 1248, + '>', 527, + 'I', 1344, + '_', 1248, + 'i', 1344, + 'n', 1262, + 'r', 1310, + 'B', 1680, + 'b', 1680, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1249, - '-', 1250, - '>', 528, - 'I', 1345, - '_', 1250, - 'i', 1345, - 'n', 1263, - 'r', 1311, - 'B', 1681, - 'b', 1681, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '+') ADVANCE(1269); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'r') ADVANCE(1152); + if (lookahead == 'u') ADVANCE(1330); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1270); - if (lookahead == '>') ADVANCE(529); - if (lookahead == 'r') ADVANCE(1153); - if (lookahead == 'u') ADVANCE(1331); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '+') ADVANCE(1303); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1304); - if (lookahead == '>') ADVANCE(531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '+') ADVANCE(1270); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1271); - if (lookahead == '>') ADVANCE(533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '-') ADVANCE(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '-') ADVANCE(1271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '-') ADVANCE(1339); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1340); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1341); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1342); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1343); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '.') ADVANCE(1620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '=') ADVANCE(1162); + if (lookahead == '~') ADVANCE(1144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1163); - if (lookahead == '~') ADVANCE(1145); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '>') ADVANCE(1774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '>') ADVANCE(1772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '>') ADVANCE(1768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '>') ADVANCE(1770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1237: 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(1346); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '>') ADVANCE(533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '>') ADVANCE(534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + ADVANCE_MAP( + 'I', 1344, + '_', 1248, + 'i', 1344, + 'n', 1262, + '+', 1248, + '-', 1248, + 'B', 1680, + 'b', 1680, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - 'I', 1345, - '_', 1250, - 'i', 1345, - 'n', 1263, - '+', 1250, - '-', 1250, - 'B', 1681, - 'b', 1681, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'I') ADVANCE(1344); + if (lookahead == '_') ADVANCE(1248); + if (lookahead == 'i') ADVANCE(1257); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1248); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1345); - if (lookahead == '_') ADVANCE(1250); - if (lookahead == 'i') ADVANCE(1258); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1250); + if (lookahead == 'I') ADVANCE(1344); + if (lookahead == 'i') ADVANCE(1344); + if (lookahead == 'n') ADVANCE(1262); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1345); - if (lookahead == 'i') ADVANCE(1345); - if (lookahead == 'n') ADVANCE(1263); + if (lookahead == 'I') ADVANCE(1344); + if (lookahead == 'i') ADVANCE(1344); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1345); - if (lookahead == 'i') ADVANCE(1345); + if (lookahead == 'I') ADVANCE(1344); + if (lookahead == 'i') ADVANCE(1257); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1345); - if (lookahead == 'i') ADVANCE(1258); + if (lookahead == 'I') ADVANCE(1344); + if (lookahead == 'i') ADVANCE(1289); + if (lookahead == 'o') ADVANCE(1260); + if (lookahead == 's') ADVANCE(1685); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1345); - if (lookahead == 'i') ADVANCE(1290); - if (lookahead == 'o') ADVANCE(1261); - if (lookahead == 's') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '_') ADVANCE(1248); + if (lookahead == 'o') ADVANCE(1232); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1247); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '_') ADVANCE(1248); + if (lookahead == 'o') ADVANCE(1236); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1250); - if (lookahead == 'o') ADVANCE(1233); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '_') ADVANCE(1248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1250); - if (lookahead == 'o') ADVANCE(1237); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == '_') ADVANCE(1249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'a') ADVANCE(1343); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'a') ADVANCE(1317); + if (lookahead == 'r') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1318); - if (lookahead == 'r') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'a') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'a') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'a') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'a') ADVANCE(1293); + if (lookahead == 'o') ADVANCE(1307); + if (lookahead == 's') ADVANCE(1272); + if (lookahead == 'x') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1294); - if (lookahead == 'o') ADVANCE(1308); - if (lookahead == 's') ADVANCE(1273); - if (lookahead == 'x') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'a') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'c') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'd') ADVANCE(1150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1151); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'd') ADVANCE(1137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'd') ADVANCE(1147); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1148); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'd') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'd') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1322); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'e') ADVANCE(1258); + if (lookahead == 't') ADVANCE(1253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1259); - if (lookahead == 't') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'e') ADVANCE(1145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'e') ADVANCE(1146); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'e') ADVANCE(1233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'e') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'e') ADVANCE(1237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'e') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'e') ADVANCE(1294); + if (lookahead == 'h') ADVANCE(1254); + if (lookahead == 'i') ADVANCE(1291); + if (lookahead == 'l') ADVANCE(1283); + if (lookahead == 's') ADVANCE(1336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1295); - if (lookahead == 'h') ADVANCE(1255); - if (lookahead == 'i') ADVANCE(1292); - if (lookahead == 'l') ADVANCE(1284); - if (lookahead == 's') ADVANCE(1337); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'h') ADVANCE(1287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'h') ADVANCE(1159); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1160); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'h') ADVANCE(1157); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1158); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'h') ADVANCE(1160); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1161); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'h') ADVANCE(1158); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1159); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'i') ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1324); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'i') ADVANCE(1285); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'i') ADVANCE(1327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1328); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'i') ADVANCE(1329); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1330); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'i') ADVANCE(1331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'i') ADVANCE(1332); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1333); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'i') ADVANCE(1286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'k') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'k') ADVANCE(1265); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'k') ADVANCE(1266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1267); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'l') ADVANCE(1141); + if (lookahead == 'r') ADVANCE(1142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'l') ADVANCE(1142); - if (lookahead == 'r') ADVANCE(1143); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'n') ADVANCE(1259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'n') ADVANCE(1685); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'n') ADVANCE(1153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'n') ADVANCE(1154); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1155); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'n') ADVANCE(1262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'n') ADVANCE(1261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1262); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'n') ADVANCE(1263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'o') ADVANCE(1232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'o') ADVANCE(1337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1338); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'o') ADVANCE(1306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'o') ADVANCE(1260); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'o') ADVANCE(1236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'o') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'o') ADVANCE(1325); + if (lookahead == 's') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1326); - if (lookahead == 's') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'o') ADVANCE(1325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'o') ADVANCE(1338); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1339); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1152); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1153); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1214); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1151); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1152); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1149); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1150); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1149); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1335); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1223); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1313: 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(1346); + if (lookahead == 'r') ADVANCE(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1314: 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(1346); + if (lookahead == 'r') ADVANCE(1239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1335); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1336); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 's') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 's') ADVANCE(1155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1156); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1157); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 's') ADVANCE(1226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1228); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1229); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1325: 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(1346); + if (lookahead == 't') ADVANCE(1225); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1226); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1217); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1218); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1273); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1274); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1275); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1223); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1224); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 't') ADVANCE(1276); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1277); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 't') ADVANCE(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1337: 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(1346); + if (lookahead == 'u') ADVANCE(1328); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'u') ADVANCE(1333); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1334); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'w') ADVANCE(1279); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1280); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1282); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'y') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1345); END_STATE(); case 1346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); + if (eof) ADVANCE(670); + ADVANCE_MAP( + '\n', 1475, + '\r', 1, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1622, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(628); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1622, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || lookahead == ' ') SKIP(629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - '_', 1247, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(630); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(628); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + '_', 1249, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || lookahead == ' ') SKIP(629); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1212, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(630); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(628); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1216, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1241, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1220, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || lookahead == ' ') SKIP(629); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1231, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1245, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1219, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1215, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1213, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(630); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(628); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1353: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1623, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1213, - 'g', 1244, - 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, - 'n', 1302, - 'o', 1214, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '.', 1230, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'B', 1680, + 'E', 1244, + 'G', 1244, + 'K', 1244, + 'M', 1244, + 'P', 1244, + 'T', 1244, + 'a', 1288, + 'b', 1681, + 'd', 1250, + 'e', 1218, + 'g', 1243, + 'h', 1251, + 'i', 1290, + 'k', 1243, + 'l', 1278, + 'm', 1245, + 'n', 1301, + 'o', 1221, + 'p', 1243, + 's', 1264, + 't', 1243, + 'u', 1316, + 'w', 1284, + 'x', 1297, + '|', 1479, + 0xb5, 1316, ); if (lookahead == '\t' || lookahead == ' ') SKIP(629); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1354: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '.', 1623, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'B', 1681, - 'E', 1242, - 'G', 1245, - 'K', 1245, - 'M', 1245, - 'P', 1245, - 'T', 1245, - 'a', 1289, - 'b', 1682, - 'd', 1251, - 'e', 1221, - 'g', 1244, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'a', 1288, + 'b', 1277, + 'e', 1216, 'h', 1252, - 'i', 1291, - 'k', 1244, - 'l', 1279, - 'm', 1246, + 'i', 1290, + 'l', 1278, + 'm', 1298, 'n', 1302, - 'o', 1222, - 'p', 1244, - 's', 1265, - 't', 1244, - 'u', 1317, - 'w', 1285, - 'x', 1298, - '|', 1480, - 0xb5, 1317, + 'o', 1213, + 's', 1324, + 'x', 1297, + '|', 1479, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(630); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + lookahead == ' ') SKIP(628); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(671); + if (eof) ADVANCE(670); ADVANCE_MAP( - '\n', 1476, + '\n', 1475, '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'a', 1289, - 'b', 1278, - 'e', 1217, - 'h', 1253, - 'i', 1291, - 'l', 1279, - 'm', 1299, - 'n', 1303, - 'o', 1214, - 's', 1325, - 'x', 1298, - '|', 1480, + '!', 1231, + '#', 2215, + '*', 1134, + '+', 1139, + '-', 1140, + '/', 1135, + ';', 1478, + '<', 1164, + '=', 318, + '>', 1166, + 'a', 1288, + 'b', 1277, + 'e', 1219, + 'h', 1252, + 'i', 1290, + 'l', 1278, + 'm', 1298, + 'n', 1302, + 'o', 1221, + 's', 1324, + 'x', 1297, + '|', 1479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(629); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1345); END_STATE(); case 1356: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(671); - ADVANCE_MAP( - '\n', 1476, - '\r', 1, - '!', 1232, - '#', 2216, - '*', 1135, - '+', 1140, - '-', 1141, - '/', 1136, - ';', 1479, - '<', 1165, - '=', 319, - '>', 1167, - 'a', 1289, - 'b', 1278, - 'e', 1220, - 'h', 1253, - 'i', 1291, - 'l', 1279, - 'm', 1299, - 'n', 1303, - 'o', 1222, - 's', 1325, - 'x', 1298, - '|', 1480, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(630); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(1368); + if (lookahead == '-') ADVANCE(2001); + if (lookahead == 'I') ADVANCE(1394); + if (lookahead == '_') ADVANCE(1368); + if (lookahead == 'i') ADVANCE(1394); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1684); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(2002); - if (lookahead == 'I') ADVANCE(1395); - if (lookahead == '_') ADVANCE(1369); - if (lookahead == 'i') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1368); + if (lookahead == '-') ADVANCE(2001); + if (lookahead == 'I') ADVANCE(1394); + if (lookahead == '_') ADVANCE(1368); + if (lookahead == 'i') ADVANCE(1371); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + lookahead == 'b') ADVANCE(1684); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(2002); - if (lookahead == 'I') ADVANCE(1395); - if (lookahead == '_') ADVANCE(1369); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == '+') ADVANCE(1368); + if (lookahead == '-') ADVANCE(2001); + if (lookahead == '_') ADVANCE(1368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1369); - if (lookahead == '-') ADVANCE(2002); - if (lookahead == '_') ADVANCE(1369); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == '-') ADVANCE(451); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(452); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == '-') ADVANCE(359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == '-') ADVANCE(435); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(436); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == '-') ADVANCE(452); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(453); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == '-') ADVANCE(520); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(521); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'I') ADVANCE(1394); + if (lookahead == 'i') ADVANCE(1394); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1684); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1395); - if (lookahead == 'i') ADVANCE(1395); + if (lookahead == 'I') ADVANCE(1394); + if (lookahead == 'i') ADVANCE(1371); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + lookahead == 'b') ADVANCE(1684); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1395); - if (lookahead == 'i') ADVANCE(1372); + if (lookahead == 'I') ADVANCE(1394); + if (lookahead == 'i') ADVANCE(1382); + if (lookahead == 's') ADVANCE(1687); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + lookahead == 'b') ADVANCE(1684); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1395); - if (lookahead == 'i') ADVANCE(1383); - if (lookahead == 's') ADVANCE(1688); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == '_') ADVANCE(1367); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(1368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1369); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'a') ADVANCE(1389); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1390); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'a') ADVANCE(1393); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1394); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'b') ADVANCE(1684); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1685); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'c') ADVANCE(1687); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1688); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'e') ADVANCE(1377); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1378); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'e') ADVANCE(1361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1362); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'e') ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1373); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'k') ADVANCE(1687); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1688); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'l') ADVANCE(1378); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1379); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'l') ADVANCE(1359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1379: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(1360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1361); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'l') ADVANCE(1379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1380); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'm') ADVANCE(1386); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1387); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'n') ADVANCE(1687); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1684); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1688); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'n') ADVANCE(1109); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1110); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'n') ADVANCE(1374); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1375); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'o') ADVANCE(1387); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1388); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'p') ADVANCE(1385); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1386); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'r') ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1392); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'r') ADVANCE(1687); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1688); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'r') ADVANCE(1363); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1364); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 's') ADVANCE(1687); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1688); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 't') ADVANCE(1362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1392: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1363); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'u') ADVANCE(1380); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1393: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1381); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'y') ADVANCE(1687); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1394: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1688); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1684); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1395: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1685); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1396: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(527); + if (lookahead == 'r') ADVANCE(1445); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(442); + if (lookahead == '+') ADVANCE(379); if (lookahead == '>') ADVANCE(528); - if (lookahead == 'r') ADVANCE(1446); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'u') ADVANCE(1458); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(529); - if (lookahead == 'u') ADVANCE(1459); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == '+') ADVANCE(446); + if (lookahead == '>') ADVANCE(530); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(447); - if (lookahead == '>') ADVANCE(531); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(532); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(383); - if (lookahead == '>') ADVANCE(533); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'N') ADVANCE(1466); + if (lookahead == 'f') ADVANCE(1088); + if (lookahead == 'n') ADVANCE(1108); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1467); - if (lookahead == 'f') ADVANCE(1089); - if (lookahead == 'n') ADVANCE(1109); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == '_') ADVANCE(1401); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1401); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1402); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1402); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'a') ADVANCE(1453); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1454); - if (lookahead == 'o') ADVANCE(1438); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'a') ADVANCE(1434); + if (lookahead == 'i') ADVANCE(1438); + if (lookahead == 'o') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1435); - if (lookahead == 'i') ADVANCE(1439); - if (lookahead == 'o') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'a') ADVANCE(1448); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1449); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'a') ADVANCE(1430); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'a') ADVANCE(1459); + if (lookahead == 'o') ADVANCE(1409); + if (lookahead == 'u') ADVANCE(1455); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1460); - if (lookahead == 'o') ADVANCE(1410); - if (lookahead == 'u') ADVANCE(1456); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'c') ADVANCE(1421); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'c') ADVANCE(1422); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1423); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'd') ADVANCE(1462); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1463); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1420); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1067); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1068); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1091); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1092); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1112); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1113); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1115); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1116); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1085); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1086); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1076); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1077); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1454); + if (lookahead == 'o') ADVANCE(1439); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1455); - if (lookahead == 'o') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1436); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1437); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'f') ADVANCE(840); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(841); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'h') ADVANCE(1097); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1098); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'h') ADVANCE(1103); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1104); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'h') ADVANCE(1425); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1426); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'i') ADVANCE(1404); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1405); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'i') ADVANCE(1431); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'l') ADVANCE(1424); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1425); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'l') ADVANCE(1118); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1119); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'l') ADVANCE(1464); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1465); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'l') ADVANCE(1427); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(1428); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1429); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'l') ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(1416); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1417); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'l') ADVANCE(1450); + if (lookahead == 'x') ADVANCE(1442); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1451); - if (lookahead == 'x') ADVANCE(1443); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'l') ADVANCE(1452); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1453); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'n') ADVANCE(1073); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1074); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'n') ADVANCE(1463); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1464); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'n') ADVANCE(1451); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1452); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'n') ADVANCE(1405); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1406); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'o') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'o') ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1448); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'p') ADVANCE(1082); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1083); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'p') ADVANCE(1440); + if (lookahead == 't') ADVANCE(1418); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1441); - if (lookahead == 't') ADVANCE(1419); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'r') ADVANCE(1461); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1462); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'r') ADVANCE(1079); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1080); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'r') ADVANCE(1398); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1399); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'r') ADVANCE(1435); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1436); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'r') ADVANCE(1457); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1448: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1458); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 's') ADVANCE(680); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1449: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(681); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 's') ADVANCE(1411); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1450: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 's') ADVANCE(1412); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1451: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1413); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 's') ADVANCE(1456); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1452: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1457); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 's') ADVANCE(1414); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1453: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 't') ADVANCE(1407); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1454: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1408); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 't') ADVANCE(686); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1455: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(687); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 't') ADVANCE(689); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1456: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(690); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 't') ADVANCE(692); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1457: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(693); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 't') ADVANCE(676); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1458: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(677); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 't') ADVANCE(1399); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1459: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1400); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 't') ADVANCE(1408); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1460: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1409); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'u') ADVANCE(1429); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1469); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1461: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1430); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1470); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'u') ADVANCE(1413); + if (lookahead == 'y') ADVANCE(1094); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1462: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1414); - if (lookahead == 'y') ADVANCE(1095); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'u') ADVANCE(1432); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1463: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1433); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'v') ADVANCE(1070); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1464: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1071); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'y') ADVANCE(1100); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1465: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(1101); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1469); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1466: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1470); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1468); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1467: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1469); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1472); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1468: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1473); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + lookahead == 'i') ADVANCE(1471); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1469: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1472); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1470: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1475); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + lookahead == 'n') ADVANCE(1466); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1471: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1467); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1472: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1468); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1473); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1473: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1474); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1474: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1475); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1474); END_STATE(); case 1475: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1476: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1740); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1476); END_STATE(); case 1477: ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1741); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1477); END_STATE(); case 1478: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1478); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1484: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1486: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1487: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1488: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1488); END_STATE(); case 1489: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1489); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1490: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1491: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1492: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1493: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1494: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1495: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1496: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 1497: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 1498: ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1729); + if (lookahead == '\'') ADVANCE(1728); END_STATE(); case 1499: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1730); - if (lookahead == '\'') ADVANCE(1729); + if (lookahead == '"') ADVANCE(1729); + if (lookahead == '\'') ADVANCE(1728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1500: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1730); - if (lookahead == '\'') ADVANCE(1729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1501: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1502: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1503: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1504: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1505: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1506: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 1507: ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1579); END_STATE(); case 1508: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1580); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1509: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 1510: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1511: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 1512: ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1513: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 1514: ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1511); END_STATE(); case 1515: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1511); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(308); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 1516: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1512); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(309); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if (lookahead == '-') ADVANCE(1511); + if (lookahead == '.') ADVANCE(1998); + if (lookahead == '_') ADVANCE(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1517: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1512); - if (lookahead == '.') ADVANCE(1999); - if (lookahead == '_') ADVANCE(1989); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '-') ADVANCE(1511); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1518: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1512); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(308); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 1519: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(309); + if (lookahead == '.') ADVANCE(880); + if (lookahead == '_') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + lookahead == 'i') ADVANCE(1044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1520: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(881); - if (lookahead == '_') ADVANCE(863); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '.') ADVANCE(1841); + if (lookahead == '_') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1521: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1842); - if (lookahead == '_') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1522: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '=') ADVANCE(695); END_STATE(); case 1523: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1524: - ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1525: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1527: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 1528: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 1529: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1530: - ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 1531: ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(699); + if (lookahead == '<') ADVANCE(1633); + if (lookahead == '=') ADVANCE(1632); END_STATE(); case 1532: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(700); - if (lookahead == '<') ADVANCE(1634); - if (lookahead == '=') ADVANCE(1633); + if (lookahead == '.') ADVANCE(2015); + if (lookahead == '<') ADVANCE(1633); + if (lookahead == '=') ADVANCE(1632); END_STATE(); case 1533: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2016); - if (lookahead == '<') ADVANCE(1634); - if (lookahead == '=') ADVANCE(1633); + if (lookahead == '.') ADVANCE(2105); + if (lookahead == '<') ADVANCE(1633); + if (lookahead == '=') ADVANCE(1632); END_STATE(); case 1534: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2106); - if (lookahead == '<') ADVANCE(1634); - if (lookahead == '=') ADVANCE(1633); + if (lookahead == '<') ADVANCE(1633); + if (lookahead == '=') ADVANCE(1632); END_STATE(); case 1535: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1634); - if (lookahead == '=') ADVANCE(1633); + if (lookahead == '<') ADVANCE(1633); + if (lookahead == '=') ADVANCE(1632); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1065); END_STATE(); case 1536: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1634); - if (lookahead == '=') ADVANCE(1633); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1537: ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(1729); + if (lookahead == '\'') ADVANCE(1728); END_STATE(); case 1538: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1730); - if (lookahead == '\'') ADVANCE(1729); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 1539: ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1589); END_STATE(); case 1540: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1590); + if (lookahead == '*') ADVANCE(1589); + if (lookahead == '=') ADVANCE(696); END_STATE(); case 1541: ACCEPT_TOKEN(anon_sym_STAR2); if (lookahead == '*') ADVANCE(1590); - if (lookahead == '=') ADVANCE(697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1542: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1591); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'a') ADVANCE(1545); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1543: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1546); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if (lookahead == 'e') ADVANCE(1111); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1544: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1112); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if (lookahead == 'e') ADVANCE(1114); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1545: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1115); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if (lookahead == 'l') ADVANCE(1548); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1546: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'l') ADVANCE(1549); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if (lookahead == 'o') ADVANCE(1549); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1547: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'o') ADVANCE(1550); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if (lookahead == 'r') ADVANCE(1550); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1548: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'r') ADVANCE(1551); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if (lookahead == 's') ADVANCE(1544); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1549: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 's') ADVANCE(1545); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if (lookahead == 't') ADVANCE(1551); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1550: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 't') ADVANCE(1552); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if (lookahead == 'u') ADVANCE(1543); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1551: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1544); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1587); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1552: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1588); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1552); END_STATE(); case 1553: - 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(1553); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 1554: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); case 1555: ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1556: - ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); case 1557: ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1558: - ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); case 1559: ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1560: - ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); case 1561: ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1562: - ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_has2); END_STATE(); case 1563: ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1564: - ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); END_STATE(); case 1565: ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1566: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); case 1567: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1568: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); case 1569: ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1570: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 1571: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1572: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); case 1573: ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1574: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1575: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1576: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 1577: ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1578); END_STATE(); case 1578: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1579); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1579: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 1580: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 1581: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); case 1582: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1583: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_like2); END_STATE(); case 1584: ACCEPT_TOKEN(anon_sym_like2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1585: - ACCEPT_TOKEN(anon_sym_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); case 1586: ACCEPT_TOKEN(anon_sym_not_DASHlike2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1587: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 1588: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1589: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 1590: ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1591: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 1592: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(698); END_STATE(); case 1593: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1594: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1600); END_STATE(); case 1595: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1601); + if (lookahead == '/') ADVANCE(1600); + if (lookahead == '=') ADVANCE(697); END_STATE(); case 1596: ACCEPT_TOKEN(anon_sym_SLASH2); if (lookahead == '/') ADVANCE(1601); - if (lookahead == '=') ADVANCE(698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1597: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1598: - ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); case 1599: ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1600: - ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 1601: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1602: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1591); END_STATE(); case 1603: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1592); + if (lookahead == '+') ADVANCE(1591); + if (lookahead == '.') ADVANCE(1841); + if (lookahead == '_') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1604: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1592); - if (lookahead == '.') ADVANCE(1842); - if (lookahead == '_') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '+') ADVANCE(1591); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1605: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(1592); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '=') ADVANCE(694); END_STATE(); case 1606: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(1593); - if (lookahead == '=') ADVANCE(695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1607: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if (lookahead == '.') ADVANCE(726); + if (lookahead == '_') ADVANCE(711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 1608: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(727); - if (lookahead == '_') ADVANCE(712); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 1609: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1610: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 1611: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1612: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 1613: ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1614: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 1615: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1616: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 1617: ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 1618: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1619: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1509); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1634); END_STATE(); case 1620: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1510); - if (lookahead == '<') ADVANCE(1636); - if (lookahead == '=') ADVANCE(1635); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1634); END_STATE(); case 1621: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1636); - if (lookahead == '=') ADVANCE(1635); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 1622: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1620); END_STATE(); case 1623: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1621); + if (lookahead == '.') ADVANCE(1620); + if (lookahead == '_') ADVANCE(727); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); case 1624: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1621); - if (lookahead == '_') ADVANCE(728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if (lookahead == '.') ADVANCE(1530); END_STATE(); case 1625: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1531); + if (lookahead == '.') ADVANCE(1530); + if (lookahead == '_') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1626: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1531); - if (lookahead == '_') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '.') ADVANCE(1991); END_STATE(); case 1627: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1992); + if (lookahead == '.') ADVANCE(1991); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1628: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1992); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '.') ADVANCE(1619); END_STATE(); case 1629: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1620); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1630: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '_') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1631: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '_') ADVANCE(1842); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1632: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1843); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1633: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1634: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1635: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1636: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1637); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1638: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1638); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1639: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1639); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1640: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(1640); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); case 1641: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1641); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); @@ -29898,2133 +29888,2128 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1642); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1643: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1644: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 1645: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(834); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 1646: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (lookahead == '-') ADVANCE(2091); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 1647: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2092); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (lookahead == '-') ADVANCE(2145); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 1648: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2146); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (lookahead == '-') ADVANCE(2197); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 1649: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2198); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (lookahead == '-') ADVANCE(563); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 1650: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(564); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (lookahead == '_') ADVANCE(1671); + if (lookahead == 'b') ADVANCE(1678); + if (lookahead == 'o') ADVANCE(1688); + if (lookahead == 'x') ADVANCE(1690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); END_STATE(); case 1651: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (lookahead == 'b') ADVANCE(1679); - if (lookahead == 'o') ADVANCE(1689); - if (lookahead == 'x') ADVANCE(1691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1658); + if (lookahead == '_') ADVANCE(1671); + if (lookahead == 'b') ADVANCE(1678); + if (lookahead == 'o') ADVANCE(1688); + if (lookahead == 'x') ADVANCE(1690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); END_STATE(); case 1652: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (lookahead == 'b') ADVANCE(1679); - if (lookahead == 'o') ADVANCE(1689); - if (lookahead == 'x') ADVANCE(1691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1660); + if (lookahead == '_') ADVANCE(1671); + if (lookahead == 'b') ADVANCE(1678); + if (lookahead == 'o') ADVANCE(1688); + if (lookahead == 'x') ADVANCE(1690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1661); END_STATE(); case 1653: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (lookahead == 'b') ADVANCE(1679); - if (lookahead == 'o') ADVANCE(1689); - if (lookahead == 'x') ADVANCE(1691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if (lookahead == '_') ADVANCE(1671); + if (lookahead == 'b') ADVANCE(1678); + if (lookahead == 'o') ADVANCE(1688); + if (lookahead == 'x') ADVANCE(1690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); END_STATE(); case 1654: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (lookahead == 'b') ADVANCE(1679); - if (lookahead == 'o') ADVANCE(1689); - if (lookahead == 'x') ADVANCE(1691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1664); + if (lookahead == '_') ADVANCE(1671); + if (lookahead == 'b') ADVANCE(1678); + if (lookahead == 'o') ADVANCE(1688); + if (lookahead == 'x') ADVANCE(1690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1665); END_STATE(); case 1655: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (lookahead == 'b') ADVANCE(1679); - if (lookahead == 'o') ADVANCE(1689); - if (lookahead == 'x') ADVANCE(1691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if (lookahead == '_') ADVANCE(1671); + if (lookahead == 'b') ADVANCE(828); + if (lookahead == 'o') ADVANCE(830); + if (lookahead == 'x') ADVANCE(837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 1656: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (lookahead == 'b') ADVANCE(829); - if (lookahead == 'o') ADVANCE(831); - if (lookahead == 'x') ADVANCE(838); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 1657: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1656); END_STATE(); case 1658: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); END_STATE(); case 1659: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1658); END_STATE(); case 1660: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1661: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1660); END_STATE(); case 1662: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1661); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1663: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1662); END_STATE(); case 1664: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1665: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1664); END_STATE(); case 1666: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1665); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); END_STATE(); case 1667: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1658); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); END_STATE(); case 1668: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1660); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1661); END_STATE(); case 1669: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); END_STATE(); case 1670: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1664); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1665); END_STATE(); case 1671: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if (lookahead == '_') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 1672: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); if (lookahead == '_') ADVANCE(1672); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 1673: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(1673); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); case 1674: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); if (lookahead == '_') ADVANCE(1674); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); END_STATE(); case 1675: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(1675); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - END_STATE(); - case 1676: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1676); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1675); END_STATE(); - case 1677: + case 1676: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1677); + lookahead == '_') ADVANCE(1676); END_STATE(); - case 1678: + case 1677: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1678); + lookahead == '_') ADVANCE(1677); END_STATE(); - case 1679: + case 1678: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1677); + lookahead == '_') ADVANCE(1676); END_STATE(); - case 1680: + case 1679: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == '_') ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); + END_STATE(); + case 1680: + ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); case 1681: ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(1323); END_STATE(); case 1682: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1324); + if (lookahead == 'i') ADVANCE(484); END_STATE(); case 1683: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(485); + if (lookahead == 'i') ADVANCE(1925); END_STATE(); case 1684: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1926); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1685: - ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); + ACCEPT_TOKEN(sym_duration_unit); END_STATE(); case 1686: ACCEPT_TOKEN(sym_duration_unit); + if (lookahead == 'e') ADVANCE(1066); END_STATE(); case 1687: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1067); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1395); END_STATE(); case 1688: - ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); - END_STATE(); - case 1689: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1678); + lookahead == '_') ADVANCE(1677); END_STATE(); - case 1690: + case 1689: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + lookahead == '_') ADVANCE(1051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); - case 1691: + case 1690: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1676); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1675); END_STATE(); - case 1692: + case 1691: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); - case 1693: + case 1692: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1694: + case 1693: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1694); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1693); + END_STATE(); + case 1694: + ACCEPT_TOKEN(sym_val_date); END_STATE(); case 1695: ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(557); + if (lookahead == '+' || + lookahead == '-') ADVANCE(314); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1694); END_STATE(); case 1696: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(558); + if (lookahead == '.') ADVANCE(2089); if (lookahead == '+' || - lookahead == '-') ADVANCE(315); + lookahead == '-') ADVANCE(2028); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1695); + lookahead == 'z') ADVANCE(1694); END_STATE(); case 1697: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2090); + if (lookahead == '.') ADVANCE(2148); if (lookahead == '+' || - lookahead == '-') ADVANCE(2029); + lookahead == '-') ADVANCE(2111); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1695); + lookahead == 'z') ADVANCE(1694); END_STATE(); case 1698: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2149); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2112); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1695); + if (lookahead == ':') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(556); END_STATE(); case 1699: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(557); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2084); END_STATE(); case 1700: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(1711); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2085); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2142); END_STATE(); case 1701: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1712); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2143); + if (lookahead == 'T') ADVANCE(836); END_STATE(); case 1702: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(837); + if (lookahead == 'T') ADVANCE(2093); END_STATE(); case 1703: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2094); + if (lookahead == 'T') ADVANCE(2151); END_STATE(); case 1704: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2152); + if (lookahead == 'T') ADVANCE(2199); END_STATE(); case 1705: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2200); + if (lookahead == 'T') ADVANCE(566); END_STATE(); case 1706: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(567); + if (lookahead == '+' || + lookahead == '-') ADVANCE(314); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1694); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1706); END_STATE(); case 1707: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(315); + lookahead == '-') ADVANCE(2028); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1695); + lookahead == 'z') ADVANCE(1694); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1707); END_STATE(); case 1708: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2029); + lookahead == '-') ADVANCE(2111); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1695); + lookahead == 'z') ADVANCE(1694); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1708); END_STATE(); case 1709: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2112); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(556); END_STATE(); case 1710: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(557); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2084); END_STATE(); case 1711: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2085); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2142); END_STATE(); case 1712: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2143); - END_STATE(); - case 1713: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1714: + case 1713: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1715); + if (lookahead == '#') ADVANCE(1714); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1714); + lookahead == ' ') ADVANCE(1713); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1715); + lookahead != '\\') ADVANCE(1714); END_STATE(); - case 1715: + case 1714: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1715); + lookahead != '\\') ADVANCE(1714); END_STATE(); - case 1716: + case 1715: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1717: + case 1716: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1718); + if (lookahead == '#') ADVANCE(1717); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1717); + lookahead == ' ') ADVANCE(1716); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1718); + lookahead != '\'') ADVANCE(1717); END_STATE(); - case 1718: + case 1717: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1718); + lookahead != '\'') ADVANCE(1717); END_STATE(); - case 1719: + case 1718: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1720: + case 1719: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1721: + case 1720: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1722); + if (lookahead == '#') ADVANCE(1721); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1721); + lookahead == ' ') ADVANCE(1720); if (lookahead != 0 && - lookahead != '`') ADVANCE(1722); + lookahead != '`') ADVANCE(1721); END_STATE(); - case 1722: + case 1721: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1722); + lookahead != '`') ADVANCE(1721); END_STATE(); - case 1723: + case 1722: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1724: + case 1723: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1725: + case 1724: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1726); + if (lookahead == '#') ADVANCE(1725); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1725); + lookahead == ' ') ADVANCE(1724); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1726); + lookahead != '\\') ADVANCE(1725); END_STATE(); - case 1726: + case 1725: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1726); + lookahead != '\\') ADVANCE(1725); END_STATE(); - case 1727: + case 1726: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1728); + if (lookahead == '#') ADVANCE(1727); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1727); + lookahead == ' ') ADVANCE(1726); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1728); + lookahead != '(') ADVANCE(1727); END_STATE(); - case 1728: + case 1727: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1728); + lookahead != '(') ADVANCE(1727); END_STATE(); - case 1729: + case 1728: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 1730: + case 1729: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 1731: + case 1730: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1732: + case 1731: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 1733: + case 1732: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 1734: + case 1733: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); + case 1734: + ACCEPT_TOKEN(sym__entry_separator); + END_STATE(); case 1735: ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == '\n') ADVANCE(1734); + if (lookahead == '\r') ADVANCE(1734); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1735); + if (lookahead == 0x0b || + lookahead == '\f' || + lookahead == ',') ADVANCE(1734); END_STATE(); case 1736: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1735); - if (lookahead == '\r') ADVANCE(1735); + if (lookahead == ',') ADVANCE(1734); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1736); - if (lookahead == 0x0b || - lookahead == '\f' || - lookahead == ',') ADVANCE(1735); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1734); END_STATE(); case 1737: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1735); + if (lookahead == ',') ADVANCE(1734); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1737); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1735); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1738); END_STATE(); case 1738: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1735); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1738); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1739); - END_STATE(); - case 1739: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1744); + if (lookahead == ';') ADVANCE(1743); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(318); + lookahead == ' ') ADVANCE(317); END_STATE(); - case 1740: + case 1739: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1740); + lookahead == ' ') ADVANCE(1739); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1735); + lookahead == ',') ADVANCE(1734); END_STATE(); - case 1741: + case 1740: ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); + case 1741: + ACCEPT_TOKEN(aux_sym__record_key_token1); + if (lookahead == '#') ADVANCE(2219); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1742); + END_STATE(); case 1742: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2220); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1743); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1742); END_STATE(); case 1743: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1743); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 1744: - ACCEPT_TOKEN(sym__table_head_separator); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 1745: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 1746: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(1575); + if (lookahead == '~') ADVANCE(1581); END_STATE(); case 1747: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1576); - if (lookahead == '~') ADVANCE(1582); + ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); case 1748: ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(705); END_STATE(); case 1749: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(706); + if (lookahead == '.') ADVANCE(1620); END_STATE(); case 1750: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1621); + if (lookahead == '.') ADVANCE(1530); END_STATE(); case 1751: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1531); + if (lookahead == '.') ADVANCE(310); END_STATE(); case 1752: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(311); + if (lookahead == '.') ADVANCE(1619); END_STATE(); case 1753: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1620); + if (lookahead == '_') ADVANCE(727); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); case 1754: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '"') ADVANCE(1712); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '\'') ADVANCE(1715); + if (lookahead == '`') ADVANCE(1719); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1755); END_STATE(); case 1755: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1713); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '\'') ADVANCE(1716); - if (lookahead == '`') ADVANCE(1720); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1756); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1755); END_STATE(); case 1756: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1756); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 1757: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(aux_sym_env_var_token1); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1757); END_STATE(); case 1758: - ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1758); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 1759: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1775); END_STATE(); case 1760: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1776); + if (lookahead == '>') ADVANCE(1775); + if (lookahead == '|') ADVANCE(1480); END_STATE(); case 1761: - ACCEPT_TOKEN(anon_sym_err_GT); + ACCEPT_TOKEN(anon_sym_out_GT); if (lookahead == '>') ADVANCE(1776); - if (lookahead == '|') ADVANCE(1481); END_STATE(); case 1762: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1777); + if (lookahead == '>') ADVANCE(1776); + if (lookahead == '|') ADVANCE(1481); END_STATE(); case 1763: - ACCEPT_TOKEN(anon_sym_out_GT); + ACCEPT_TOKEN(anon_sym_e_GT); if (lookahead == '>') ADVANCE(1777); - if (lookahead == '|') ADVANCE(1482); END_STATE(); case 1764: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1778); + if (lookahead == '>') ADVANCE(1777); + if (lookahead == '|') ADVANCE(1482); END_STATE(); case 1765: - ACCEPT_TOKEN(anon_sym_e_GT); + ACCEPT_TOKEN(anon_sym_o_GT); if (lookahead == '>') ADVANCE(1778); - if (lookahead == '|') ADVANCE(1483); END_STATE(); case 1766: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1779); + if (lookahead == '>') ADVANCE(1778); + if (lookahead == '|') ADVANCE(1483); END_STATE(); case 1767: - ACCEPT_TOKEN(anon_sym_o_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); if (lookahead == '>') ADVANCE(1779); - if (lookahead == '|') ADVANCE(1484); END_STATE(); case 1768: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1780); + if (lookahead == '>') ADVANCE(1779); + if (lookahead == '|') ADVANCE(1484); END_STATE(); case 1769: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); if (lookahead == '>') ADVANCE(1780); - if (lookahead == '|') ADVANCE(1485); END_STATE(); case 1770: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1781); + if (lookahead == '>') ADVANCE(1780); + if (lookahead == '|') ADVANCE(1485); END_STATE(); case 1771: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); if (lookahead == '>') ADVANCE(1781); - if (lookahead == '|') ADVANCE(1486); END_STATE(); case 1772: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1782); + if (lookahead == '>') ADVANCE(1781); + if (lookahead == '|') ADVANCE(1486); END_STATE(); case 1773: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); if (lookahead == '>') ADVANCE(1782); - if (lookahead == '|') ADVANCE(1487); END_STATE(); case 1774: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1783); + if (lookahead == '>') ADVANCE(1782); + if (lookahead == '|') ADVANCE(1487); END_STATE(); case 1775: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1783); - if (lookahead == '|') ADVANCE(1488); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 1776: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 1777: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 1778: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 1779: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 1780: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 1781: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 1782: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 1783: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(527); + if (lookahead == 'r') ADVANCE(1787); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); END_STATE(); case 1784: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(442); + if (lookahead == '+') ADVANCE(379); if (lookahead == '>') ADVANCE(528); - if (lookahead == 'r') ADVANCE(1788); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); + if (lookahead == 'u') ADVANCE(1788); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); END_STATE(); case 1785: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(529); - if (lookahead == 'u') ADVANCE(1789); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); + if (lookahead == '+') ADVANCE(446); + if (lookahead == '>') ADVANCE(530); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); END_STATE(); case 1786: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(447); - if (lookahead == '>') ADVANCE(531); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(532); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); END_STATE(); case 1787: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(383); - if (lookahead == '>') ADVANCE(533); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); + if (lookahead == 'r') ADVANCE(1785); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); END_STATE(); case 1788: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(1786); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); + if (lookahead == 't') ADVANCE(1786); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); END_STATE(); case 1789: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1787); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1789); END_STATE(); case 1790: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1867); + if (lookahead == '>') ADVANCE(1766); + if (lookahead == 'r') ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1928); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1791: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1868); - if (lookahead == '>') ADVANCE(1767); - if (lookahead == 'r') ADVANCE(1559); - if (lookahead == 'u') ADVANCE(1929); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + ADVANCE_MAP( + '+', 1844, + '-', 1847, + '>', 1764, + 'I', 1954, + '_', 1847, + 'i', 1954, + 'n', 1861, + 'r', 1910, + 'B', 1680, + 'b', 1680, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1792: + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1844); + if (lookahead == '-') ADVANCE(1847); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == '_') ADVANCE(1847); + if (lookahead == 'n') ADVANCE(1861); + if (lookahead == 'r') ADVANCE(1910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); + END_STATE(); + case 1793: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( '+', 1845, - '-', 1848, - '>', 1765, - 'I', 1955, - '_', 1848, - 'i', 1955, - 'n', 1862, + '-', 1847, + '>', 1946, + 'I', 1954, + '_', 1847, + 'i', 1954, + 'n', 1861, 'r', 1911, - 'B', 1681, - 'b', 1681, + 'B', 1680, + 'b', 1680, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); - END_STATE(); - case 1793: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1845); - if (lookahead == '-') ADVANCE(1848); - if (lookahead == '>') ADVANCE(1765); - if (lookahead == '_') ADVANCE(1848); - if (lookahead == 'n') ADVANCE(1862); - if (lookahead == 'r') ADVANCE(1911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1794: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1846, - '-', 1848, - '>', 1947, - 'I', 1955, - '_', 1848, - 'i', 1955, - 'n', 1862, - 'r', 1912, - 'B', 1681, - 'b', 1681, + '+', 1845, + '-', 1847, + '>', 1946, + 'I', 1954, + '_', 1847, + 'i', 1954, + 'r', 1911, + 'B', 1680, + 'b', 1680, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1795: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1846, - '-', 1848, - '>', 1947, - 'I', 1955, - '_', 1848, - 'i', 1955, - 'r', 1912, - 'B', 1681, - 'b', 1681, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '+') ADVANCE(1845); + if (lookahead == '-') ADVANCE(1847); + if (lookahead == '>') ADVANCE(1946); + if (lookahead == '_') ADVANCE(1847); + if (lookahead == 'n') ADVANCE(1861); + if (lookahead == 'r') ADVANCE(1911); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1796: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1846); - if (lookahead == '-') ADVANCE(1848); - if (lookahead == '>') ADVANCE(1947); - if (lookahead == '_') ADVANCE(1848); - if (lookahead == 'n') ADVANCE(1862); - if (lookahead == 'r') ADVANCE(1912); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '+') ADVANCE(1845); + if (lookahead == '-') ADVANCE(1847); + if (lookahead == '>') ADVANCE(1946); + if (lookahead == '_') ADVANCE(1847); + if (lookahead == 'r') ADVANCE(1911); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1797: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1846); - if (lookahead == '-') ADVANCE(1848); - if (lookahead == '>') ADVANCE(1947); - if (lookahead == '_') ADVANCE(1848); - if (lookahead == 'r') ADVANCE(1912); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '+') ADVANCE(1868); + if (lookahead == '>') ADVANCE(1762); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1798: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1869); - if (lookahead == '>') ADVANCE(1763); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + ADVANCE_MAP( + '+', 1896, + '>', 1764, + 'I', 1954, + 'i', 1954, + 'n', 1861, + 'r', 1910, + 'B', 1680, + 'b', 1680, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1799: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1897, - '>', 1765, - 'I', 1955, - 'i', 1955, - 'n', 1862, - 'r', 1911, - 'B', 1681, - 'b', 1681, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '+') ADVANCE(1896); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'n') ADVANCE(1861); + if (lookahead == 'r') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1800: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '+') ADVANCE(1897); - if (lookahead == '>') ADVANCE(1765); - if (lookahead == 'n') ADVANCE(1862); - if (lookahead == 'r') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '>') ADVANCE(1760); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1801: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1898); - if (lookahead == '>') ADVANCE(1761); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + ADVANCE_MAP( + '+', 1902, + '>', 1946, + 'I', 1954, + 'i', 1954, + 'n', 1861, + 'r', 1911, + 'B', 1680, + 'b', 1680, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1802: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1903, - '>', 1947, - 'I', 1955, - 'i', 1955, - 'n', 1862, - 'r', 1912, - 'B', 1681, - 'b', 1681, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '+') ADVANCE(1902); + if (lookahead == '>') ADVANCE(1946); + if (lookahead == 'I') ADVANCE(1954); + if (lookahead == 'i') ADVANCE(1954); + if (lookahead == 'r') ADVANCE(1911); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1803: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1903); - if (lookahead == '>') ADVANCE(1947); - if (lookahead == 'I') ADVANCE(1955); - if (lookahead == 'i') ADVANCE(1955); - if (lookahead == 'r') ADVANCE(1912); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '+') ADVANCE(1902); + if (lookahead == '>') ADVANCE(1946); + if (lookahead == 'n') ADVANCE(1861); + if (lookahead == 'r') ADVANCE(1911); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1804: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1903); - if (lookahead == '>') ADVANCE(1947); - if (lookahead == 'n') ADVANCE(1862); - if (lookahead == 'r') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '+') ADVANCE(1902); + if (lookahead == '>') ADVANCE(1946); + if (lookahead == 'r') ADVANCE(1911); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1805: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1903); + if (lookahead == '+') ADVANCE(1869); if (lookahead == '>') ADVANCE(1947); - if (lookahead == 'r') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1932); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1806: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1870); - if (lookahead == '>') ADVANCE(1948); - if (lookahead == 'r') ADVANCE(1559); - if (lookahead == 'u') ADVANCE(1933); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '+') ADVANCE(1869); + if (lookahead == '>') ADVANCE(1947); + if (lookahead == 'u') ADVANCE(1932); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1870); - if (lookahead == '>') ADVANCE(1948); - if (lookahead == 'u') ADVANCE(1933); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '+') ADVANCE(1904); + if (lookahead == '>') ADVANCE(1949); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1808: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1905); - if (lookahead == '>') ADVANCE(1950); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '+') ADVANCE(1870); + if (lookahead == '>') ADVANCE(1951); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1809: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1871); - if (lookahead == '>') ADVANCE(1952); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '-') ADVANCE(1511); + if (lookahead == '.') ADVANCE(1848); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1957); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1810: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1512); - if (lookahead == '.') ADVANCE(1849); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '-') ADVANCE(1511); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1811: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1512); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '-') ADVANCE(1854); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1812: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1855); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '-') ADVANCE(1871); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1813: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1872); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '-') ADVANCE(1941); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1814: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1942); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1815: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1943); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1816: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1944); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1817: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1945); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '.') ADVANCE(1620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1818: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1621); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '.') ADVANCE(1841); + if (lookahead == '_') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1819: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1842); + if (lookahead == '.') ADVANCE(1848); if (lookahead == '_') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1820: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1849); - if (lookahead == '_') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '=') ADVANCE(1575); + if (lookahead == '~') ADVANCE(1581); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1576); - if (lookahead == '~') ADVANCE(1582); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '=') ADVANCE(1574); + if (lookahead == '>') ADVANCE(1527); + if (lookahead == '~') ADVANCE(1580); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1822: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1575); - if (lookahead == '>') ADVANCE(1528); - if (lookahead == '~') ADVANCE(1581); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '=') ADVANCE(1574); + if (lookahead == '~') ADVANCE(1580); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1823: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1575); - if (lookahead == '~') ADVANCE(1581); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '>') ADVANCE(1527); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1824: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1528); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '>') ADVANCE(1774); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1825: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1775); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '>') ADVANCE(1772); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1826: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1773); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '>') ADVANCE(1768); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1827: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1769); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '>') ADVANCE(1770); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1828: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1771); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '>') ADVANCE(1948); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1829: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1949); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '>') ADVANCE(1950); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1830: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1951); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '>') ADVANCE(1952); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1831: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '>') ADVANCE(1953); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1832: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1954); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + ADVANCE_MAP( + 'I', 1954, + '_', 1847, + 'i', 1954, + 'n', 1861, + '+', 1847, + '-', 1847, + 'B', 1680, + 'b', 1680, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1833: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1955, - '_', 1848, - 'i', 1955, - 'n', 1862, - '+', 1848, - '-', 1848, - 'B', 1681, - 'b', 1681, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'I') ADVANCE(1954); + if (lookahead == '_') ADVANCE(1847); + if (lookahead == 'i') ADVANCE(1954); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1847); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1834: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1955); - if (lookahead == '_') ADVANCE(1848); - if (lookahead == 'i') ADVANCE(1955); + if (lookahead == 'I') ADVANCE(1954); + if (lookahead == '_') ADVANCE(1847); + if (lookahead == 'i') ADVANCE(1856); if (lookahead == '+' || - lookahead == '-') ADVANCE(1848); + lookahead == '-') ADVANCE(1847); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1835: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1955); - if (lookahead == '_') ADVANCE(1848); - if (lookahead == 'i') ADVANCE(1857); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1848); + if (lookahead == 'I') ADVANCE(1954); + if (lookahead == 'i') ADVANCE(1954); + if (lookahead == 'n') ADVANCE(1861); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1836: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1955); - if (lookahead == 'i') ADVANCE(1955); - if (lookahead == 'n') ADVANCE(1862); + if (lookahead == 'I') ADVANCE(1954); + if (lookahead == 'i') ADVANCE(1954); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1837: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1955); - if (lookahead == 'i') ADVANCE(1955); + if (lookahead == 'I') ADVANCE(1954); + if (lookahead == 'i') ADVANCE(1856); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1838: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1955); - if (lookahead == 'i') ADVANCE(1857); + if (lookahead == 'I') ADVANCE(1954); + if (lookahead == 'i') ADVANCE(1889); + if (lookahead == 'o') ADVANCE(1859); + if (lookahead == 's') ADVANCE(1685); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1839: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1955); - if (lookahead == 'i') ADVANCE(1890); - if (lookahead == 'o') ADVANCE(1860); - if (lookahead == 's') ADVANCE(1686); + if (lookahead == 'I') ADVANCE(1954); + if (lookahead == 'i') ADVANCE(1889); + if (lookahead == 's') ADVANCE(1685); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1840: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1955); - if (lookahead == 'i') ADVANCE(1890); - if (lookahead == 's') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '_') ADVANCE(1840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1841: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1841); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1842: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1842); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1843: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1843); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '_') ADVANCE(1847); + if (lookahead == 'n') ADVANCE(1861); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1844: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1848); - if (lookahead == 'n') ADVANCE(1862); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1848); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '_') ADVANCE(1847); + if (lookahead == 'o') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1845: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1848); - if (lookahead == 'o') ADVANCE(1825); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '_') ADVANCE(1847); + if (lookahead == 'o') ADVANCE(1828); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1846: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1848); - if (lookahead == 'o') ADVANCE(1829); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '_') ADVANCE(1847); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1847: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1848); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1848); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '_') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1848: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1848); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1849: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1849); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'a') ADVANCE(1919); + if (lookahead == 'r') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1850: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1920); - if (lookahead == 'r') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'a') ADVANCE(1919); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1851: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1920); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'a') ADVANCE(1945); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1852: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1946); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'a') ADVANCE(1913); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1853: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'a') ADVANCE(1920); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1854: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1921); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'a') ADVANCE(1894); + if (lookahead == 'o') ADVANCE(1908); + if (lookahead == 's') ADVANCE(1877); + if (lookahead == 'x') ADVANCE(1903); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1855: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1895); - if (lookahead == 'o') ADVANCE(1909); - if (lookahead == 's') ADVANCE(1878); - if (lookahead == 'x') ADVANCE(1904); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'a') ADVANCE(1917); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1856: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1918); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1857: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'c') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1858: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'd') ADVANCE(1554); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1859: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1555); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'd') ADVANCE(1598); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1860: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1599); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'd') ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1861: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'd') ADVANCE(1921); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1862: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'd') ADVANCE(1923); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1863: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1924); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1583); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1864: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1584); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1585); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1865: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1586); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1857); + if (lookahead == 't') ADVANCE(1852); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1866: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1858); - if (lookahead == 't') ADVANCE(1853); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1857); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1867: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1858); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1825); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1868: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1826); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1914); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1869: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1829); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1870: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1915); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1871: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1916); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1895); + if (lookahead == 'h') ADVANCE(1853); + if (lookahead == 'i') ADVANCE(1891); + if (lookahead == 'l') ADVANCE(1884); + if (lookahead == 's') ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1872: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1896); - if (lookahead == 'h') ADVANCE(1854); - if (lookahead == 'i') ADVANCE(1892); - if (lookahead == 'l') ADVANCE(1885); - if (lookahead == 's') ADVANCE(1939); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'f') ADVANCE(1087); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1873: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1088); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'h') ADVANCE(1570); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1874: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1571); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'h') ADVANCE(1566); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1875: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1567); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'h') ADVANCE(1572); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1876: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1573); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'h') ADVANCE(1568); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1877: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1569); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'h') ADVANCE(1888); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1878: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1889); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'i') ADVANCE(1886); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1879: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1887); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'i') ADVANCE(1925); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1880: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1926); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'i') ADVANCE(1929); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1881: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1930); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'i') ADVANCE(1931); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1882: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'i') ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1883: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'i') ADVANCE(1934); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1884: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1935); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'i') ADVANCE(1887); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1885: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'k') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1886: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'k') ADVANCE(1863); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1887: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'k') ADVANCE(1864); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1888: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1865); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'l') ADVANCE(1608); + if (lookahead == 'r') ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1889: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'l') ADVANCE(1609); - if (lookahead == 'r') ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1685); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1890: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1105); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1891: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1560); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1892: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1561); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1858); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1893: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1861); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1894: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1862); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1860); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1895: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1861); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1862); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1896: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1863); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'o') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1897: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'o') ADVANCE(1939); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1898: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1940); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'o') ADVANCE(1907); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1899: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'o') ADVANCE(1927); + if (lookahead == 's') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1900: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1928); - if (lookahead == 's') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'o') ADVANCE(1927); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1901: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'o') ADVANCE(1859); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1902: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'o') ADVANCE(1828); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1903: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1829); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'o') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1904: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'o') ADVANCE(1940); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1905: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1941); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1906: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1558); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1907: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1559); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1556); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1908: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1557); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1909: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1910: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1800); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1911: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1801); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1807); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1912: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1808); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1827); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1913: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1828); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1914: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1937); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1915: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1916); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1916: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1917); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1831); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1917: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1832); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'r') ADVANCE(1937); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1918: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1938); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 's') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1919: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 's') ADVANCE(1562); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1920: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1563); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 's') ADVANCE(1564); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1921: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1565); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 's') ADVANCE(1813); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1922: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1814); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1923: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1815); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1924: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1816); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1925: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1817); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1811); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1812); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1852); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1853); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1812); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1813); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1797); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1929: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1798); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1873); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1930: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1874); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1826); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1931: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1874); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1932: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1875); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1808); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1933: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1809); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1875); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1934: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 't') ADVANCE(1876); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1935: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1877); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1830); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1936: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1831); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1922); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1937: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1923); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1924); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1938: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 't') ADVANCE(1855); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1939: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1856); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'u') ADVANCE(1930); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1940: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1931); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'u') ADVANCE(1935); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1941: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1936); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'w') ADVANCE(1880); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1942: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1881); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1943: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1882); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1944: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1883); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1945: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'y') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1946: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'y') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '|') ADVANCE(1482); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1947: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '|') ADVANCE(1483); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1948: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1484); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '|') ADVANCE(1487); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1949: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1488); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '|') ADVANCE(1480); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1950: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1481); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '|') ADVANCE(1486); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1951: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1487); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '|') ADVANCE(1481); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1952: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1482); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == '|') ADVANCE(1484); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1953: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '|') ADVANCE(1485); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1954: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1486); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1955: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1128); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1956: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1129); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1957: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1960); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1955); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1958: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1956); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1959: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1957); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1960); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1960: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1961); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1126); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1961: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1127); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1962: - ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1620); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1963: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1621); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == '.') ADVANCE(1530); + if (lookahead == '_') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1964: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1531); - if (lookahead == '_') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == '.') ADVANCE(1530); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1965: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1531); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == '.') ADVANCE(1973); + if (lookahead == '_') ADVANCE(1965); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1966: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1974); - if (lookahead == '_') ADVANCE(1966); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 'I') ADVANCE(1985); + if (lookahead == '_') ADVANCE(1975); + if (lookahead == 'i') ADVANCE(1985); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1975); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1967: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1986); - if (lookahead == '_') ADVANCE(1976); - if (lookahead == 'i') ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1985); + if (lookahead == '_') ADVANCE(1975); + if (lookahead == 'i') ADVANCE(1977); if (lookahead == '+' || - lookahead == '-') ADVANCE(1976); + lookahead == '-') ADVANCE(1975); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1968: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1986); - if (lookahead == '_') ADVANCE(1976); - if (lookahead == 'i') ADVANCE(1978); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1976); + if (lookahead == 'I') ADVANCE(1985); + if (lookahead == 'i') ADVANCE(1985); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1969: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1986); - if (lookahead == 'i') ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1985); + if (lookahead == 'i') ADVANCE(1977); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1970: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1986); - if (lookahead == 'i') ADVANCE(1978); + if (lookahead == 'I') ADVANCE(1985); + if (lookahead == 'i') ADVANCE(1981); + if (lookahead == 's') ADVANCE(1685); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1971: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1986); - if (lookahead == 'i') ADVANCE(1982); - if (lookahead == 's') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == '_') ADVANCE(1971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1972: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1973: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1973); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1974: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1974); + if (lookahead == '_') ADVANCE(1975); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1975); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1975: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1976); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == '_') ADVANCE(1975); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1976: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 'a') ADVANCE(1984); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1977: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1985); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1978: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 'c') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1979: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'c') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1980: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'e') ADVANCE(1979); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 'k') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1981: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'k') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 'n') ADVANCE(1685); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1982: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'n') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 'r') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1983: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'r') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 's') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1984: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 's') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 'y') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1985: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'y') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1986: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1986); END_STATE(); case 1987: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1620); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1988: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == '.') ADVANCE(1998); + if (lookahead == '_') ADVANCE(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1989: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1999); - if (lookahead == '_') ADVANCE(1989); + if (lookahead == '.') ADVANCE(1991); + if (lookahead == '_') ADVANCE(1999); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1990: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1992); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == '.') ADVANCE(1991); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1991: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1992); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == '.') ADVANCE(1509); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1992: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1510); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == '.') ADVANCE(1619); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1993: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 'I') ADVANCE(2012); + if (lookahead == '_') ADVANCE(2001); + if (lookahead == 'i') ADVANCE(2012); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2001); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1994: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2013); - if (lookahead == '_') ADVANCE(2002); - if (lookahead == 'i') ADVANCE(2013); + if (lookahead == 'I') ADVANCE(2012); + if (lookahead == '_') ADVANCE(2001); + if (lookahead == 'i') ADVANCE(2004); if (lookahead == '+' || - lookahead == '-') ADVANCE(2002); + lookahead == '-') ADVANCE(2001); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == 'b') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1995: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2013); - if (lookahead == '_') ADVANCE(2002); - if (lookahead == 'i') ADVANCE(2005); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2002); + if (lookahead == 'I') ADVANCE(2012); + if (lookahead == 'i') ADVANCE(2012); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1996: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2013); - if (lookahead == 'i') ADVANCE(2013); + if (lookahead == 'I') ADVANCE(2012); + if (lookahead == 'i') ADVANCE(2004); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1997: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2013); - if (lookahead == 'i') ADVANCE(2005); + if (lookahead == 'I') ADVANCE(2012); + if (lookahead == 'i') ADVANCE(2008); + if (lookahead == 's') ADVANCE(1685); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1998: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2013); - if (lookahead == 'i') ADVANCE(2009); - if (lookahead == 's') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == '_') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 1999: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2000: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == '_') ADVANCE(2001); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2001); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2001: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(2002); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == '_') ADVANCE(2001); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2002: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(2002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2003: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(2003); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 'a') ADVANCE(2011); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2004: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(2012); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2005: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 'c') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2006: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'c') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 'e') ADVANCE(2005); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2007: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'e') ADVANCE(2006); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 'k') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2008: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'k') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 'n') ADVANCE(1685); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2009: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'n') ADVANCE(1686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 'r') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2010: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'r') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 's') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2011: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 's') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 'y') ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2012: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'y') ADVANCE(1686); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2013: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2013); END_STATE(); case 2014: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); - END_STATE(); - case 2015: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32032,1149 +32017,1149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2015); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2014); + END_STATE(); + case 2015: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '$') ADVANCE(1644); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '[') ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(1645); - if (lookahead == '(') ADVANCE(1619); - if (lookahead == '[') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '+') ADVANCE(2052); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'r') ADVANCE(2058); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2053); - if (lookahead == '>') ADVANCE(1765); - if (lookahead == 'r') ADVANCE(2059); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '+') ADVANCE(2045); + if (lookahead == '>') ADVANCE(1766); + if (lookahead == 'u') ADVANCE(2066); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2046); - if (lookahead == '>') ADVANCE(1767); - if (lookahead == 'u') ADVANCE(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '+') ADVANCE(2053); + if (lookahead == '>') ADVANCE(1760); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2054); - if (lookahead == '>') ADVANCE(1761); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '+') ADVANCE(2046); + if (lookahead == '>') ADVANCE(1762); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2047); + if (lookahead == '+') ADVANCE(2055); if (lookahead == '>') ADVANCE(1763); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'r') ADVANCE(2059); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2056); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'r') ADVANCE(2060); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '+') ADVANCE(2047); + if (lookahead == '>') ADVANCE(1765); + if (lookahead == 'u') ADVANCE(2068); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2048); - if (lookahead == '>') ADVANCE(1766); - if (lookahead == 'u') ADVANCE(2069); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '+') ADVANCE(2056); + if (lookahead == '>') ADVANCE(1759); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2057); - if (lookahead == '>') ADVANCE(1760); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '+') ADVANCE(2048); + if (lookahead == '>') ADVANCE(1761); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2049); - if (lookahead == '>') ADVANCE(1762); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '-') ADVANCE(2092); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2093); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '.') ADVANCE(1534); + if (lookahead == '_') ADVANCE(2041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1535); - if (lookahead == '_') ADVANCE(2042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '.') ADVANCE(1532); + if (lookahead == '_') ADVANCE(2041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1533); - if (lookahead == '_') ADVANCE(2042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '.') ADVANCE(2040); + if (lookahead == '_') ADVANCE(2027); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2041); - if (lookahead == '_') ADVANCE(2028); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '2') ADVANCE(2082); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2090); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2083); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2091); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == ':') ADVANCE(2094); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2095); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == ':') ADVANCE(2096); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2097); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '>') ADVANCE(1774); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1775); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '>') ADVANCE(1772); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1773); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '>') ADVANCE(1768); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1769); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '>') ADVANCE(1770); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1771); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '>') ADVANCE(1773); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1774); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '>') ADVANCE(1771); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1772); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '>') ADVANCE(1767); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1768); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '>') ADVANCE(1769); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1770); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == '_') ADVANCE(2039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2041); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'a') ADVANCE(2050); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2051); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'e') ADVANCE(1111); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1112); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'e') ADVANCE(1114); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'e') ADVANCE(2032); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2033); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'e') ADVANCE(2060); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2061); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'e') ADVANCE(2036); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2037); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'e') ADVANCE(2063); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2064); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'l') ADVANCE(1117); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1118); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'l') ADVANCE(2064); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2065); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'l') ADVANCE(2049); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'o') ADVANCE(2031); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2032); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'o') ADVANCE(2072); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2073); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'o') ADVANCE(2065); + if (lookahead == 'u') ADVANCE(2051); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2066); - if (lookahead == 'u') ADVANCE(2052); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2078); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'o') ADVANCE(2035); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'o') ADVANCE(2073); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2074); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'r') ADVANCE(2071); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2072); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'r') ADVANCE(2018); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2019); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'r') ADVANCE(2022); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2023); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'r') ADVANCE(2061); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2062); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'r') ADVANCE(2034); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'r') ADVANCE(2038); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2039); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'r') ADVANCE(2062); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2063); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 's') ADVANCE(2044); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2045); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 't') ADVANCE(2083); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2084); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 't') ADVANCE(2019); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2020); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 't') ADVANCE(2033); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2034); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 't') ADVANCE(2023); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2024); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 't') ADVANCE(2037); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2038); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'u') ADVANCE(2051); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2071: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2052); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2078); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'u') ADVANCE(2043); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2072: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'u') ADVANCE(2067); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'u') ADVANCE(2069); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2074: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2070); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2078); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1122); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1123); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2080); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2081); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1131); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2078: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1132); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + lookahead == 'n') ADVANCE(2075); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2079: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2076); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2077); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2081); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2082); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1120); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1121); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1699); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1700); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1587); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1588); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2024); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2025); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2030); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2031); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1702); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1703); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1707); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1708); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1699); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1700); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2086); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2087); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2088); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2086); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2087); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2088); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2089); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2029); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2030); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2095); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2096); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2097); END_STATE(); case 2098: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1497); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '.') ADVANCE(2101); + if (lookahead == '_') ADVANCE(2102); + if (lookahead == '\t' || + lookahead == ' ') SKIP(191); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2104); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '.') ADVANCE(2102); - if (lookahead == '_') ADVANCE(2103); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(2101); + if (lookahead == '_') ADVANCE(2102); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(2101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2105); + lookahead == '-') ADVANCE(2100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(2102); - if (lookahead == '_') ADVANCE(2103); - if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); + if (lookahead == '.') ADVANCE(2103); + if (lookahead == '_') ADVANCE(2100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2104); if (lookahead == '_') ADVANCE(2101); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(2102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(2103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2104); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2104); END_STATE(); case 2105: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '$') ADVANCE(1644); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '[') ADVANCE(1732); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2155); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1645); - if (lookahead == '(') ADVANCE(1619); - if (lookahead == '[') ADVANCE(1733); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2156); + if (lookahead == '-') ADVANCE(2150); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2151); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == '.') ADVANCE(1534); + if (lookahead == '_') ADVANCE(2116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1535); - if (lookahead == '_') ADVANCE(2117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == '.') ADVANCE(2115); + if (lookahead == '_') ADVANCE(2109); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2116); - if (lookahead == '_') ADVANCE(2110); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == '.') ADVANCE(2115); + if (lookahead == '_') ADVANCE(2109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2116); - if (lookahead == '_') ADVANCE(2110); + if (lookahead == '.') ADVANCE(1533); + if (lookahead == '_') ADVANCE(2116); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1534); - if (lookahead == '_') ADVANCE(2117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == '2') ADVANCE(2141); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2149); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(2142); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2150); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == ':') ADVANCE(2152); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2153); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == ':') ADVANCE(2154); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2155); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == '_') ADVANCE(2114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(2115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(2116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'a') ADVANCE(2121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2122); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'e') ADVANCE(1111); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1112); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'e') ADVANCE(1114); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1115); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'l') ADVANCE(1117); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1118); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'l') ADVANCE(2124); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2125); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'l') ADVANCE(2120); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2121); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'r') ADVANCE(2125); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 's') ADVANCE(2119); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2120); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'u') ADVANCE(2118); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2119); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'u') ADVANCE(2122); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2123); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2133); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + lookahead == 'a') ADVANCE(2132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2133); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1129); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1130); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + lookahead == 'f') ADVANCE(1123); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1124); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2137); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2138); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2139); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1131); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1132); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + lookahead == 'n') ADVANCE(2129); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2130); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2131); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + lookahead == 'n') ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2129); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + lookahead == 'n') ADVANCE(2131); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2132); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2139); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(2140); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2141); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1120); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1121); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + lookahead == 'y') ADVANCE(1126); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1127); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1700); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1701); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2106); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2113); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2114); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2143); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2144); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1703); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1704); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1698); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1708); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1709); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1700); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1701); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2146); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2147); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2144); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2145); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2147); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2148); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2112); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2113); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2154); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2155); END_STATE(); case 2156: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1536); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '.') ADVANCE(2159); + if (lookahead == ']') ADVANCE(1493); + if (lookahead == '_') ADVANCE(2160); + if (lookahead == '\t' || + lookahead == ' ') SKIP(189); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2158); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2162); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1537); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '.') ADVANCE(2160); - if (lookahead == ']') ADVANCE(1494); - if (lookahead == '_') ADVANCE(2161); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1497); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '.') ADVANCE(2159); + if (lookahead == '_') ADVANCE(2160); if (lookahead == '\t' || - lookahead == ' ') SKIP(190); + lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(2159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2163); + lookahead == '-') ADVANCE(2158); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2162); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '.') ADVANCE(2160); - if (lookahead == '_') ADVANCE(2161); - if (lookahead == '\t' || - lookahead == ' ') SKIP(192); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2163); + if (lookahead == '.') ADVANCE(2161); + if (lookahead == '_') ADVANCE(2158); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2162); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2162); if (lookahead == '_') ADVANCE(2159); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2163); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2162); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(2160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2162); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(2161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2162); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2163); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2162); END_STATE(); case 2163: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2163); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '-') ADVANCE(2198); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2199); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == '.') ADVANCE(1534); + if (lookahead == '_') ADVANCE(2170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1535); - if (lookahead == '_') ADVANCE(2171); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == '.') ADVANCE(2169); + if (lookahead == '_') ADVANCE(2166); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2189); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2170); - if (lookahead == '_') ADVANCE(2167); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2190); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == '.') ADVANCE(2169); + if (lookahead == '_') ADVANCE(2166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2170); - if (lookahead == '_') ADVANCE(2167); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == ':') ADVANCE(559); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(560); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == '_') ADVANCE(2168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(2169); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(2170); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2171); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'a') ADVANCE(2175); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2176); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'e') ADVANCE(1111); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1112); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'e') ADVANCE(1114); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1115); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'l') ADVANCE(1117); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1118); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'l') ADVANCE(2178); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2176: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2179); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'l') ADVANCE(2174); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2175); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'r') ADVANCE(2179); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(2180); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 's') ADVANCE(2173); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(2174); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'u') ADVANCE(2172); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2173); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'u') ADVANCE(2176); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2186); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2181: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2177); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2187); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + lookahead == 'a') ADVANCE(2186); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2182: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2187); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1130); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1131); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + lookahead == 'f') ADVANCE(1124); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1125); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2191); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2192); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2186: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2193); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1131); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2187: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1132); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + lookahead == 'n') ADVANCE(2183); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2188: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2184); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2189: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2185); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + lookahead == 'n') ADVANCE(2182); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2190: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2183); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + lookahead == 'n') ADVANCE(2185); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2191: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2186); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2193); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2192: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(2194); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2193: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2195); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1120); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2194: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1121); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + lookahead == 'y') ADVANCE(1126); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2195: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1127); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2163); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2196: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2164); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2167); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2197: 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(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2195); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2198: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2196); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2200); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2199: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2201); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2196); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2200: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2197); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2201: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1705); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2201); END_STATE(); case 2202: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1497); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '.') ADVANCE(2205); + if (lookahead == '_') ADVANCE(2206); + if (lookahead == '\t' || + lookahead == ' ') SKIP(191); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2204); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2208); END_STATE(); case 2203: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1498); - if (lookahead == '(') ADVANCE(1589); - if (lookahead == '.') ADVANCE(2206); - if (lookahead == '_') ADVANCE(2207); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '.') ADVANCE(2205); + if (lookahead == '_') ADVANCE(2206); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(2205); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2209); + lookahead == '-') ADVANCE(2204); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); case 2204: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '.') ADVANCE(2206); - if (lookahead == '_') ADVANCE(2207); - if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2205); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); + if (lookahead == '.') ADVANCE(2207); + if (lookahead == '_') ADVANCE(2204); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); case 2205: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2208); if (lookahead == '_') ADVANCE(2205); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); case 2206: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(2206); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); case 2207: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(2207); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); case 2208: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2208); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); case 2209: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); - END_STATE(); - case 2210: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2223); + if (lookahead == '#') ADVANCE(2222); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2211); + lookahead != '|') ADVANCE(2210); END_STATE(); - case 2211: + case 2210: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33182,20 +33167,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2211); + lookahead != '|') ADVANCE(2210); END_STATE(); - case 2212: + case 2211: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2222); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2213); + if (lookahead == '#') ADVANCE(2221); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2212); END_STATE(); - case 2213: + case 2212: 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(2213); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2212); END_STATE(); - case 2214: + case 2213: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2221); + if (lookahead == '#') ADVANCE(2220); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -33204,9 +33189,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2215); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2214); END_STATE(); - case 2215: + case 2214: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33216,30 +33201,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2215); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2214); + END_STATE(); + case 2215: + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 2216: ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '\n') ADVANCE(672); + if (lookahead == '\r') ADVANCE(674); + if (lookahead != 0) ADVANCE(674); END_STATE(); case 2217: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(673); - if (lookahead == '\r') ADVANCE(675); - if (lookahead != 0) ADVANCE(675); + if (lookahead == '!') ADVANCE(671); END_STATE(); case 2218: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1065); END_STATE(); case 2219: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1742); END_STATE(); case 2220: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1743); - END_STATE(); - case 2221: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33249,13 +33234,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2215); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2214); END_STATE(); - case 2222: + case 2221: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2213); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2212); END_STATE(); - case 2223: + case 2222: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33263,26 +33248,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2211); + lookahead != '|') ADVANCE(2210); END_STATE(); - case 2224: + case 2223: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2226); + lookahead != '\n') ADVANCE(2225); END_STATE(); - case 2225: + case 2224: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2224); + if (lookahead == '#') ADVANCE(2223); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2225); + lookahead == ' ') ADVANCE(2224); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2226); + lookahead != '\n') ADVANCE(2225); END_STATE(); - case 2226: + case 2225: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2226); + lookahead != '\n') ADVANCE(2225); END_STATE(); default: return false; @@ -33830,7 +33815,7 @@ 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 = 639, .external_lex_state = 2}, + [1] = {.lex_state = 638, .external_lex_state = 2}, [2] = {.lex_state = 33, .external_lex_state = 2}, [3] = {.lex_state = 33, .external_lex_state = 2}, [4] = {.lex_state = 33, .external_lex_state = 2}, @@ -33845,195 +33830,195 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [13] = {.lex_state = 33, .external_lex_state = 2}, [14] = {.lex_state = 33, .external_lex_state = 2}, [15] = {.lex_state = 33, .external_lex_state = 2}, - [16] = {.lex_state = 631, .external_lex_state = 2}, - [17] = {.lex_state = 631, .external_lex_state = 2}, - [18] = {.lex_state = 631, .external_lex_state = 2}, - [19] = {.lex_state = 631, .external_lex_state = 2}, - [20] = {.lex_state = 631, .external_lex_state = 2}, - [21] = {.lex_state = 631, .external_lex_state = 2}, - [22] = {.lex_state = 631, .external_lex_state = 2}, - [23] = {.lex_state = 631, .external_lex_state = 2}, - [24] = {.lex_state = 631, .external_lex_state = 2}, - [25] = {.lex_state = 631, .external_lex_state = 2}, - [26] = {.lex_state = 631, .external_lex_state = 2}, - [27] = {.lex_state = 631, .external_lex_state = 2}, - [28] = {.lex_state = 631, .external_lex_state = 2}, - [29] = {.lex_state = 631, .external_lex_state = 2}, - [30] = {.lex_state = 631, .external_lex_state = 2}, - [31] = {.lex_state = 631, .external_lex_state = 2}, - [32] = {.lex_state = 631, .external_lex_state = 2}, - [33] = {.lex_state = 631, .external_lex_state = 2}, - [34] = {.lex_state = 631, .external_lex_state = 2}, + [16] = {.lex_state = 630, .external_lex_state = 2}, + [17] = {.lex_state = 630, .external_lex_state = 2}, + [18] = {.lex_state = 630, .external_lex_state = 2}, + [19] = {.lex_state = 630, .external_lex_state = 2}, + [20] = {.lex_state = 630, .external_lex_state = 2}, + [21] = {.lex_state = 630, .external_lex_state = 2}, + [22] = {.lex_state = 630, .external_lex_state = 2}, + [23] = {.lex_state = 630, .external_lex_state = 2}, + [24] = {.lex_state = 630, .external_lex_state = 2}, + [25] = {.lex_state = 630, .external_lex_state = 2}, + [26] = {.lex_state = 630, .external_lex_state = 2}, + [27] = {.lex_state = 630, .external_lex_state = 2}, + [28] = {.lex_state = 630, .external_lex_state = 2}, + [29] = {.lex_state = 630, .external_lex_state = 2}, + [30] = {.lex_state = 630, .external_lex_state = 2}, + [31] = {.lex_state = 630, .external_lex_state = 2}, + [32] = {.lex_state = 630, .external_lex_state = 2}, + [33] = {.lex_state = 630, .external_lex_state = 2}, + [34] = {.lex_state = 630, .external_lex_state = 2}, [35] = {.lex_state = 31, .external_lex_state = 2}, [36] = {.lex_state = 31, .external_lex_state = 2}, - [37] = {.lex_state = 631, .external_lex_state = 2}, - [38] = {.lex_state = 31, .external_lex_state = 2}, - [39] = {.lex_state = 631, .external_lex_state = 2}, - [40] = {.lex_state = 631, .external_lex_state = 2}, - [41] = {.lex_state = 631, .external_lex_state = 2}, - [42] = {.lex_state = 31, .external_lex_state = 2}, + [37] = {.lex_state = 31, .external_lex_state = 2}, + [38] = {.lex_state = 630, .external_lex_state = 2}, + [39] = {.lex_state = 31, .external_lex_state = 2}, + [40] = {.lex_state = 31, .external_lex_state = 2}, + [41] = {.lex_state = 630, .external_lex_state = 2}, + [42] = {.lex_state = 630, .external_lex_state = 2}, [43] = {.lex_state = 31, .external_lex_state = 2}, - [44] = {.lex_state = 31, .external_lex_state = 2}, - [45] = {.lex_state = 631, .external_lex_state = 2}, + [44] = {.lex_state = 630, .external_lex_state = 2}, + [45] = {.lex_state = 630, .external_lex_state = 2}, [46] = {.lex_state = 31, .external_lex_state = 2}, - [47] = {.lex_state = 631, .external_lex_state = 2}, - [48] = {.lex_state = 31, .external_lex_state = 2}, - [49] = {.lex_state = 631, .external_lex_state = 2}, - [50] = {.lex_state = 631, .external_lex_state = 2}, - [51] = {.lex_state = 31, .external_lex_state = 2}, - [52] = {.lex_state = 631, .external_lex_state = 2}, + [47] = {.lex_state = 31, .external_lex_state = 2}, + [48] = {.lex_state = 630, .external_lex_state = 2}, + [49] = {.lex_state = 630, .external_lex_state = 2}, + [50] = {.lex_state = 31, .external_lex_state = 2}, + [51] = {.lex_state = 630, .external_lex_state = 2}, + [52] = {.lex_state = 630, .external_lex_state = 2}, [53] = {.lex_state = 31, .external_lex_state = 2}, [54] = {.lex_state = 31, .external_lex_state = 2}, - [55] = {.lex_state = 631, .external_lex_state = 2}, - [56] = {.lex_state = 631, .external_lex_state = 2}, + [55] = {.lex_state = 31, .external_lex_state = 2}, + [56] = {.lex_state = 630, .external_lex_state = 2}, [57] = {.lex_state = 31, .external_lex_state = 2}, - [58] = {.lex_state = 631, .external_lex_state = 2}, - [59] = {.lex_state = 31, .external_lex_state = 2}, - [60] = {.lex_state = 631, .external_lex_state = 2}, - [61] = {.lex_state = 31, .external_lex_state = 2}, - [62] = {.lex_state = 631, .external_lex_state = 2}, - [63] = {.lex_state = 631, .external_lex_state = 2}, + [58] = {.lex_state = 630, .external_lex_state = 2}, + [59] = {.lex_state = 630, .external_lex_state = 2}, + [60] = {.lex_state = 630, .external_lex_state = 2}, + [61] = {.lex_state = 630, .external_lex_state = 2}, + [62] = {.lex_state = 31, .external_lex_state = 2}, + [63] = {.lex_state = 630, .external_lex_state = 2}, [64] = {.lex_state = 31, .external_lex_state = 2}, - [65] = {.lex_state = 631, .external_lex_state = 2}, + [65] = {.lex_state = 31, .external_lex_state = 2}, [66] = {.lex_state = 31, .external_lex_state = 2}, [67] = {.lex_state = 31, .external_lex_state = 2}, [68] = {.lex_state = 31, .external_lex_state = 2}, [69] = {.lex_state = 31, .external_lex_state = 2}, - [70] = {.lex_state = 31, .external_lex_state = 2}, + [70] = {.lex_state = 630, .external_lex_state = 2}, [71] = {.lex_state = 31, .external_lex_state = 2}, [72] = {.lex_state = 31, .external_lex_state = 2}, - [73] = {.lex_state = 631, .external_lex_state = 2}, - [74] = {.lex_state = 631, .external_lex_state = 2}, + [73] = {.lex_state = 630, .external_lex_state = 2}, + [74] = {.lex_state = 630, .external_lex_state = 2}, [75] = {.lex_state = 31, .external_lex_state = 2}, - [76] = {.lex_state = 631, .external_lex_state = 2}, + [76] = {.lex_state = 630, .external_lex_state = 2}, [77] = {.lex_state = 31, .external_lex_state = 2}, - [78] = {.lex_state = 631, .external_lex_state = 2}, - [79] = {.lex_state = 631, .external_lex_state = 2}, - [80] = {.lex_state = 631, .external_lex_state = 2}, - [81] = {.lex_state = 631, .external_lex_state = 2}, - [82] = {.lex_state = 631, .external_lex_state = 2}, - [83] = {.lex_state = 631, .external_lex_state = 2}, - [84] = {.lex_state = 631, .external_lex_state = 2}, - [85] = {.lex_state = 631, .external_lex_state = 2}, - [86] = {.lex_state = 631, .external_lex_state = 2}, - [87] = {.lex_state = 631, .external_lex_state = 2}, - [88] = {.lex_state = 631, .external_lex_state = 2}, - [89] = {.lex_state = 631, .external_lex_state = 2}, - [90] = {.lex_state = 631, .external_lex_state = 2}, - [91] = {.lex_state = 631, .external_lex_state = 2}, - [92] = {.lex_state = 1179}, - [93] = {.lex_state = 1194}, - [94] = {.lex_state = 1353}, - [95] = {.lex_state = 1175}, - [96] = {.lex_state = 1180}, - [97] = {.lex_state = 1169}, - [98] = {.lex_state = 1180}, - [99] = {.lex_state = 1195}, - [100] = {.lex_state = 1347}, - [101] = {.lex_state = 1182}, - [102] = {.lex_state = 1349}, - [103] = {.lex_state = 1171}, - [104] = {.lex_state = 635, .external_lex_state = 2}, - [105] = {.lex_state = 1171}, - [106] = {.lex_state = 1181}, - [107] = {.lex_state = 1181}, - [108] = {.lex_state = 1181}, - [109] = {.lex_state = 1181}, - [110] = {.lex_state = 1184}, - [111] = {.lex_state = 1353}, - [112] = {.lex_state = 1347}, - [113] = {.lex_state = 1184}, - [114] = {.lex_state = 43, .external_lex_state = 2}, - [115] = {.lex_state = 1349}, - [116] = {.lex_state = 1186}, - [117] = {.lex_state = 1186}, - [118] = {.lex_state = 1173}, - [119] = {.lex_state = 1173}, - [120] = {.lex_state = 1186}, - [121] = {.lex_state = 1197}, - [122] = {.lex_state = 1188}, - [123] = {.lex_state = 1349}, - [124] = {.lex_state = 1173}, - [125] = {.lex_state = 1186}, - [126] = {.lex_state = 1349}, - [127] = {.lex_state = 635, .external_lex_state = 2}, - [128] = {.lex_state = 1351}, - [129] = {.lex_state = 1173}, - [130] = {.lex_state = 1351}, - [131] = {.lex_state = 635, .external_lex_state = 2}, - [132] = {.lex_state = 1351}, - [133] = {.lex_state = 1351}, - [134] = {.lex_state = 1190}, - [135] = {.lex_state = 1190}, - [136] = {.lex_state = 1351}, - [137] = {.lex_state = 1351}, - [138] = {.lex_state = 1351}, - [139] = {.lex_state = 1351}, - [140] = {.lex_state = 1192}, - [141] = {.lex_state = 1192}, - [142] = {.lex_state = 1192}, - [143] = {.lex_state = 1192}, - [144] = {.lex_state = 631, .external_lex_state = 2}, - [145] = {.lex_state = 631, .external_lex_state = 2}, - [146] = {.lex_state = 631, .external_lex_state = 2}, - [147] = {.lex_state = 631, .external_lex_state = 2}, - [148] = {.lex_state = 631, .external_lex_state = 2}, - [149] = {.lex_state = 631, .external_lex_state = 2}, - [150] = {.lex_state = 631, .external_lex_state = 2}, - [151] = {.lex_state = 631, .external_lex_state = 2}, - [152] = {.lex_state = 631, .external_lex_state = 2}, - [153] = {.lex_state = 631, .external_lex_state = 2}, - [154] = {.lex_state = 631, .external_lex_state = 2}, - [155] = {.lex_state = 631, .external_lex_state = 2}, - [156] = {.lex_state = 631, .external_lex_state = 2}, - [157] = {.lex_state = 631, .external_lex_state = 2}, - [158] = {.lex_state = 631, .external_lex_state = 2}, - [159] = {.lex_state = 631, .external_lex_state = 2}, - [160] = {.lex_state = 631, .external_lex_state = 2}, - [161] = {.lex_state = 631, .external_lex_state = 2}, - [162] = {.lex_state = 631, .external_lex_state = 2}, - [163] = {.lex_state = 631, .external_lex_state = 2}, - [164] = {.lex_state = 631, .external_lex_state = 2}, - [165] = {.lex_state = 631, .external_lex_state = 2}, - [166] = {.lex_state = 631, .external_lex_state = 2}, - [167] = {.lex_state = 631, .external_lex_state = 2}, - [168] = {.lex_state = 631, .external_lex_state = 2}, - [169] = {.lex_state = 631, .external_lex_state = 2}, - [170] = {.lex_state = 631, .external_lex_state = 2}, - [171] = {.lex_state = 631, .external_lex_state = 2}, - [172] = {.lex_state = 631, .external_lex_state = 2}, - [173] = {.lex_state = 631, .external_lex_state = 2}, - [174] = {.lex_state = 1177}, - [175] = {.lex_state = 1177}, - [176] = {.lex_state = 631, .external_lex_state = 2}, - [177] = {.lex_state = 631, .external_lex_state = 2}, - [178] = {.lex_state = 631, .external_lex_state = 2}, - [179] = {.lex_state = 631, .external_lex_state = 2}, - [180] = {.lex_state = 631, .external_lex_state = 2}, - [181] = {.lex_state = 631, .external_lex_state = 2}, - [182] = {.lex_state = 1199}, - [183] = {.lex_state = 1199}, - [184] = {.lex_state = 631, .external_lex_state = 2}, - [185] = {.lex_state = 1199}, - [186] = {.lex_state = 1199}, - [187] = {.lex_state = 631, .external_lex_state = 2}, - [188] = {.lex_state = 1355}, - [189] = {.lex_state = 1355}, - [190] = {.lex_state = 1355}, - [191] = {.lex_state = 1355}, - [192] = {.lex_state = 1201}, - [193] = {.lex_state = 1201}, - [194] = {.lex_state = 44, .external_lex_state = 2}, - [195] = {.lex_state = 36, .external_lex_state = 2}, - [196] = {.lex_state = 36, .external_lex_state = 2}, - [197] = {.lex_state = 36, .external_lex_state = 2}, - [198] = {.lex_state = 36, .external_lex_state = 2}, - [199] = {.lex_state = 36, .external_lex_state = 2}, - [200] = {.lex_state = 36, .external_lex_state = 2}, - [201] = {.lex_state = 36, .external_lex_state = 2}, - [202] = {.lex_state = 36, .external_lex_state = 2}, - [203] = {.lex_state = 36, .external_lex_state = 2}, - [204] = {.lex_state = 36, .external_lex_state = 2}, + [78] = {.lex_state = 630, .external_lex_state = 2}, + [79] = {.lex_state = 630, .external_lex_state = 2}, + [80] = {.lex_state = 630, .external_lex_state = 2}, + [81] = {.lex_state = 630, .external_lex_state = 2}, + [82] = {.lex_state = 630, .external_lex_state = 2}, + [83] = {.lex_state = 630, .external_lex_state = 2}, + [84] = {.lex_state = 630, .external_lex_state = 2}, + [85] = {.lex_state = 630, .external_lex_state = 2}, + [86] = {.lex_state = 630, .external_lex_state = 2}, + [87] = {.lex_state = 630, .external_lex_state = 2}, + [88] = {.lex_state = 630, .external_lex_state = 2}, + [89] = {.lex_state = 630, .external_lex_state = 2}, + [90] = {.lex_state = 630, .external_lex_state = 2}, + [91] = {.lex_state = 630, .external_lex_state = 2}, + [92] = {.lex_state = 1178}, + [93] = {.lex_state = 1183}, + [94] = {.lex_state = 1348}, + [95] = {.lex_state = 1170}, + [96] = {.lex_state = 1184}, + [97] = {.lex_state = 1168}, + [98] = {.lex_state = 1179}, + [99] = {.lex_state = 1186}, + [100] = {.lex_state = 1184}, + [101] = {.lex_state = 1346}, + [102] = {.lex_state = 1185}, + [103] = {.lex_state = 634, .external_lex_state = 2}, + [104] = {.lex_state = 1185}, + [105] = {.lex_state = 43, .external_lex_state = 2}, + [106] = {.lex_state = 1185}, + [107] = {.lex_state = 1185}, + [108] = {.lex_state = 1172}, + [109] = {.lex_state = 1188}, + [110] = {.lex_state = 1350}, + [111] = {.lex_state = 1188}, + [112] = {.lex_state = 1172}, + [113] = {.lex_state = 1346}, + [114] = {.lex_state = 1350}, + [115] = {.lex_state = 1348}, + [116] = {.lex_state = 1174}, + [117] = {.lex_state = 1352}, + [118] = {.lex_state = 1352}, + [119] = {.lex_state = 1190}, + [120] = {.lex_state = 1190}, + [121] = {.lex_state = 634, .external_lex_state = 2}, + [122] = {.lex_state = 1174}, + [123] = {.lex_state = 1174}, + [124] = {.lex_state = 1190}, + [125] = {.lex_state = 1190}, + [126] = {.lex_state = 1174}, + [127] = {.lex_state = 1181}, + [128] = {.lex_state = 1352}, + [129] = {.lex_state = 1192}, + [130] = {.lex_state = 1350}, + [131] = {.lex_state = 1352}, + [132] = {.lex_state = 1350}, + [133] = {.lex_state = 634, .external_lex_state = 2}, + [134] = {.lex_state = 1352}, + [135] = {.lex_state = 1352}, + [136] = {.lex_state = 1352}, + [137] = {.lex_state = 1194}, + [138] = {.lex_state = 1194}, + [139] = {.lex_state = 1352}, + [140] = {.lex_state = 630, .external_lex_state = 2}, + [141] = {.lex_state = 630, .external_lex_state = 2}, + [142] = {.lex_state = 630, .external_lex_state = 2}, + [143] = {.lex_state = 630, .external_lex_state = 2}, + [144] = {.lex_state = 630, .external_lex_state = 2}, + [145] = {.lex_state = 630, .external_lex_state = 2}, + [146] = {.lex_state = 630, .external_lex_state = 2}, + [147] = {.lex_state = 630, .external_lex_state = 2}, + [148] = {.lex_state = 1196}, + [149] = {.lex_state = 630, .external_lex_state = 2}, + [150] = {.lex_state = 1196}, + [151] = {.lex_state = 1196}, + [152] = {.lex_state = 1196}, + [153] = {.lex_state = 630, .external_lex_state = 2}, + [154] = {.lex_state = 630, .external_lex_state = 2}, + [155] = {.lex_state = 630, .external_lex_state = 2}, + [156] = {.lex_state = 630, .external_lex_state = 2}, + [157] = {.lex_state = 630, .external_lex_state = 2}, + [158] = {.lex_state = 630, .external_lex_state = 2}, + [159] = {.lex_state = 630, .external_lex_state = 2}, + [160] = {.lex_state = 630, .external_lex_state = 2}, + [161] = {.lex_state = 630, .external_lex_state = 2}, + [162] = {.lex_state = 630, .external_lex_state = 2}, + [163] = {.lex_state = 630, .external_lex_state = 2}, + [164] = {.lex_state = 630, .external_lex_state = 2}, + [165] = {.lex_state = 630, .external_lex_state = 2}, + [166] = {.lex_state = 630, .external_lex_state = 2}, + [167] = {.lex_state = 630, .external_lex_state = 2}, + [168] = {.lex_state = 630, .external_lex_state = 2}, + [169] = {.lex_state = 630, .external_lex_state = 2}, + [170] = {.lex_state = 630, .external_lex_state = 2}, + [171] = {.lex_state = 630, .external_lex_state = 2}, + [172] = {.lex_state = 630, .external_lex_state = 2}, + [173] = {.lex_state = 630, .external_lex_state = 2}, + [174] = {.lex_state = 630, .external_lex_state = 2}, + [175] = {.lex_state = 630, .external_lex_state = 2}, + [176] = {.lex_state = 630, .external_lex_state = 2}, + [177] = {.lex_state = 630, .external_lex_state = 2}, + [178] = {.lex_state = 630, .external_lex_state = 2}, + [179] = {.lex_state = 630, .external_lex_state = 2}, + [180] = {.lex_state = 630, .external_lex_state = 2}, + [181] = {.lex_state = 630, .external_lex_state = 2}, + [182] = {.lex_state = 630, .external_lex_state = 2}, + [183] = {.lex_state = 630, .external_lex_state = 2}, + [184] = {.lex_state = 630, .external_lex_state = 2}, + [185] = {.lex_state = 630, .external_lex_state = 2}, + [186] = {.lex_state = 630, .external_lex_state = 2}, + [187] = {.lex_state = 630, .external_lex_state = 2}, + [188] = {.lex_state = 630, .external_lex_state = 2}, + [189] = {.lex_state = 630, .external_lex_state = 2}, + [190] = {.lex_state = 630, .external_lex_state = 2}, + [191] = {.lex_state = 630, .external_lex_state = 2}, + [192] = {.lex_state = 1354}, + [193] = {.lex_state = 1176}, + [194] = {.lex_state = 1354}, + [195] = {.lex_state = 1198}, + [196] = {.lex_state = 1198}, + [197] = {.lex_state = 1176}, + [198] = {.lex_state = 1198}, + [199] = {.lex_state = 1198}, + [200] = {.lex_state = 1354}, + [201] = {.lex_state = 1354}, + [202] = {.lex_state = 1200}, + [203] = {.lex_state = 1200}, + [204] = {.lex_state = 44, .external_lex_state = 2}, [205] = {.lex_state = 36, .external_lex_state = 2}, [206] = {.lex_state = 36, .external_lex_state = 2}, [207] = {.lex_state = 36, .external_lex_state = 2}, @@ -34101,269 +34086,269 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [269] = {.lex_state = 36, .external_lex_state = 2}, [270] = {.lex_state = 36, .external_lex_state = 2}, [271] = {.lex_state = 36, .external_lex_state = 2}, - [272] = {.lex_state = 1354}, - [273] = {.lex_state = 1348}, - [274] = {.lex_state = 1176}, - [275] = {.lex_state = 1170}, + [272] = {.lex_state = 36, .external_lex_state = 2}, + [273] = {.lex_state = 36, .external_lex_state = 2}, + [274] = {.lex_state = 36, .external_lex_state = 2}, + [275] = {.lex_state = 36, .external_lex_state = 2}, [276] = {.lex_state = 36, .external_lex_state = 2}, [277] = {.lex_state = 36, .external_lex_state = 2}, - [278] = {.lex_state = 1196}, - [279] = {.lex_state = 1183}, + [278] = {.lex_state = 36, .external_lex_state = 2}, + [279] = {.lex_state = 1347}, [280] = {.lex_state = 36, .external_lex_state = 2}, [281] = {.lex_state = 36, .external_lex_state = 2}, [282] = {.lex_state = 36, .external_lex_state = 2}, [283] = {.lex_state = 36, .external_lex_state = 2}, [284] = {.lex_state = 36, .external_lex_state = 2}, [285] = {.lex_state = 36, .external_lex_state = 2}, - [286] = {.lex_state = 1354}, - [287] = {.lex_state = 1350}, - [288] = {.lex_state = 1172}, - [289] = {.lex_state = 1350}, - [290] = {.lex_state = 1172}, - [291] = {.lex_state = 1185}, - [292] = {.lex_state = 1348}, - [293] = {.lex_state = 1185}, - [294] = {.lex_state = 1352}, - [295] = {.lex_state = 1352}, - [296] = {.lex_state = 1174}, - [297] = {.lex_state = 1352}, - [298] = {.lex_state = 1174}, - [299] = {.lex_state = 1174}, - [300] = {.lex_state = 1187}, - [301] = {.lex_state = 1187}, - [302] = {.lex_state = 1198}, - [303] = {.lex_state = 1189}, - [304] = {.lex_state = 1350}, - [305] = {.lex_state = 1187}, - [306] = {.lex_state = 1350}, - [307] = {.lex_state = 1352}, - [308] = {.lex_state = 1174}, - [309] = {.lex_state = 1187}, - [310] = {.lex_state = 1191}, - [311] = {.lex_state = 1352}, - [312] = {.lex_state = 1352}, - [313] = {.lex_state = 1352}, - [314] = {.lex_state = 1191}, - [315] = {.lex_state = 1352}, - [316] = {.lex_state = 1193}, - [317] = {.lex_state = 1193}, - [318] = {.lex_state = 1193}, - [319] = {.lex_state = 1193}, - [320] = {.lex_state = 45, .external_lex_state = 2}, - [321] = {.lex_state = 45, .external_lex_state = 2}, - [322] = {.lex_state = 45, .external_lex_state = 2}, - [323] = {.lex_state = 1356}, - [324] = {.lex_state = 1356}, - [325] = {.lex_state = 1178}, - [326] = {.lex_state = 1178}, - [327] = {.lex_state = 1200}, - [328] = {.lex_state = 1200}, - [329] = {.lex_state = 1356}, - [330] = {.lex_state = 1356}, - [331] = {.lex_state = 1202}, - [332] = {.lex_state = 1202}, - [333] = {.lex_state = 123}, - [334] = {.lex_state = 584}, - [335] = {.lex_state = 584}, - [336] = {.lex_state = 123}, - [337] = {.lex_state = 123}, - [338] = {.lex_state = 123}, - [339] = {.lex_state = 45, .external_lex_state = 2}, - [340] = {.lex_state = 123}, - [341] = {.lex_state = 123}, - [342] = {.lex_state = 123}, - [343] = {.lex_state = 123}, - [344] = {.lex_state = 45, .external_lex_state = 2}, - [345] = {.lex_state = 45, .external_lex_state = 2}, - [346] = {.lex_state = 123}, - [347] = {.lex_state = 584}, - [348] = {.lex_state = 123}, - [349] = {.lex_state = 584}, - [350] = {.lex_state = 45, .external_lex_state = 2}, - [351] = {.lex_state = 45, .external_lex_state = 2}, - [352] = {.lex_state = 123}, - [353] = {.lex_state = 45, .external_lex_state = 2}, - [354] = {.lex_state = 45, .external_lex_state = 2}, - [355] = {.lex_state = 123}, - [356] = {.lex_state = 584}, - [357] = {.lex_state = 45, .external_lex_state = 2}, - [358] = {.lex_state = 45, .external_lex_state = 2}, - [359] = {.lex_state = 45, .external_lex_state = 2}, - [360] = {.lex_state = 584}, - [361] = {.lex_state = 584}, + [286] = {.lex_state = 36, .external_lex_state = 2}, + [287] = {.lex_state = 1349}, + [288] = {.lex_state = 36, .external_lex_state = 2}, + [289] = {.lex_state = 1169}, + [290] = {.lex_state = 36, .external_lex_state = 2}, + [291] = {.lex_state = 1171}, + [292] = {.lex_state = 36, .external_lex_state = 2}, + [293] = {.lex_state = 1180}, + [294] = {.lex_state = 36, .external_lex_state = 2}, + [295] = {.lex_state = 1187}, + [296] = {.lex_state = 1349}, + [297] = {.lex_state = 1347}, + [298] = {.lex_state = 1351}, + [299] = {.lex_state = 1189}, + [300] = {.lex_state = 1173}, + [301] = {.lex_state = 1189}, + [302] = {.lex_state = 1173}, + [303] = {.lex_state = 1351}, + [304] = {.lex_state = 1182}, + [305] = {.lex_state = 1191}, + [306] = {.lex_state = 1353}, + [307] = {.lex_state = 1193}, + [308] = {.lex_state = 1351}, + [309] = {.lex_state = 1351}, + [310] = {.lex_state = 1353}, + [311] = {.lex_state = 1353}, + [312] = {.lex_state = 1353}, + [313] = {.lex_state = 1175}, + [314] = {.lex_state = 1175}, + [315] = {.lex_state = 1175}, + [316] = {.lex_state = 1175}, + [317] = {.lex_state = 1191}, + [318] = {.lex_state = 1191}, + [319] = {.lex_state = 1191}, + [320] = {.lex_state = 1195}, + [321] = {.lex_state = 1353}, + [322] = {.lex_state = 1353}, + [323] = {.lex_state = 1353}, + [324] = {.lex_state = 1353}, + [325] = {.lex_state = 1195}, + [326] = {.lex_state = 1197}, + [327] = {.lex_state = 1197}, + [328] = {.lex_state = 1197}, + [329] = {.lex_state = 1197}, + [330] = {.lex_state = 45, .external_lex_state = 2}, + [331] = {.lex_state = 45, .external_lex_state = 2}, + [332] = {.lex_state = 45, .external_lex_state = 2}, + [333] = {.lex_state = 1355}, + [334] = {.lex_state = 1355}, + [335] = {.lex_state = 1177}, + [336] = {.lex_state = 1199}, + [337] = {.lex_state = 1177}, + [338] = {.lex_state = 1199}, + [339] = {.lex_state = 1355}, + [340] = {.lex_state = 1355}, + [341] = {.lex_state = 1201}, + [342] = {.lex_state = 1201}, + [343] = {.lex_state = 122}, + [344] = {.lex_state = 583}, + [345] = {.lex_state = 583}, + [346] = {.lex_state = 122}, + [347] = {.lex_state = 122}, + [348] = {.lex_state = 122}, + [349] = {.lex_state = 583}, + [350] = {.lex_state = 122}, + [351] = {.lex_state = 122}, + [352] = {.lex_state = 45, .external_lex_state = 2}, + [353] = {.lex_state = 122}, + [354] = {.lex_state = 122}, + [355] = {.lex_state = 45, .external_lex_state = 2}, + [356] = {.lex_state = 583}, + [357] = {.lex_state = 583}, + [358] = {.lex_state = 122}, + [359] = {.lex_state = 583}, + [360] = {.lex_state = 583}, + [361] = {.lex_state = 122}, [362] = {.lex_state = 45, .external_lex_state = 2}, - [363] = {.lex_state = 584}, - [364] = {.lex_state = 584}, - [365] = {.lex_state = 123}, - [366] = {.lex_state = 123}, - [367] = {.lex_state = 584}, + [363] = {.lex_state = 122}, + [364] = {.lex_state = 583}, + [365] = {.lex_state = 45, .external_lex_state = 2}, + [366] = {.lex_state = 583}, + [367] = {.lex_state = 122}, [368] = {.lex_state = 45, .external_lex_state = 2}, - [369] = {.lex_state = 123}, - [370] = {.lex_state = 584}, - [371] = {.lex_state = 584}, - [372] = {.lex_state = 123}, - [373] = {.lex_state = 584}, - [374] = {.lex_state = 584}, - [375] = {.lex_state = 45, .external_lex_state = 2}, - [376] = {.lex_state = 45, .external_lex_state = 2}, - [377] = {.lex_state = 584}, + [369] = {.lex_state = 583}, + [370] = {.lex_state = 45, .external_lex_state = 2}, + [371] = {.lex_state = 45, .external_lex_state = 2}, + [372] = {.lex_state = 45, .external_lex_state = 2}, + [373] = {.lex_state = 45, .external_lex_state = 2}, + [374] = {.lex_state = 45, .external_lex_state = 2}, + [375] = {.lex_state = 122}, + [376] = {.lex_state = 122}, + [377] = {.lex_state = 45, .external_lex_state = 2}, [378] = {.lex_state = 45, .external_lex_state = 2}, - [379] = {.lex_state = 584}, - [380] = {.lex_state = 584}, - [381] = {.lex_state = 584}, - [382] = {.lex_state = 584}, - [383] = {.lex_state = 584}, - [384] = {.lex_state = 45, .external_lex_state = 2}, - [385] = {.lex_state = 588}, - [386] = {.lex_state = 45, .external_lex_state = 2}, - [387] = {.lex_state = 123}, - [388] = {.lex_state = 45, .external_lex_state = 2}, - [389] = {.lex_state = 45, .external_lex_state = 2}, - [390] = {.lex_state = 588}, - [391] = {.lex_state = 588}, - [392] = {.lex_state = 45, .external_lex_state = 2}, - [393] = {.lex_state = 584}, + [379] = {.lex_state = 122}, + [380] = {.lex_state = 583}, + [381] = {.lex_state = 583}, + [382] = {.lex_state = 583}, + [383] = {.lex_state = 122}, + [384] = {.lex_state = 583}, + [385] = {.lex_state = 122}, + [386] = {.lex_state = 583}, + [387] = {.lex_state = 583}, + [388] = {.lex_state = 583}, + [389] = {.lex_state = 587}, + [390] = {.lex_state = 45, .external_lex_state = 2}, + [391] = {.lex_state = 583}, + [392] = {.lex_state = 583}, + [393] = {.lex_state = 587}, [394] = {.lex_state = 45, .external_lex_state = 2}, - [395] = {.lex_state = 45, .external_lex_state = 2}, - [396] = {.lex_state = 584}, - [397] = {.lex_state = 584}, - [398] = {.lex_state = 584}, + [395] = {.lex_state = 583}, + [396] = {.lex_state = 583}, + [397] = {.lex_state = 583}, + [398] = {.lex_state = 583}, [399] = {.lex_state = 45, .external_lex_state = 2}, - [400] = {.lex_state = 584}, + [400] = {.lex_state = 45, .external_lex_state = 2}, [401] = {.lex_state = 45, .external_lex_state = 2}, - [402] = {.lex_state = 584}, - [403] = {.lex_state = 588}, - [404] = {.lex_state = 585}, - [405] = {.lex_state = 585}, - [406] = {.lex_state = 588}, - [407] = {.lex_state = 584}, - [408] = {.lex_state = 588}, - [409] = {.lex_state = 584}, - [410] = {.lex_state = 590}, - [411] = {.lex_state = 588}, - [412] = {.lex_state = 585}, - [413] = {.lex_state = 588}, - [414] = {.lex_state = 588}, - [415] = {.lex_state = 588}, - [416] = {.lex_state = 590}, - [417] = {.lex_state = 584}, - [418] = {.lex_state = 585}, - [419] = {.lex_state = 584}, - [420] = {.lex_state = 585}, - [421] = {.lex_state = 585}, - [422] = {.lex_state = 592}, - [423] = {.lex_state = 585}, - [424] = {.lex_state = 585}, - [425] = {.lex_state = 585}, - [426] = {.lex_state = 588}, - [427] = {.lex_state = 596}, - [428] = {.lex_state = 585}, - [429] = {.lex_state = 585}, + [402] = {.lex_state = 45, .external_lex_state = 2}, + [403] = {.lex_state = 583}, + [404] = {.lex_state = 45, .external_lex_state = 2}, + [405] = {.lex_state = 45, .external_lex_state = 2}, + [406] = {.lex_state = 587}, + [407] = {.lex_state = 45, .external_lex_state = 2}, + [408] = {.lex_state = 45, .external_lex_state = 2}, + [409] = {.lex_state = 45, .external_lex_state = 2}, + [410] = {.lex_state = 583}, + [411] = {.lex_state = 45, .external_lex_state = 2}, + [412] = {.lex_state = 589}, + [413] = {.lex_state = 587}, + [414] = {.lex_state = 584}, + [415] = {.lex_state = 587}, + [416] = {.lex_state = 584}, + [417] = {.lex_state = 587}, + [418] = {.lex_state = 589}, + [419] = {.lex_state = 587}, + [420] = {.lex_state = 587}, + [421] = {.lex_state = 587}, + [422] = {.lex_state = 584}, + [423] = {.lex_state = 583}, + [424] = {.lex_state = 587}, + [425] = {.lex_state = 583}, + [426] = {.lex_state = 583}, + [427] = {.lex_state = 583}, + [428] = {.lex_state = 584}, + [429] = {.lex_state = 584}, [430] = {.lex_state = 584}, - [431] = {.lex_state = 585}, - [432] = {.lex_state = 628}, - [433] = {.lex_state = 585}, - [434] = {.lex_state = 584}, - [435] = {.lex_state = 590}, - [436] = {.lex_state = 588}, - [437] = {.lex_state = 590}, + [431] = {.lex_state = 591}, + [432] = {.lex_state = 595}, + [433] = {.lex_state = 584}, + [434] = {.lex_state = 587}, + [435] = {.lex_state = 583}, + [436] = {.lex_state = 584}, + [437] = {.lex_state = 584}, [438] = {.lex_state = 584}, - [439] = {.lex_state = 588}, - [440] = {.lex_state = 602}, - [441] = {.lex_state = 592}, - [442] = {.lex_state = 596}, - [443] = {.lex_state = 585}, - [444] = {.lex_state = 584}, - [445] = {.lex_state = 41, .external_lex_state = 2}, - [446] = {.lex_state = 584}, - [447] = {.lex_state = 41, .external_lex_state = 2}, - [448] = {.lex_state = 585}, - [449] = {.lex_state = 41, .external_lex_state = 2}, - [450] = {.lex_state = 594}, - [451] = {.lex_state = 584}, + [439] = {.lex_state = 584}, + [440] = {.lex_state = 584}, + [441] = {.lex_state = 583}, + [442] = {.lex_state = 584}, + [443] = {.lex_state = 627}, + [444] = {.lex_state = 589}, + [445] = {.lex_state = 583}, + [446] = {.lex_state = 587}, + [447] = {.lex_state = 589}, + [448] = {.lex_state = 583}, + [449] = {.lex_state = 587}, + [450] = {.lex_state = 601}, + [451] = {.lex_state = 597}, [452] = {.lex_state = 41, .external_lex_state = 2}, - [453] = {.lex_state = 598}, + [453] = {.lex_state = 584}, [454] = {.lex_state = 41, .external_lex_state = 2}, - [455] = {.lex_state = 41, .external_lex_state = 2}, - [456] = {.lex_state = 585}, - [457] = {.lex_state = 588}, - [458] = {.lex_state = 585}, - [459] = {.lex_state = 588}, + [455] = {.lex_state = 583}, + [456] = {.lex_state = 584}, + [457] = {.lex_state = 583}, + [458] = {.lex_state = 583}, + [459] = {.lex_state = 593}, [460] = {.lex_state = 41, .external_lex_state = 2}, - [461] = {.lex_state = 588}, - [462] = {.lex_state = 588}, - [463] = {.lex_state = 588}, - [464] = {.lex_state = 41, .external_lex_state = 2}, + [461] = {.lex_state = 587}, + [462] = {.lex_state = 587}, + [463] = {.lex_state = 41, .external_lex_state = 2}, + [464] = {.lex_state = 599}, [465] = {.lex_state = 41, .external_lex_state = 2}, - [466] = {.lex_state = 598}, + [466] = {.lex_state = 587}, [467] = {.lex_state = 41, .external_lex_state = 2}, [468] = {.lex_state = 41, .external_lex_state = 2}, - [469] = {.lex_state = 600}, - [470] = {.lex_state = 41, .external_lex_state = 2}, - [471] = {.lex_state = 600}, - [472] = {.lex_state = 585}, - [473] = {.lex_state = 598}, - [474] = {.lex_state = 600}, + [469] = {.lex_state = 597}, + [470] = {.lex_state = 584}, + [471] = {.lex_state = 41, .external_lex_state = 2}, + [472] = {.lex_state = 591}, + [473] = {.lex_state = 41, .external_lex_state = 2}, + [474] = {.lex_state = 587}, [475] = {.lex_state = 41, .external_lex_state = 2}, - [476] = {.lex_state = 600}, - [477] = {.lex_state = 604}, - [478] = {.lex_state = 585}, - [479] = {.lex_state = 598}, + [476] = {.lex_state = 595}, + [477] = {.lex_state = 41, .external_lex_state = 2}, + [478] = {.lex_state = 41, .external_lex_state = 2}, + [479] = {.lex_state = 587}, [480] = {.lex_state = 584}, - [481] = {.lex_state = 604}, - [482] = {.lex_state = 45, .external_lex_state = 2}, - [483] = {.lex_state = 600}, - [484] = {.lex_state = 584}, - [485] = {.lex_state = 619}, - [486] = {.lex_state = 600}, - [487] = {.lex_state = 585}, - [488] = {.lex_state = 606}, - [489] = {.lex_state = 600}, - [490] = {.lex_state = 585}, - [491] = {.lex_state = 585}, - [492] = {.lex_state = 585}, - [493] = {.lex_state = 606}, - [494] = {.lex_state = 602}, - [495] = {.lex_state = 585}, - [496] = {.lex_state = 585}, - [497] = {.lex_state = 585}, - [498] = {.lex_state = 606}, - [499] = {.lex_state = 41, .external_lex_state = 2}, - [500] = {.lex_state = 594}, - [501] = {.lex_state = 585}, - [502] = {.lex_state = 585}, - [503] = {.lex_state = 585}, - [504] = {.lex_state = 585}, - [505] = {.lex_state = 585}, - [506] = {.lex_state = 585}, - [507] = {.lex_state = 585}, - [508] = {.lex_state = 585}, - [509] = {.lex_state = 585}, - [510] = {.lex_state = 600}, - [511] = {.lex_state = 585}, - [512] = {.lex_state = 585}, - [513] = {.lex_state = 585}, - [514] = {.lex_state = 41, .external_lex_state = 2}, - [515] = {.lex_state = 42, .external_lex_state = 2}, - [516] = {.lex_state = 42, .external_lex_state = 2}, - [517] = {.lex_state = 42, .external_lex_state = 2}, - [518] = {.lex_state = 42, .external_lex_state = 2}, - [519] = {.lex_state = 42, .external_lex_state = 2}, - [520] = {.lex_state = 42, .external_lex_state = 2}, - [521] = {.lex_state = 42, .external_lex_state = 2}, - [522] = {.lex_state = 42, .external_lex_state = 2}, - [523] = {.lex_state = 42, .external_lex_state = 2}, - [524] = {.lex_state = 604}, - [525] = {.lex_state = 585}, - [526] = {.lex_state = 585}, - [527] = {.lex_state = 619}, - [528] = {.lex_state = 619}, + [481] = {.lex_state = 603}, + [482] = {.lex_state = 41, .external_lex_state = 2}, + [483] = {.lex_state = 45, .external_lex_state = 2}, + [484] = {.lex_state = 599}, + [485] = {.lex_state = 599}, + [486] = {.lex_state = 597}, + [487] = {.lex_state = 584}, + [488] = {.lex_state = 599}, + [489] = {.lex_state = 603}, + [490] = {.lex_state = 583}, + [491] = {.lex_state = 599}, + [492] = {.lex_state = 597}, + [493] = {.lex_state = 584}, + [494] = {.lex_state = 583}, + [495] = {.lex_state = 583}, + [496] = {.lex_state = 41, .external_lex_state = 2}, + [497] = {.lex_state = 41, .external_lex_state = 2}, + [498] = {.lex_state = 584}, + [499] = {.lex_state = 584}, + [500] = {.lex_state = 599}, + [501] = {.lex_state = 599}, + [502] = {.lex_state = 599}, + [503] = {.lex_state = 618}, + [504] = {.lex_state = 584}, + [505] = {.lex_state = 584}, + [506] = {.lex_state = 584}, + [507] = {.lex_state = 584}, + [508] = {.lex_state = 584}, + [509] = {.lex_state = 584}, + [510] = {.lex_state = 584}, + [511] = {.lex_state = 584}, + [512] = {.lex_state = 593}, + [513] = {.lex_state = 584}, + [514] = {.lex_state = 584}, + [515] = {.lex_state = 605}, + [516] = {.lex_state = 605}, + [517] = {.lex_state = 605}, + [518] = {.lex_state = 584}, + [519] = {.lex_state = 584}, + [520] = {.lex_state = 584}, + [521] = {.lex_state = 601}, + [522] = {.lex_state = 584}, + [523] = {.lex_state = 584}, + [524] = {.lex_state = 584}, + [525] = {.lex_state = 584}, + [526] = {.lex_state = 583}, + [527] = {.lex_state = 42, .external_lex_state = 2}, + [528] = {.lex_state = 605}, [529] = {.lex_state = 42, .external_lex_state = 2}, - [530] = {.lex_state = 42, .external_lex_state = 2}, + [530] = {.lex_state = 618}, [531] = {.lex_state = 42, .external_lex_state = 2}, - [532] = {.lex_state = 42, .external_lex_state = 2}, + [532] = {.lex_state = 45, .external_lex_state = 2}, [533] = {.lex_state = 42, .external_lex_state = 2}, - [534] = {.lex_state = 42, .external_lex_state = 2}, + [534] = {.lex_state = 45, .external_lex_state = 2}, [535] = {.lex_state = 42, .external_lex_state = 2}, [536] = {.lex_state = 42, .external_lex_state = 2}, [537] = {.lex_state = 42, .external_lex_state = 2}, @@ -34384,10 +34369,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [552] = {.lex_state = 42, .external_lex_state = 2}, [553] = {.lex_state = 42, .external_lex_state = 2}, [554] = {.lex_state = 42, .external_lex_state = 2}, - [555] = {.lex_state = 606}, - [556] = {.lex_state = 606}, - [557] = {.lex_state = 604}, - [558] = {.lex_state = 45, .external_lex_state = 2}, + [555] = {.lex_state = 42, .external_lex_state = 2}, + [556] = {.lex_state = 42, .external_lex_state = 2}, + [557] = {.lex_state = 42, .external_lex_state = 2}, + [558] = {.lex_state = 42, .external_lex_state = 2}, [559] = {.lex_state = 42, .external_lex_state = 2}, [560] = {.lex_state = 42, .external_lex_state = 2}, [561] = {.lex_state = 42, .external_lex_state = 2}, @@ -34426,7 +34411,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [594] = {.lex_state = 42, .external_lex_state = 2}, [595] = {.lex_state = 42, .external_lex_state = 2}, [596] = {.lex_state = 42, .external_lex_state = 2}, - [597] = {.lex_state = 42, .external_lex_state = 2}, + [597] = {.lex_state = 603}, [598] = {.lex_state = 42, .external_lex_state = 2}, [599] = {.lex_state = 42, .external_lex_state = 2}, [600] = {.lex_state = 42, .external_lex_state = 2}, @@ -34453,7 +34438,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [621] = {.lex_state = 42, .external_lex_state = 2}, [622] = {.lex_state = 42, .external_lex_state = 2}, [623] = {.lex_state = 42, .external_lex_state = 2}, - [624] = {.lex_state = 45, .external_lex_state = 2}, + [624] = {.lex_state = 42, .external_lex_state = 2}, [625] = {.lex_state = 42, .external_lex_state = 2}, [626] = {.lex_state = 42, .external_lex_state = 2}, [627] = {.lex_state = 42, .external_lex_state = 2}, @@ -34496,173 +34481,173 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [664] = {.lex_state = 42, .external_lex_state = 2}, [665] = {.lex_state = 42, .external_lex_state = 2}, [666] = {.lex_state = 42, .external_lex_state = 2}, - [667] = {.lex_state = 42, .external_lex_state = 2}, - [668] = {.lex_state = 42, .external_lex_state = 2}, - [669] = {.lex_state = 42, .external_lex_state = 2}, + [667] = {.lex_state = 45, .external_lex_state = 2}, + [668] = {.lex_state = 584}, + [669] = {.lex_state = 584}, [670] = {.lex_state = 42, .external_lex_state = 2}, [671] = {.lex_state = 42, .external_lex_state = 2}, [672] = {.lex_state = 42, .external_lex_state = 2}, [673] = {.lex_state = 42, .external_lex_state = 2}, [674] = {.lex_state = 42, .external_lex_state = 2}, - [675] = {.lex_state = 42, .external_lex_state = 2}, - [676] = {.lex_state = 45, .external_lex_state = 2}, + [675] = {.lex_state = 618}, + [676] = {.lex_state = 42, .external_lex_state = 2}, [677] = {.lex_state = 42, .external_lex_state = 2}, [678] = {.lex_state = 42, .external_lex_state = 2}, [679] = {.lex_state = 42, .external_lex_state = 2}, [680] = {.lex_state = 42, .external_lex_state = 2}, [681] = {.lex_state = 42, .external_lex_state = 2}, - [682] = {.lex_state = 619}, - [683] = {.lex_state = 585}, - [684] = {.lex_state = 585}, - [685] = {.lex_state = 585}, - [686] = {.lex_state = 585}, - [687] = {.lex_state = 585}, - [688] = {.lex_state = 585}, - [689] = {.lex_state = 585}, - [690] = {.lex_state = 585}, - [691] = {.lex_state = 585}, - [692] = {.lex_state = 619}, - [693] = {.lex_state = 585}, - [694] = {.lex_state = 585}, - [695] = {.lex_state = 585}, - [696] = {.lex_state = 606}, - [697] = {.lex_state = 585}, - [698] = {.lex_state = 41, .external_lex_state = 2}, - [699] = {.lex_state = 610}, - [700] = {.lex_state = 608}, - [701] = {.lex_state = 585}, - [702] = {.lex_state = 585}, - [703] = {.lex_state = 585}, - [704] = {.lex_state = 585}, - [705] = {.lex_state = 585}, - [706] = {.lex_state = 585}, - [707] = {.lex_state = 585}, - [708] = {.lex_state = 585}, - [709] = {.lex_state = 585}, - [710] = {.lex_state = 585}, - [711] = {.lex_state = 606}, - [712] = {.lex_state = 585}, - [713] = {.lex_state = 585}, - [714] = {.lex_state = 606}, - [715] = {.lex_state = 619}, - [716] = {.lex_state = 585}, - [717] = {.lex_state = 585}, - [718] = {.lex_state = 585}, - [719] = {.lex_state = 41, .external_lex_state = 2}, - [720] = {.lex_state = 606}, - [721] = {.lex_state = 41, .external_lex_state = 2}, - [722] = {.lex_state = 41, .external_lex_state = 2}, - [723] = {.lex_state = 41, .external_lex_state = 2}, - [724] = {.lex_state = 585}, - [725] = {.lex_state = 41, .external_lex_state = 2}, - [726] = {.lex_state = 606}, - [727] = {.lex_state = 632, .external_lex_state = 2}, - [728] = {.lex_state = 632, .external_lex_state = 2}, - [729] = {.lex_state = 585}, - [730] = {.lex_state = 632, .external_lex_state = 2}, - [731] = {.lex_state = 585}, - [732] = {.lex_state = 585}, - [733] = {.lex_state = 585}, - [734] = {.lex_state = 585}, - [735] = {.lex_state = 610}, - [736] = {.lex_state = 585}, - [737] = {.lex_state = 585}, - [738] = {.lex_state = 614}, - [739] = {.lex_state = 585}, - [740] = {.lex_state = 585}, - [741] = {.lex_state = 585}, - [742] = {.lex_state = 585}, - [743] = {.lex_state = 608}, - [744] = {.lex_state = 585}, - [745] = {.lex_state = 585}, - [746] = {.lex_state = 612}, - [747] = {.lex_state = 612}, - [748] = {.lex_state = 585}, - [749] = {.lex_state = 585}, - [750] = {.lex_state = 585}, + [682] = {.lex_state = 42, .external_lex_state = 2}, + [683] = {.lex_state = 42, .external_lex_state = 2}, + [684] = {.lex_state = 603}, + [685] = {.lex_state = 42, .external_lex_state = 2}, + [686] = {.lex_state = 42, .external_lex_state = 2}, + [687] = {.lex_state = 42, .external_lex_state = 2}, + [688] = {.lex_state = 42, .external_lex_state = 2}, + [689] = {.lex_state = 42, .external_lex_state = 2}, + [690] = {.lex_state = 605}, + [691] = {.lex_state = 42, .external_lex_state = 2}, + [692] = {.lex_state = 42, .external_lex_state = 2}, + [693] = {.lex_state = 42, .external_lex_state = 2}, + [694] = {.lex_state = 584}, + [695] = {.lex_state = 605}, + [696] = {.lex_state = 584}, + [697] = {.lex_state = 584}, + [698] = {.lex_state = 584}, + [699] = {.lex_state = 609}, + [700] = {.lex_state = 607}, + [701] = {.lex_state = 41, .external_lex_state = 2}, + [702] = {.lex_state = 631, .external_lex_state = 2}, + [703] = {.lex_state = 618}, + [704] = {.lex_state = 584}, + [705] = {.lex_state = 584}, + [706] = {.lex_state = 41, .external_lex_state = 2}, + [707] = {.lex_state = 41, .external_lex_state = 2}, + [708] = {.lex_state = 584}, + [709] = {.lex_state = 584}, + [710] = {.lex_state = 631, .external_lex_state = 2}, + [711] = {.lex_state = 605}, + [712] = {.lex_state = 605}, + [713] = {.lex_state = 584}, + [714] = {.lex_state = 584}, + [715] = {.lex_state = 618}, + [716] = {.lex_state = 41, .external_lex_state = 2}, + [717] = {.lex_state = 584}, + [718] = {.lex_state = 584}, + [719] = {.lex_state = 584}, + [720] = {.lex_state = 584}, + [721] = {.lex_state = 631, .external_lex_state = 2}, + [722] = {.lex_state = 584}, + [723] = {.lex_state = 584}, + [724] = {.lex_state = 584}, + [725] = {.lex_state = 584}, + [726] = {.lex_state = 618}, + [727] = {.lex_state = 584}, + [728] = {.lex_state = 584}, + [729] = {.lex_state = 605}, + [730] = {.lex_state = 584}, + [731] = {.lex_state = 584}, + [732] = {.lex_state = 584}, + [733] = {.lex_state = 584}, + [734] = {.lex_state = 605}, + [735] = {.lex_state = 41, .external_lex_state = 2}, + [736] = {.lex_state = 41, .external_lex_state = 2}, + [737] = {.lex_state = 584}, + [738] = {.lex_state = 584}, + [739] = {.lex_state = 584}, + [740] = {.lex_state = 584}, + [741] = {.lex_state = 584}, + [742] = {.lex_state = 584}, + [743] = {.lex_state = 584}, + [744] = {.lex_state = 584}, + [745] = {.lex_state = 584}, + [746] = {.lex_state = 42, .external_lex_state = 2}, + [747] = {.lex_state = 42, .external_lex_state = 2}, + [748] = {.lex_state = 584}, + [749] = {.lex_state = 42, .external_lex_state = 2}, + [750] = {.lex_state = 584}, [751] = {.lex_state = 42, .external_lex_state = 2}, - [752] = {.lex_state = 585}, - [753] = {.lex_state = 585}, - [754] = {.lex_state = 585}, - [755] = {.lex_state = 585}, - [756] = {.lex_state = 585}, - [757] = {.lex_state = 585}, - [758] = {.lex_state = 42, .external_lex_state = 2}, - [759] = {.lex_state = 585}, - [760] = {.lex_state = 585}, - [761] = {.lex_state = 42, .external_lex_state = 2}, - [762] = {.lex_state = 585}, - [763] = {.lex_state = 585}, - [764] = {.lex_state = 42, .external_lex_state = 2}, - [765] = {.lex_state = 42, .external_lex_state = 2}, - [766] = {.lex_state = 42, .external_lex_state = 2}, - [767] = {.lex_state = 42, .external_lex_state = 2}, - [768] = {.lex_state = 42, .external_lex_state = 2}, - [769] = {.lex_state = 42, .external_lex_state = 2}, - [770] = {.lex_state = 42, .external_lex_state = 2}, - [771] = {.lex_state = 42, .external_lex_state = 2}, - [772] = {.lex_state = 42, .external_lex_state = 2}, - [773] = {.lex_state = 42, .external_lex_state = 2}, - [774] = {.lex_state = 42, .external_lex_state = 2}, - [775] = {.lex_state = 42, .external_lex_state = 2}, - [776] = {.lex_state = 42, .external_lex_state = 2}, - [777] = {.lex_state = 42, .external_lex_state = 2}, - [778] = {.lex_state = 42, .external_lex_state = 2}, - [779] = {.lex_state = 42, .external_lex_state = 2}, - [780] = {.lex_state = 585}, - [781] = {.lex_state = 42, .external_lex_state = 2}, - [782] = {.lex_state = 42, .external_lex_state = 2}, - [783] = {.lex_state = 585}, - [784] = {.lex_state = 585}, - [785] = {.lex_state = 42, .external_lex_state = 2}, - [786] = {.lex_state = 42, .external_lex_state = 2}, - [787] = {.lex_state = 585}, - [788] = {.lex_state = 585}, - [789] = {.lex_state = 585}, - [790] = {.lex_state = 585}, - [791] = {.lex_state = 585}, - [792] = {.lex_state = 585}, - [793] = {.lex_state = 585}, - [794] = {.lex_state = 585}, - [795] = {.lex_state = 585}, - [796] = {.lex_state = 585}, + [752] = {.lex_state = 584}, + [753] = {.lex_state = 42, .external_lex_state = 2}, + [754] = {.lex_state = 42, .external_lex_state = 2}, + [755] = {.lex_state = 584}, + [756] = {.lex_state = 584}, + [757] = {.lex_state = 584}, + [758] = {.lex_state = 611}, + [759] = {.lex_state = 584}, + [760] = {.lex_state = 584}, + [761] = {.lex_state = 584}, + [762] = {.lex_state = 584}, + [763] = {.lex_state = 611}, + [764] = {.lex_state = 584}, + [765] = {.lex_state = 584}, + [766] = {.lex_state = 584}, + [767] = {.lex_state = 584}, + [768] = {.lex_state = 584}, + [769] = {.lex_state = 584}, + [770] = {.lex_state = 584}, + [771] = {.lex_state = 584}, + [772] = {.lex_state = 584}, + [773] = {.lex_state = 584}, + [774] = {.lex_state = 584}, + [775] = {.lex_state = 584}, + [776] = {.lex_state = 584}, + [777] = {.lex_state = 584}, + [778] = {.lex_state = 584}, + [779] = {.lex_state = 584}, + [780] = {.lex_state = 584}, + [781] = {.lex_state = 584}, + [782] = {.lex_state = 584}, + [783] = {.lex_state = 584}, + [784] = {.lex_state = 584}, + [785] = {.lex_state = 584}, + [786] = {.lex_state = 584}, + [787] = {.lex_state = 584}, + [788] = {.lex_state = 584}, + [789] = {.lex_state = 584}, + [790] = {.lex_state = 584}, + [791] = {.lex_state = 584}, + [792] = {.lex_state = 584}, + [793] = {.lex_state = 584}, + [794] = {.lex_state = 584}, + [795] = {.lex_state = 584}, + [796] = {.lex_state = 42, .external_lex_state = 2}, [797] = {.lex_state = 42, .external_lex_state = 2}, - [798] = {.lex_state = 585}, - [799] = {.lex_state = 585}, - [800] = {.lex_state = 585}, - [801] = {.lex_state = 585}, - [802] = {.lex_state = 585}, - [803] = {.lex_state = 585}, - [804] = {.lex_state = 585}, - [805] = {.lex_state = 585}, - [806] = {.lex_state = 585}, - [807] = {.lex_state = 585}, - [808] = {.lex_state = 585}, - [809] = {.lex_state = 585}, - [810] = {.lex_state = 585}, - [811] = {.lex_state = 585}, - [812] = {.lex_state = 585}, - [813] = {.lex_state = 42, .external_lex_state = 2}, - [814] = {.lex_state = 42, .external_lex_state = 2}, - [815] = {.lex_state = 42, .external_lex_state = 2}, + [798] = {.lex_state = 42, .external_lex_state = 2}, + [799] = {.lex_state = 42, .external_lex_state = 2}, + [800] = {.lex_state = 42, .external_lex_state = 2}, + [801] = {.lex_state = 584}, + [802] = {.lex_state = 584}, + [803] = {.lex_state = 584}, + [804] = {.lex_state = 584}, + [805] = {.lex_state = 584}, + [806] = {.lex_state = 42, .external_lex_state = 2}, + [807] = {.lex_state = 584}, + [808] = {.lex_state = 584}, + [809] = {.lex_state = 584}, + [810] = {.lex_state = 584}, + [811] = {.lex_state = 584}, + [812] = {.lex_state = 42, .external_lex_state = 2}, + [813] = {.lex_state = 584}, + [814] = {.lex_state = 584}, + [815] = {.lex_state = 584}, [816] = {.lex_state = 42, .external_lex_state = 2}, - [817] = {.lex_state = 42, .external_lex_state = 2}, - [818] = {.lex_state = 42, .external_lex_state = 2}, + [817] = {.lex_state = 584}, + [818] = {.lex_state = 584}, [819] = {.lex_state = 42, .external_lex_state = 2}, - [820] = {.lex_state = 42, .external_lex_state = 2}, - [821] = {.lex_state = 42, .external_lex_state = 2}, + [820] = {.lex_state = 584}, + [821] = {.lex_state = 584}, [822] = {.lex_state = 42, .external_lex_state = 2}, - [823] = {.lex_state = 585}, - [824] = {.lex_state = 585}, - [825] = {.lex_state = 585}, - [826] = {.lex_state = 42, .external_lex_state = 2}, - [827] = {.lex_state = 585}, + [823] = {.lex_state = 584}, + [824] = {.lex_state = 584}, + [825] = {.lex_state = 584}, + [826] = {.lex_state = 584}, + [827] = {.lex_state = 584}, [828] = {.lex_state = 42, .external_lex_state = 2}, - [829] = {.lex_state = 585}, - [830] = {.lex_state = 42, .external_lex_state = 2}, + [829] = {.lex_state = 584}, + [830] = {.lex_state = 584}, [831] = {.lex_state = 42, .external_lex_state = 2}, - [832] = {.lex_state = 585}, - [833] = {.lex_state = 585}, + [832] = {.lex_state = 42, .external_lex_state = 2}, + [833] = {.lex_state = 42, .external_lex_state = 2}, [834] = {.lex_state = 42, .external_lex_state = 2}, [835] = {.lex_state = 42, .external_lex_state = 2}, [836] = {.lex_state = 42, .external_lex_state = 2}, @@ -34673,1337 +34658,1337 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [841] = {.lex_state = 42, .external_lex_state = 2}, [842] = {.lex_state = 42, .external_lex_state = 2}, [843] = {.lex_state = 42, .external_lex_state = 2}, - [844] = {.lex_state = 42, .external_lex_state = 2}, + [844] = {.lex_state = 584}, [845] = {.lex_state = 42, .external_lex_state = 2}, [846] = {.lex_state = 42, .external_lex_state = 2}, - [847] = {.lex_state = 42, .external_lex_state = 2}, - [848] = {.lex_state = 585}, - [849] = {.lex_state = 585}, - [850] = {.lex_state = 42, .external_lex_state = 2}, + [847] = {.lex_state = 607}, + [848] = {.lex_state = 42, .external_lex_state = 2}, + [849] = {.lex_state = 584}, + [850] = {.lex_state = 584}, [851] = {.lex_state = 42, .external_lex_state = 2}, [852] = {.lex_state = 42, .external_lex_state = 2}, [853] = {.lex_state = 42, .external_lex_state = 2}, - [854] = {.lex_state = 585}, - [855] = {.lex_state = 42, .external_lex_state = 2}, + [854] = {.lex_state = 42, .external_lex_state = 2}, + [855] = {.lex_state = 584}, [856] = {.lex_state = 42, .external_lex_state = 2}, - [857] = {.lex_state = 632, .external_lex_state = 2}, - [858] = {.lex_state = 585}, - [859] = {.lex_state = 585}, + [857] = {.lex_state = 42, .external_lex_state = 2}, + [858] = {.lex_state = 42, .external_lex_state = 2}, + [859] = {.lex_state = 42, .external_lex_state = 2}, [860] = {.lex_state = 42, .external_lex_state = 2}, - [861] = {.lex_state = 585}, + [861] = {.lex_state = 42, .external_lex_state = 2}, [862] = {.lex_state = 42, .external_lex_state = 2}, - [863] = {.lex_state = 585}, + [863] = {.lex_state = 42, .external_lex_state = 2}, [864] = {.lex_state = 42, .external_lex_state = 2}, - [865] = {.lex_state = 585}, - [866] = {.lex_state = 585}, - [867] = {.lex_state = 585}, + [865] = {.lex_state = 42, .external_lex_state = 2}, + [866] = {.lex_state = 42, .external_lex_state = 2}, + [867] = {.lex_state = 42, .external_lex_state = 2}, [868] = {.lex_state = 42, .external_lex_state = 2}, - [869] = {.lex_state = 585}, + [869] = {.lex_state = 42, .external_lex_state = 2}, [870] = {.lex_state = 42, .external_lex_state = 2}, - [871] = {.lex_state = 585}, + [871] = {.lex_state = 584}, [872] = {.lex_state = 42, .external_lex_state = 2}, - [873] = {.lex_state = 608}, - [874] = {.lex_state = 585}, - [875] = {.lex_state = 585}, - [876] = {.lex_state = 585}, - [877] = {.lex_state = 585}, - [878] = {.lex_state = 585}, - [879] = {.lex_state = 632, .external_lex_state = 2}, - [880] = {.lex_state = 585}, - [881] = {.lex_state = 585}, - [882] = {.lex_state = 585}, - [883] = {.lex_state = 585}, - [884] = {.lex_state = 585}, - [885] = {.lex_state = 585}, - [886] = {.lex_state = 585}, - [887] = {.lex_state = 585}, - [888] = {.lex_state = 585}, - [889] = {.lex_state = 585}, - [890] = {.lex_state = 585}, - [891] = {.lex_state = 585}, - [892] = {.lex_state = 42, .external_lex_state = 2}, + [873] = {.lex_state = 631, .external_lex_state = 2}, + [874] = {.lex_state = 42, .external_lex_state = 2}, + [875] = {.lex_state = 42, .external_lex_state = 2}, + [876] = {.lex_state = 42, .external_lex_state = 2}, + [877] = {.lex_state = 42, .external_lex_state = 2}, + [878] = {.lex_state = 42, .external_lex_state = 2}, + [879] = {.lex_state = 42, .external_lex_state = 2}, + [880] = {.lex_state = 42, .external_lex_state = 2}, + [881] = {.lex_state = 42, .external_lex_state = 2}, + [882] = {.lex_state = 42, .external_lex_state = 2}, + [883] = {.lex_state = 42, .external_lex_state = 2}, + [884] = {.lex_state = 42, .external_lex_state = 2}, + [885] = {.lex_state = 42, .external_lex_state = 2}, + [886] = {.lex_state = 42, .external_lex_state = 2}, + [887] = {.lex_state = 42, .external_lex_state = 2}, + [888] = {.lex_state = 42, .external_lex_state = 2}, + [889] = {.lex_state = 584}, + [890] = {.lex_state = 584}, + [891] = {.lex_state = 42, .external_lex_state = 2}, + [892] = {.lex_state = 631, .external_lex_state = 2}, [893] = {.lex_state = 42, .external_lex_state = 2}, - [894] = {.lex_state = 42, .external_lex_state = 2}, + [894] = {.lex_state = 584}, [895] = {.lex_state = 42, .external_lex_state = 2}, - [896] = {.lex_state = 42, .external_lex_state = 2}, - [897] = {.lex_state = 42, .external_lex_state = 2}, - [898] = {.lex_state = 42, .external_lex_state = 2}, - [899] = {.lex_state = 42, .external_lex_state = 2}, - [900] = {.lex_state = 42, .external_lex_state = 2}, - [901] = {.lex_state = 42, .external_lex_state = 2}, - [902] = {.lex_state = 42, .external_lex_state = 2}, - [903] = {.lex_state = 42, .external_lex_state = 2}, - [904] = {.lex_state = 42, .external_lex_state = 2}, - [905] = {.lex_state = 585}, - [906] = {.lex_state = 585}, - [907] = {.lex_state = 585}, - [908] = {.lex_state = 585}, - [909] = {.lex_state = 585}, - [910] = {.lex_state = 585}, - [911] = {.lex_state = 42, .external_lex_state = 2}, - [912] = {.lex_state = 585}, - [913] = {.lex_state = 585}, - [914] = {.lex_state = 585}, - [915] = {.lex_state = 585}, - [916] = {.lex_state = 612}, - [917] = {.lex_state = 614}, - [918] = {.lex_state = 585}, - [919] = {.lex_state = 585}, - [920] = {.lex_state = 585}, - [921] = {.lex_state = 585}, - [922] = {.lex_state = 614}, - [923] = {.lex_state = 632, .external_lex_state = 2}, - [924] = {.lex_state = 585}, - [925] = {.lex_state = 632, .external_lex_state = 2}, - [926] = {.lex_state = 585}, - [927] = {.lex_state = 585}, - [928] = {.lex_state = 614}, - [929] = {.lex_state = 614}, - [930] = {.lex_state = 51, .external_lex_state = 2}, - [931] = {.lex_state = 614}, - [932] = {.lex_state = 585}, - [933] = {.lex_state = 614}, - [934] = {.lex_state = 585}, - [935] = {.lex_state = 585}, - [936] = {.lex_state = 585}, - [937] = {.lex_state = 585}, - [938] = {.lex_state = 614}, - [939] = {.lex_state = 632, .external_lex_state = 2}, - [940] = {.lex_state = 585}, - [941] = {.lex_state = 614}, - [942] = {.lex_state = 585}, - [943] = {.lex_state = 585}, - [944] = {.lex_state = 585}, - [945] = {.lex_state = 585}, - [946] = {.lex_state = 51, .external_lex_state = 2}, - [947] = {.lex_state = 585}, - [948] = {.lex_state = 585}, - [949] = {.lex_state = 585}, - [950] = {.lex_state = 585}, - [951] = {.lex_state = 585}, - [952] = {.lex_state = 585}, - [953] = {.lex_state = 585}, - [954] = {.lex_state = 632, .external_lex_state = 2}, - [955] = {.lex_state = 585}, - [956] = {.lex_state = 585}, - [957] = {.lex_state = 614}, - [958] = {.lex_state = 585}, - [959] = {.lex_state = 585}, - [960] = {.lex_state = 612}, - [961] = {.lex_state = 585}, - [962] = {.lex_state = 585}, - [963] = {.lex_state = 614}, - [964] = {.lex_state = 585}, - [965] = {.lex_state = 614}, - [966] = {.lex_state = 585}, - [967] = {.lex_state = 585}, - [968] = {.lex_state = 585}, - [969] = {.lex_state = 585}, - [970] = {.lex_state = 585}, - [971] = {.lex_state = 585}, - [972] = {.lex_state = 585}, - [973] = {.lex_state = 585}, - [974] = {.lex_state = 614}, - [975] = {.lex_state = 51, .external_lex_state = 2}, - [976] = {.lex_state = 585}, - [977] = {.lex_state = 585}, - [978] = {.lex_state = 42, .external_lex_state = 2}, - [979] = {.lex_state = 608}, - [980] = {.lex_state = 585}, - [981] = {.lex_state = 585}, - [982] = {.lex_state = 614}, - [983] = {.lex_state = 614}, - [984] = {.lex_state = 614}, - [985] = {.lex_state = 614}, - [986] = {.lex_state = 585}, - [987] = {.lex_state = 585}, - [988] = {.lex_state = 585}, - [989] = {.lex_state = 48, .external_lex_state = 2}, - [990] = {.lex_state = 42, .external_lex_state = 2}, - [991] = {.lex_state = 42, .external_lex_state = 2}, - [992] = {.lex_state = 614}, - [993] = {.lex_state = 42, .external_lex_state = 2}, - [994] = {.lex_state = 614}, - [995] = {.lex_state = 585}, - [996] = {.lex_state = 616}, - [997] = {.lex_state = 614}, - [998] = {.lex_state = 614}, - [999] = {.lex_state = 614}, - [1000] = {.lex_state = 614}, - [1001] = {.lex_state = 616}, - [1002] = {.lex_state = 585}, - [1003] = {.lex_state = 585}, - [1004] = {.lex_state = 51, .external_lex_state = 2}, - [1005] = {.lex_state = 51, .external_lex_state = 2}, - [1006] = {.lex_state = 33, .external_lex_state = 2}, - [1007] = {.lex_state = 585}, - [1008] = {.lex_state = 585}, - [1009] = {.lex_state = 585}, - [1010] = {.lex_state = 614}, - [1011] = {.lex_state = 585}, - [1012] = {.lex_state = 585}, - [1013] = {.lex_state = 614}, - [1014] = {.lex_state = 585}, - [1015] = {.lex_state = 585}, - [1016] = {.lex_state = 585}, - [1017] = {.lex_state = 585}, - [1018] = {.lex_state = 585}, - [1019] = {.lex_state = 585}, - [1020] = {.lex_state = 585}, - [1021] = {.lex_state = 585}, - [1022] = {.lex_state = 614}, - [1023] = {.lex_state = 585}, - [1024] = {.lex_state = 585}, - [1025] = {.lex_state = 585}, - [1026] = {.lex_state = 585}, - [1027] = {.lex_state = 585}, - [1028] = {.lex_state = 616}, - [1029] = {.lex_state = 585}, - [1030] = {.lex_state = 585}, - [1031] = {.lex_state = 614}, - [1032] = {.lex_state = 585}, - [1033] = {.lex_state = 585}, - [1034] = {.lex_state = 585}, - [1035] = {.lex_state = 585}, - [1036] = {.lex_state = 585}, - [1037] = {.lex_state = 585}, - [1038] = {.lex_state = 585}, - [1039] = {.lex_state = 585}, - [1040] = {.lex_state = 585}, - [1041] = {.lex_state = 585}, - [1042] = {.lex_state = 585}, - [1043] = {.lex_state = 585}, - [1044] = {.lex_state = 585}, - [1045] = {.lex_state = 585}, - [1046] = {.lex_state = 585}, - [1047] = {.lex_state = 585}, - [1048] = {.lex_state = 585}, - [1049] = {.lex_state = 585}, - [1050] = {.lex_state = 585}, - [1051] = {.lex_state = 585}, - [1052] = {.lex_state = 585}, - [1053] = {.lex_state = 585}, - [1054] = {.lex_state = 585}, - [1055] = {.lex_state = 585}, - [1056] = {.lex_state = 585}, - [1057] = {.lex_state = 585}, - [1058] = {.lex_state = 585}, - [1059] = {.lex_state = 631, .external_lex_state = 2}, - [1060] = {.lex_state = 585}, - [1061] = {.lex_state = 585}, - [1062] = {.lex_state = 585}, - [1063] = {.lex_state = 585}, - [1064] = {.lex_state = 585}, - [1065] = {.lex_state = 585}, - [1066] = {.lex_state = 616}, - [1067] = {.lex_state = 585}, - [1068] = {.lex_state = 585}, - [1069] = {.lex_state = 42, .external_lex_state = 2}, - [1070] = {.lex_state = 585}, - [1071] = {.lex_state = 585}, - [1072] = {.lex_state = 585}, - [1073] = {.lex_state = 585}, - [1074] = {.lex_state = 585}, - [1075] = {.lex_state = 585}, - [1076] = {.lex_state = 585}, - [1077] = {.lex_state = 585}, - [1078] = {.lex_state = 585}, - [1079] = {.lex_state = 585}, - [1080] = {.lex_state = 585}, - [1081] = {.lex_state = 42, .external_lex_state = 2}, - [1082] = {.lex_state = 585}, - [1083] = {.lex_state = 585}, - [1084] = {.lex_state = 585}, - [1085] = {.lex_state = 585}, - [1086] = {.lex_state = 585}, - [1087] = {.lex_state = 585}, - [1088] = {.lex_state = 585}, - [1089] = {.lex_state = 585}, - [1090] = {.lex_state = 585}, - [1091] = {.lex_state = 585}, - [1092] = {.lex_state = 585}, - [1093] = {.lex_state = 585}, - [1094] = {.lex_state = 585}, - [1095] = {.lex_state = 585}, - [1096] = {.lex_state = 585}, - [1097] = {.lex_state = 585}, - [1098] = {.lex_state = 585}, - [1099] = {.lex_state = 585}, - [1100] = {.lex_state = 585}, - [1101] = {.lex_state = 585}, - [1102] = {.lex_state = 585}, - [1103] = {.lex_state = 585}, - [1104] = {.lex_state = 585}, - [1105] = {.lex_state = 585}, - [1106] = {.lex_state = 585}, - [1107] = {.lex_state = 585}, - [1108] = {.lex_state = 585}, - [1109] = {.lex_state = 585}, - [1110] = {.lex_state = 585}, - [1111] = {.lex_state = 585}, - [1112] = {.lex_state = 585}, - [1113] = {.lex_state = 585}, - [1114] = {.lex_state = 585}, - [1115] = {.lex_state = 585}, - [1116] = {.lex_state = 585}, - [1117] = {.lex_state = 585}, - [1118] = {.lex_state = 585}, - [1119] = {.lex_state = 631, .external_lex_state = 2}, - [1120] = {.lex_state = 585}, - [1121] = {.lex_state = 48, .external_lex_state = 2}, - [1122] = {.lex_state = 585}, - [1123] = {.lex_state = 585}, - [1124] = {.lex_state = 585}, - [1125] = {.lex_state = 585}, - [1126] = {.lex_state = 585}, - [1127] = {.lex_state = 585}, - [1128] = {.lex_state = 585}, - [1129] = {.lex_state = 585}, - [1130] = {.lex_state = 585}, - [1131] = {.lex_state = 48, .external_lex_state = 2}, - [1132] = {.lex_state = 585}, - [1133] = {.lex_state = 585}, - [1134] = {.lex_state = 585}, - [1135] = {.lex_state = 585}, - [1136] = {.lex_state = 585}, - [1137] = {.lex_state = 631, .external_lex_state = 2}, - [1138] = {.lex_state = 585}, - [1139] = {.lex_state = 585}, - [1140] = {.lex_state = 51, .external_lex_state = 2}, - [1141] = {.lex_state = 585}, - [1142] = {.lex_state = 585}, - [1143] = {.lex_state = 585}, - [1144] = {.lex_state = 585}, - [1145] = {.lex_state = 585}, - [1146] = {.lex_state = 585}, - [1147] = {.lex_state = 585}, - [1148] = {.lex_state = 585}, - [1149] = {.lex_state = 585}, - [1150] = {.lex_state = 614}, - [1151] = {.lex_state = 585}, - [1152] = {.lex_state = 585}, - [1153] = {.lex_state = 585}, - [1154] = {.lex_state = 585}, - [1155] = {.lex_state = 585}, - [1156] = {.lex_state = 585}, - [1157] = {.lex_state = 585}, - [1158] = {.lex_state = 585}, - [1159] = {.lex_state = 51, .external_lex_state = 2}, - [1160] = {.lex_state = 585}, - [1161] = {.lex_state = 585}, - [1162] = {.lex_state = 585}, - [1163] = {.lex_state = 585}, - [1164] = {.lex_state = 51, .external_lex_state = 2}, - [1165] = {.lex_state = 585}, - [1166] = {.lex_state = 585}, - [1167] = {.lex_state = 585}, - [1168] = {.lex_state = 585}, - [1169] = {.lex_state = 585}, - [1170] = {.lex_state = 585}, - [1171] = {.lex_state = 585}, - [1172] = {.lex_state = 585}, - [1173] = {.lex_state = 585}, - [1174] = {.lex_state = 585}, - [1175] = {.lex_state = 585}, - [1176] = {.lex_state = 585}, - [1177] = {.lex_state = 585}, - [1178] = {.lex_state = 585}, - [1179] = {.lex_state = 585}, - [1180] = {.lex_state = 585}, - [1181] = {.lex_state = 585}, - [1182] = {.lex_state = 585}, - [1183] = {.lex_state = 585}, - [1184] = {.lex_state = 585}, - [1185] = {.lex_state = 585}, - [1186] = {.lex_state = 585}, - [1187] = {.lex_state = 585}, - [1188] = {.lex_state = 585}, - [1189] = {.lex_state = 585}, - [1190] = {.lex_state = 585}, - [1191] = {.lex_state = 585}, - [1192] = {.lex_state = 585}, - [1193] = {.lex_state = 585}, - [1194] = {.lex_state = 585}, - [1195] = {.lex_state = 585}, - [1196] = {.lex_state = 585}, - [1197] = {.lex_state = 585}, - [1198] = {.lex_state = 585}, - [1199] = {.lex_state = 585}, - [1200] = {.lex_state = 585}, - [1201] = {.lex_state = 585}, - [1202] = {.lex_state = 585}, - [1203] = {.lex_state = 616}, - [1204] = {.lex_state = 585}, - [1205] = {.lex_state = 585}, - [1206] = {.lex_state = 585}, - [1207] = {.lex_state = 585}, - [1208] = {.lex_state = 585}, - [1209] = {.lex_state = 585}, - [1210] = {.lex_state = 585}, - [1211] = {.lex_state = 585}, - [1212] = {.lex_state = 585}, - [1213] = {.lex_state = 616}, - [1214] = {.lex_state = 585}, - [1215] = {.lex_state = 585}, - [1216] = {.lex_state = 585}, - [1217] = {.lex_state = 585}, - [1218] = {.lex_state = 585}, - [1219] = {.lex_state = 585}, - [1220] = {.lex_state = 585}, - [1221] = {.lex_state = 585}, - [1222] = {.lex_state = 585}, - [1223] = {.lex_state = 585}, - [1224] = {.lex_state = 585}, - [1225] = {.lex_state = 585}, - [1226] = {.lex_state = 585}, - [1227] = {.lex_state = 616}, - [1228] = {.lex_state = 585}, - [1229] = {.lex_state = 585}, - [1230] = {.lex_state = 47, .external_lex_state = 2}, - [1231] = {.lex_state = 585}, - [1232] = {.lex_state = 585}, - [1233] = {.lex_state = 47, .external_lex_state = 2}, - [1234] = {.lex_state = 585}, - [1235] = {.lex_state = 585}, - [1236] = {.lex_state = 585}, - [1237] = {.lex_state = 585}, - [1238] = {.lex_state = 585}, - [1239] = {.lex_state = 585}, - [1240] = {.lex_state = 47, .external_lex_state = 2}, - [1241] = {.lex_state = 47, .external_lex_state = 2}, - [1242] = {.lex_state = 585}, - [1243] = {.lex_state = 585}, - [1244] = {.lex_state = 51, .external_lex_state = 2}, - [1245] = {.lex_state = 585}, - [1246] = {.lex_state = 585}, - [1247] = {.lex_state = 585}, - [1248] = {.lex_state = 616}, - [1249] = {.lex_state = 585}, - [1250] = {.lex_state = 585}, - [1251] = {.lex_state = 585}, - [1252] = {.lex_state = 616}, - [1253] = {.lex_state = 585}, - [1254] = {.lex_state = 585}, - [1255] = {.lex_state = 585}, - [1256] = {.lex_state = 585}, - [1257] = {.lex_state = 585}, - [1258] = {.lex_state = 585}, - [1259] = {.lex_state = 585}, - [1260] = {.lex_state = 585}, - [1261] = {.lex_state = 585}, - [1262] = {.lex_state = 585}, - [1263] = {.lex_state = 585}, - [1264] = {.lex_state = 585}, - [1265] = {.lex_state = 585}, - [1266] = {.lex_state = 585}, - [1267] = {.lex_state = 585}, - [1268] = {.lex_state = 585}, - [1269] = {.lex_state = 585}, - [1270] = {.lex_state = 51, .external_lex_state = 2}, - [1271] = {.lex_state = 51, .external_lex_state = 2}, - [1272] = {.lex_state = 51, .external_lex_state = 2}, - [1273] = {.lex_state = 585}, - [1274] = {.lex_state = 585}, - [1275] = {.lex_state = 585}, - [1276] = {.lex_state = 585}, - [1277] = {.lex_state = 585}, - [1278] = {.lex_state = 631, .external_lex_state = 2}, - [1279] = {.lex_state = 585}, - [1280] = {.lex_state = 46, .external_lex_state = 2}, - [1281] = {.lex_state = 46, .external_lex_state = 2}, - [1282] = {.lex_state = 585}, - [1283] = {.lex_state = 585}, - [1284] = {.lex_state = 585}, - [1285] = {.lex_state = 585}, - [1286] = {.lex_state = 585}, - [1287] = {.lex_state = 585}, - [1288] = {.lex_state = 585}, - [1289] = {.lex_state = 585}, - [1290] = {.lex_state = 631, .external_lex_state = 2}, - [1291] = {.lex_state = 585}, - [1292] = {.lex_state = 585}, - [1293] = {.lex_state = 585}, - [1294] = {.lex_state = 585}, - [1295] = {.lex_state = 585}, - [1296] = {.lex_state = 585}, - [1297] = {.lex_state = 585}, - [1298] = {.lex_state = 585}, - [1299] = {.lex_state = 585}, - [1300] = {.lex_state = 585}, - [1301] = {.lex_state = 46, .external_lex_state = 2}, - [1302] = {.lex_state = 585}, - [1303] = {.lex_state = 585}, - [1304] = {.lex_state = 585}, - [1305] = {.lex_state = 585}, - [1306] = {.lex_state = 585}, - [1307] = {.lex_state = 585}, - [1308] = {.lex_state = 46, .external_lex_state = 2}, - [1309] = {.lex_state = 585}, - [1310] = {.lex_state = 585}, - [1311] = {.lex_state = 585}, - [1312] = {.lex_state = 631, .external_lex_state = 2}, - [1313] = {.lex_state = 585}, - [1314] = {.lex_state = 585}, - [1315] = {.lex_state = 585}, - [1316] = {.lex_state = 585}, - [1317] = {.lex_state = 585}, - [1318] = {.lex_state = 585}, - [1319] = {.lex_state = 585}, - [1320] = {.lex_state = 585}, - [1321] = {.lex_state = 585}, - [1322] = {.lex_state = 585}, - [1323] = {.lex_state = 585}, - [1324] = {.lex_state = 585}, - [1325] = {.lex_state = 585}, - [1326] = {.lex_state = 585}, - [1327] = {.lex_state = 585}, - [1328] = {.lex_state = 585}, - [1329] = {.lex_state = 585}, - [1330] = {.lex_state = 585}, - [1331] = {.lex_state = 585}, - [1332] = {.lex_state = 585}, - [1333] = {.lex_state = 585}, - [1334] = {.lex_state = 585}, - [1335] = {.lex_state = 585}, - [1336] = {.lex_state = 585}, - [1337] = {.lex_state = 585}, - [1338] = {.lex_state = 585}, - [1339] = {.lex_state = 585}, - [1340] = {.lex_state = 585}, - [1341] = {.lex_state = 585}, - [1342] = {.lex_state = 585}, - [1343] = {.lex_state = 585}, - [1344] = {.lex_state = 585}, - [1345] = {.lex_state = 585}, - [1346] = {.lex_state = 585}, - [1347] = {.lex_state = 585}, - [1348] = {.lex_state = 585}, - [1349] = {.lex_state = 585}, - [1350] = {.lex_state = 585}, - [1351] = {.lex_state = 585}, - [1352] = {.lex_state = 585}, - [1353] = {.lex_state = 585}, - [1354] = {.lex_state = 31, .external_lex_state = 2}, - [1355] = {.lex_state = 31, .external_lex_state = 2}, - [1356] = {.lex_state = 31, .external_lex_state = 2}, - [1357] = {.lex_state = 47, .external_lex_state = 2}, - [1358] = {.lex_state = 631, .external_lex_state = 2}, - [1359] = {.lex_state = 31, .external_lex_state = 2}, - [1360] = {.lex_state = 173, .external_lex_state = 2}, - [1361] = {.lex_state = 631, .external_lex_state = 2}, - [1362] = {.lex_state = 631, .external_lex_state = 2}, - [1363] = {.lex_state = 31, .external_lex_state = 2}, - [1364] = {.lex_state = 174, .external_lex_state = 2}, - [1365] = {.lex_state = 631, .external_lex_state = 2}, - [1366] = {.lex_state = 639, .external_lex_state = 2}, - [1367] = {.lex_state = 631, .external_lex_state = 2}, - [1368] = {.lex_state = 46, .external_lex_state = 2}, - [1369] = {.lex_state = 46, .external_lex_state = 2}, - [1370] = {.lex_state = 174, .external_lex_state = 2}, - [1371] = {.lex_state = 46, .external_lex_state = 2}, - [1372] = {.lex_state = 631, .external_lex_state = 2}, - [1373] = {.lex_state = 631, .external_lex_state = 2}, - [1374] = {.lex_state = 631, .external_lex_state = 2}, - [1375] = {.lex_state = 631, .external_lex_state = 2}, - [1376] = {.lex_state = 147, .external_lex_state = 2}, - [1377] = {.lex_state = 631, .external_lex_state = 2}, - [1378] = {.lex_state = 147, .external_lex_state = 2}, - [1379] = {.lex_state = 631, .external_lex_state = 2}, - [1380] = {.lex_state = 631, .external_lex_state = 2}, - [1381] = {.lex_state = 47, .external_lex_state = 2}, - [1382] = {.lex_state = 47, .external_lex_state = 2}, - [1383] = {.lex_state = 147, .external_lex_state = 2}, - [1384] = {.lex_state = 631, .external_lex_state = 2}, - [1385] = {.lex_state = 631, .external_lex_state = 2}, - [1386] = {.lex_state = 47, .external_lex_state = 2}, - [1387] = {.lex_state = 631, .external_lex_state = 2}, - [1388] = {.lex_state = 631, .external_lex_state = 2}, - [1389] = {.lex_state = 631, .external_lex_state = 2}, - [1390] = {.lex_state = 147, .external_lex_state = 2}, - [1391] = {.lex_state = 147, .external_lex_state = 2}, - [1392] = {.lex_state = 31, .external_lex_state = 2}, - [1393] = {.lex_state = 589}, - [1394] = {.lex_state = 36, .external_lex_state = 2}, - [1395] = {.lex_state = 631, .external_lex_state = 2}, - [1396] = {.lex_state = 36, .external_lex_state = 2}, - [1397] = {.lex_state = 631, .external_lex_state = 2}, - [1398] = {.lex_state = 591}, - [1399] = {.lex_state = 35, .external_lex_state = 2}, - [1400] = {.lex_state = 35, .external_lex_state = 2}, - [1401] = {.lex_state = 589}, - [1402] = {.lex_state = 591}, - [1403] = {.lex_state = 593}, - [1404] = {.lex_state = 35, .external_lex_state = 2}, - [1405] = {.lex_state = 35, .external_lex_state = 2}, - [1406] = {.lex_state = 631, .external_lex_state = 2}, - [1407] = {.lex_state = 48, .external_lex_state = 2}, - [1408] = {.lex_state = 631, .external_lex_state = 2}, - [1409] = {.lex_state = 591}, - [1410] = {.lex_state = 591}, - [1411] = {.lex_state = 597}, - [1412] = {.lex_state = 36, .external_lex_state = 2}, - [1413] = {.lex_state = 35, .external_lex_state = 2}, - [1414] = {.lex_state = 601}, - [1415] = {.lex_state = 599}, - [1416] = {.lex_state = 593}, - [1417] = {.lex_state = 597}, - [1418] = {.lex_state = 599}, - [1419] = {.lex_state = 36, .external_lex_state = 2}, - [1420] = {.lex_state = 35, .external_lex_state = 2}, - [1421] = {.lex_state = 601}, - [1422] = {.lex_state = 595}, - [1423] = {.lex_state = 157, .external_lex_state = 2}, - [1424] = {.lex_state = 48, .external_lex_state = 2}, - [1425] = {.lex_state = 603}, - [1426] = {.lex_state = 48, .external_lex_state = 2}, - [1427] = {.lex_state = 157, .external_lex_state = 2}, - [1428] = {.lex_state = 599}, - [1429] = {.lex_state = 599}, - [1430] = {.lex_state = 601}, - [1431] = {.lex_state = 48, .external_lex_state = 2}, - [1432] = {.lex_state = 601}, - [1433] = {.lex_state = 601}, - [1434] = {.lex_state = 601}, - [1435] = {.lex_state = 605}, - [1436] = {.lex_state = 601}, - [1437] = {.lex_state = 605}, - [1438] = {.lex_state = 601}, - [1439] = {.lex_state = 595}, - [1440] = {.lex_state = 603}, - [1441] = {.lex_state = 605}, - [1442] = {.lex_state = 636, .external_lex_state = 2}, - [1443] = {.lex_state = 636, .external_lex_state = 2}, - [1444] = {.lex_state = 607}, - [1445] = {.lex_state = 607}, - [1446] = {.lex_state = 607}, - [1447] = {.lex_state = 607}, - [1448] = {.lex_state = 607}, - [1449] = {.lex_state = 605}, - [1450] = {.lex_state = 38, .external_lex_state = 2}, - [1451] = {.lex_state = 607}, - [1452] = {.lex_state = 636, .external_lex_state = 2}, - [1453] = {.lex_state = 607}, - [1454] = {.lex_state = 607}, - [1455] = {.lex_state = 38, .external_lex_state = 2}, - [1456] = {.lex_state = 636, .external_lex_state = 2}, - [1457] = {.lex_state = 607}, - [1458] = {.lex_state = 609}, - [1459] = {.lex_state = 38, .external_lex_state = 2}, - [1460] = {.lex_state = 585}, - [1461] = {.lex_state = 611}, - [1462] = {.lex_state = 607}, - [1463] = {.lex_state = 148, .external_lex_state = 2}, - [1464] = {.lex_state = 148, .external_lex_state = 2}, - [1465] = {.lex_state = 148, .external_lex_state = 2}, - [1466] = {.lex_state = 148, .external_lex_state = 2}, - [1467] = {.lex_state = 148, .external_lex_state = 2}, - [1468] = {.lex_state = 148, .external_lex_state = 2}, - [1469] = {.lex_state = 148, .external_lex_state = 2}, - [1470] = {.lex_state = 148, .external_lex_state = 2}, - [1471] = {.lex_state = 148, .external_lex_state = 2}, - [1472] = {.lex_state = 148, .external_lex_state = 2}, - [1473] = {.lex_state = 148, .external_lex_state = 2}, - [1474] = {.lex_state = 611}, - [1475] = {.lex_state = 613}, - [1476] = {.lex_state = 613}, - [1477] = {.lex_state = 585}, - [1478] = {.lex_state = 148, .external_lex_state = 2}, - [1479] = {.lex_state = 609}, - [1480] = {.lex_state = 148, .external_lex_state = 2}, - [1481] = {.lex_state = 148, .external_lex_state = 2}, - [1482] = {.lex_state = 615}, - [1483] = {.lex_state = 615}, - [1484] = {.lex_state = 615}, - [1485] = {.lex_state = 615}, - [1486] = {.lex_state = 613}, - [1487] = {.lex_state = 615}, - [1488] = {.lex_state = 613}, - [1489] = {.lex_state = 615}, - [1490] = {.lex_state = 615}, - [1491] = {.lex_state = 615}, - [1492] = {.lex_state = 615}, - [1493] = {.lex_state = 615}, - [1494] = {.lex_state = 615}, - [1495] = {.lex_state = 615}, - [1496] = {.lex_state = 148, .external_lex_state = 2}, - [1497] = {.lex_state = 615}, - [1498] = {.lex_state = 148, .external_lex_state = 2}, - [1499] = {.lex_state = 41, .external_lex_state = 2}, - [1500] = {.lex_state = 38, .external_lex_state = 2}, - [1501] = {.lex_state = 38, .external_lex_state = 2}, - [1502] = {.lex_state = 617}, - [1503] = {.lex_state = 615}, - [1504] = {.lex_state = 615}, - [1505] = {.lex_state = 38, .external_lex_state = 2}, - [1506] = {.lex_state = 38, .external_lex_state = 2}, - [1507] = {.lex_state = 585}, - [1508] = {.lex_state = 178, .external_lex_state = 2}, - [1509] = {.lex_state = 38, .external_lex_state = 2}, - [1510] = {.lex_state = 38, .external_lex_state = 2}, - [1511] = {.lex_state = 615}, - [1512] = {.lex_state = 615}, - [1513] = {.lex_state = 615}, - [1514] = {.lex_state = 615}, - [1515] = {.lex_state = 615}, - [1516] = {.lex_state = 615}, - [1517] = {.lex_state = 617}, - [1518] = {.lex_state = 617}, - [1519] = {.lex_state = 615}, + [896] = {.lex_state = 584}, + [897] = {.lex_state = 584}, + [898] = {.lex_state = 584}, + [899] = {.lex_state = 584}, + [900] = {.lex_state = 584}, + [901] = {.lex_state = 584}, + [902] = {.lex_state = 584}, + [903] = {.lex_state = 584}, + [904] = {.lex_state = 584}, + [905] = {.lex_state = 584}, + [906] = {.lex_state = 584}, + [907] = {.lex_state = 42, .external_lex_state = 2}, + [908] = {.lex_state = 42, .external_lex_state = 2}, + [909] = {.lex_state = 584}, + [910] = {.lex_state = 42, .external_lex_state = 2}, + [911] = {.lex_state = 584}, + [912] = {.lex_state = 42, .external_lex_state = 2}, + [913] = {.lex_state = 584}, + [914] = {.lex_state = 42, .external_lex_state = 2}, + [915] = {.lex_state = 584}, + [916] = {.lex_state = 584}, + [917] = {.lex_state = 584}, + [918] = {.lex_state = 607}, + [919] = {.lex_state = 609}, + [920] = {.lex_state = 613}, + [921] = {.lex_state = 42, .external_lex_state = 2}, + [922] = {.lex_state = 584}, + [923] = {.lex_state = 42, .external_lex_state = 2}, + [924] = {.lex_state = 584}, + [925] = {.lex_state = 631, .external_lex_state = 2}, + [926] = {.lex_state = 584}, + [927] = {.lex_state = 613}, + [928] = {.lex_state = 611}, + [929] = {.lex_state = 613}, + [930] = {.lex_state = 613}, + [931] = {.lex_state = 613}, + [932] = {.lex_state = 611}, + [933] = {.lex_state = 613}, + [934] = {.lex_state = 613}, + [935] = {.lex_state = 613}, + [936] = {.lex_state = 613}, + [937] = {.lex_state = 613}, + [938] = {.lex_state = 613}, + [939] = {.lex_state = 613}, + [940] = {.lex_state = 613}, + [941] = {.lex_state = 584}, + [942] = {.lex_state = 584}, + [943] = {.lex_state = 584}, + [944] = {.lex_state = 584}, + [945] = {.lex_state = 584}, + [946] = {.lex_state = 584}, + [947] = {.lex_state = 584}, + [948] = {.lex_state = 584}, + [949] = {.lex_state = 584}, + [950] = {.lex_state = 584}, + [951] = {.lex_state = 584}, + [952] = {.lex_state = 631, .external_lex_state = 2}, + [953] = {.lex_state = 584}, + [954] = {.lex_state = 584}, + [955] = {.lex_state = 584}, + [956] = {.lex_state = 584}, + [957] = {.lex_state = 584}, + [958] = {.lex_state = 584}, + [959] = {.lex_state = 584}, + [960] = {.lex_state = 51, .external_lex_state = 2}, + [961] = {.lex_state = 584}, + [962] = {.lex_state = 584}, + [963] = {.lex_state = 584}, + [964] = {.lex_state = 584}, + [965] = {.lex_state = 584}, + [966] = {.lex_state = 584}, + [967] = {.lex_state = 584}, + [968] = {.lex_state = 584}, + [969] = {.lex_state = 584}, + [970] = {.lex_state = 584}, + [971] = {.lex_state = 584}, + [972] = {.lex_state = 584}, + [973] = {.lex_state = 584}, + [974] = {.lex_state = 584}, + [975] = {.lex_state = 584}, + [976] = {.lex_state = 584}, + [977] = {.lex_state = 51, .external_lex_state = 2}, + [978] = {.lex_state = 584}, + [979] = {.lex_state = 584}, + [980] = {.lex_state = 584}, + [981] = {.lex_state = 584}, + [982] = {.lex_state = 584}, + [983] = {.lex_state = 631, .external_lex_state = 2}, + [984] = {.lex_state = 631, .external_lex_state = 2}, + [985] = {.lex_state = 584}, + [986] = {.lex_state = 51, .external_lex_state = 2}, + [987] = {.lex_state = 584}, + [988] = {.lex_state = 584}, + [989] = {.lex_state = 584}, + [990] = {.lex_state = 584}, + [991] = {.lex_state = 584}, + [992] = {.lex_state = 584}, + [993] = {.lex_state = 584}, + [994] = {.lex_state = 584}, + [995] = {.lex_state = 584}, + [996] = {.lex_state = 584}, + [997] = {.lex_state = 584}, + [998] = {.lex_state = 584}, + [999] = {.lex_state = 584}, + [1000] = {.lex_state = 584}, + [1001] = {.lex_state = 584}, + [1002] = {.lex_state = 584}, + [1003] = {.lex_state = 584}, + [1004] = {.lex_state = 584}, + [1005] = {.lex_state = 584}, + [1006] = {.lex_state = 584}, + [1007] = {.lex_state = 584}, + [1008] = {.lex_state = 584}, + [1009] = {.lex_state = 584}, + [1010] = {.lex_state = 584}, + [1011] = {.lex_state = 584}, + [1012] = {.lex_state = 584}, + [1013] = {.lex_state = 584}, + [1014] = {.lex_state = 584}, + [1015] = {.lex_state = 584}, + [1016] = {.lex_state = 584}, + [1017] = {.lex_state = 584}, + [1018] = {.lex_state = 584}, + [1019] = {.lex_state = 584}, + [1020] = {.lex_state = 584}, + [1021] = {.lex_state = 48, .external_lex_state = 2}, + [1022] = {.lex_state = 584}, + [1023] = {.lex_state = 584}, + [1024] = {.lex_state = 584}, + [1025] = {.lex_state = 584}, + [1026] = {.lex_state = 584}, + [1027] = {.lex_state = 48, .external_lex_state = 2}, + [1028] = {.lex_state = 584}, + [1029] = {.lex_state = 584}, + [1030] = {.lex_state = 584}, + [1031] = {.lex_state = 584}, + [1032] = {.lex_state = 584}, + [1033] = {.lex_state = 584}, + [1034] = {.lex_state = 584}, + [1035] = {.lex_state = 584}, + [1036] = {.lex_state = 584}, + [1037] = {.lex_state = 615}, + [1038] = {.lex_state = 615}, + [1039] = {.lex_state = 615}, + [1040] = {.lex_state = 584}, + [1041] = {.lex_state = 584}, + [1042] = {.lex_state = 584}, + [1043] = {.lex_state = 584}, + [1044] = {.lex_state = 630, .external_lex_state = 2}, + [1045] = {.lex_state = 613}, + [1046] = {.lex_state = 584}, + [1047] = {.lex_state = 584}, + [1048] = {.lex_state = 584}, + [1049] = {.lex_state = 584}, + [1050] = {.lex_state = 607}, + [1051] = {.lex_state = 584}, + [1052] = {.lex_state = 584}, + [1053] = {.lex_state = 584}, + [1054] = {.lex_state = 584}, + [1055] = {.lex_state = 584}, + [1056] = {.lex_state = 615}, + [1057] = {.lex_state = 584}, + [1058] = {.lex_state = 584}, + [1059] = {.lex_state = 584}, + [1060] = {.lex_state = 584}, + [1061] = {.lex_state = 584}, + [1062] = {.lex_state = 51, .external_lex_state = 2}, + [1063] = {.lex_state = 584}, + [1064] = {.lex_state = 51, .external_lex_state = 2}, + [1065] = {.lex_state = 584}, + [1066] = {.lex_state = 584}, + [1067] = {.lex_state = 584}, + [1068] = {.lex_state = 33, .external_lex_state = 2}, + [1069] = {.lex_state = 584}, + [1070] = {.lex_state = 42, .external_lex_state = 2}, + [1071] = {.lex_state = 42, .external_lex_state = 2}, + [1072] = {.lex_state = 42, .external_lex_state = 2}, + [1073] = {.lex_state = 613}, + [1074] = {.lex_state = 584}, + [1075] = {.lex_state = 584}, + [1076] = {.lex_state = 584}, + [1077] = {.lex_state = 613}, + [1078] = {.lex_state = 613}, + [1079] = {.lex_state = 584}, + [1080] = {.lex_state = 613}, + [1081] = {.lex_state = 584}, + [1082] = {.lex_state = 584}, + [1083] = {.lex_state = 584}, + [1084] = {.lex_state = 584}, + [1085] = {.lex_state = 584}, + [1086] = {.lex_state = 584}, + [1087] = {.lex_state = 584}, + [1088] = {.lex_state = 584}, + [1089] = {.lex_state = 584}, + [1090] = {.lex_state = 630, .external_lex_state = 2}, + [1091] = {.lex_state = 584}, + [1092] = {.lex_state = 584}, + [1093] = {.lex_state = 584}, + [1094] = {.lex_state = 584}, + [1095] = {.lex_state = 584}, + [1096] = {.lex_state = 584}, + [1097] = {.lex_state = 584}, + [1098] = {.lex_state = 584}, + [1099] = {.lex_state = 42, .external_lex_state = 2}, + [1100] = {.lex_state = 42, .external_lex_state = 2}, + [1101] = {.lex_state = 42, .external_lex_state = 2}, + [1102] = {.lex_state = 584}, + [1103] = {.lex_state = 584}, + [1104] = {.lex_state = 584}, + [1105] = {.lex_state = 584}, + [1106] = {.lex_state = 584}, + [1107] = {.lex_state = 584}, + [1108] = {.lex_state = 584}, + [1109] = {.lex_state = 584}, + [1110] = {.lex_state = 584}, + [1111] = {.lex_state = 584}, + [1112] = {.lex_state = 584}, + [1113] = {.lex_state = 584}, + [1114] = {.lex_state = 584}, + [1115] = {.lex_state = 584}, + [1116] = {.lex_state = 584}, + [1117] = {.lex_state = 584}, + [1118] = {.lex_state = 584}, + [1119] = {.lex_state = 584}, + [1120] = {.lex_state = 584}, + [1121] = {.lex_state = 584}, + [1122] = {.lex_state = 584}, + [1123] = {.lex_state = 584}, + [1124] = {.lex_state = 584}, + [1125] = {.lex_state = 613}, + [1126] = {.lex_state = 613}, + [1127] = {.lex_state = 613}, + [1128] = {.lex_state = 584}, + [1129] = {.lex_state = 584}, + [1130] = {.lex_state = 584}, + [1131] = {.lex_state = 584}, + [1132] = {.lex_state = 584}, + [1133] = {.lex_state = 584}, + [1134] = {.lex_state = 584}, + [1135] = {.lex_state = 613}, + [1136] = {.lex_state = 613}, + [1137] = {.lex_state = 613}, + [1138] = {.lex_state = 584}, + [1139] = {.lex_state = 584}, + [1140] = {.lex_state = 584}, + [1141] = {.lex_state = 48, .external_lex_state = 2}, + [1142] = {.lex_state = 613}, + [1143] = {.lex_state = 584}, + [1144] = {.lex_state = 613}, + [1145] = {.lex_state = 584}, + [1146] = {.lex_state = 584}, + [1147] = {.lex_state = 613}, + [1148] = {.lex_state = 584}, + [1149] = {.lex_state = 584}, + [1150] = {.lex_state = 630, .external_lex_state = 2}, + [1151] = {.lex_state = 584}, + [1152] = {.lex_state = 584}, + [1153] = {.lex_state = 51, .external_lex_state = 2}, + [1154] = {.lex_state = 51, .external_lex_state = 2}, + [1155] = {.lex_state = 584}, + [1156] = {.lex_state = 584}, + [1157] = {.lex_state = 584}, + [1158] = {.lex_state = 584}, + [1159] = {.lex_state = 584}, + [1160] = {.lex_state = 584}, + [1161] = {.lex_state = 584}, + [1162] = {.lex_state = 584}, + [1163] = {.lex_state = 584}, + [1164] = {.lex_state = 47, .external_lex_state = 2}, + [1165] = {.lex_state = 47, .external_lex_state = 2}, + [1166] = {.lex_state = 47, .external_lex_state = 2}, + [1167] = {.lex_state = 584}, + [1168] = {.lex_state = 584}, + [1169] = {.lex_state = 584}, + [1170] = {.lex_state = 584}, + [1171] = {.lex_state = 584}, + [1172] = {.lex_state = 584}, + [1173] = {.lex_state = 584}, + [1174] = {.lex_state = 584}, + [1175] = {.lex_state = 584}, + [1176] = {.lex_state = 584}, + [1177] = {.lex_state = 584}, + [1178] = {.lex_state = 584}, + [1179] = {.lex_state = 584}, + [1180] = {.lex_state = 584}, + [1181] = {.lex_state = 584}, + [1182] = {.lex_state = 47, .external_lex_state = 2}, + [1183] = {.lex_state = 584}, + [1184] = {.lex_state = 584}, + [1185] = {.lex_state = 584}, + [1186] = {.lex_state = 584}, + [1187] = {.lex_state = 584}, + [1188] = {.lex_state = 584}, + [1189] = {.lex_state = 584}, + [1190] = {.lex_state = 584}, + [1191] = {.lex_state = 584}, + [1192] = {.lex_state = 584}, + [1193] = {.lex_state = 584}, + [1194] = {.lex_state = 584}, + [1195] = {.lex_state = 584}, + [1196] = {.lex_state = 584}, + [1197] = {.lex_state = 584}, + [1198] = {.lex_state = 584}, + [1199] = {.lex_state = 584}, + [1200] = {.lex_state = 51, .external_lex_state = 2}, + [1201] = {.lex_state = 615}, + [1202] = {.lex_state = 615}, + [1203] = {.lex_state = 584}, + [1204] = {.lex_state = 615}, + [1205] = {.lex_state = 615}, + [1206] = {.lex_state = 584}, + [1207] = {.lex_state = 615}, + [1208] = {.lex_state = 584}, + [1209] = {.lex_state = 584}, + [1210] = {.lex_state = 584}, + [1211] = {.lex_state = 584}, + [1212] = {.lex_state = 584}, + [1213] = {.lex_state = 584}, + [1214] = {.lex_state = 584}, + [1215] = {.lex_state = 584}, + [1216] = {.lex_state = 584}, + [1217] = {.lex_state = 584}, + [1218] = {.lex_state = 584}, + [1219] = {.lex_state = 584}, + [1220] = {.lex_state = 584}, + [1221] = {.lex_state = 584}, + [1222] = {.lex_state = 584}, + [1223] = {.lex_state = 584}, + [1224] = {.lex_state = 584}, + [1225] = {.lex_state = 584}, + [1226] = {.lex_state = 584}, + [1227] = {.lex_state = 584}, + [1228] = {.lex_state = 51, .external_lex_state = 2}, + [1229] = {.lex_state = 584}, + [1230] = {.lex_state = 584}, + [1231] = {.lex_state = 584}, + [1232] = {.lex_state = 51, .external_lex_state = 2}, + [1233] = {.lex_state = 584}, + [1234] = {.lex_state = 584}, + [1235] = {.lex_state = 584}, + [1236] = {.lex_state = 584}, + [1237] = {.lex_state = 613}, + [1238] = {.lex_state = 584}, + [1239] = {.lex_state = 584}, + [1240] = {.lex_state = 584}, + [1241] = {.lex_state = 584}, + [1242] = {.lex_state = 584}, + [1243] = {.lex_state = 584}, + [1244] = {.lex_state = 584}, + [1245] = {.lex_state = 584}, + [1246] = {.lex_state = 584}, + [1247] = {.lex_state = 584}, + [1248] = {.lex_state = 584}, + [1249] = {.lex_state = 584}, + [1250] = {.lex_state = 584}, + [1251] = {.lex_state = 584}, + [1252] = {.lex_state = 584}, + [1253] = {.lex_state = 584}, + [1254] = {.lex_state = 584}, + [1255] = {.lex_state = 584}, + [1256] = {.lex_state = 584}, + [1257] = {.lex_state = 584}, + [1258] = {.lex_state = 584}, + [1259] = {.lex_state = 584}, + [1260] = {.lex_state = 584}, + [1261] = {.lex_state = 584}, + [1262] = {.lex_state = 584}, + [1263] = {.lex_state = 584}, + [1264] = {.lex_state = 584}, + [1265] = {.lex_state = 584}, + [1266] = {.lex_state = 584}, + [1267] = {.lex_state = 584}, + [1268] = {.lex_state = 584}, + [1269] = {.lex_state = 584}, + [1270] = {.lex_state = 584}, + [1271] = {.lex_state = 584}, + [1272] = {.lex_state = 584}, + [1273] = {.lex_state = 584}, + [1274] = {.lex_state = 584}, + [1275] = {.lex_state = 584}, + [1276] = {.lex_state = 584}, + [1277] = {.lex_state = 584}, + [1278] = {.lex_state = 584}, + [1279] = {.lex_state = 584}, + [1280] = {.lex_state = 584}, + [1281] = {.lex_state = 584}, + [1282] = {.lex_state = 584}, + [1283] = {.lex_state = 584}, + [1284] = {.lex_state = 584}, + [1285] = {.lex_state = 584}, + [1286] = {.lex_state = 51, .external_lex_state = 2}, + [1287] = {.lex_state = 51, .external_lex_state = 2}, + [1288] = {.lex_state = 584}, + [1289] = {.lex_state = 584}, + [1290] = {.lex_state = 584}, + [1291] = {.lex_state = 584}, + [1292] = {.lex_state = 584}, + [1293] = {.lex_state = 46, .external_lex_state = 2}, + [1294] = {.lex_state = 584}, + [1295] = {.lex_state = 584}, + [1296] = {.lex_state = 630, .external_lex_state = 2}, + [1297] = {.lex_state = 584}, + [1298] = {.lex_state = 584}, + [1299] = {.lex_state = 584}, + [1300] = {.lex_state = 584}, + [1301] = {.lex_state = 584}, + [1302] = {.lex_state = 584}, + [1303] = {.lex_state = 584}, + [1304] = {.lex_state = 584}, + [1305] = {.lex_state = 584}, + [1306] = {.lex_state = 584}, + [1307] = {.lex_state = 584}, + [1308] = {.lex_state = 584}, + [1309] = {.lex_state = 584}, + [1310] = {.lex_state = 584}, + [1311] = {.lex_state = 584}, + [1312] = {.lex_state = 584}, + [1313] = {.lex_state = 584}, + [1314] = {.lex_state = 630, .external_lex_state = 2}, + [1315] = {.lex_state = 584}, + [1316] = {.lex_state = 584}, + [1317] = {.lex_state = 584}, + [1318] = {.lex_state = 584}, + [1319] = {.lex_state = 584}, + [1320] = {.lex_state = 584}, + [1321] = {.lex_state = 584}, + [1322] = {.lex_state = 584}, + [1323] = {.lex_state = 584}, + [1324] = {.lex_state = 584}, + [1325] = {.lex_state = 584}, + [1326] = {.lex_state = 584}, + [1327] = {.lex_state = 584}, + [1328] = {.lex_state = 584}, + [1329] = {.lex_state = 584}, + [1330] = {.lex_state = 584}, + [1331] = {.lex_state = 584}, + [1332] = {.lex_state = 584}, + [1333] = {.lex_state = 584}, + [1334] = {.lex_state = 584}, + [1335] = {.lex_state = 46, .external_lex_state = 2}, + [1336] = {.lex_state = 584}, + [1337] = {.lex_state = 584}, + [1338] = {.lex_state = 584}, + [1339] = {.lex_state = 584}, + [1340] = {.lex_state = 584}, + [1341] = {.lex_state = 46, .external_lex_state = 2}, + [1342] = {.lex_state = 584}, + [1343] = {.lex_state = 584}, + [1344] = {.lex_state = 584}, + [1345] = {.lex_state = 584}, + [1346] = {.lex_state = 584}, + [1347] = {.lex_state = 584}, + [1348] = {.lex_state = 584}, + [1349] = {.lex_state = 584}, + [1350] = {.lex_state = 584}, + [1351] = {.lex_state = 584}, + [1352] = {.lex_state = 584}, + [1353] = {.lex_state = 46, .external_lex_state = 2}, + [1354] = {.lex_state = 584}, + [1355] = {.lex_state = 584}, + [1356] = {.lex_state = 584}, + [1357] = {.lex_state = 584}, + [1358] = {.lex_state = 584}, + [1359] = {.lex_state = 584}, + [1360] = {.lex_state = 630, .external_lex_state = 2}, + [1361] = {.lex_state = 584}, + [1362] = {.lex_state = 584}, + [1363] = {.lex_state = 584}, + [1364] = {.lex_state = 584}, + [1365] = {.lex_state = 584}, + [1366] = {.lex_state = 31, .external_lex_state = 2}, + [1367] = {.lex_state = 31, .external_lex_state = 2}, + [1368] = {.lex_state = 31, .external_lex_state = 2}, + [1369] = {.lex_state = 47, .external_lex_state = 2}, + [1370] = {.lex_state = 31, .external_lex_state = 2}, + [1371] = {.lex_state = 172, .external_lex_state = 2}, + [1372] = {.lex_state = 630, .external_lex_state = 2}, + [1373] = {.lex_state = 630, .external_lex_state = 2}, + [1374] = {.lex_state = 46, .external_lex_state = 2}, + [1375] = {.lex_state = 173, .external_lex_state = 2}, + [1376] = {.lex_state = 630, .external_lex_state = 2}, + [1377] = {.lex_state = 630, .external_lex_state = 2}, + [1378] = {.lex_state = 630, .external_lex_state = 2}, + [1379] = {.lex_state = 46, .external_lex_state = 2}, + [1380] = {.lex_state = 630, .external_lex_state = 2}, + [1381] = {.lex_state = 173, .external_lex_state = 2}, + [1382] = {.lex_state = 630, .external_lex_state = 2}, + [1383] = {.lex_state = 638, .external_lex_state = 2}, + [1384] = {.lex_state = 630, .external_lex_state = 2}, + [1385] = {.lex_state = 31, .external_lex_state = 2}, + [1386] = {.lex_state = 46, .external_lex_state = 2}, + [1387] = {.lex_state = 630, .external_lex_state = 2}, + [1388] = {.lex_state = 146, .external_lex_state = 2}, + [1389] = {.lex_state = 630, .external_lex_state = 2}, + [1390] = {.lex_state = 630, .external_lex_state = 2}, + [1391] = {.lex_state = 146, .external_lex_state = 2}, + [1392] = {.lex_state = 630, .external_lex_state = 2}, + [1393] = {.lex_state = 146, .external_lex_state = 2}, + [1394] = {.lex_state = 146, .external_lex_state = 2}, + [1395] = {.lex_state = 630, .external_lex_state = 2}, + [1396] = {.lex_state = 630, .external_lex_state = 2}, + [1397] = {.lex_state = 31, .external_lex_state = 2}, + [1398] = {.lex_state = 47, .external_lex_state = 2}, + [1399] = {.lex_state = 47, .external_lex_state = 2}, + [1400] = {.lex_state = 47, .external_lex_state = 2}, + [1401] = {.lex_state = 146, .external_lex_state = 2}, + [1402] = {.lex_state = 630, .external_lex_state = 2}, + [1403] = {.lex_state = 630, .external_lex_state = 2}, + [1404] = {.lex_state = 630, .external_lex_state = 2}, + [1405] = {.lex_state = 36, .external_lex_state = 2}, + [1406] = {.lex_state = 588}, + [1407] = {.lex_state = 630, .external_lex_state = 2}, + [1408] = {.lex_state = 36, .external_lex_state = 2}, + [1409] = {.lex_state = 630, .external_lex_state = 2}, + [1410] = {.lex_state = 588}, + [1411] = {.lex_state = 590}, + [1412] = {.lex_state = 35, .external_lex_state = 2}, + [1413] = {.lex_state = 590}, + [1414] = {.lex_state = 35, .external_lex_state = 2}, + [1415] = {.lex_state = 48, .external_lex_state = 2}, + [1416] = {.lex_state = 630, .external_lex_state = 2}, + [1417] = {.lex_state = 35, .external_lex_state = 2}, + [1418] = {.lex_state = 36, .external_lex_state = 2}, + [1419] = {.lex_state = 596}, + [1420] = {.lex_state = 590}, + [1421] = {.lex_state = 630, .external_lex_state = 2}, + [1422] = {.lex_state = 35, .external_lex_state = 2}, + [1423] = {.lex_state = 590}, + [1424] = {.lex_state = 35, .external_lex_state = 2}, + [1425] = {.lex_state = 592}, + [1426] = {.lex_state = 596}, + [1427] = {.lex_state = 600}, + [1428] = {.lex_state = 592}, + [1429] = {.lex_state = 598}, + [1430] = {.lex_state = 598}, + [1431] = {.lex_state = 35, .external_lex_state = 2}, + [1432] = {.lex_state = 36, .external_lex_state = 2}, + [1433] = {.lex_state = 156, .external_lex_state = 2}, + [1434] = {.lex_state = 594}, + [1435] = {.lex_state = 598}, + [1436] = {.lex_state = 598}, + [1437] = {.lex_state = 602}, + [1438] = {.lex_state = 600}, + [1439] = {.lex_state = 48, .external_lex_state = 2}, + [1440] = {.lex_state = 600}, + [1441] = {.lex_state = 600}, + [1442] = {.lex_state = 156, .external_lex_state = 2}, + [1443] = {.lex_state = 48, .external_lex_state = 2}, + [1444] = {.lex_state = 48, .external_lex_state = 2}, + [1445] = {.lex_state = 600}, + [1446] = {.lex_state = 604}, + [1447] = {.lex_state = 600}, + [1448] = {.lex_state = 594}, + [1449] = {.lex_state = 600}, + [1450] = {.lex_state = 600}, + [1451] = {.lex_state = 604}, + [1452] = {.lex_state = 602}, + [1453] = {.lex_state = 635, .external_lex_state = 2}, + [1454] = {.lex_state = 606}, + [1455] = {.lex_state = 606}, + [1456] = {.lex_state = 606}, + [1457] = {.lex_state = 606}, + [1458] = {.lex_state = 606}, + [1459] = {.lex_state = 604}, + [1460] = {.lex_state = 635, .external_lex_state = 2}, + [1461] = {.lex_state = 604}, + [1462] = {.lex_state = 635, .external_lex_state = 2}, + [1463] = {.lex_state = 38, .external_lex_state = 2}, + [1464] = {.lex_state = 584}, + [1465] = {.lex_state = 38, .external_lex_state = 2}, + [1466] = {.lex_state = 606}, + [1467] = {.lex_state = 608}, + [1468] = {.lex_state = 606}, + [1469] = {.lex_state = 38, .external_lex_state = 2}, + [1470] = {.lex_state = 606}, + [1471] = {.lex_state = 610}, + [1472] = {.lex_state = 606}, + [1473] = {.lex_state = 635, .external_lex_state = 2}, + [1474] = {.lex_state = 606}, + [1475] = {.lex_state = 147, .external_lex_state = 2}, + [1476] = {.lex_state = 147, .external_lex_state = 2}, + [1477] = {.lex_state = 584}, + [1478] = {.lex_state = 147, .external_lex_state = 2}, + [1479] = {.lex_state = 147, .external_lex_state = 2}, + [1480] = {.lex_state = 610}, + [1481] = {.lex_state = 147, .external_lex_state = 2}, + [1482] = {.lex_state = 608}, + [1483] = {.lex_state = 147, .external_lex_state = 2}, + [1484] = {.lex_state = 147, .external_lex_state = 2}, + [1485] = {.lex_state = 612}, + [1486] = {.lex_state = 147, .external_lex_state = 2}, + [1487] = {.lex_state = 147, .external_lex_state = 2}, + [1488] = {.lex_state = 147, .external_lex_state = 2}, + [1489] = {.lex_state = 612}, + [1490] = {.lex_state = 147, .external_lex_state = 2}, + [1491] = {.lex_state = 147, .external_lex_state = 2}, + [1492] = {.lex_state = 147, .external_lex_state = 2}, + [1493] = {.lex_state = 614}, + [1494] = {.lex_state = 614}, + [1495] = {.lex_state = 614}, + [1496] = {.lex_state = 614}, + [1497] = {.lex_state = 612}, + [1498] = {.lex_state = 41, .external_lex_state = 2}, + [1499] = {.lex_state = 614}, + [1500] = {.lex_state = 147, .external_lex_state = 2}, + [1501] = {.lex_state = 612}, + [1502] = {.lex_state = 614}, + [1503] = {.lex_state = 614}, + [1504] = {.lex_state = 147, .external_lex_state = 2}, + [1505] = {.lex_state = 614}, + [1506] = {.lex_state = 614}, + [1507] = {.lex_state = 614}, + [1508] = {.lex_state = 147, .external_lex_state = 2}, + [1509] = {.lex_state = 614}, + [1510] = {.lex_state = 614}, + [1511] = {.lex_state = 614}, + [1512] = {.lex_state = 616}, + [1513] = {.lex_state = 614}, + [1514] = {.lex_state = 614}, + [1515] = {.lex_state = 614}, + [1516] = {.lex_state = 38, .external_lex_state = 2}, + [1517] = {.lex_state = 38, .external_lex_state = 2}, + [1518] = {.lex_state = 38, .external_lex_state = 2}, + [1519] = {.lex_state = 38, .external_lex_state = 2}, [1520] = {.lex_state = 38, .external_lex_state = 2}, - [1521] = {.lex_state = 38, .external_lex_state = 2}, - [1522] = {.lex_state = 38, .external_lex_state = 2}, - [1523] = {.lex_state = 615}, - [1524] = {.lex_state = 615}, - [1525] = {.lex_state = 615}, + [1521] = {.lex_state = 41, .external_lex_state = 2}, + [1522] = {.lex_state = 616}, + [1523] = {.lex_state = 616}, + [1524] = {.lex_state = 614}, + [1525] = {.lex_state = 614}, [1526] = {.lex_state = 38, .external_lex_state = 2}, - [1527] = {.lex_state = 615}, - [1528] = {.lex_state = 41, .external_lex_state = 2}, - [1529] = {.lex_state = 615}, - [1530] = {.lex_state = 585}, - [1531] = {.lex_state = 585}, - [1532] = {.lex_state = 585}, - [1533] = {.lex_state = 91}, - [1534] = {.lex_state = 91}, - [1535] = {.lex_state = 8}, - [1536] = {.lex_state = 91}, - [1537] = {.lex_state = 91}, - [1538] = {.lex_state = 91}, - [1539] = {.lex_state = 91}, - [1540] = {.lex_state = 91}, - [1541] = {.lex_state = 585}, - [1542] = {.lex_state = 585}, - [1543] = {.lex_state = 585}, - [1544] = {.lex_state = 585}, - [1545] = {.lex_state = 585}, - [1546] = {.lex_state = 585}, - [1547] = {.lex_state = 585}, - [1548] = {.lex_state = 585}, - [1549] = {.lex_state = 585}, - [1550] = {.lex_state = 585}, - [1551] = {.lex_state = 585}, - [1552] = {.lex_state = 585}, - [1553] = {.lex_state = 585}, - [1554] = {.lex_state = 585}, - [1555] = {.lex_state = 585}, - [1556] = {.lex_state = 585}, - [1557] = {.lex_state = 585}, - [1558] = {.lex_state = 585}, - [1559] = {.lex_state = 585}, - [1560] = {.lex_state = 585}, - [1561] = {.lex_state = 585}, - [1562] = {.lex_state = 585}, - [1563] = {.lex_state = 585}, - [1564] = {.lex_state = 585}, - [1565] = {.lex_state = 91}, - [1566] = {.lex_state = 585}, - [1567] = {.lex_state = 91}, - [1568] = {.lex_state = 585}, - [1569] = {.lex_state = 585}, - [1570] = {.lex_state = 585}, - [1571] = {.lex_state = 585}, - [1572] = {.lex_state = 585}, - [1573] = {.lex_state = 91}, - [1574] = {.lex_state = 585}, - [1575] = {.lex_state = 585}, - [1576] = {.lex_state = 91}, - [1577] = {.lex_state = 585}, - [1578] = {.lex_state = 585}, - [1579] = {.lex_state = 585}, - [1580] = {.lex_state = 585}, - [1581] = {.lex_state = 585}, - [1582] = {.lex_state = 585}, - [1583] = {.lex_state = 585}, - [1584] = {.lex_state = 585}, - [1585] = {.lex_state = 585}, - [1586] = {.lex_state = 585}, - [1587] = {.lex_state = 585}, - [1588] = {.lex_state = 585}, - [1589] = {.lex_state = 585}, - [1590] = {.lex_state = 585}, - [1591] = {.lex_state = 585}, - [1592] = {.lex_state = 585}, - [1593] = {.lex_state = 585}, - [1594] = {.lex_state = 585}, - [1595] = {.lex_state = 585}, - [1596] = {.lex_state = 585}, - [1597] = {.lex_state = 585}, - [1598] = {.lex_state = 585}, - [1599] = {.lex_state = 585}, - [1600] = {.lex_state = 585}, - [1601] = {.lex_state = 585}, - [1602] = {.lex_state = 585}, - [1603] = {.lex_state = 585}, - [1604] = {.lex_state = 585}, - [1605] = {.lex_state = 585}, - [1606] = {.lex_state = 585}, - [1607] = {.lex_state = 585}, - [1608] = {.lex_state = 91}, - [1609] = {.lex_state = 585}, - [1610] = {.lex_state = 585}, - [1611] = {.lex_state = 585}, - [1612] = {.lex_state = 585}, - [1613] = {.lex_state = 585}, - [1614] = {.lex_state = 585}, - [1615] = {.lex_state = 585}, - [1616] = {.lex_state = 585}, - [1617] = {.lex_state = 91}, - [1618] = {.lex_state = 91}, - [1619] = {.lex_state = 585}, - [1620] = {.lex_state = 585}, - [1621] = {.lex_state = 585}, - [1622] = {.lex_state = 585}, - [1623] = {.lex_state = 585}, - [1624] = {.lex_state = 585}, - [1625] = {.lex_state = 585}, - [1626] = {.lex_state = 585}, - [1627] = {.lex_state = 585}, - [1628] = {.lex_state = 585}, - [1629] = {.lex_state = 585}, - [1630] = {.lex_state = 585}, - [1631] = {.lex_state = 91}, - [1632] = {.lex_state = 617}, - [1633] = {.lex_state = 617}, - [1634] = {.lex_state = 91}, - [1635] = {.lex_state = 615}, - [1636] = {.lex_state = 91}, - [1637] = {.lex_state = 91}, - [1638] = {.lex_state = 91}, - [1639] = {.lex_state = 91}, - [1640] = {.lex_state = 91}, - [1641] = {.lex_state = 91}, - [1642] = {.lex_state = 91}, - [1643] = {.lex_state = 91}, - [1644] = {.lex_state = 91}, - [1645] = {.lex_state = 91}, - [1646] = {.lex_state = 91}, - [1647] = {.lex_state = 91}, - [1648] = {.lex_state = 585}, - [1649] = {.lex_state = 585}, - [1650] = {.lex_state = 585}, - [1651] = {.lex_state = 585}, - [1652] = {.lex_state = 585}, - [1653] = {.lex_state = 585}, - [1654] = {.lex_state = 585}, - [1655] = {.lex_state = 585}, - [1656] = {.lex_state = 585}, - [1657] = {.lex_state = 585}, - [1658] = {.lex_state = 585}, - [1659] = {.lex_state = 585}, - [1660] = {.lex_state = 91}, - [1661] = {.lex_state = 178, .external_lex_state = 2}, - [1662] = {.lex_state = 91}, - [1663] = {.lex_state = 91}, - [1664] = {.lex_state = 585}, - [1665] = {.lex_state = 91}, - [1666] = {.lex_state = 617}, - [1667] = {.lex_state = 585}, - [1668] = {.lex_state = 585}, - [1669] = {.lex_state = 585}, - [1670] = {.lex_state = 91}, - [1671] = {.lex_state = 91}, - [1672] = {.lex_state = 585}, - [1673] = {.lex_state = 585}, - [1674] = {.lex_state = 91}, - [1675] = {.lex_state = 585}, - [1676] = {.lex_state = 91}, - [1677] = {.lex_state = 91}, - [1678] = {.lex_state = 585}, - [1679] = {.lex_state = 585}, - [1680] = {.lex_state = 91}, - [1681] = {.lex_state = 91}, - [1682] = {.lex_state = 91}, - [1683] = {.lex_state = 585}, - [1684] = {.lex_state = 91}, - [1685] = {.lex_state = 178, .external_lex_state = 2}, - [1686] = {.lex_state = 585}, - [1687] = {.lex_state = 91}, - [1688] = {.lex_state = 91}, - [1689] = {.lex_state = 91}, - [1690] = {.lex_state = 91}, - [1691] = {.lex_state = 91}, - [1692] = {.lex_state = 91}, - [1693] = {.lex_state = 91}, - [1694] = {.lex_state = 38, .external_lex_state = 2}, - [1695] = {.lex_state = 91}, - [1696] = {.lex_state = 38, .external_lex_state = 2}, - [1697] = {.lex_state = 9}, - [1698] = {.lex_state = 131}, - [1699] = {.lex_state = 9}, - [1700] = {.lex_state = 38, .external_lex_state = 2}, - [1701] = {.lex_state = 38, .external_lex_state = 2}, - [1702] = {.lex_state = 38, .external_lex_state = 2}, - [1703] = {.lex_state = 38, .external_lex_state = 2}, - [1704] = {.lex_state = 585}, - [1705] = {.lex_state = 585}, - [1706] = {.lex_state = 585}, - [1707] = {.lex_state = 585}, - [1708] = {.lex_state = 585}, - [1709] = {.lex_state = 585}, - [1710] = {.lex_state = 585}, - [1711] = {.lex_state = 585}, - [1712] = {.lex_state = 585}, - [1713] = {.lex_state = 585}, - [1714] = {.lex_state = 38, .external_lex_state = 2}, - [1715] = {.lex_state = 585}, - [1716] = {.lex_state = 585}, - [1717] = {.lex_state = 38, .external_lex_state = 2}, - [1718] = {.lex_state = 38, .external_lex_state = 2}, - [1719] = {.lex_state = 38, .external_lex_state = 2}, - [1720] = {.lex_state = 38, .external_lex_state = 2}, - [1721] = {.lex_state = 132}, - [1722] = {.lex_state = 638, .external_lex_state = 2}, - [1723] = {.lex_state = 10}, - [1724] = {.lex_state = 177, .external_lex_state = 2}, - [1725] = {.lex_state = 177, .external_lex_state = 2}, - [1726] = {.lex_state = 131}, - [1727] = {.lex_state = 177, .external_lex_state = 2}, - [1728] = {.lex_state = 577, .external_lex_state = 2}, - [1729] = {.lex_state = 638, .external_lex_state = 2}, - [1730] = {.lex_state = 12}, - [1731] = {.lex_state = 638, .external_lex_state = 2}, - [1732] = {.lex_state = 131}, - [1733] = {.lex_state = 132}, - [1734] = {.lex_state = 91}, + [1527] = {.lex_state = 38, .external_lex_state = 2}, + [1528] = {.lex_state = 614}, + [1529] = {.lex_state = 614}, + [1530] = {.lex_state = 584}, + [1531] = {.lex_state = 38, .external_lex_state = 2}, + [1532] = {.lex_state = 614}, + [1533] = {.lex_state = 38, .external_lex_state = 2}, + [1534] = {.lex_state = 614}, + [1535] = {.lex_state = 38, .external_lex_state = 2}, + [1536] = {.lex_state = 614}, + [1537] = {.lex_state = 614}, + [1538] = {.lex_state = 614}, + [1539] = {.lex_state = 614}, + [1540] = {.lex_state = 614}, + [1541] = {.lex_state = 177, .external_lex_state = 2}, + [1542] = {.lex_state = 584}, + [1543] = {.lex_state = 90}, + [1544] = {.lex_state = 614}, + [1545] = {.lex_state = 90}, + [1546] = {.lex_state = 90}, + [1547] = {.lex_state = 90}, + [1548] = {.lex_state = 584}, + [1549] = {.lex_state = 616}, + [1550] = {.lex_state = 616}, + [1551] = {.lex_state = 90}, + [1552] = {.lex_state = 90}, + [1553] = {.lex_state = 616}, + [1554] = {.lex_state = 90}, + [1555] = {.lex_state = 90}, + [1556] = {.lex_state = 90}, + [1557] = {.lex_state = 90}, + [1558] = {.lex_state = 177, .external_lex_state = 2}, + [1559] = {.lex_state = 177, .external_lex_state = 2}, + [1560] = {.lex_state = 90}, + [1561] = {.lex_state = 90}, + [1562] = {.lex_state = 8}, + [1563] = {.lex_state = 90}, + [1564] = {.lex_state = 90}, + [1565] = {.lex_state = 90}, + [1566] = {.lex_state = 90}, + [1567] = {.lex_state = 90}, + [1568] = {.lex_state = 90}, + [1569] = {.lex_state = 90}, + [1570] = {.lex_state = 90}, + [1571] = {.lex_state = 90}, + [1572] = {.lex_state = 90}, + [1573] = {.lex_state = 90}, + [1574] = {.lex_state = 90}, + [1575] = {.lex_state = 90}, + [1576] = {.lex_state = 90}, + [1577] = {.lex_state = 90}, + [1578] = {.lex_state = 90}, + [1579] = {.lex_state = 90}, + [1580] = {.lex_state = 90}, + [1581] = {.lex_state = 90}, + [1582] = {.lex_state = 90}, + [1583] = {.lex_state = 90}, + [1584] = {.lex_state = 90}, + [1585] = {.lex_state = 90}, + [1586] = {.lex_state = 90}, + [1587] = {.lex_state = 90}, + [1588] = {.lex_state = 90}, + [1589] = {.lex_state = 90}, + [1590] = {.lex_state = 90}, + [1591] = {.lex_state = 584}, + [1592] = {.lex_state = 584}, + [1593] = {.lex_state = 584}, + [1594] = {.lex_state = 584}, + [1595] = {.lex_state = 584}, + [1596] = {.lex_state = 584}, + [1597] = {.lex_state = 584}, + [1598] = {.lex_state = 584}, + [1599] = {.lex_state = 584}, + [1600] = {.lex_state = 584}, + [1601] = {.lex_state = 584}, + [1602] = {.lex_state = 584}, + [1603] = {.lex_state = 584}, + [1604] = {.lex_state = 584}, + [1605] = {.lex_state = 584}, + [1606] = {.lex_state = 584}, + [1607] = {.lex_state = 584}, + [1608] = {.lex_state = 584}, + [1609] = {.lex_state = 584}, + [1610] = {.lex_state = 584}, + [1611] = {.lex_state = 584}, + [1612] = {.lex_state = 584}, + [1613] = {.lex_state = 584}, + [1614] = {.lex_state = 584}, + [1615] = {.lex_state = 584}, + [1616] = {.lex_state = 584}, + [1617] = {.lex_state = 584}, + [1618] = {.lex_state = 584}, + [1619] = {.lex_state = 584}, + [1620] = {.lex_state = 584}, + [1621] = {.lex_state = 584}, + [1622] = {.lex_state = 584}, + [1623] = {.lex_state = 584}, + [1624] = {.lex_state = 584}, + [1625] = {.lex_state = 584}, + [1626] = {.lex_state = 584}, + [1627] = {.lex_state = 584}, + [1628] = {.lex_state = 584}, + [1629] = {.lex_state = 584}, + [1630] = {.lex_state = 90}, + [1631] = {.lex_state = 584}, + [1632] = {.lex_state = 584}, + [1633] = {.lex_state = 584}, + [1634] = {.lex_state = 584}, + [1635] = {.lex_state = 90}, + [1636] = {.lex_state = 584}, + [1637] = {.lex_state = 584}, + [1638] = {.lex_state = 584}, + [1639] = {.lex_state = 90}, + [1640] = {.lex_state = 584}, + [1641] = {.lex_state = 584}, + [1642] = {.lex_state = 584}, + [1643] = {.lex_state = 584}, + [1644] = {.lex_state = 584}, + [1645] = {.lex_state = 584}, + [1646] = {.lex_state = 584}, + [1647] = {.lex_state = 584}, + [1648] = {.lex_state = 584}, + [1649] = {.lex_state = 584}, + [1650] = {.lex_state = 584}, + [1651] = {.lex_state = 584}, + [1652] = {.lex_state = 584}, + [1653] = {.lex_state = 584}, + [1654] = {.lex_state = 584}, + [1655] = {.lex_state = 584}, + [1656] = {.lex_state = 584}, + [1657] = {.lex_state = 584}, + [1658] = {.lex_state = 584}, + [1659] = {.lex_state = 584}, + [1660] = {.lex_state = 584}, + [1661] = {.lex_state = 584}, + [1662] = {.lex_state = 584}, + [1663] = {.lex_state = 584}, + [1664] = {.lex_state = 584}, + [1665] = {.lex_state = 584}, + [1666] = {.lex_state = 584}, + [1667] = {.lex_state = 584}, + [1668] = {.lex_state = 584}, + [1669] = {.lex_state = 584}, + [1670] = {.lex_state = 584}, + [1671] = {.lex_state = 584}, + [1672] = {.lex_state = 584}, + [1673] = {.lex_state = 584}, + [1674] = {.lex_state = 584}, + [1675] = {.lex_state = 584}, + [1676] = {.lex_state = 584}, + [1677] = {.lex_state = 584}, + [1678] = {.lex_state = 584}, + [1679] = {.lex_state = 584}, + [1680] = {.lex_state = 584}, + [1681] = {.lex_state = 584}, + [1682] = {.lex_state = 584}, + [1683] = {.lex_state = 584}, + [1684] = {.lex_state = 584}, + [1685] = {.lex_state = 584}, + [1686] = {.lex_state = 584}, + [1687] = {.lex_state = 584}, + [1688] = {.lex_state = 90}, + [1689] = {.lex_state = 90}, + [1690] = {.lex_state = 90}, + [1691] = {.lex_state = 90}, + [1692] = {.lex_state = 584}, + [1693] = {.lex_state = 584}, + [1694] = {.lex_state = 584}, + [1695] = {.lex_state = 584}, + [1696] = {.lex_state = 584}, + [1697] = {.lex_state = 584}, + [1698] = {.lex_state = 584}, + [1699] = {.lex_state = 584}, + [1700] = {.lex_state = 584}, + [1701] = {.lex_state = 584}, + [1702] = {.lex_state = 584}, + [1703] = {.lex_state = 584}, + [1704] = {.lex_state = 90}, + [1705] = {.lex_state = 584}, + [1706] = {.lex_state = 38, .external_lex_state = 2}, + [1707] = {.lex_state = 38, .external_lex_state = 2}, + [1708] = {.lex_state = 38, .external_lex_state = 2}, + [1709] = {.lex_state = 90}, + [1710] = {.lex_state = 38, .external_lex_state = 2}, + [1711] = {.lex_state = 38, .external_lex_state = 2}, + [1712] = {.lex_state = 38, .external_lex_state = 2}, + [1713] = {.lex_state = 584}, + [1714] = {.lex_state = 584}, + [1715] = {.lex_state = 584}, + [1716] = {.lex_state = 584}, + [1717] = {.lex_state = 584}, + [1718] = {.lex_state = 584}, + [1719] = {.lex_state = 584}, + [1720] = {.lex_state = 584}, + [1721] = {.lex_state = 584}, + [1722] = {.lex_state = 584}, + [1723] = {.lex_state = 584}, + [1724] = {.lex_state = 584}, + [1725] = {.lex_state = 130}, + [1726] = {.lex_state = 9}, + [1727] = {.lex_state = 38, .external_lex_state = 2}, + [1728] = {.lex_state = 9}, + [1729] = {.lex_state = 38, .external_lex_state = 2}, + [1730] = {.lex_state = 38, .external_lex_state = 2}, + [1731] = {.lex_state = 38, .external_lex_state = 2}, + [1732] = {.lex_state = 38, .external_lex_state = 2}, + [1733] = {.lex_state = 130}, + [1734] = {.lex_state = 176, .external_lex_state = 2}, [1735] = {.lex_state = 131}, - [1736] = {.lex_state = 13}, - [1737] = {.lex_state = 131}, - [1738] = {.lex_state = 577, .external_lex_state = 2}, - [1739] = {.lex_state = 638, .external_lex_state = 2}, - [1740] = {.lex_state = 577, .external_lex_state = 2}, - [1741] = {.lex_state = 131}, - [1742] = {.lex_state = 577, .external_lex_state = 2}, - [1743] = {.lex_state = 177, .external_lex_state = 2}, - [1744] = {.lex_state = 177, .external_lex_state = 2}, - [1745] = {.lex_state = 177, .external_lex_state = 2}, - [1746] = {.lex_state = 177, .external_lex_state = 2}, - [1747] = {.lex_state = 131}, - [1748] = {.lex_state = 131}, - [1749] = {.lex_state = 131}, - [1750] = {.lex_state = 577, .external_lex_state = 2}, - [1751] = {.lex_state = 577, .external_lex_state = 2}, - [1752] = {.lex_state = 577, .external_lex_state = 2}, - [1753] = {.lex_state = 166, .external_lex_state = 2}, - [1754] = {.lex_state = 177, .external_lex_state = 2}, - [1755] = {.lex_state = 638, .external_lex_state = 2}, - [1756] = {.lex_state = 638, .external_lex_state = 2}, - [1757] = {.lex_state = 13}, - [1758] = {.lex_state = 169, .external_lex_state = 2}, - [1759] = {.lex_state = 38, .external_lex_state = 2}, - [1760] = {.lex_state = 38, .external_lex_state = 2}, - [1761] = {.lex_state = 14}, - [1762] = {.lex_state = 638, .external_lex_state = 2}, - [1763] = {.lex_state = 577, .external_lex_state = 2}, - [1764] = {.lex_state = 91}, - [1765] = {.lex_state = 177, .external_lex_state = 2}, - [1766] = {.lex_state = 91}, - [1767] = {.lex_state = 177, .external_lex_state = 2}, - [1768] = {.lex_state = 177, .external_lex_state = 2}, - [1769] = {.lex_state = 91}, - [1770] = {.lex_state = 177, .external_lex_state = 2}, - [1771] = {.lex_state = 38, .external_lex_state = 2}, - [1772] = {.lex_state = 133}, - [1773] = {.lex_state = 177, .external_lex_state = 2}, - [1774] = {.lex_state = 135}, - [1775] = {.lex_state = 638, .external_lex_state = 2}, - [1776] = {.lex_state = 91}, - [1777] = {.lex_state = 38, .external_lex_state = 2}, - [1778] = {.lex_state = 15}, - [1779] = {.lex_state = 91}, - [1780] = {.lex_state = 91}, - [1781] = {.lex_state = 91}, - [1782] = {.lex_state = 638, .external_lex_state = 2}, - [1783] = {.lex_state = 38, .external_lex_state = 2}, - [1784] = {.lex_state = 638, .external_lex_state = 2}, - [1785] = {.lex_state = 137}, - [1786] = {.lex_state = 91}, - [1787] = {.lex_state = 38, .external_lex_state = 2}, - [1788] = {.lex_state = 38, .external_lex_state = 2}, - [1789] = {.lex_state = 11}, - [1790] = {.lex_state = 14}, - [1791] = {.lex_state = 577, .external_lex_state = 2}, - [1792] = {.lex_state = 577, .external_lex_state = 2}, - [1793] = {.lex_state = 577, .external_lex_state = 2}, - [1794] = {.lex_state = 577, .external_lex_state = 2}, - [1795] = {.lex_state = 577, .external_lex_state = 2}, - [1796] = {.lex_state = 38, .external_lex_state = 2}, + [1736] = {.lex_state = 131}, + [1737] = {.lex_state = 12}, + [1738] = {.lex_state = 176, .external_lex_state = 2}, + [1739] = {.lex_state = 637, .external_lex_state = 2}, + [1740] = {.lex_state = 130}, + [1741] = {.lex_state = 637, .external_lex_state = 2}, + [1742] = {.lex_state = 637, .external_lex_state = 2}, + [1743] = {.lex_state = 176, .external_lex_state = 2}, + [1744] = {.lex_state = 10}, + [1745] = {.lex_state = 576, .external_lex_state = 2}, + [1746] = {.lex_state = 637, .external_lex_state = 2}, + [1747] = {.lex_state = 13}, + [1748] = {.lex_state = 90}, + [1749] = {.lex_state = 130}, + [1750] = {.lex_state = 134}, + [1751] = {.lex_state = 637, .external_lex_state = 2}, + [1752] = {.lex_state = 576, .external_lex_state = 2}, + [1753] = {.lex_state = 176, .external_lex_state = 2}, + [1754] = {.lex_state = 13}, + [1755] = {.lex_state = 576, .external_lex_state = 2}, + [1756] = {.lex_state = 132}, + [1757] = {.lex_state = 576, .external_lex_state = 2}, + [1758] = {.lex_state = 637, .external_lex_state = 2}, + [1759] = {.lex_state = 576, .external_lex_state = 2}, + [1760] = {.lex_state = 576, .external_lex_state = 2}, + [1761] = {.lex_state = 165, .external_lex_state = 2}, + [1762] = {.lex_state = 576, .external_lex_state = 2}, + [1763] = {.lex_state = 130}, + [1764] = {.lex_state = 168, .external_lex_state = 2}, + [1765] = {.lex_state = 38, .external_lex_state = 2}, + [1766] = {.lex_state = 38, .external_lex_state = 2}, + [1767] = {.lex_state = 176, .external_lex_state = 2}, + [1768] = {.lex_state = 176, .external_lex_state = 2}, + [1769] = {.lex_state = 14}, + [1770] = {.lex_state = 176, .external_lex_state = 2}, + [1771] = {.lex_state = 130}, + [1772] = {.lex_state = 176, .external_lex_state = 2}, + [1773] = {.lex_state = 90}, + [1774] = {.lex_state = 176, .external_lex_state = 2}, + [1775] = {.lex_state = 637, .external_lex_state = 2}, + [1776] = {.lex_state = 130}, + [1777] = {.lex_state = 130}, + [1778] = {.lex_state = 130}, + [1779] = {.lex_state = 176, .external_lex_state = 2}, + [1780] = {.lex_state = 90}, + [1781] = {.lex_state = 176, .external_lex_state = 2}, + [1782] = {.lex_state = 90}, + [1783] = {.lex_state = 637, .external_lex_state = 2}, + [1784] = {.lex_state = 176, .external_lex_state = 2}, + [1785] = {.lex_state = 90}, + [1786] = {.lex_state = 38, .external_lex_state = 2}, + [1787] = {.lex_state = 176, .external_lex_state = 2}, + [1788] = {.lex_state = 576, .external_lex_state = 2}, + [1789] = {.lex_state = 38, .external_lex_state = 2}, + [1790] = {.lex_state = 90}, + [1791] = {.lex_state = 11}, + [1792] = {.lex_state = 637, .external_lex_state = 2}, + [1793] = {.lex_state = 637, .external_lex_state = 2}, + [1794] = {.lex_state = 38, .external_lex_state = 2}, + [1795] = {.lex_state = 90}, + [1796] = {.lex_state = 167, .external_lex_state = 2}, [1797] = {.lex_state = 38, .external_lex_state = 2}, - [1798] = {.lex_state = 637, .external_lex_state = 2}, - [1799] = {.lex_state = 38, .external_lex_state = 2}, - [1800] = {.lex_state = 91}, - [1801] = {.lex_state = 38, .external_lex_state = 2}, - [1802] = {.lex_state = 38, .external_lex_state = 2}, - [1803] = {.lex_state = 577, .external_lex_state = 2}, + [1798] = {.lex_state = 90}, + [1799] = {.lex_state = 136}, + [1800] = {.lex_state = 135}, + [1801] = {.lex_state = 576, .external_lex_state = 2}, + [1802] = {.lex_state = 576, .external_lex_state = 2}, + [1803] = {.lex_state = 38, .external_lex_state = 2}, [1804] = {.lex_state = 14}, - [1805] = {.lex_state = 578, .external_lex_state = 2}, + [1805] = {.lex_state = 15}, [1806] = {.lex_state = 38, .external_lex_state = 2}, - [1807] = {.lex_state = 136}, - [1808] = {.lex_state = 168, .external_lex_state = 2}, - [1809] = {.lex_state = 136}, - [1810] = {.lex_state = 168, .external_lex_state = 2}, - [1811] = {.lex_state = 38, .external_lex_state = 2}, - [1812] = {.lex_state = 91}, - [1813] = {.lex_state = 14}, + [1807] = {.lex_state = 38, .external_lex_state = 2}, + [1808] = {.lex_state = 577, .external_lex_state = 2}, + [1809] = {.lex_state = 90}, + [1810] = {.lex_state = 636, .external_lex_state = 2}, + [1811] = {.lex_state = 576, .external_lex_state = 2}, + [1812] = {.lex_state = 576, .external_lex_state = 2}, + [1813] = {.lex_state = 576, .external_lex_state = 2}, [1814] = {.lex_state = 38, .external_lex_state = 2}, - [1815] = {.lex_state = 91}, - [1816] = {.lex_state = 170, .external_lex_state = 2}, - [1817] = {.lex_state = 91}, - [1818] = {.lex_state = 91}, - [1819] = {.lex_state = 91}, - [1820] = {.lex_state = 578, .external_lex_state = 2}, - [1821] = {.lex_state = 91}, - [1822] = {.lex_state = 137}, - [1823] = {.lex_state = 91}, - [1824] = {.lex_state = 137}, - [1825] = {.lex_state = 91}, - [1826] = {.lex_state = 137}, - [1827] = {.lex_state = 91}, - [1828] = {.lex_state = 16}, - [1829] = {.lex_state = 16}, - [1830] = {.lex_state = 138}, - [1831] = {.lex_state = 91}, - [1832] = {.lex_state = 134}, - [1833] = {.lex_state = 91}, - [1834] = {.lex_state = 638, .external_lex_state = 2}, - [1835] = {.lex_state = 170, .external_lex_state = 2}, - [1836] = {.lex_state = 91}, - [1837] = {.lex_state = 91}, - [1838] = {.lex_state = 91}, - [1839] = {.lex_state = 637, .external_lex_state = 2}, - [1840] = {.lex_state = 638, .external_lex_state = 2}, - [1841] = {.lex_state = 170, .external_lex_state = 2}, - [1842] = {.lex_state = 91}, - [1843] = {.lex_state = 91}, - [1844] = {.lex_state = 91}, - [1845] = {.lex_state = 91}, - [1846] = {.lex_state = 91}, - [1847] = {.lex_state = 638, .external_lex_state = 2}, - [1848] = {.lex_state = 91}, - [1849] = {.lex_state = 91}, - [1850] = {.lex_state = 91}, - [1851] = {.lex_state = 91}, - [1852] = {.lex_state = 91}, - [1853] = {.lex_state = 91}, - [1854] = {.lex_state = 170, .external_lex_state = 2}, - [1855] = {.lex_state = 91}, - [1856] = {.lex_state = 91}, - [1857] = {.lex_state = 91}, - [1858] = {.lex_state = 91}, - [1859] = {.lex_state = 91}, - [1860] = {.lex_state = 91}, - [1861] = {.lex_state = 91}, - [1862] = {.lex_state = 91}, - [1863] = {.lex_state = 91}, - [1864] = {.lex_state = 636, .external_lex_state = 2}, - [1865] = {.lex_state = 638, .external_lex_state = 2}, - [1866] = {.lex_state = 17}, - [1867] = {.lex_state = 17}, - [1868] = {.lex_state = 17}, - [1869] = {.lex_state = 139}, - [1870] = {.lex_state = 139}, - [1871] = {.lex_state = 91}, - [1872] = {.lex_state = 636, .external_lex_state = 2}, - [1873] = {.lex_state = 91}, - [1874] = {.lex_state = 91}, - [1875] = {.lex_state = 17}, - [1876] = {.lex_state = 17}, - [1877] = {.lex_state = 636, .external_lex_state = 2}, - [1878] = {.lex_state = 636, .external_lex_state = 2}, - [1879] = {.lex_state = 636, .external_lex_state = 2}, - [1880] = {.lex_state = 636, .external_lex_state = 2}, - [1881] = {.lex_state = 636, .external_lex_state = 2}, - [1882] = {.lex_state = 636, .external_lex_state = 2}, - [1883] = {.lex_state = 636, .external_lex_state = 2}, - [1884] = {.lex_state = 636, .external_lex_state = 2}, - [1885] = {.lex_state = 636, .external_lex_state = 2}, - [1886] = {.lex_state = 585}, - [1887] = {.lex_state = 636, .external_lex_state = 2}, - [1888] = {.lex_state = 636, .external_lex_state = 2}, - [1889] = {.lex_state = 636, .external_lex_state = 2}, - [1890] = {.lex_state = 636, .external_lex_state = 2}, - [1891] = {.lex_state = 638, .external_lex_state = 2}, - [1892] = {.lex_state = 636, .external_lex_state = 2}, - [1893] = {.lex_state = 636, .external_lex_state = 2}, - [1894] = {.lex_state = 638, .external_lex_state = 2}, - [1895] = {.lex_state = 636, .external_lex_state = 2}, - [1896] = {.lex_state = 636, .external_lex_state = 2}, - [1897] = {.lex_state = 91}, - [1898] = {.lex_state = 636, .external_lex_state = 2}, - [1899] = {.lex_state = 636, .external_lex_state = 2}, - [1900] = {.lex_state = 162, .external_lex_state = 2}, - [1901] = {.lex_state = 162, .external_lex_state = 2}, - [1902] = {.lex_state = 175, .external_lex_state = 2}, - [1903] = {.lex_state = 140}, - [1904] = {.lex_state = 1205}, - [1905] = {.lex_state = 636, .external_lex_state = 2}, - [1906] = {.lex_state = 636, .external_lex_state = 2}, - [1907] = {.lex_state = 140}, - [1908] = {.lex_state = 162, .external_lex_state = 2}, - [1909] = {.lex_state = 91}, - [1910] = {.lex_state = 636, .external_lex_state = 2}, - [1911] = {.lex_state = 140}, - [1912] = {.lex_state = 636, .external_lex_state = 2}, - [1913] = {.lex_state = 267}, - [1914] = {.lex_state = 162, .external_lex_state = 2}, - [1915] = {.lex_state = 636, .external_lex_state = 2}, - [1916] = {.lex_state = 636, .external_lex_state = 2}, - [1917] = {.lex_state = 636, .external_lex_state = 2}, - [1918] = {.lex_state = 140}, - [1919] = {.lex_state = 126, .external_lex_state = 2}, - [1920] = {.lex_state = 162, .external_lex_state = 2}, - [1921] = {.lex_state = 585}, - [1922] = {.lex_state = 636, .external_lex_state = 2}, - [1923] = {.lex_state = 19}, - [1924] = {.lex_state = 636, .external_lex_state = 2}, - [1925] = {.lex_state = 162, .external_lex_state = 2}, - [1926] = {.lex_state = 636, .external_lex_state = 2}, - [1927] = {.lex_state = 636, .external_lex_state = 2}, - [1928] = {.lex_state = 1203}, - [1929] = {.lex_state = 636, .external_lex_state = 2}, - [1930] = {.lex_state = 162, .external_lex_state = 2}, - [1931] = {.lex_state = 140}, - [1932] = {.lex_state = 91}, - [1933] = {.lex_state = 18}, - [1934] = {.lex_state = 636, .external_lex_state = 2}, - [1935] = {.lex_state = 91}, - [1936] = {.lex_state = 126, .external_lex_state = 2}, - [1937] = {.lex_state = 164, .external_lex_state = 2}, - [1938] = {.lex_state = 126, .external_lex_state = 2}, - [1939] = {.lex_state = 20}, - [1940] = {.lex_state = 126, .external_lex_state = 2}, - [1941] = {.lex_state = 162, .external_lex_state = 2}, - [1942] = {.lex_state = 142}, - [1943] = {.lex_state = 1206}, - [1944] = {.lex_state = 176, .external_lex_state = 2}, - [1945] = {.lex_state = 1208}, - [1946] = {.lex_state = 126, .external_lex_state = 2}, - [1947] = {.lex_state = 1206}, - [1948] = {.lex_state = 126, .external_lex_state = 2}, - [1949] = {.lex_state = 267}, - [1950] = {.lex_state = 162, .external_lex_state = 2}, - [1951] = {.lex_state = 20}, - [1952] = {.lex_state = 176, .external_lex_state = 2}, - [1953] = {.lex_state = 141}, - [1954] = {.lex_state = 1204}, - [1955] = {.lex_state = 126, .external_lex_state = 2}, - [1956] = {.lex_state = 585}, - [1957] = {.lex_state = 21}, - [1958] = {.lex_state = 267}, - [1959] = {.lex_state = 267}, - [1960] = {.lex_state = 267}, - [1961] = {.lex_state = 1207}, - [1962] = {.lex_state = 38, .external_lex_state = 2}, - [1963] = {.lex_state = 21}, - [1964] = {.lex_state = 267}, - [1965] = {.lex_state = 21}, - [1966] = {.lex_state = 1209}, - [1967] = {.lex_state = 585}, - [1968] = {.lex_state = 159, .external_lex_state = 2}, + [1815] = {.lex_state = 90}, + [1816] = {.lex_state = 38, .external_lex_state = 2}, + [1817] = {.lex_state = 14}, + [1818] = {.lex_state = 38, .external_lex_state = 2}, + [1819] = {.lex_state = 135}, + [1820] = {.lex_state = 167, .external_lex_state = 2}, + [1821] = {.lex_state = 90}, + [1822] = {.lex_state = 38, .external_lex_state = 2}, + [1823] = {.lex_state = 38, .external_lex_state = 2}, + [1824] = {.lex_state = 38, .external_lex_state = 2}, + [1825] = {.lex_state = 14}, + [1826] = {.lex_state = 576, .external_lex_state = 2}, + [1827] = {.lex_state = 90}, + [1828] = {.lex_state = 90}, + [1829] = {.lex_state = 90}, + [1830] = {.lex_state = 169, .external_lex_state = 2}, + [1831] = {.lex_state = 90}, + [1832] = {.lex_state = 90}, + [1833] = {.lex_state = 90}, + [1834] = {.lex_state = 169, .external_lex_state = 2}, + [1835] = {.lex_state = 136}, + [1836] = {.lex_state = 90}, + [1837] = {.lex_state = 90}, + [1838] = {.lex_state = 16}, + [1839] = {.lex_state = 90}, + [1840] = {.lex_state = 16}, + [1841] = {.lex_state = 137}, + [1842] = {.lex_state = 90}, + [1843] = {.lex_state = 90}, + [1844] = {.lex_state = 136}, + [1845] = {.lex_state = 90}, + [1846] = {.lex_state = 90}, + [1847] = {.lex_state = 133}, + [1848] = {.lex_state = 90}, + [1849] = {.lex_state = 90}, + [1850] = {.lex_state = 90}, + [1851] = {.lex_state = 90}, + [1852] = {.lex_state = 90}, + [1853] = {.lex_state = 169, .external_lex_state = 2}, + [1854] = {.lex_state = 90}, + [1855] = {.lex_state = 136}, + [1856] = {.lex_state = 90}, + [1857] = {.lex_state = 90}, + [1858] = {.lex_state = 637, .external_lex_state = 2}, + [1859] = {.lex_state = 90}, + [1860] = {.lex_state = 637, .external_lex_state = 2}, + [1861] = {.lex_state = 90}, + [1862] = {.lex_state = 90}, + [1863] = {.lex_state = 90}, + [1864] = {.lex_state = 169, .external_lex_state = 2}, + [1865] = {.lex_state = 636, .external_lex_state = 2}, + [1866] = {.lex_state = 637, .external_lex_state = 2}, + [1867] = {.lex_state = 577, .external_lex_state = 2}, + [1868] = {.lex_state = 90}, + [1869] = {.lex_state = 90}, + [1870] = {.lex_state = 90}, + [1871] = {.lex_state = 90}, + [1872] = {.lex_state = 90}, + [1873] = {.lex_state = 90}, + [1874] = {.lex_state = 90}, + [1875] = {.lex_state = 90}, + [1876] = {.lex_state = 635, .external_lex_state = 2}, + [1877] = {.lex_state = 635, .external_lex_state = 2}, + [1878] = {.lex_state = 635, .external_lex_state = 2}, + [1879] = {.lex_state = 17}, + [1880] = {.lex_state = 637, .external_lex_state = 2}, + [1881] = {.lex_state = 17}, + [1882] = {.lex_state = 17}, + [1883] = {.lex_state = 635, .external_lex_state = 2}, + [1884] = {.lex_state = 17}, + [1885] = {.lex_state = 584}, + [1886] = {.lex_state = 635, .external_lex_state = 2}, + [1887] = {.lex_state = 138}, + [1888] = {.lex_state = 635, .external_lex_state = 2}, + [1889] = {.lex_state = 17}, + [1890] = {.lex_state = 635, .external_lex_state = 2}, + [1891] = {.lex_state = 138}, + [1892] = {.lex_state = 635, .external_lex_state = 2}, + [1893] = {.lex_state = 637, .external_lex_state = 2}, + [1894] = {.lex_state = 635, .external_lex_state = 2}, + [1895] = {.lex_state = 635, .external_lex_state = 2}, + [1896] = {.lex_state = 90}, + [1897] = {.lex_state = 635, .external_lex_state = 2}, + [1898] = {.lex_state = 635, .external_lex_state = 2}, + [1899] = {.lex_state = 637, .external_lex_state = 2}, + [1900] = {.lex_state = 635, .external_lex_state = 2}, + [1901] = {.lex_state = 635, .external_lex_state = 2}, + [1902] = {.lex_state = 90}, + [1903] = {.lex_state = 635, .external_lex_state = 2}, + [1904] = {.lex_state = 90}, + [1905] = {.lex_state = 635, .external_lex_state = 2}, + [1906] = {.lex_state = 635, .external_lex_state = 2}, + [1907] = {.lex_state = 125, .external_lex_state = 2}, + [1908] = {.lex_state = 18}, + [1909] = {.lex_state = 635, .external_lex_state = 2}, + [1910] = {.lex_state = 161, .external_lex_state = 2}, + [1911] = {.lex_state = 635, .external_lex_state = 2}, + [1912] = {.lex_state = 139}, + [1913] = {.lex_state = 139}, + [1914] = {.lex_state = 139}, + [1915] = {.lex_state = 90}, + [1916] = {.lex_state = 635, .external_lex_state = 2}, + [1917] = {.lex_state = 635, .external_lex_state = 2}, + [1918] = {.lex_state = 635, .external_lex_state = 2}, + [1919] = {.lex_state = 635, .external_lex_state = 2}, + [1920] = {.lex_state = 635, .external_lex_state = 2}, + [1921] = {.lex_state = 635, .external_lex_state = 2}, + [1922] = {.lex_state = 635, .external_lex_state = 2}, + [1923] = {.lex_state = 635, .external_lex_state = 2}, + [1924] = {.lex_state = 174, .external_lex_state = 2}, + [1925] = {.lex_state = 635, .external_lex_state = 2}, + [1926] = {.lex_state = 635, .external_lex_state = 2}, + [1927] = {.lex_state = 635, .external_lex_state = 2}, + [1928] = {.lex_state = 161, .external_lex_state = 2}, + [1929] = {.lex_state = 635, .external_lex_state = 2}, + [1930] = {.lex_state = 635, .external_lex_state = 2}, + [1931] = {.lex_state = 1202}, + [1932] = {.lex_state = 266}, + [1933] = {.lex_state = 139}, + [1934] = {.lex_state = 1204}, + [1935] = {.lex_state = 161, .external_lex_state = 2}, + [1936] = {.lex_state = 161, .external_lex_state = 2}, + [1937] = {.lex_state = 139}, + [1938] = {.lex_state = 635, .external_lex_state = 2}, + [1939] = {.lex_state = 161, .external_lex_state = 2}, + [1940] = {.lex_state = 90}, + [1941] = {.lex_state = 90}, + [1942] = {.lex_state = 19}, + [1943] = {.lex_state = 161, .external_lex_state = 2}, + [1944] = {.lex_state = 584}, + [1945] = {.lex_state = 635, .external_lex_state = 2}, + [1946] = {.lex_state = 161, .external_lex_state = 2}, + [1947] = {.lex_state = 90}, + [1948] = {.lex_state = 175, .external_lex_state = 2}, + [1949] = {.lex_state = 125, .external_lex_state = 2}, + [1950] = {.lex_state = 125, .external_lex_state = 2}, + [1951] = {.lex_state = 125, .external_lex_state = 2}, + [1952] = {.lex_state = 1205}, + [1953] = {.lex_state = 125, .external_lex_state = 2}, + [1954] = {.lex_state = 163, .external_lex_state = 2}, + [1955] = {.lex_state = 1203}, + [1956] = {.lex_state = 175, .external_lex_state = 2}, + [1957] = {.lex_state = 140}, + [1958] = {.lex_state = 1207}, + [1959] = {.lex_state = 266}, + [1960] = {.lex_state = 125, .external_lex_state = 2}, + [1961] = {.lex_state = 1205}, + [1962] = {.lex_state = 20}, + [1963] = {.lex_state = 20}, + [1964] = {.lex_state = 161, .external_lex_state = 2}, + [1965] = {.lex_state = 161, .external_lex_state = 2}, + [1966] = {.lex_state = 141}, + [1967] = {.lex_state = 125, .external_lex_state = 2}, + [1968] = {.lex_state = 266}, [1969] = {.lex_state = 21}, - [1970] = {.lex_state = 21}, - [1971] = {.lex_state = 159, .external_lex_state = 2}, - [1972] = {.lex_state = 21}, - [1973] = {.lex_state = 267}, - [1974] = {.lex_state = 585}, - [1975] = {.lex_state = 585}, + [1970] = {.lex_state = 266}, + [1971] = {.lex_state = 21}, + [1972] = {.lex_state = 158, .external_lex_state = 2}, + [1973] = {.lex_state = 158, .external_lex_state = 2}, + [1974] = {.lex_state = 152, .external_lex_state = 2}, + [1975] = {.lex_state = 1208}, [1976] = {.lex_state = 21}, - [1977] = {.lex_state = 585}, - [1978] = {.lex_state = 21}, - [1979] = {.lex_state = 1207}, - [1980] = {.lex_state = 161, .external_lex_state = 2}, - [1981] = {.lex_state = 21}, - [1982] = {.lex_state = 143}, - [1983] = {.lex_state = 585}, - [1984] = {.lex_state = 38, .external_lex_state = 2}, - [1985] = {.lex_state = 585}, - [1986] = {.lex_state = 585}, - [1987] = {.lex_state = 585}, - [1988] = {.lex_state = 21}, - [1989] = {.lex_state = 153, .external_lex_state = 2}, - [1990] = {.lex_state = 267}, - [1991] = {.lex_state = 267}, - [1992] = {.lex_state = 21}, - [1993] = {.lex_state = 127, .external_lex_state = 2}, - [1994] = {.lex_state = 1209}, - [1995] = {.lex_state = 91}, - [1996] = {.lex_state = 21}, - [1997] = {.lex_state = 159, .external_lex_state = 2}, - [1998] = {.lex_state = 1207}, - [1999] = {.lex_state = 1207}, - [2000] = {.lex_state = 21}, - [2001] = {.lex_state = 267}, - [2002] = {.lex_state = 153, .external_lex_state = 2}, - [2003] = {.lex_state = 143}, - [2004] = {.lex_state = 159, .external_lex_state = 2}, - [2005] = {.lex_state = 159, .external_lex_state = 2}, - [2006] = {.lex_state = 585}, - [2007] = {.lex_state = 144}, - [2008] = {.lex_state = 144}, - [2009] = {.lex_state = 91}, - [2010] = {.lex_state = 1210}, - [2011] = {.lex_state = 1210}, - [2012] = {.lex_state = 159, .external_lex_state = 2}, - [2013] = {.lex_state = 144}, - [2014] = {.lex_state = 38, .external_lex_state = 2}, - [2015] = {.lex_state = 585}, - [2016] = {.lex_state = 45, .external_lex_state = 2}, - [2017] = {.lex_state = 144}, - [2018] = {.lex_state = 1210}, + [1977] = {.lex_state = 1206}, + [1978] = {.lex_state = 266}, + [1979] = {.lex_state = 158, .external_lex_state = 2}, + [1980] = {.lex_state = 1206}, + [1981] = {.lex_state = 266}, + [1982] = {.lex_state = 21}, + [1983] = {.lex_state = 158, .external_lex_state = 2}, + [1984] = {.lex_state = 266}, + [1985] = {.lex_state = 266}, + [1986] = {.lex_state = 38, .external_lex_state = 2}, + [1987] = {.lex_state = 158, .external_lex_state = 2}, + [1988] = {.lex_state = 90}, + [1989] = {.lex_state = 21}, + [1990] = {.lex_state = 160, .external_lex_state = 2}, + [1991] = {.lex_state = 1206}, + [1992] = {.lex_state = 1208}, + [1993] = {.lex_state = 21}, + [1994] = {.lex_state = 21}, + [1995] = {.lex_state = 1206}, + [1996] = {.lex_state = 266}, + [1997] = {.lex_state = 126, .external_lex_state = 2}, + [1998] = {.lex_state = 38, .external_lex_state = 2}, + [1999] = {.lex_state = 21}, + [2000] = {.lex_state = 584}, + [2001] = {.lex_state = 152, .external_lex_state = 2}, + [2002] = {.lex_state = 142}, + [2003] = {.lex_state = 266}, + [2004] = {.lex_state = 584}, + [2005] = {.lex_state = 584}, + [2006] = {.lex_state = 584}, + [2007] = {.lex_state = 21}, + [2008] = {.lex_state = 584}, + [2009] = {.lex_state = 21}, + [2010] = {.lex_state = 584}, + [2011] = {.lex_state = 584}, + [2012] = {.lex_state = 584}, + [2013] = {.lex_state = 584}, + [2014] = {.lex_state = 21}, + [2015] = {.lex_state = 21}, + [2016] = {.lex_state = 142}, + [2017] = {.lex_state = 21}, + [2018] = {.lex_state = 584}, [2019] = {.lex_state = 584}, - [2020] = {.lex_state = 154, .external_lex_state = 2}, - [2021] = {.lex_state = 144}, - [2022] = {.lex_state = 144}, - [2023] = {.lex_state = 144}, - [2024] = {.lex_state = 144}, - [2025] = {.lex_state = 144}, - [2026] = {.lex_state = 167, .external_lex_state = 2}, - [2027] = {.lex_state = 167, .external_lex_state = 2}, - [2028] = {.lex_state = 154, .external_lex_state = 2}, - [2029] = {.lex_state = 154, .external_lex_state = 2}, - [2030] = {.lex_state = 45, .external_lex_state = 2}, - [2031] = {.lex_state = 91}, - [2032] = {.lex_state = 144}, - [2033] = {.lex_state = 144}, - [2034] = {.lex_state = 585}, - [2035] = {.lex_state = 1210}, - [2036] = {.lex_state = 585}, - [2037] = {.lex_state = 585}, - [2038] = {.lex_state = 144}, - [2039] = {.lex_state = 585}, - [2040] = {.lex_state = 162, .external_lex_state = 2}, - [2041] = {.lex_state = 585}, - [2042] = {.lex_state = 585}, - [2043] = {.lex_state = 267}, - [2044] = {.lex_state = 585}, - [2045] = {.lex_state = 585}, - [2046] = {.lex_state = 585}, - [2047] = {.lex_state = 585}, - [2048] = {.lex_state = 585}, - [2049] = {.lex_state = 585}, - [2050] = {.lex_state = 162, .external_lex_state = 2}, - [2051] = {.lex_state = 167, .external_lex_state = 2}, - [2052] = {.lex_state = 162, .external_lex_state = 2}, - [2053] = {.lex_state = 159, .external_lex_state = 2}, - [2054] = {.lex_state = 585}, - [2055] = {.lex_state = 585}, - [2056] = {.lex_state = 154, .external_lex_state = 2}, - [2057] = {.lex_state = 585}, - [2058] = {.lex_state = 585}, - [2059] = {.lex_state = 585}, - [2060] = {.lex_state = 585}, - [2061] = {.lex_state = 585}, - [2062] = {.lex_state = 585}, - [2063] = {.lex_state = 585}, - [2064] = {.lex_state = 585}, - [2065] = {.lex_state = 585}, - [2066] = {.lex_state = 585}, - [2067] = {.lex_state = 585}, - [2068] = {.lex_state = 585}, - [2069] = {.lex_state = 585}, - [2070] = {.lex_state = 585}, - [2071] = {.lex_state = 585}, - [2072] = {.lex_state = 585}, - [2073] = {.lex_state = 585}, - [2074] = {.lex_state = 585}, - [2075] = {.lex_state = 585}, - [2076] = {.lex_state = 585}, - [2077] = {.lex_state = 585}, - [2078] = {.lex_state = 585}, - [2079] = {.lex_state = 585}, - [2080] = {.lex_state = 585}, - [2081] = {.lex_state = 585}, - [2082] = {.lex_state = 585}, - [2083] = {.lex_state = 267}, - [2084] = {.lex_state = 585}, - [2085] = {.lex_state = 167, .external_lex_state = 2}, - [2086] = {.lex_state = 585}, - [2087] = {.lex_state = 21}, - [2088] = {.lex_state = 585}, - [2089] = {.lex_state = 585}, - [2090] = {.lex_state = 585}, - [2091] = {.lex_state = 585}, - [2092] = {.lex_state = 585}, - [2093] = {.lex_state = 167, .external_lex_state = 2}, - [2094] = {.lex_state = 585}, - [2095] = {.lex_state = 585}, - [2096] = {.lex_state = 585}, - [2097] = {.lex_state = 585}, - [2098] = {.lex_state = 585}, - [2099] = {.lex_state = 1210}, - [2100] = {.lex_state = 585}, - [2101] = {.lex_state = 585}, - [2102] = {.lex_state = 585}, - [2103] = {.lex_state = 1210}, - [2104] = {.lex_state = 585}, - [2105] = {.lex_state = 585}, - [2106] = {.lex_state = 585}, - [2107] = {.lex_state = 585}, - [2108] = {.lex_state = 585}, - [2109] = {.lex_state = 585}, - [2110] = {.lex_state = 585}, - [2111] = {.lex_state = 585}, - [2112] = {.lex_state = 585}, - [2113] = {.lex_state = 1210}, - [2114] = {.lex_state = 585}, - [2115] = {.lex_state = 585}, - [2116] = {.lex_state = 585}, - [2117] = {.lex_state = 585}, - [2118] = {.lex_state = 585}, - [2119] = {.lex_state = 585}, - [2120] = {.lex_state = 1210}, - [2121] = {.lex_state = 585}, - [2122] = {.lex_state = 585}, - [2123] = {.lex_state = 585}, - [2124] = {.lex_state = 585}, - [2125] = {.lex_state = 585}, - [2126] = {.lex_state = 585}, - [2127] = {.lex_state = 1210}, - [2128] = {.lex_state = 585}, - [2129] = {.lex_state = 585}, - [2130] = {.lex_state = 585}, - [2131] = {.lex_state = 585}, - [2132] = {.lex_state = 585}, - [2133] = {.lex_state = 585}, - [2134] = {.lex_state = 167, .external_lex_state = 2}, - [2135] = {.lex_state = 167, .external_lex_state = 2}, - [2136] = {.lex_state = 585}, - [2137] = {.lex_state = 585}, - [2138] = {.lex_state = 585}, - [2139] = {.lex_state = 585}, - [2140] = {.lex_state = 585}, - [2141] = {.lex_state = 585}, - [2142] = {.lex_state = 585}, - [2143] = {.lex_state = 585}, - [2144] = {.lex_state = 585}, - [2145] = {.lex_state = 585}, - [2146] = {.lex_state = 585}, - [2147] = {.lex_state = 585}, - [2148] = {.lex_state = 585}, - [2149] = {.lex_state = 585}, - [2150] = {.lex_state = 1210}, - [2151] = {.lex_state = 45, .external_lex_state = 2}, - [2152] = {.lex_state = 144}, - [2153] = {.lex_state = 154, .external_lex_state = 2}, - [2154] = {.lex_state = 585}, - [2155] = {.lex_state = 38, .external_lex_state = 2}, - [2156] = {.lex_state = 585}, - [2157] = {.lex_state = 38, .external_lex_state = 2}, - [2158] = {.lex_state = 38, .external_lex_state = 2}, - [2159] = {.lex_state = 38, .external_lex_state = 2}, - [2160] = {.lex_state = 38, .external_lex_state = 2}, - [2161] = {.lex_state = 38, .external_lex_state = 2}, - [2162] = {.lex_state = 38, .external_lex_state = 2}, - [2163] = {.lex_state = 38, .external_lex_state = 2}, - [2164] = {.lex_state = 38, .external_lex_state = 2}, - [2165] = {.lex_state = 38, .external_lex_state = 2}, - [2166] = {.lex_state = 38, .external_lex_state = 2}, - [2167] = {.lex_state = 38, .external_lex_state = 2}, + [2020] = {.lex_state = 584}, + [2021] = {.lex_state = 584}, + [2022] = {.lex_state = 584}, + [2023] = {.lex_state = 1209}, + [2024] = {.lex_state = 45, .external_lex_state = 2}, + [2025] = {.lex_state = 584}, + [2026] = {.lex_state = 153, .external_lex_state = 2}, + [2027] = {.lex_state = 45, .external_lex_state = 2}, + [2028] = {.lex_state = 584}, + [2029] = {.lex_state = 583}, + [2030] = {.lex_state = 153, .external_lex_state = 2}, + [2031] = {.lex_state = 153, .external_lex_state = 2}, + [2032] = {.lex_state = 90}, + [2033] = {.lex_state = 166, .external_lex_state = 2}, + [2034] = {.lex_state = 584}, + [2035] = {.lex_state = 584}, + [2036] = {.lex_state = 584}, + [2037] = {.lex_state = 584}, + [2038] = {.lex_state = 166, .external_lex_state = 2}, + [2039] = {.lex_state = 21}, + [2040] = {.lex_state = 166, .external_lex_state = 2}, + [2041] = {.lex_state = 584}, + [2042] = {.lex_state = 584}, + [2043] = {.lex_state = 584}, + [2044] = {.lex_state = 584}, + [2045] = {.lex_state = 584}, + [2046] = {.lex_state = 584}, + [2047] = {.lex_state = 584}, + [2048] = {.lex_state = 584}, + [2049] = {.lex_state = 584}, + [2050] = {.lex_state = 584}, + [2051] = {.lex_state = 584}, + [2052] = {.lex_state = 584}, + [2053] = {.lex_state = 143}, + [2054] = {.lex_state = 584}, + [2055] = {.lex_state = 143}, + [2056] = {.lex_state = 153, .external_lex_state = 2}, + [2057] = {.lex_state = 1209}, + [2058] = {.lex_state = 166, .external_lex_state = 2}, + [2059] = {.lex_state = 166, .external_lex_state = 2}, + [2060] = {.lex_state = 143}, + [2061] = {.lex_state = 584}, + [2062] = {.lex_state = 584}, + [2063] = {.lex_state = 584}, + [2064] = {.lex_state = 584}, + [2065] = {.lex_state = 584}, + [2066] = {.lex_state = 143}, + [2067] = {.lex_state = 584}, + [2068] = {.lex_state = 584}, + [2069] = {.lex_state = 584}, + [2070] = {.lex_state = 584}, + [2071] = {.lex_state = 45, .external_lex_state = 2}, + [2072] = {.lex_state = 584}, + [2073] = {.lex_state = 584}, + [2074] = {.lex_state = 584}, + [2075] = {.lex_state = 584}, + [2076] = {.lex_state = 90}, + [2077] = {.lex_state = 584}, + [2078] = {.lex_state = 143}, + [2079] = {.lex_state = 584}, + [2080] = {.lex_state = 143}, + [2081] = {.lex_state = 143}, + [2082] = {.lex_state = 153, .external_lex_state = 2}, + [2083] = {.lex_state = 143}, + [2084] = {.lex_state = 584}, + [2085] = {.lex_state = 143}, + [2086] = {.lex_state = 143}, + [2087] = {.lex_state = 584}, + [2088] = {.lex_state = 1209}, + [2089] = {.lex_state = 584}, + [2090] = {.lex_state = 584}, + [2091] = {.lex_state = 584}, + [2092] = {.lex_state = 584}, + [2093] = {.lex_state = 584}, + [2094] = {.lex_state = 584}, + [2095] = {.lex_state = 584}, + [2096] = {.lex_state = 584}, + [2097] = {.lex_state = 584}, + [2098] = {.lex_state = 584}, + [2099] = {.lex_state = 584}, + [2100] = {.lex_state = 584}, + [2101] = {.lex_state = 584}, + [2102] = {.lex_state = 584}, + [2103] = {.lex_state = 584}, + [2104] = {.lex_state = 584}, + [2105] = {.lex_state = 584}, + [2106] = {.lex_state = 584}, + [2107] = {.lex_state = 584}, + [2108] = {.lex_state = 584}, + [2109] = {.lex_state = 584}, + [2110] = {.lex_state = 584}, + [2111] = {.lex_state = 584}, + [2112] = {.lex_state = 158, .external_lex_state = 2}, + [2113] = {.lex_state = 1209}, + [2114] = {.lex_state = 584}, + [2115] = {.lex_state = 584}, + [2116] = {.lex_state = 584}, + [2117] = {.lex_state = 1209}, + [2118] = {.lex_state = 161, .external_lex_state = 2}, + [2119] = {.lex_state = 161, .external_lex_state = 2}, + [2120] = {.lex_state = 584}, + [2121] = {.lex_state = 1209}, + [2122] = {.lex_state = 1209}, + [2123] = {.lex_state = 161, .external_lex_state = 2}, + [2124] = {.lex_state = 584}, + [2125] = {.lex_state = 584}, + [2126] = {.lex_state = 584}, + [2127] = {.lex_state = 584}, + [2128] = {.lex_state = 584}, + [2129] = {.lex_state = 584}, + [2130] = {.lex_state = 584}, + [2131] = {.lex_state = 584}, + [2132] = {.lex_state = 266}, + [2133] = {.lex_state = 584}, + [2134] = {.lex_state = 584}, + [2135] = {.lex_state = 584}, + [2136] = {.lex_state = 584}, + [2137] = {.lex_state = 584}, + [2138] = {.lex_state = 584}, + [2139] = {.lex_state = 143}, + [2140] = {.lex_state = 584}, + [2141] = {.lex_state = 166, .external_lex_state = 2}, + [2142] = {.lex_state = 584}, + [2143] = {.lex_state = 1209}, + [2144] = {.lex_state = 266}, + [2145] = {.lex_state = 584}, + [2146] = {.lex_state = 584}, + [2147] = {.lex_state = 158, .external_lex_state = 2}, + [2148] = {.lex_state = 584}, + [2149] = {.lex_state = 38, .external_lex_state = 2}, + [2150] = {.lex_state = 584}, + [2151] = {.lex_state = 1209}, + [2152] = {.lex_state = 166, .external_lex_state = 2}, + [2153] = {.lex_state = 1209}, + [2154] = {.lex_state = 143}, + [2155] = {.lex_state = 143}, + [2156] = {.lex_state = 584}, + [2157] = {.lex_state = 584}, + [2158] = {.lex_state = 584}, + [2159] = {.lex_state = 584}, + [2160] = {.lex_state = 584}, + [2161] = {.lex_state = 584}, + [2162] = {.lex_state = 584}, + [2163] = {.lex_state = 584}, + [2164] = {.lex_state = 584}, + [2165] = {.lex_state = 584}, + [2166] = {.lex_state = 584}, + [2167] = {.lex_state = 584}, [2168] = {.lex_state = 38, .external_lex_state = 2}, [2169] = {.lex_state = 38, .external_lex_state = 2}, [2170] = {.lex_state = 38, .external_lex_state = 2}, [2171] = {.lex_state = 38, .external_lex_state = 2}, - [2172] = {.lex_state = 38, .external_lex_state = 2}, - [2173] = {.lex_state = 91}, - [2174] = {.lex_state = 585}, + [2172] = {.lex_state = 153, .external_lex_state = 2}, + [2173] = {.lex_state = 38, .external_lex_state = 2}, + [2174] = {.lex_state = 38, .external_lex_state = 2}, [2175] = {.lex_state = 38, .external_lex_state = 2}, [2176] = {.lex_state = 38, .external_lex_state = 2}, [2177] = {.lex_state = 38, .external_lex_state = 2}, @@ -36012,137 +35997,137 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2180] = {.lex_state = 38, .external_lex_state = 2}, [2181] = {.lex_state = 38, .external_lex_state = 2}, [2182] = {.lex_state = 38, .external_lex_state = 2}, - [2183] = {.lex_state = 38, .external_lex_state = 2}, - [2184] = {.lex_state = 144}, - [2185] = {.lex_state = 45, .external_lex_state = 2}, + [2183] = {.lex_state = 153, .external_lex_state = 2}, + [2184] = {.lex_state = 38, .external_lex_state = 2}, + [2185] = {.lex_state = 38, .external_lex_state = 2}, [2186] = {.lex_state = 38, .external_lex_state = 2}, [2187] = {.lex_state = 38, .external_lex_state = 2}, [2188] = {.lex_state = 38, .external_lex_state = 2}, - [2189] = {.lex_state = 38, .external_lex_state = 2}, - [2190] = {.lex_state = 585}, - [2191] = {.lex_state = 585}, + [2189] = {.lex_state = 45, .external_lex_state = 2}, + [2190] = {.lex_state = 38, .external_lex_state = 2}, + [2191] = {.lex_state = 584}, [2192] = {.lex_state = 38, .external_lex_state = 2}, [2193] = {.lex_state = 38, .external_lex_state = 2}, [2194] = {.lex_state = 38, .external_lex_state = 2}, - [2195] = {.lex_state = 38, .external_lex_state = 2}, - [2196] = {.lex_state = 585}, - [2197] = {.lex_state = 585}, + [2195] = {.lex_state = 584}, + [2196] = {.lex_state = 90}, + [2197] = {.lex_state = 38, .external_lex_state = 2}, [2198] = {.lex_state = 38, .external_lex_state = 2}, - [2199] = {.lex_state = 38, .external_lex_state = 2}, + [2199] = {.lex_state = 584}, [2200] = {.lex_state = 38, .external_lex_state = 2}, [2201] = {.lex_state = 38, .external_lex_state = 2}, - [2202] = {.lex_state = 154, .external_lex_state = 2}, - [2203] = {.lex_state = 38, .external_lex_state = 2}, + [2202] = {.lex_state = 38, .external_lex_state = 2}, + [2203] = {.lex_state = 584}, [2204] = {.lex_state = 38, .external_lex_state = 2}, - [2205] = {.lex_state = 154, .external_lex_state = 2}, + [2205] = {.lex_state = 584}, [2206] = {.lex_state = 38, .external_lex_state = 2}, [2207] = {.lex_state = 38, .external_lex_state = 2}, - [2208] = {.lex_state = 1211}, - [2209] = {.lex_state = 585}, - [2210] = {.lex_state = 585}, - [2211] = {.lex_state = 50, .external_lex_state = 2}, - [2212] = {.lex_state = 585}, - [2213] = {.lex_state = 585}, - [2214] = {.lex_state = 585}, - [2215] = {.lex_state = 50, .external_lex_state = 2}, - [2216] = {.lex_state = 1211}, - [2217] = {.lex_state = 1211}, - [2218] = {.lex_state = 585}, - [2219] = {.lex_state = 585}, - [2220] = {.lex_state = 585}, - [2221] = {.lex_state = 1211}, - [2222] = {.lex_state = 1211}, - [2223] = {.lex_state = 585}, - [2224] = {.lex_state = 1211}, - [2225] = {.lex_state = 585}, - [2226] = {.lex_state = 1211}, - [2227] = {.lex_state = 585}, - [2228] = {.lex_state = 585}, - [2229] = {.lex_state = 585}, - [2230] = {.lex_state = 585}, - [2231] = {.lex_state = 45, .external_lex_state = 2}, - [2232] = {.lex_state = 585}, - [2233] = {.lex_state = 585}, - [2234] = {.lex_state = 585}, - [2235] = {.lex_state = 585}, - [2236] = {.lex_state = 585}, - [2237] = {.lex_state = 585}, - [2238] = {.lex_state = 50, .external_lex_state = 2}, - [2239] = {.lex_state = 585}, - [2240] = {.lex_state = 585}, - [2241] = {.lex_state = 42, .external_lex_state = 2}, - [2242] = {.lex_state = 585}, - [2243] = {.lex_state = 585}, - [2244] = {.lex_state = 50, .external_lex_state = 2}, - [2245] = {.lex_state = 1211}, - [2246] = {.lex_state = 585}, - [2247] = {.lex_state = 585}, - [2248] = {.lex_state = 585}, - [2249] = {.lex_state = 585}, - [2250] = {.lex_state = 585}, - [2251] = {.lex_state = 585}, - [2252] = {.lex_state = 42, .external_lex_state = 2}, - [2253] = {.lex_state = 584}, - [2254] = {.lex_state = 156, .external_lex_state = 2}, - [2255] = {.lex_state = 156, .external_lex_state = 2}, - [2256] = {.lex_state = 46, .external_lex_state = 2}, - [2257] = {.lex_state = 50, .external_lex_state = 2}, - [2258] = {.lex_state = 584}, - [2259] = {.lex_state = 156, .external_lex_state = 2}, - [2260] = {.lex_state = 156, .external_lex_state = 2}, - [2261] = {.lex_state = 5}, - [2262] = {.lex_state = 5}, - [2263] = {.lex_state = 158, .external_lex_state = 2}, - [2264] = {.lex_state = 158, .external_lex_state = 2}, - [2265] = {.lex_state = 158, .external_lex_state = 2}, - [2266] = {.lex_state = 5}, - [2267] = {.lex_state = 158, .external_lex_state = 2}, - [2268] = {.lex_state = 156, .external_lex_state = 2}, - [2269] = {.lex_state = 5}, - [2270] = {.lex_state = 46, .external_lex_state = 2}, - [2271] = {.lex_state = 5}, - [2272] = {.lex_state = 158, .external_lex_state = 2}, - [2273] = {.lex_state = 47, .external_lex_state = 2}, + [2208] = {.lex_state = 38, .external_lex_state = 2}, + [2209] = {.lex_state = 38, .external_lex_state = 2}, + [2210] = {.lex_state = 38, .external_lex_state = 2}, + [2211] = {.lex_state = 38, .external_lex_state = 2}, + [2212] = {.lex_state = 38, .external_lex_state = 2}, + [2213] = {.lex_state = 38, .external_lex_state = 2}, + [2214] = {.lex_state = 38, .external_lex_state = 2}, + [2215] = {.lex_state = 38, .external_lex_state = 2}, + [2216] = {.lex_state = 143}, + [2217] = {.lex_state = 38, .external_lex_state = 2}, + [2218] = {.lex_state = 38, .external_lex_state = 2}, + [2219] = {.lex_state = 38, .external_lex_state = 2}, + [2220] = {.lex_state = 50, .external_lex_state = 2}, + [2221] = {.lex_state = 584}, + [2222] = {.lex_state = 584}, + [2223] = {.lex_state = 42, .external_lex_state = 2}, + [2224] = {.lex_state = 584}, + [2225] = {.lex_state = 584}, + [2226] = {.lex_state = 584}, + [2227] = {.lex_state = 584}, + [2228] = {.lex_state = 50, .external_lex_state = 2}, + [2229] = {.lex_state = 584}, + [2230] = {.lex_state = 584}, + [2231] = {.lex_state = 1210}, + [2232] = {.lex_state = 584}, + [2233] = {.lex_state = 1210}, + [2234] = {.lex_state = 584}, + [2235] = {.lex_state = 584}, + [2236] = {.lex_state = 1210}, + [2237] = {.lex_state = 584}, + [2238] = {.lex_state = 584}, + [2239] = {.lex_state = 584}, + [2240] = {.lex_state = 1210}, + [2241] = {.lex_state = 584}, + [2242] = {.lex_state = 584}, + [2243] = {.lex_state = 584}, + [2244] = {.lex_state = 584}, + [2245] = {.lex_state = 1210}, + [2246] = {.lex_state = 584}, + [2247] = {.lex_state = 50, .external_lex_state = 2}, + [2248] = {.lex_state = 45, .external_lex_state = 2}, + [2249] = {.lex_state = 1210}, + [2250] = {.lex_state = 584}, + [2251] = {.lex_state = 50, .external_lex_state = 2}, + [2252] = {.lex_state = 584}, + [2253] = {.lex_state = 1210}, + [2254] = {.lex_state = 584}, + [2255] = {.lex_state = 584}, + [2256] = {.lex_state = 1210}, + [2257] = {.lex_state = 584}, + [2258] = {.lex_state = 583}, + [2259] = {.lex_state = 584}, + [2260] = {.lex_state = 584}, + [2261] = {.lex_state = 584}, + [2262] = {.lex_state = 584}, + [2263] = {.lex_state = 584}, + [2264] = {.lex_state = 42, .external_lex_state = 2}, + [2265] = {.lex_state = 584}, + [2266] = {.lex_state = 155, .external_lex_state = 2}, + [2267] = {.lex_state = 155, .external_lex_state = 2}, + [2268] = {.lex_state = 583}, + [2269] = {.lex_state = 46, .external_lex_state = 2}, + [2270] = {.lex_state = 50, .external_lex_state = 2}, + [2271] = {.lex_state = 155, .external_lex_state = 2}, + [2272] = {.lex_state = 155, .external_lex_state = 2}, + [2273] = {.lex_state = 157, .external_lex_state = 2}, [2274] = {.lex_state = 5}, - [2275] = {.lex_state = 156, .external_lex_state = 2}, - [2276] = {.lex_state = 48, .external_lex_state = 2}, - [2277] = {.lex_state = 158, .external_lex_state = 2}, - [2278] = {.lex_state = 158, .external_lex_state = 2}, - [2279] = {.lex_state = 158, .external_lex_state = 2}, - [2280] = {.lex_state = 158, .external_lex_state = 2}, - [2281] = {.lex_state = 50, .external_lex_state = 2}, - [2282] = {.lex_state = 48, .external_lex_state = 2}, - [2283] = {.lex_state = 47, .external_lex_state = 2}, - [2284] = {.lex_state = 50, .external_lex_state = 2}, - [2285] = {.lex_state = 50, .external_lex_state = 2}, - [2286] = {.lex_state = 48, .external_lex_state = 2}, - [2287] = {.lex_state = 584}, - [2288] = {.lex_state = 584}, - [2289] = {.lex_state = 584}, - [2290] = {.lex_state = 584}, - [2291] = {.lex_state = 582}, - [2292] = {.lex_state = 49, .external_lex_state = 2}, - [2293] = {.lex_state = 49, .external_lex_state = 2}, - [2294] = {.lex_state = 584}, - [2295] = {.lex_state = 584}, - [2296] = {.lex_state = 7}, - [2297] = {.lex_state = 49, .external_lex_state = 2}, - [2298] = {.lex_state = 585}, - [2299] = {.lex_state = 585}, - [2300] = {.lex_state = 49, .external_lex_state = 2}, - [2301] = {.lex_state = 585}, - [2302] = {.lex_state = 585}, - [2303] = {.lex_state = 49, .external_lex_state = 2}, - [2304] = {.lex_state = 49, .external_lex_state = 2}, - [2305] = {.lex_state = 49, .external_lex_state = 2}, - [2306] = {.lex_state = 49, .external_lex_state = 2}, + [2275] = {.lex_state = 157, .external_lex_state = 2}, + [2276] = {.lex_state = 5}, + [2277] = {.lex_state = 5}, + [2278] = {.lex_state = 48, .external_lex_state = 2}, + [2279] = {.lex_state = 47, .external_lex_state = 2}, + [2280] = {.lex_state = 157, .external_lex_state = 2}, + [2281] = {.lex_state = 155, .external_lex_state = 2}, + [2282] = {.lex_state = 157, .external_lex_state = 2}, + [2283] = {.lex_state = 157, .external_lex_state = 2}, + [2284] = {.lex_state = 5}, + [2285] = {.lex_state = 157, .external_lex_state = 2}, + [2286] = {.lex_state = 155, .external_lex_state = 2}, + [2287] = {.lex_state = 157, .external_lex_state = 2}, + [2288] = {.lex_state = 5}, + [2289] = {.lex_state = 5}, + [2290] = {.lex_state = 46, .external_lex_state = 2}, + [2291] = {.lex_state = 157, .external_lex_state = 2}, + [2292] = {.lex_state = 50, .external_lex_state = 2}, + [2293] = {.lex_state = 50, .external_lex_state = 2}, + [2294] = {.lex_state = 48, .external_lex_state = 2}, + [2295] = {.lex_state = 157, .external_lex_state = 2}, + [2296] = {.lex_state = 50, .external_lex_state = 2}, + [2297] = {.lex_state = 47, .external_lex_state = 2}, + [2298] = {.lex_state = 583}, + [2299] = {.lex_state = 48, .external_lex_state = 2}, + [2300] = {.lex_state = 583}, + [2301] = {.lex_state = 49, .external_lex_state = 2}, + [2302] = {.lex_state = 581}, + [2303] = {.lex_state = 583}, + [2304] = {.lex_state = 583}, + [2305] = {.lex_state = 583}, + [2306] = {.lex_state = 583}, [2307] = {.lex_state = 49, .external_lex_state = 2}, - [2308] = {.lex_state = 585}, - [2309] = {.lex_state = 641}, + [2308] = {.lex_state = 7}, + [2309] = {.lex_state = 49, .external_lex_state = 2}, [2310] = {.lex_state = 49, .external_lex_state = 2}, [2311] = {.lex_state = 49, .external_lex_state = 2}, [2312] = {.lex_state = 49, .external_lex_state = 2}, - [2313] = {.lex_state = 49, .external_lex_state = 2}, + [2313] = {.lex_state = 584}, [2314] = {.lex_state = 49, .external_lex_state = 2}, [2315] = {.lex_state = 49, .external_lex_state = 2}, [2316] = {.lex_state = 49, .external_lex_state = 2}, @@ -36157,3190 +36142,3208 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2325] = {.lex_state = 49, .external_lex_state = 2}, [2326] = {.lex_state = 49, .external_lex_state = 2}, [2327] = {.lex_state = 49, .external_lex_state = 2}, - [2328] = {.lex_state = 49, .external_lex_state = 2}, - [2329] = {.lex_state = 588}, - [2330] = {.lex_state = 641}, - [2331] = {.lex_state = 642}, - [2332] = {.lex_state = 642}, - [2333] = {.lex_state = 7}, - [2334] = {.lex_state = 588}, - [2335] = {.lex_state = 642}, - [2336] = {.lex_state = 642}, + [2328] = {.lex_state = 584}, + [2329] = {.lex_state = 584}, + [2330] = {.lex_state = 584}, + [2331] = {.lex_state = 584}, + [2332] = {.lex_state = 49, .external_lex_state = 2}, + [2333] = {.lex_state = 49, .external_lex_state = 2}, + [2334] = {.lex_state = 49, .external_lex_state = 2}, + [2335] = {.lex_state = 49, .external_lex_state = 2}, + [2336] = {.lex_state = 49, .external_lex_state = 2}, [2337] = {.lex_state = 49, .external_lex_state = 2}, [2338] = {.lex_state = 49, .external_lex_state = 2}, - [2339] = {.lex_state = 49, .external_lex_state = 2}, + [2339] = {.lex_state = 640}, [2340] = {.lex_state = 49, .external_lex_state = 2}, - [2341] = {.lex_state = 49, .external_lex_state = 2}, - [2342] = {.lex_state = 49, .external_lex_state = 2}, - [2343] = {.lex_state = 645}, - [2344] = {.lex_state = 649}, - [2345] = {.lex_state = 640}, - [2346] = {.lex_state = 588}, - [2347] = {.lex_state = 588}, - [2348] = {.lex_state = 588}, - [2349] = {.lex_state = 588}, + [2341] = {.lex_state = 7}, + [2342] = {.lex_state = 641}, + [2343] = {.lex_state = 587}, + [2344] = {.lex_state = 640}, + [2345] = {.lex_state = 641}, + [2346] = {.lex_state = 587}, + [2347] = {.lex_state = 648}, + [2348] = {.lex_state = 49, .external_lex_state = 2}, + [2349] = {.lex_state = 639}, [2350] = {.lex_state = 49, .external_lex_state = 2}, - [2351] = {.lex_state = 49, .external_lex_state = 2}, + [2351] = {.lex_state = 587}, [2352] = {.lex_state = 49, .external_lex_state = 2}, - [2353] = {.lex_state = 49, .external_lex_state = 2}, - [2354] = {.lex_state = 49, .external_lex_state = 2}, - [2355] = {.lex_state = 49, .external_lex_state = 2}, - [2356] = {.lex_state = 649}, - [2357] = {.lex_state = 588}, - [2358] = {.lex_state = 588}, - [2359] = {.lex_state = 588}, - [2360] = {.lex_state = 588}, - [2361] = {.lex_state = 640}, - [2362] = {.lex_state = 651}, - [2363] = {.lex_state = 640}, - [2364] = {.lex_state = 651}, - [2365] = {.lex_state = 645}, - [2366] = {.lex_state = 643}, - [2367] = {.lex_state = 653}, - [2368] = {.lex_state = 643}, - [2369] = {.lex_state = 580}, - [2370] = {.lex_state = 580}, - [2371] = {.lex_state = 580}, - [2372] = {.lex_state = 640}, - [2373] = {.lex_state = 640}, - [2374] = {.lex_state = 640}, - [2375] = {.lex_state = 640}, - [2376] = {.lex_state = 643}, - [2377] = {.lex_state = 628}, - [2378] = {.lex_state = 653}, - [2379] = {.lex_state = 580}, - [2380] = {.lex_state = 580}, - [2381] = {.lex_state = 651}, - [2382] = {.lex_state = 580}, - [2383] = {.lex_state = 643}, - [2384] = {.lex_state = 651}, - [2385] = {.lex_state = 653}, - [2386] = {.lex_state = 653}, - [2387] = {.lex_state = 653}, - [2388] = {.lex_state = 655}, - [2389] = {.lex_state = 640}, - [2390] = {.lex_state = 647}, - [2391] = {.lex_state = 585}, - [2392] = {.lex_state = 585}, - [2393] = {.lex_state = 582}, - [2394] = {.lex_state = 580}, - [2395] = {.lex_state = 646}, - [2396] = {.lex_state = 650}, - [2397] = {.lex_state = 652}, - [2398] = {.lex_state = 657}, - [2399] = {.lex_state = 171, .external_lex_state = 2}, - [2400] = {.lex_state = 657}, - [2401] = {.lex_state = 647}, - [2402] = {.lex_state = 653}, - [2403] = {.lex_state = 653}, - [2404] = {.lex_state = 640}, - [2405] = {.lex_state = 52}, - [2406] = {.lex_state = 654}, - [2407] = {.lex_state = 584}, - [2408] = {.lex_state = 646}, - [2409] = {.lex_state = 628}, - [2410] = {.lex_state = 584}, - [2411] = {.lex_state = 655}, - [2412] = {.lex_state = 171, .external_lex_state = 2}, - [2413] = {.lex_state = 171, .external_lex_state = 2}, - [2414] = {.lex_state = 171, .external_lex_state = 2}, - [2415] = {.lex_state = 171, .external_lex_state = 2}, - [2416] = {.lex_state = 580}, - [2417] = {.lex_state = 584}, - [2418] = {.lex_state = 640}, - [2419] = {.lex_state = 628}, - [2420] = {.lex_state = 650}, - [2421] = {.lex_state = 640}, - [2422] = {.lex_state = 653}, + [2353] = {.lex_state = 587}, + [2354] = {.lex_state = 587}, + [2355] = {.lex_state = 587}, + [2356] = {.lex_state = 49, .external_lex_state = 2}, + [2357] = {.lex_state = 641}, + [2358] = {.lex_state = 49, .external_lex_state = 2}, + [2359] = {.lex_state = 49, .external_lex_state = 2}, + [2360] = {.lex_state = 49, .external_lex_state = 2}, + [2361] = {.lex_state = 49, .external_lex_state = 2}, + [2362] = {.lex_state = 641}, + [2363] = {.lex_state = 49, .external_lex_state = 2}, + [2364] = {.lex_state = 49, .external_lex_state = 2}, + [2365] = {.lex_state = 49, .external_lex_state = 2}, + [2366] = {.lex_state = 49, .external_lex_state = 2}, + [2367] = {.lex_state = 644}, + [2368] = {.lex_state = 644}, + [2369] = {.lex_state = 650}, + [2370] = {.lex_state = 650}, + [2371] = {.lex_state = 652}, + [2372] = {.lex_state = 642}, + [2373] = {.lex_state = 587}, + [2374] = {.lex_state = 642}, + [2375] = {.lex_state = 639}, + [2376] = {.lex_state = 639}, + [2377] = {.lex_state = 648}, + [2378] = {.lex_state = 587}, + [2379] = {.lex_state = 587}, + [2380] = {.lex_state = 587}, + [2381] = {.lex_state = 639}, + [2382] = {.lex_state = 650}, + [2383] = {.lex_state = 645}, + [2384] = {.lex_state = 642}, + [2385] = {.lex_state = 652}, + [2386] = {.lex_state = 652}, + [2387] = {.lex_state = 652}, + [2388] = {.lex_state = 654}, + [2389] = {.lex_state = 579}, + [2390] = {.lex_state = 579}, + [2391] = {.lex_state = 579}, + [2392] = {.lex_state = 579}, + [2393] = {.lex_state = 579}, + [2394] = {.lex_state = 579}, + [2395] = {.lex_state = 639}, + [2396] = {.lex_state = 639}, + [2397] = {.lex_state = 639}, + [2398] = {.lex_state = 642}, + [2399] = {.lex_state = 649}, + [2400] = {.lex_state = 639}, + [2401] = {.lex_state = 627}, + [2402] = {.lex_state = 579}, + [2403] = {.lex_state = 584}, + [2404] = {.lex_state = 584}, + [2405] = {.lex_state = 652}, + [2406] = {.lex_state = 646}, + [2407] = {.lex_state = 650}, + [2408] = {.lex_state = 581}, + [2409] = {.lex_state = 653}, + [2410] = {.lex_state = 52}, + [2411] = {.lex_state = 656}, + [2412] = {.lex_state = 170, .external_lex_state = 2}, + [2413] = {.lex_state = 170, .external_lex_state = 2}, + [2414] = {.lex_state = 583}, + [2415] = {.lex_state = 170, .external_lex_state = 2}, + [2416] = {.lex_state = 649}, + [2417] = {.lex_state = 656}, + [2418] = {.lex_state = 639}, + [2419] = {.lex_state = 651}, + [2420] = {.lex_state = 654}, + [2421] = {.lex_state = 170, .external_lex_state = 2}, + [2422] = {.lex_state = 583}, [2423] = {.lex_state = 652}, - [2424] = {.lex_state = 640}, - [2425] = {.lex_state = 584}, - [2426] = {.lex_state = 580}, - [2427] = {.lex_state = 583}, - [2428] = {.lex_state = 171, .external_lex_state = 2}, - [2429] = {.lex_state = 580}, - [2430] = {.lex_state = 584}, - [2431] = {.lex_state = 654}, - [2432] = {.lex_state = 652}, - [2433] = {.lex_state = 659}, - [2434] = {.lex_state = 654}, - [2435] = {.lex_state = 53}, - [2436] = {.lex_state = 53}, - [2437] = {.lex_state = 656}, - [2438] = {.lex_state = 582}, + [2424] = {.lex_state = 170, .external_lex_state = 2}, + [2425] = {.lex_state = 583}, + [2426] = {.lex_state = 645}, + [2427] = {.lex_state = 639}, + [2428] = {.lex_state = 579}, + [2429] = {.lex_state = 651}, + [2430] = {.lex_state = 639}, + [2431] = {.lex_state = 639}, + [2432] = {.lex_state = 627}, + [2433] = {.lex_state = 652}, + [2434] = {.lex_state = 646}, + [2435] = {.lex_state = 652}, + [2436] = {.lex_state = 627}, + [2437] = {.lex_state = 651}, + [2438] = {.lex_state = 579}, [2439] = {.lex_state = 583}, - [2440] = {.lex_state = 584}, - [2441] = {.lex_state = 652}, - [2442] = {.lex_state = 584}, - [2443] = {.lex_state = 654}, - [2444] = {.lex_state = 584}, - [2445] = {.lex_state = 54}, - [2446] = {.lex_state = 648}, + [2440] = {.lex_state = 582}, + [2441] = {.lex_state = 583}, + [2442] = {.lex_state = 583}, + [2443] = {.lex_state = 658}, + [2444] = {.lex_state = 52}, + [2445] = {.lex_state = 583}, + [2446] = {.lex_state = 170, .external_lex_state = 2}, [2447] = {.lex_state = 56}, - [2448] = {.lex_state = 657}, - [2449] = {.lex_state = 659}, - [2450] = {.lex_state = 580}, - [2451] = {.lex_state = 580}, - [2452] = {.lex_state = 50, .external_lex_state = 2}, - [2453] = {.lex_state = 659}, - [2454] = {.lex_state = 659}, - [2455] = {.lex_state = 657}, - [2456] = {.lex_state = 583}, - [2457] = {.lex_state = 583}, - [2458] = {.lex_state = 659}, - [2459] = {.lex_state = 654}, - [2460] = {.lex_state = 171, .external_lex_state = 2}, - [2461] = {.lex_state = 52}, - [2462] = {.lex_state = 584}, - [2463] = {.lex_state = 659}, - [2464] = {.lex_state = 654}, - [2465] = {.lex_state = 654}, + [2448] = {.lex_state = 582}, + [2449] = {.lex_state = 653}, + [2450] = {.lex_state = 655}, + [2451] = {.lex_state = 651}, + [2452] = {.lex_state = 53}, + [2453] = {.lex_state = 583}, + [2454] = {.lex_state = 653}, + [2455] = {.lex_state = 658}, + [2456] = {.lex_state = 50, .external_lex_state = 2}, + [2457] = {.lex_state = 658}, + [2458] = {.lex_state = 653}, + [2459] = {.lex_state = 579}, + [2460] = {.lex_state = 579}, + [2461] = {.lex_state = 579}, + [2462] = {.lex_state = 653}, + [2463] = {.lex_state = 582}, + [2464] = {.lex_state = 656}, + [2465] = {.lex_state = 54}, [2466] = {.lex_state = 658}, - [2467] = {.lex_state = 50, .external_lex_state = 2}, - [2468] = {.lex_state = 52}, - [2469] = {.lex_state = 52}, - [2470] = {.lex_state = 52}, - [2471] = {.lex_state = 58}, - [2472] = {.lex_state = 654}, - [2473] = {.lex_state = 659}, - [2474] = {.lex_state = 659}, - [2475] = {.lex_state = 656}, - [2476] = {.lex_state = 57}, - [2477] = {.lex_state = 583}, - [2478] = {.lex_state = 648}, - [2479] = {.lex_state = 583}, - [2480] = {.lex_state = 52}, - [2481] = {.lex_state = 57}, - [2482] = {.lex_state = 583}, - [2483] = {.lex_state = 583}, - [2484] = {.lex_state = 580}, - [2485] = {.lex_state = 580}, - [2486] = {.lex_state = 663}, - [2487] = {.lex_state = 583}, - [2488] = {.lex_state = 654}, - [2489] = {.lex_state = 658}, - [2490] = {.lex_state = 659}, - [2491] = {.lex_state = 583}, - [2492] = {.lex_state = 583}, - [2493] = {.lex_state = 659}, - [2494] = {.lex_state = 583}, - [2495] = {.lex_state = 583}, - [2496] = {.lex_state = 583}, - [2497] = {.lex_state = 661}, - [2498] = {.lex_state = 583}, - [2499] = {.lex_state = 583}, - [2500] = {.lex_state = 580}, - [2501] = {.lex_state = 584}, - [2502] = {.lex_state = 660}, - [2503] = {.lex_state = 660}, - [2504] = {.lex_state = 660}, - [2505] = {.lex_state = 658}, - [2506] = {.lex_state = 580}, - [2507] = {.lex_state = 583}, - [2508] = {.lex_state = 2}, - [2509] = {.lex_state = 654}, - [2510] = {.lex_state = 584}, - [2511] = {.lex_state = 2}, - [2512] = {.lex_state = 658}, - [2513] = {.lex_state = 155, .external_lex_state = 2}, - [2514] = {.lex_state = 580}, - [2515] = {.lex_state = 2}, - [2516] = {.lex_state = 583}, - [2517] = {.lex_state = 663}, - [2518] = {.lex_state = 583}, - [2519] = {.lex_state = 583}, - [2520] = {.lex_state = 58}, - [2521] = {.lex_state = 58}, - [2522] = {.lex_state = 58}, - [2523] = {.lex_state = 665}, - [2524] = {.lex_state = 580}, - [2525] = {.lex_state = 665}, - [2526] = {.lex_state = 661}, - [2527] = {.lex_state = 59}, - [2528] = {.lex_state = 660}, - [2529] = {.lex_state = 155, .external_lex_state = 2}, - [2530] = {.lex_state = 155, .external_lex_state = 2}, - [2531] = {.lex_state = 580}, - [2532] = {.lex_state = 660}, - [2533] = {.lex_state = 583}, - [2534] = {.lex_state = 55}, - [2535] = {.lex_state = 155, .external_lex_state = 2}, - [2536] = {.lex_state = 580}, - [2537] = {.lex_state = 580}, - [2538] = {.lex_state = 580}, - [2539] = {.lex_state = 580}, - [2540] = {.lex_state = 584}, - [2541] = {.lex_state = 584}, - [2542] = {.lex_state = 584}, + [2467] = {.lex_state = 581}, + [2468] = {.lex_state = 658}, + [2469] = {.lex_state = 170, .external_lex_state = 2}, + [2470] = {.lex_state = 583}, + [2471] = {.lex_state = 582}, + [2472] = {.lex_state = 656}, + [2473] = {.lex_state = 53}, + [2474] = {.lex_state = 647}, + [2475] = {.lex_state = 58}, + [2476] = {.lex_state = 582}, + [2477] = {.lex_state = 653}, + [2478] = {.lex_state = 57}, + [2479] = {.lex_state = 653}, + [2480] = {.lex_state = 653}, + [2481] = {.lex_state = 582}, + [2482] = {.lex_state = 582}, + [2483] = {.lex_state = 582}, + [2484] = {.lex_state = 582}, + [2485] = {.lex_state = 658}, + [2486] = {.lex_state = 647}, + [2487] = {.lex_state = 655}, + [2488] = {.lex_state = 582}, + [2489] = {.lex_state = 57}, + [2490] = {.lex_state = 658}, + [2491] = {.lex_state = 657}, + [2492] = {.lex_state = 658}, + [2493] = {.lex_state = 658}, + [2494] = {.lex_state = 582}, + [2495] = {.lex_state = 657}, + [2496] = {.lex_state = 582}, + [2497] = {.lex_state = 582}, + [2498] = {.lex_state = 50, .external_lex_state = 2}, + [2499] = {.lex_state = 662}, + [2500] = {.lex_state = 52}, + [2501] = {.lex_state = 658}, + [2502] = {.lex_state = 52}, + [2503] = {.lex_state = 582}, + [2504] = {.lex_state = 52}, + [2505] = {.lex_state = 653}, + [2506] = {.lex_state = 52}, + [2507] = {.lex_state = 660}, + [2508] = {.lex_state = 582}, + [2509] = {.lex_state = 579}, + [2510] = {.lex_state = 579}, + [2511] = {.lex_state = 579}, + [2512] = {.lex_state = 582}, + [2513] = {.lex_state = 582}, + [2514] = {.lex_state = 583}, + [2515] = {.lex_state = 583}, + [2516] = {.lex_state = 579}, + [2517] = {.lex_state = 154, .external_lex_state = 2}, + [2518] = {.lex_state = 582}, + [2519] = {.lex_state = 579}, + [2520] = {.lex_state = 579}, + [2521] = {.lex_state = 664}, + [2522] = {.lex_state = 2}, + [2523] = {.lex_state = 582}, + [2524] = {.lex_state = 659}, + [2525] = {.lex_state = 2}, + [2526] = {.lex_state = 657}, + [2527] = {.lex_state = 58}, + [2528] = {.lex_state = 579}, + [2529] = {.lex_state = 659}, + [2530] = {.lex_state = 653}, + [2531] = {.lex_state = 659}, + [2532] = {.lex_state = 583}, + [2533] = {.lex_state = 579}, + [2534] = {.lex_state = 657}, + [2535] = {.lex_state = 662}, + [2536] = {.lex_state = 664}, + [2537] = {.lex_state = 660}, + [2538] = {.lex_state = 59}, + [2539] = {.lex_state = 2}, + [2540] = {.lex_state = 659}, + [2541] = {.lex_state = 58}, + [2542] = {.lex_state = 579}, [2543] = {.lex_state = 2}, - [2544] = {.lex_state = 583}, + [2544] = {.lex_state = 582}, [2545] = {.lex_state = 583}, - [2546] = {.lex_state = 583}, + [2546] = {.lex_state = 582}, [2547] = {.lex_state = 583}, - [2548] = {.lex_state = 580}, - [2549] = {.lex_state = 584}, - [2550] = {.lex_state = 584}, - [2551] = {.lex_state = 584}, - [2552] = {.lex_state = 584}, - [2553] = {.lex_state = 584}, + [2548] = {.lex_state = 582}, + [2549] = {.lex_state = 582}, + [2550] = {.lex_state = 579}, + [2551] = {.lex_state = 154, .external_lex_state = 2}, + [2552] = {.lex_state = 58}, + [2553] = {.lex_state = 583}, [2554] = {.lex_state = 583}, - [2555] = {.lex_state = 584}, - [2556] = {.lex_state = 584}, - [2557] = {.lex_state = 584}, - [2558] = {.lex_state = 584}, - [2559] = {.lex_state = 584}, - [2560] = {.lex_state = 2}, - [2561] = {.lex_state = 60}, - [2562] = {.lex_state = 660}, - [2563] = {.lex_state = 580}, - [2564] = {.lex_state = 662}, - [2565] = {.lex_state = 665}, - [2566] = {.lex_state = 583}, - [2567] = {.lex_state = 580}, - [2568] = {.lex_state = 580}, - [2569] = {.lex_state = 583}, - [2570] = {.lex_state = 580}, - [2571] = {.lex_state = 580}, - [2572] = {.lex_state = 580}, - [2573] = {.lex_state = 665}, - [2574] = {.lex_state = 583}, - [2575] = {.lex_state = 580}, - [2576] = {.lex_state = 667}, - [2577] = {.lex_state = 580}, - [2578] = {.lex_state = 667}, - [2579] = {.lex_state = 583}, - [2580] = {.lex_state = 583}, - [2581] = {.lex_state = 583}, - [2582] = {.lex_state = 667}, - [2583] = {.lex_state = 667}, - [2584] = {.lex_state = 667}, - [2585] = {.lex_state = 60}, - [2586] = {.lex_state = 2}, - [2587] = {.lex_state = 580}, - [2588] = {.lex_state = 580}, - [2589] = {.lex_state = 583}, - [2590] = {.lex_state = 660}, - [2591] = {.lex_state = 667}, - [2592] = {.lex_state = 584}, - [2593] = {.lex_state = 584}, - [2594] = {.lex_state = 667}, - [2595] = {.lex_state = 583}, - [2596] = {.lex_state = 583}, - [2597] = {.lex_state = 580}, - [2598] = {.lex_state = 660}, - [2599] = {.lex_state = 580}, - [2600] = {.lex_state = 580}, - [2601] = {.lex_state = 580}, - [2602] = {.lex_state = 580}, - [2603] = {.lex_state = 583}, - [2604] = {.lex_state = 580}, - [2605] = {.lex_state = 667}, - [2606] = {.lex_state = 580}, - [2607] = {.lex_state = 583}, - [2608] = {.lex_state = 667}, + [2555] = {.lex_state = 583}, + [2556] = {.lex_state = 583}, + [2557] = {.lex_state = 583}, + [2558] = {.lex_state = 583}, + [2559] = {.lex_state = 582}, + [2560] = {.lex_state = 583}, + [2561] = {.lex_state = 583}, + [2562] = {.lex_state = 582}, + [2563] = {.lex_state = 583}, + [2564] = {.lex_state = 582}, + [2565] = {.lex_state = 583}, + [2566] = {.lex_state = 579}, + [2567] = {.lex_state = 2}, + [2568] = {.lex_state = 154, .external_lex_state = 2}, + [2569] = {.lex_state = 579}, + [2570] = {.lex_state = 154, .external_lex_state = 2}, + [2571] = {.lex_state = 659}, + [2572] = {.lex_state = 55}, + [2573] = {.lex_state = 582}, + [2574] = {.lex_state = 659}, + [2575] = {.lex_state = 582}, + [2576] = {.lex_state = 582}, + [2577] = {.lex_state = 582}, + [2578] = {.lex_state = 582}, + [2579] = {.lex_state = 579}, + [2580] = {.lex_state = 582}, + [2581] = {.lex_state = 582}, + [2582] = {.lex_state = 582}, + [2583] = {.lex_state = 582}, + [2584] = {.lex_state = 659}, + [2585] = {.lex_state = 659}, + [2586] = {.lex_state = 659}, + [2587] = {.lex_state = 579}, + [2588] = {.lex_state = 582}, + [2589] = {.lex_state = 579}, + [2590] = {.lex_state = 579}, + [2591] = {.lex_state = 582}, + [2592] = {.lex_state = 582}, + [2593] = {.lex_state = 582}, + [2594] = {.lex_state = 666}, + [2595] = {.lex_state = 666}, + [2596] = {.lex_state = 666}, + [2597] = {.lex_state = 666}, + [2598] = {.lex_state = 666}, + [2599] = {.lex_state = 666}, + [2600] = {.lex_state = 666}, + [2601] = {.lex_state = 666}, + [2602] = {.lex_state = 666}, + [2603] = {.lex_state = 666}, + [2604] = {.lex_state = 2}, + [2605] = {.lex_state = 2}, + [2606] = {.lex_state = 663}, + [2607] = {.lex_state = 2}, + [2608] = {.lex_state = 2}, [2609] = {.lex_state = 2}, - [2610] = {.lex_state = 580}, + [2610] = {.lex_state = 2}, [2611] = {.lex_state = 2}, [2612] = {.lex_state = 2}, - [2613] = {.lex_state = 667}, - [2614] = {.lex_state = 584}, - [2615] = {.lex_state = 583}, - [2616] = {.lex_state = 667}, - [2617] = {.lex_state = 584}, - [2618] = {.lex_state = 664}, - [2619] = {.lex_state = 584}, - [2620] = {.lex_state = 667}, - [2621] = {.lex_state = 584}, - [2622] = {.lex_state = 660}, - [2623] = {.lex_state = 2}, - [2624] = {.lex_state = 580}, - [2625] = {.lex_state = 583}, - [2626] = {.lex_state = 2}, - [2627] = {.lex_state = 2}, - [2628] = {.lex_state = 584}, - [2629] = {.lex_state = 580}, - [2630] = {.lex_state = 660}, - [2631] = {.lex_state = 580}, - [2632] = {.lex_state = 580}, - [2633] = {.lex_state = 584}, + [2613] = {.lex_state = 579}, + [2614] = {.lex_state = 583}, + [2615] = {.lex_state = 664}, + [2616] = {.lex_state = 579}, + [2617] = {.lex_state = 579}, + [2618] = {.lex_state = 579}, + [2619] = {.lex_state = 579}, + [2620] = {.lex_state = 579}, + [2621] = {.lex_state = 664}, + [2622] = {.lex_state = 666}, + [2623] = {.lex_state = 666}, + [2624] = {.lex_state = 666}, + [2625] = {.lex_state = 60}, + [2626] = {.lex_state = 60}, + [2627] = {.lex_state = 583}, + [2628] = {.lex_state = 579}, + [2629] = {.lex_state = 583}, + [2630] = {.lex_state = 583}, + [2631] = {.lex_state = 583}, + [2632] = {.lex_state = 579}, + [2633] = {.lex_state = 579}, [2634] = {.lex_state = 583}, - [2635] = {.lex_state = 584}, - [2636] = {.lex_state = 584}, - [2637] = {.lex_state = 667}, - [2638] = {.lex_state = 584}, - [2639] = {.lex_state = 584}, - [2640] = {.lex_state = 584}, - [2641] = {.lex_state = 583}, - [2642] = {.lex_state = 583}, - [2643] = {.lex_state = 2}, - [2644] = {.lex_state = 583}, + [2635] = {.lex_state = 583}, + [2636] = {.lex_state = 583}, + [2637] = {.lex_state = 579}, + [2638] = {.lex_state = 579}, + [2639] = {.lex_state = 579}, + [2640] = {.lex_state = 579}, + [2641] = {.lex_state = 579}, + [2642] = {.lex_state = 579}, + [2643] = {.lex_state = 579}, + [2644] = {.lex_state = 659}, [2645] = {.lex_state = 583}, - [2646] = {.lex_state = 61}, - [2647] = {.lex_state = 111}, - [2648] = {.lex_state = 2}, - [2649] = {.lex_state = 646}, - [2650] = {.lex_state = 667}, - [2651] = {.lex_state = 646}, + [2646] = {.lex_state = 582}, + [2647] = {.lex_state = 582}, + [2648] = {.lex_state = 579}, + [2649] = {.lex_state = 579}, + [2650] = {.lex_state = 582}, + [2651] = {.lex_state = 583}, [2652] = {.lex_state = 583}, - [2653] = {.lex_state = 662}, - [2654] = {.lex_state = 580}, - [2655] = {.lex_state = 580}, - [2656] = {.lex_state = 580}, - [2657] = {.lex_state = 2}, - [2658] = {.lex_state = 664}, - [2659] = {.lex_state = 583}, - [2660] = {.lex_state = 583}, - [2661] = {.lex_state = 667}, - [2662] = {.lex_state = 2}, - [2663] = {.lex_state = 667}, - [2664] = {.lex_state = 667}, + [2653] = {.lex_state = 583}, + [2654] = {.lex_state = 583}, + [2655] = {.lex_state = 661}, + [2656] = {.lex_state = 2}, + [2657] = {.lex_state = 582}, + [2658] = {.lex_state = 666}, + [2659] = {.lex_state = 666}, + [2660] = {.lex_state = 645}, + [2661] = {.lex_state = 666}, + [2662] = {.lex_state = 666}, + [2663] = {.lex_state = 666}, + [2664] = {.lex_state = 666}, [2665] = {.lex_state = 666}, - [2666] = {.lex_state = 646}, - [2667] = {.lex_state = 584}, - [2668] = {.lex_state = 583}, - [2669] = {.lex_state = 584}, - [2670] = {.lex_state = 667}, - [2671] = {.lex_state = 584}, - [2672] = {.lex_state = 2}, - [2673] = {.lex_state = 583}, - [2674] = {.lex_state = 2}, - [2675] = {.lex_state = 667}, - [2676] = {.lex_state = 583}, + [2666] = {.lex_state = 666}, + [2667] = {.lex_state = 666}, + [2668] = {.lex_state = 666}, + [2669] = {.lex_state = 666}, + [2670] = {.lex_state = 582}, + [2671] = {.lex_state = 661}, + [2672] = {.lex_state = 61}, + [2673] = {.lex_state = 666}, + [2674] = {.lex_state = 61}, + [2675] = {.lex_state = 61}, + [2676] = {.lex_state = 666}, [2677] = {.lex_state = 2}, - [2678] = {.lex_state = 667}, - [2679] = {.lex_state = 669}, - [2680] = {.lex_state = 583}, - [2681] = {.lex_state = 61}, - [2682] = {.lex_state = 667}, - [2683] = {.lex_state = 580}, - [2684] = {.lex_state = 2}, - [2685] = {.lex_state = 583}, - [2686] = {.lex_state = 646}, - [2687] = {.lex_state = 646}, - [2688] = {.lex_state = 646}, - [2689] = {.lex_state = 646}, - [2690] = {.lex_state = 646}, - [2691] = {.lex_state = 580}, - [2692] = {.lex_state = 2}, - [2693] = {.lex_state = 667}, - [2694] = {.lex_state = 583}, - [2695] = {.lex_state = 584}, - [2696] = {.lex_state = 583}, - [2697] = {.lex_state = 580}, - [2698] = {.lex_state = 667}, - [2699] = {.lex_state = 667}, - [2700] = {.lex_state = 583}, - [2701] = {.lex_state = 580}, - [2702] = {.lex_state = 646}, - [2703] = {.lex_state = 61}, - [2704] = {.lex_state = 646}, - [2705] = {.lex_state = 666}, - [2706] = {.lex_state = 667}, - [2707] = {.lex_state = 61}, - [2708] = {.lex_state = 583}, - [2709] = {.lex_state = 2}, - [2710] = {.lex_state = 583}, - [2711] = {.lex_state = 61}, - [2712] = {.lex_state = 667}, - [2713] = {.lex_state = 667}, - [2714] = {.lex_state = 646}, - [2715] = {.lex_state = 666}, - [2716] = {.lex_state = 646}, - [2717] = {.lex_state = 584}, - [2718] = {.lex_state = 646}, - [2719] = {.lex_state = 583}, - [2720] = {.lex_state = 584}, - [2721] = {.lex_state = 584}, - [2722] = {.lex_state = 2}, - [2723] = {.lex_state = 2}, - [2724] = {.lex_state = 2}, - [2725] = {.lex_state = 2}, - [2726] = {.lex_state = 2}, - [2727] = {.lex_state = 2}, - [2728] = {.lex_state = 668}, - [2729] = {.lex_state = 584}, - [2730] = {.lex_state = 583}, - [2731] = {.lex_state = 632}, - [2732] = {.lex_state = 584}, - [2733] = {.lex_state = 63}, - [2734] = {.lex_state = 668}, - [2735] = {.lex_state = 584}, - [2736] = {.lex_state = 584}, - [2737] = {.lex_state = 640}, - [2738] = {.lex_state = 584}, - [2739] = {.lex_state = 584}, - [2740] = {.lex_state = 640}, - [2741] = {.lex_state = 584}, - [2742] = {.lex_state = 640}, - [2743] = {.lex_state = 584}, - [2744] = {.lex_state = 584}, - [2745] = {.lex_state = 584}, - [2746] = {.lex_state = 584}, - [2747] = {.lex_state = 584}, - [2748] = {.lex_state = 584}, - [2749] = {.lex_state = 584}, - [2750] = {.lex_state = 584}, - [2751] = {.lex_state = 584}, - [2752] = {.lex_state = 584}, - [2753] = {.lex_state = 584}, - [2754] = {.lex_state = 584}, - [2755] = {.lex_state = 584}, - [2756] = {.lex_state = 584}, - [2757] = {.lex_state = 584}, - [2758] = {.lex_state = 584}, - [2759] = {.lex_state = 584}, - [2760] = {.lex_state = 668}, - [2761] = {.lex_state = 584}, - [2762] = {.lex_state = 584}, - [2763] = {.lex_state = 668}, - [2764] = {.lex_state = 584}, - [2765] = {.lex_state = 584}, - [2766] = {.lex_state = 584}, - [2767] = {.lex_state = 668}, - [2768] = {.lex_state = 584}, - [2769] = {.lex_state = 668}, - [2770] = {.lex_state = 584}, - [2771] = {.lex_state = 584}, - [2772] = {.lex_state = 662}, - [2773] = {.lex_state = 668}, - [2774] = {.lex_state = 668}, - [2775] = {.lex_state = 584}, - [2776] = {.lex_state = 632}, - [2777] = {.lex_state = 584}, - [2778] = {.lex_state = 580}, - [2779] = {.lex_state = 584}, - [2780] = {.lex_state = 646}, - [2781] = {.lex_state = 646}, - [2782] = {.lex_state = 584}, - [2783] = {.lex_state = 62}, - [2784] = {.lex_state = 584}, - [2785] = {.lex_state = 584}, - [2786] = {.lex_state = 584}, - [2787] = {.lex_state = 632}, - [2788] = {.lex_state = 580}, - [2789] = {.lex_state = 668}, - [2790] = {.lex_state = 668}, - [2791] = {.lex_state = 584}, - [2792] = {.lex_state = 646}, - [2793] = {.lex_state = 584}, - [2794] = {.lex_state = 584}, - [2795] = {.lex_state = 584}, - [2796] = {.lex_state = 584}, - [2797] = {.lex_state = 2}, - [2798] = {.lex_state = 584}, - [2799] = {.lex_state = 584}, - [2800] = {.lex_state = 584}, - [2801] = {.lex_state = 580}, - [2802] = {.lex_state = 584}, - [2803] = {.lex_state = 584}, - [2804] = {.lex_state = 584}, - [2805] = {.lex_state = 646}, - [2806] = {.lex_state = 628}, - [2807] = {.lex_state = 584}, - [2808] = {.lex_state = 584}, - [2809] = {.lex_state = 584}, - [2810] = {.lex_state = 2}, - [2811] = {.lex_state = 584}, - [2812] = {.lex_state = 584}, - [2813] = {.lex_state = 584}, - [2814] = {.lex_state = 584}, - [2815] = {.lex_state = 584}, - [2816] = {.lex_state = 584}, - [2817] = {.lex_state = 584}, - [2818] = {.lex_state = 668}, - [2819] = {.lex_state = 584}, - [2820] = {.lex_state = 584}, - [2821] = {.lex_state = 584}, - [2822] = {.lex_state = 584}, - [2823] = {.lex_state = 584}, - [2824] = {.lex_state = 584}, - [2825] = {.lex_state = 2}, - [2826] = {.lex_state = 584}, - [2827] = {.lex_state = 584}, - [2828] = {.lex_state = 584}, - [2829] = {.lex_state = 584}, - [2830] = {.lex_state = 640}, - [2831] = {.lex_state = 584}, - [2832] = {.lex_state = 584}, - [2833] = {.lex_state = 584}, - [2834] = {.lex_state = 584}, - [2835] = {.lex_state = 584}, - [2836] = {.lex_state = 584}, - [2837] = {.lex_state = 584}, - [2838] = {.lex_state = 584}, - [2839] = {.lex_state = 584}, - [2840] = {.lex_state = 646}, - [2841] = {.lex_state = 668}, - [2842] = {.lex_state = 584}, - [2843] = {.lex_state = 640}, - [2844] = {.lex_state = 580}, - [2845] = {.lex_state = 668}, - [2846] = {.lex_state = 584}, - [2847] = {.lex_state = 584}, - [2848] = {.lex_state = 667}, - [2849] = {.lex_state = 584}, - [2850] = {.lex_state = 632}, - [2851] = {.lex_state = 2}, - [2852] = {.lex_state = 666}, - [2853] = {.lex_state = 584}, - [2854] = {.lex_state = 584}, - [2855] = {.lex_state = 584}, - [2856] = {.lex_state = 584}, - [2857] = {.lex_state = 584}, + [2678] = {.lex_state = 2}, + [2679] = {.lex_state = 2}, + [2680] = {.lex_state = 579}, + [2681] = {.lex_state = 645}, + [2682] = {.lex_state = 583}, + [2683] = {.lex_state = 2}, + [2684] = {.lex_state = 583}, + [2685] = {.lex_state = 645}, + [2686] = {.lex_state = 583}, + [2687] = {.lex_state = 582}, + [2688] = {.lex_state = 582}, + [2689] = {.lex_state = 582}, + [2690] = {.lex_state = 582}, + [2691] = {.lex_state = 666}, + [2692] = {.lex_state = 582}, + [2693] = {.lex_state = 579}, + [2694] = {.lex_state = 582}, + [2695] = {.lex_state = 582}, + [2696] = {.lex_state = 579}, + [2697] = {.lex_state = 2}, + [2698] = {.lex_state = 61}, + [2699] = {.lex_state = 61}, + [2700] = {.lex_state = 663}, + [2701] = {.lex_state = 583}, + [2702] = {.lex_state = 579}, + [2703] = {.lex_state = 2}, + [2704] = {.lex_state = 579}, + [2705] = {.lex_state = 579}, + [2706] = {.lex_state = 665}, + [2707] = {.lex_state = 110}, + [2708] = {.lex_state = 582}, + [2709] = {.lex_state = 668}, + [2710] = {.lex_state = 645}, + [2711] = {.lex_state = 645}, + [2712] = {.lex_state = 2}, + [2713] = {.lex_state = 2}, + [2714] = {.lex_state = 645}, + [2715] = {.lex_state = 645}, + [2716] = {.lex_state = 645}, + [2717] = {.lex_state = 645}, + [2718] = {.lex_state = 645}, + [2719] = {.lex_state = 665}, + [2720] = {.lex_state = 582}, + [2721] = {.lex_state = 645}, + [2722] = {.lex_state = 582}, + [2723] = {.lex_state = 582}, + [2724] = {.lex_state = 582}, + [2725] = {.lex_state = 582}, + [2726] = {.lex_state = 579}, + [2727] = {.lex_state = 639}, + [2728] = {.lex_state = 583}, + [2729] = {.lex_state = 666}, + [2730] = {.lex_state = 2}, + [2731] = {.lex_state = 645}, + [2732] = {.lex_state = 583}, + [2733] = {.lex_state = 583}, + [2734] = {.lex_state = 645}, + [2735] = {.lex_state = 645}, + [2736] = {.lex_state = 583}, + [2737] = {.lex_state = 579}, + [2738] = {.lex_state = 583}, + [2739] = {.lex_state = 645}, + [2740] = {.lex_state = 645}, + [2741] = {.lex_state = 2}, + [2742] = {.lex_state = 579}, + [2743] = {.lex_state = 667}, + [2744] = {.lex_state = 645}, + [2745] = {.lex_state = 2}, + [2746] = {.lex_state = 645}, + [2747] = {.lex_state = 667}, + [2748] = {.lex_state = 2}, + [2749] = {.lex_state = 667}, + [2750] = {.lex_state = 645}, + [2751] = {.lex_state = 645}, + [2752] = {.lex_state = 583}, + [2753] = {.lex_state = 583}, + [2754] = {.lex_state = 583}, + [2755] = {.lex_state = 583}, + [2756] = {.lex_state = 583}, + [2757] = {.lex_state = 583}, + [2758] = {.lex_state = 583}, + [2759] = {.lex_state = 583}, + [2760] = {.lex_state = 583}, + [2761] = {.lex_state = 583}, + [2762] = {.lex_state = 583}, + [2763] = {.lex_state = 583}, + [2764] = {.lex_state = 583}, + [2765] = {.lex_state = 583}, + [2766] = {.lex_state = 583}, + [2767] = {.lex_state = 583}, + [2768] = {.lex_state = 583}, + [2769] = {.lex_state = 583}, + [2770] = {.lex_state = 583}, + [2771] = {.lex_state = 583}, + [2772] = {.lex_state = 583}, + [2773] = {.lex_state = 583}, + [2774] = {.lex_state = 583}, + [2775] = {.lex_state = 583}, + [2776] = {.lex_state = 583}, + [2777] = {.lex_state = 583}, + [2778] = {.lex_state = 583}, + [2779] = {.lex_state = 583}, + [2780] = {.lex_state = 583}, + [2781] = {.lex_state = 583}, + [2782] = {.lex_state = 583}, + [2783] = {.lex_state = 583}, + [2784] = {.lex_state = 583}, + [2785] = {.lex_state = 583}, + [2786] = {.lex_state = 583}, + [2787] = {.lex_state = 583}, + [2788] = {.lex_state = 667}, + [2789] = {.lex_state = 665}, + [2790] = {.lex_state = 667}, + [2791] = {.lex_state = 631}, + [2792] = {.lex_state = 639}, + [2793] = {.lex_state = 631}, + [2794] = {.lex_state = 639}, + [2795] = {.lex_state = 583}, + [2796] = {.lex_state = 583}, + [2797] = {.lex_state = 583}, + [2798] = {.lex_state = 63}, + [2799] = {.lex_state = 583}, + [2800] = {.lex_state = 583}, + [2801] = {.lex_state = 661}, + [2802] = {.lex_state = 583}, + [2803] = {.lex_state = 583}, + [2804] = {.lex_state = 583}, + [2805] = {.lex_state = 583}, + [2806] = {.lex_state = 583}, + [2807] = {.lex_state = 583}, + [2808] = {.lex_state = 583}, + [2809] = {.lex_state = 62}, + [2810] = {.lex_state = 583}, + [2811] = {.lex_state = 583}, + [2812] = {.lex_state = 583}, + [2813] = {.lex_state = 583}, + [2814] = {.lex_state = 583}, + [2815] = {.lex_state = 583}, + [2816] = {.lex_state = 583}, + [2817] = {.lex_state = 583}, + [2818] = {.lex_state = 583}, + [2819] = {.lex_state = 582}, + [2820] = {.lex_state = 579}, + [2821] = {.lex_state = 631}, + [2822] = {.lex_state = 579}, + [2823] = {.lex_state = 583}, + [2824] = {.lex_state = 583}, + [2825] = {.lex_state = 667}, + [2826] = {.lex_state = 583}, + [2827] = {.lex_state = 583}, + [2828] = {.lex_state = 583}, + [2829] = {.lex_state = 583}, + [2830] = {.lex_state = 667}, + [2831] = {.lex_state = 583}, + [2832] = {.lex_state = 583}, + [2833] = {.lex_state = 639}, + [2834] = {.lex_state = 665}, + [2835] = {.lex_state = 639}, + [2836] = {.lex_state = 583}, + [2837] = {.lex_state = 2}, + [2838] = {.lex_state = 2}, + [2839] = {.lex_state = 2}, + [2840] = {.lex_state = 2}, + [2841] = {.lex_state = 2}, + [2842] = {.lex_state = 2}, + [2843] = {.lex_state = 667}, + [2844] = {.lex_state = 627}, + [2845] = {.lex_state = 583}, + [2846] = {.lex_state = 583}, + [2847] = {.lex_state = 667}, + [2848] = {.lex_state = 583}, + [2849] = {.lex_state = 583}, + [2850] = {.lex_state = 583}, + [2851] = {.lex_state = 583}, + [2852] = {.lex_state = 583}, + [2853] = {.lex_state = 667}, + [2854] = {.lex_state = 583}, + [2855] = {.lex_state = 583}, + [2856] = {.lex_state = 667}, + [2857] = {.lex_state = 583}, [2858] = {.lex_state = 583}, - [2859] = {.lex_state = 584}, - [2860] = {.lex_state = 584}, - [2861] = {.lex_state = 584}, - [2862] = {.lex_state = 2}, + [2859] = {.lex_state = 583}, + [2860] = {.lex_state = 583}, + [2861] = {.lex_state = 583}, + [2862] = {.lex_state = 583}, [2863] = {.lex_state = 583}, - [2864] = {.lex_state = 584}, - [2865] = {.lex_state = 584}, - [2866] = {.lex_state = 584}, - [2867] = {.lex_state = 584}, - [2868] = {.lex_state = 584}, - [2869] = {.lex_state = 584}, - [2870] = {.lex_state = 584}, - [2871] = {.lex_state = 584}, - [2872] = {.lex_state = 584}, - [2873] = {.lex_state = 584}, - [2874] = {.lex_state = 584}, - [2875] = {.lex_state = 584}, - [2876] = {.lex_state = 584}, - [2877] = {.lex_state = 584}, - [2878] = {.lex_state = 584}, - [2879] = {.lex_state = 584}, - [2880] = {.lex_state = 584}, - [2881] = {.lex_state = 584}, - [2882] = {.lex_state = 584}, - [2883] = {.lex_state = 584}, - [2884] = {.lex_state = 584}, - [2885] = {.lex_state = 584}, - [2886] = {.lex_state = 584}, - [2887] = {.lex_state = 646}, - [2888] = {.lex_state = 669}, - [2889] = {.lex_state = 584}, - [2890] = {.lex_state = 646}, - [2891] = {.lex_state = 584}, - [2892] = {.lex_state = 632}, - [2893] = {.lex_state = 584}, - [2894] = {.lex_state = 632}, - [2895] = {.lex_state = 632}, - [2896] = {.lex_state = 632}, - [2897] = {.lex_state = 584}, - [2898] = {.lex_state = 584}, - [2899] = {.lex_state = 584}, - [2900] = {.lex_state = 584}, - [2901] = {.lex_state = 584}, - [2902] = {.lex_state = 646}, - [2903] = {.lex_state = 646}, - [2904] = {.lex_state = 584}, - [2905] = {.lex_state = 584}, - [2906] = {.lex_state = 584}, - [2907] = {.lex_state = 583}, - [2908] = {.lex_state = 64}, - [2909] = {.lex_state = 584}, - [2910] = {.lex_state = 632}, - [2911] = {.lex_state = 583}, - [2912] = {.lex_state = 584}, - [2913] = {.lex_state = 2}, - [2914] = {.lex_state = 2}, - [2915] = {.lex_state = 584}, - [2916] = {.lex_state = 668}, - [2917] = {.lex_state = 2}, - [2918] = {.lex_state = 584}, - [2919] = {.lex_state = 111}, - [2920] = {.lex_state = 111}, - [2921] = {.lex_state = 580}, - [2922] = {.lex_state = 640}, - [2923] = {.lex_state = 632}, - [2924] = {.lex_state = 584}, - [2925] = {.lex_state = 584}, - [2926] = {.lex_state = 2}, - [2927] = {.lex_state = 640}, - [2928] = {.lex_state = 584}, - [2929] = {.lex_state = 635}, - [2930] = {.lex_state = 2}, - [2931] = {.lex_state = 2}, - [2932] = {.lex_state = 668}, - [2933] = {.lex_state = 73}, - [2934] = {.lex_state = 584}, - [2935] = {.lex_state = 2}, - [2936] = {.lex_state = 668}, - [2937] = {.lex_state = 583}, - [2938] = {.lex_state = 632}, - [2939] = {.lex_state = 668}, - [2940] = {.lex_state = 640}, - [2941] = {.lex_state = 2}, - [2942] = {.lex_state = 584}, - [2943] = {.lex_state = 584}, - [2944] = {.lex_state = 67}, - [2945] = {.lex_state = 584}, - [2946] = {.lex_state = 584}, - [2947] = {.lex_state = 584}, + [2864] = {.lex_state = 583}, + [2865] = {.lex_state = 583}, + [2866] = {.lex_state = 583}, + [2867] = {.lex_state = 583}, + [2868] = {.lex_state = 583}, + [2869] = {.lex_state = 583}, + [2870] = {.lex_state = 583}, + [2871] = {.lex_state = 583}, + [2872] = {.lex_state = 583}, + [2873] = {.lex_state = 583}, + [2874] = {.lex_state = 583}, + [2875] = {.lex_state = 583}, + [2876] = {.lex_state = 583}, + [2877] = {.lex_state = 583}, + [2878] = {.lex_state = 583}, + [2879] = {.lex_state = 583}, + [2880] = {.lex_state = 2}, + [2881] = {.lex_state = 583}, + [2882] = {.lex_state = 583}, + [2883] = {.lex_state = 583}, + [2884] = {.lex_state = 583}, + [2885] = {.lex_state = 583}, + [2886] = {.lex_state = 583}, + [2887] = {.lex_state = 583}, + [2888] = {.lex_state = 582}, + [2889] = {.lex_state = 583}, + [2890] = {.lex_state = 583}, + [2891] = {.lex_state = 583}, + [2892] = {.lex_state = 583}, + [2893] = {.lex_state = 583}, + [2894] = {.lex_state = 631}, + [2895] = {.lex_state = 631}, + [2896] = {.lex_state = 583}, + [2897] = {.lex_state = 583}, + [2898] = {.lex_state = 583}, + [2899] = {.lex_state = 582}, + [2900] = {.lex_state = 583}, + [2901] = {.lex_state = 583}, + [2902] = {.lex_state = 583}, + [2903] = {.lex_state = 582}, + [2904] = {.lex_state = 583}, + [2905] = {.lex_state = 583}, + [2906] = {.lex_state = 667}, + [2907] = {.lex_state = 667}, + [2908] = {.lex_state = 645}, + [2909] = {.lex_state = 583}, + [2910] = {.lex_state = 668}, + [2911] = {.lex_state = 645}, + [2912] = {.lex_state = 583}, + [2913] = {.lex_state = 583}, + [2914] = {.lex_state = 583}, + [2915] = {.lex_state = 631}, + [2916] = {.lex_state = 631}, + [2917] = {.lex_state = 631}, + [2918] = {.lex_state = 583}, + [2919] = {.lex_state = 583}, + [2920] = {.lex_state = 583}, + [2921] = {.lex_state = 583}, + [2922] = {.lex_state = 667}, + [2923] = {.lex_state = 583}, + [2924] = {.lex_state = 583}, + [2925] = {.lex_state = 582}, + [2926] = {.lex_state = 583}, + [2927] = {.lex_state = 2}, + [2928] = {.lex_state = 583}, + [2929] = {.lex_state = 582}, + [2930] = {.lex_state = 583}, + [2931] = {.lex_state = 667}, + [2932] = {.lex_state = 631}, + [2933] = {.lex_state = 631}, + [2934] = {.lex_state = 634}, + [2935] = {.lex_state = 582}, + [2936] = {.lex_state = 2}, + [2937] = {.lex_state = 2}, + [2938] = {.lex_state = 582}, + [2939] = {.lex_state = 627}, + [2940] = {.lex_state = 582}, + [2941] = {.lex_state = 667}, + [2942] = {.lex_state = 639}, + [2943] = {.lex_state = 582}, + [2944] = {.lex_state = 583}, + [2945] = {.lex_state = 579}, + [2946] = {.lex_state = 2}, + [2947] = {.lex_state = 667}, [2948] = {.lex_state = 2}, - [2949] = {.lex_state = 584}, - [2950] = {.lex_state = 668}, + [2949] = {.lex_state = 72}, + [2950] = {.lex_state = 583}, [2951] = {.lex_state = 583}, - [2952] = {.lex_state = 111}, - [2953] = {.lex_state = 584}, - [2954] = {.lex_state = 584}, - [2955] = {.lex_state = 584}, - [2956] = {.lex_state = 111}, - [2957] = {.lex_state = 584}, - [2958] = {.lex_state = 2}, - [2959] = {.lex_state = 668}, - [2960] = {.lex_state = 635}, - [2961] = {.lex_state = 668}, - [2962] = {.lex_state = 2}, - [2963] = {.lex_state = 584}, - [2964] = {.lex_state = 668}, - [2965] = {.lex_state = 668}, - [2966] = {.lex_state = 111}, - [2967] = {.lex_state = 668}, - [2968] = {.lex_state = 2}, - [2969] = {.lex_state = 668}, - [2970] = {.lex_state = 584}, - [2971] = {.lex_state = 632}, - [2972] = {.lex_state = 584}, - [2973] = {.lex_state = 584}, - [2974] = {.lex_state = 668}, - [2975] = {.lex_state = 584}, - [2976] = {.lex_state = 583}, - [2977] = {.lex_state = 584}, - [2978] = {.lex_state = 584}, - [2979] = {.lex_state = 584}, - [2980] = {.lex_state = 584}, - [2981] = {.lex_state = 2}, - [2982] = {.lex_state = 632}, - [2983] = {.lex_state = 584}, - [2984] = {.lex_state = 584}, - [2985] = {.lex_state = 584}, - [2986] = {.lex_state = 635}, + [2952] = {.lex_state = 639}, + [2953] = {.lex_state = 2}, + [2954] = {.lex_state = 2}, + [2955] = {.lex_state = 667}, + [2956] = {.lex_state = 639}, + [2957] = {.lex_state = 582}, + [2958] = {.lex_state = 124, .external_lex_state = 2}, + [2959] = {.lex_state = 661}, + [2960] = {.lex_state = 64}, + [2961] = {.lex_state = 631}, + [2962] = {.lex_state = 64}, + [2963] = {.lex_state = 582}, + [2964] = {.lex_state = 583}, + [2965] = {.lex_state = 631}, + [2966] = {.lex_state = 110}, + [2967] = {.lex_state = 110}, + [2968] = {.lex_state = 110}, + [2969] = {.lex_state = 2}, + [2970] = {.lex_state = 579}, + [2971] = {.lex_state = 2}, + [2972] = {.lex_state = 583}, + [2973] = {.lex_state = 634}, + [2974] = {.lex_state = 583}, + [2975] = {.lex_state = 579}, + [2976] = {.lex_state = 631}, + [2977] = {.lex_state = 2}, + [2978] = {.lex_state = 110}, + [2979] = {.lex_state = 639}, + [2980] = {.lex_state = 639}, + [2981] = {.lex_state = 639}, + [2982] = {.lex_state = 583}, + [2983] = {.lex_state = 2}, + [2984] = {.lex_state = 631}, + [2985] = {.lex_state = 631}, + [2986] = {.lex_state = 582}, [2987] = {.lex_state = 2}, - [2988] = {.lex_state = 640}, + [2988] = {.lex_state = 2}, [2989] = {.lex_state = 2}, [2990] = {.lex_state = 2}, [2991] = {.lex_state = 583}, - [2992] = {.lex_state = 2}, - [2993] = {.lex_state = 111}, - [2994] = {.lex_state = 583}, - [2995] = {.lex_state = 583}, - [2996] = {.lex_state = 580}, - [2997] = {.lex_state = 640}, + [2992] = {.lex_state = 631}, + [2993] = {.lex_state = 2}, + [2994] = {.lex_state = 2}, + [2995] = {.lex_state = 67}, + [2996] = {.lex_state = 583}, + [2997] = {.lex_state = 2}, [2998] = {.lex_state = 2}, - [2999] = {.lex_state = 2}, - [3000] = {.lex_state = 584}, - [3001] = {.lex_state = 640}, - [3002] = {.lex_state = 584}, - [3003] = {.lex_state = 668}, - [3004] = {.lex_state = 2}, - [3005] = {.lex_state = 584}, - [3006] = {.lex_state = 2}, - [3007] = {.lex_state = 2}, + [2999] = {.lex_state = 667}, + [3000] = {.lex_state = 667}, + [3001] = {.lex_state = 583}, + [3002] = {.lex_state = 667}, + [3003] = {.lex_state = 583}, + [3004] = {.lex_state = 631}, + [3005] = {.lex_state = 667}, + [3006] = {.lex_state = 583}, + [3007] = {.lex_state = 582}, [3008] = {.lex_state = 2}, - [3009] = {.lex_state = 584}, - [3010] = {.lex_state = 635}, - [3011] = {.lex_state = 2}, - [3012] = {.lex_state = 125, .external_lex_state = 2}, - [3013] = {.lex_state = 580}, - [3014] = {.lex_state = 635}, - [3015] = {.lex_state = 668}, - [3016] = {.lex_state = 632}, - [3017] = {.lex_state = 584}, - [3018] = {.lex_state = 2}, - [3019] = {.lex_state = 640}, - [3020] = {.lex_state = 662}, - [3021] = {.lex_state = 632}, - [3022] = {.lex_state = 583}, - [3023] = {.lex_state = 2}, - [3024] = {.lex_state = 584}, - [3025] = {.lex_state = 64}, - [3026] = {.lex_state = 640}, - [3027] = {.lex_state = 632}, - [3028] = {.lex_state = 628}, - [3029] = {.lex_state = 632}, - [3030] = {.lex_state = 584}, - [3031] = {.lex_state = 632}, + [3009] = {.lex_state = 639}, + [3010] = {.lex_state = 583}, + [3011] = {.lex_state = 667}, + [3012] = {.lex_state = 583}, + [3013] = {.lex_state = 667}, + [3014] = {.lex_state = 667}, + [3015] = {.lex_state = 667}, + [3016] = {.lex_state = 583}, + [3017] = {.lex_state = 583}, + [3018] = {.lex_state = 583}, + [3019] = {.lex_state = 2}, + [3020] = {.lex_state = 2}, + [3021] = {.lex_state = 583}, + [3022] = {.lex_state = 2}, + [3023] = {.lex_state = 583}, + [3024] = {.lex_state = 583}, + [3025] = {.lex_state = 583}, + [3026] = {.lex_state = 2}, + [3027] = {.lex_state = 110}, + [3028] = {.lex_state = 2}, + [3029] = {.lex_state = 583}, + [3030] = {.lex_state = 110}, + [3031] = {.lex_state = 583}, [3032] = {.lex_state = 583}, - [3033] = {.lex_state = 584}, - [3034] = {.lex_state = 635}, - [3035] = {.lex_state = 635}, - [3036] = {.lex_state = 635}, - [3037] = {.lex_state = 635}, - [3038] = {.lex_state = 635}, - [3039] = {.lex_state = 635}, - [3040] = {.lex_state = 70}, - [3041] = {.lex_state = 635}, - [3042] = {.lex_state = 635}, - [3043] = {.lex_state = 2}, - [3044] = {.lex_state = 2}, - [3045] = {.lex_state = 584}, - [3046] = {.lex_state = 2}, - [3047] = {.lex_state = 635}, - [3048] = {.lex_state = 635}, - [3049] = {.lex_state = 584}, - [3050] = {.lex_state = 2}, - [3051] = {.lex_state = 584}, - [3052] = {.lex_state = 2}, - [3053] = {.lex_state = 635}, - [3054] = {.lex_state = 584}, - [3055] = {.lex_state = 66}, - [3056] = {.lex_state = 635}, - [3057] = {.lex_state = 2}, - [3058] = {.lex_state = 2}, - [3059] = {.lex_state = 2}, - [3060] = {.lex_state = 635}, - [3061] = {.lex_state = 635}, - [3062] = {.lex_state = 635}, - [3063] = {.lex_state = 2}, - [3064] = {.lex_state = 2}, - [3065] = {.lex_state = 2}, - [3066] = {.lex_state = 2}, - [3067] = {.lex_state = 2}, - [3068] = {.lex_state = 2}, - [3069] = {.lex_state = 2}, - [3070] = {.lex_state = 635}, - [3071] = {.lex_state = 61}, - [3072] = {.lex_state = 635}, - [3073] = {.lex_state = 632}, - [3074] = {.lex_state = 2}, - [3075] = {.lex_state = 2}, - [3076] = {.lex_state = 584}, - [3077] = {.lex_state = 2}, - [3078] = {.lex_state = 2}, - [3079] = {.lex_state = 584}, - [3080] = {.lex_state = 584}, - [3081] = {.lex_state = 584}, - [3082] = {.lex_state = 632}, - [3083] = {.lex_state = 584}, - [3084] = {.lex_state = 2}, - [3085] = {.lex_state = 2}, - [3086] = {.lex_state = 584}, - [3087] = {.lex_state = 584}, - [3088] = {.lex_state = 632}, - [3089] = {.lex_state = 635}, - [3090] = {.lex_state = 632}, - [3091] = {.lex_state = 584}, - [3092] = {.lex_state = 632}, - [3093] = {.lex_state = 584}, - [3094] = {.lex_state = 584}, - [3095] = {.lex_state = 584}, - [3096] = {.lex_state = 584}, - [3097] = {.lex_state = 584}, - [3098] = {.lex_state = 584}, - [3099] = {.lex_state = 584}, - [3100] = {.lex_state = 189}, - [3101] = {.lex_state = 584}, - [3102] = {.lex_state = 635}, - [3103] = {.lex_state = 584}, - [3104] = {.lex_state = 65}, - [3105] = {.lex_state = 65}, - [3106] = {.lex_state = 584}, - [3107] = {.lex_state = 584}, - [3108] = {.lex_state = 635}, - [3109] = {.lex_state = 584}, - [3110] = {.lex_state = 65}, - [3111] = {.lex_state = 584}, - [3112] = {.lex_state = 65}, - [3113] = {.lex_state = 65}, - [3114] = {.lex_state = 65}, - [3115] = {.lex_state = 65}, - [3116] = {.lex_state = 68}, - [3117] = {.lex_state = 65}, - [3118] = {.lex_state = 668}, - [3119] = {.lex_state = 65}, - [3120] = {.lex_state = 65}, - [3121] = {.lex_state = 583}, - [3122] = {.lex_state = 584}, - [3123] = {.lex_state = 583}, - [3124] = {.lex_state = 583}, - [3125] = {.lex_state = 584}, - [3126] = {.lex_state = 632}, - [3127] = {.lex_state = 632}, - [3128] = {.lex_state = 632}, - [3129] = {.lex_state = 635}, - [3130] = {.lex_state = 635}, - [3131] = {.lex_state = 635}, - [3132] = {.lex_state = 635}, - [3133] = {.lex_state = 635}, - [3134] = {.lex_state = 635}, - [3135] = {.lex_state = 635}, - [3136] = {.lex_state = 635}, - [3137] = {.lex_state = 65}, - [3138] = {.lex_state = 65}, - [3139] = {.lex_state = 65}, - [3140] = {.lex_state = 61}, - [3141] = {.lex_state = 584}, - [3142] = {.lex_state = 584}, - [3143] = {.lex_state = 62}, - [3144] = {.lex_state = 632}, - [3145] = {.lex_state = 632}, - [3146] = {.lex_state = 635}, - [3147] = {.lex_state = 632}, - [3148] = {.lex_state = 584}, - [3149] = {.lex_state = 635}, - [3150] = {.lex_state = 584}, - [3151] = {.lex_state = 632}, - [3152] = {.lex_state = 632}, - [3153] = {.lex_state = 61}, - [3154] = {.lex_state = 61}, - [3155] = {.lex_state = 584}, - [3156] = {.lex_state = 632}, - [3157] = {.lex_state = 584}, - [3158] = {.lex_state = 61}, - [3159] = {.lex_state = 61}, - [3160] = {.lex_state = 632}, - [3161] = {.lex_state = 632}, - [3162] = {.lex_state = 632}, - [3163] = {.lex_state = 584}, - [3164] = {.lex_state = 584}, - [3165] = {.lex_state = 584}, - [3166] = {.lex_state = 584}, - [3167] = {.lex_state = 584}, - [3168] = {.lex_state = 584}, - [3169] = {.lex_state = 635}, - [3170] = {.lex_state = 584}, - [3171] = {.lex_state = 584}, - [3172] = {.lex_state = 632}, - [3173] = {.lex_state = 67}, - [3174] = {.lex_state = 632}, + [3033] = {.lex_state = 583}, + [3034] = {.lex_state = 631}, + [3035] = {.lex_state = 583}, + [3036] = {.lex_state = 583}, + [3037] = {.lex_state = 634}, + [3038] = {.lex_state = 634}, + [3039] = {.lex_state = 583}, + [3040] = {.lex_state = 639}, + [3041] = {.lex_state = 667}, + [3042] = {.lex_state = 583}, + [3043] = {.lex_state = 634}, + [3044] = {.lex_state = 583}, + [3045] = {.lex_state = 583}, + [3046] = {.lex_state = 583}, + [3047] = {.lex_state = 2}, + [3048] = {.lex_state = 2}, + [3049] = {.lex_state = 634}, + [3050] = {.lex_state = 188}, + [3051] = {.lex_state = 634}, + [3052] = {.lex_state = 61}, + [3053] = {.lex_state = 634}, + [3054] = {.lex_state = 634}, + [3055] = {.lex_state = 634}, + [3056] = {.lex_state = 631}, + [3057] = {.lex_state = 634}, + [3058] = {.lex_state = 634}, + [3059] = {.lex_state = 583}, + [3060] = {.lex_state = 639}, + [3061] = {.lex_state = 65}, + [3062] = {.lex_state = 65}, + [3063] = {.lex_state = 631}, + [3064] = {.lex_state = 65}, + [3065] = {.lex_state = 631}, + [3066] = {.lex_state = 631}, + [3067] = {.lex_state = 65}, + [3068] = {.lex_state = 634}, + [3069] = {.lex_state = 65}, + [3070] = {.lex_state = 631}, + [3071] = {.lex_state = 65}, + [3072] = {.lex_state = 65}, + [3073] = {.lex_state = 634}, + [3074] = {.lex_state = 634}, + [3075] = {.lex_state = 68}, + [3076] = {.lex_state = 65}, + [3077] = {.lex_state = 631}, + [3078] = {.lex_state = 631}, + [3079] = {.lex_state = 65}, + [3080] = {.lex_state = 65}, + [3081] = {.lex_state = 2}, + [3082] = {.lex_state = 634}, + [3083] = {.lex_state = 634}, + [3084] = {.lex_state = 634}, + [3085] = {.lex_state = 634}, + [3086] = {.lex_state = 634}, + [3087] = {.lex_state = 634}, + [3088] = {.lex_state = 634}, + [3089] = {.lex_state = 583}, + [3090] = {.lex_state = 583}, + [3091] = {.lex_state = 583}, + [3092] = {.lex_state = 583}, + [3093] = {.lex_state = 583}, + [3094] = {.lex_state = 583}, + [3095] = {.lex_state = 634}, + [3096] = {.lex_state = 583}, + [3097] = {.lex_state = 634}, + [3098] = {.lex_state = 634}, + [3099] = {.lex_state = 583}, + [3100] = {.lex_state = 583}, + [3101] = {.lex_state = 583}, + [3102] = {.lex_state = 631}, + [3103] = {.lex_state = 634}, + [3104] = {.lex_state = 634}, + [3105] = {.lex_state = 70}, + [3106] = {.lex_state = 634}, + [3107] = {.lex_state = 634}, + [3108] = {.lex_state = 634}, + [3109] = {.lex_state = 582}, + [3110] = {.lex_state = 634}, + [3111] = {.lex_state = 583}, + [3112] = {.lex_state = 634}, + [3113] = {.lex_state = 634}, + [3114] = {.lex_state = 634}, + [3115] = {.lex_state = 634}, + [3116] = {.lex_state = 634}, + [3117] = {.lex_state = 634}, + [3118] = {.lex_state = 634}, + [3119] = {.lex_state = 70}, + [3120] = {.lex_state = 634}, + [3121] = {.lex_state = 634}, + [3122] = {.lex_state = 61}, + [3123] = {.lex_state = 65}, + [3124] = {.lex_state = 65}, + [3125] = {.lex_state = 65}, + [3126] = {.lex_state = 2}, + [3127] = {.lex_state = 631}, + [3128] = {.lex_state = 2}, + [3129] = {.lex_state = 2}, + [3130] = {.lex_state = 634}, + [3131] = {.lex_state = 583}, + [3132] = {.lex_state = 583}, + [3133] = {.lex_state = 583}, + [3134] = {.lex_state = 583}, + [3135] = {.lex_state = 634}, + [3136] = {.lex_state = 583}, + [3137] = {.lex_state = 583}, + [3138] = {.lex_state = 583}, + [3139] = {.lex_state = 634}, + [3140] = {.lex_state = 634}, + [3141] = {.lex_state = 634}, + [3142] = {.lex_state = 2}, + [3143] = {.lex_state = 2}, + [3144] = {.lex_state = 634}, + [3145] = {.lex_state = 634}, + [3146] = {.lex_state = 66}, + [3147] = {.lex_state = 62}, + [3148] = {.lex_state = 583}, + [3149] = {.lex_state = 583}, + [3150] = {.lex_state = 583}, + [3151] = {.lex_state = 583}, + [3152] = {.lex_state = 583}, + [3153] = {.lex_state = 634}, + [3154] = {.lex_state = 583}, + [3155] = {.lex_state = 583}, + [3156] = {.lex_state = 583}, + [3157] = {.lex_state = 583}, + [3158] = {.lex_state = 583}, + [3159] = {.lex_state = 2}, + [3160] = {.lex_state = 583}, + [3161] = {.lex_state = 2}, + [3162] = {.lex_state = 2}, + [3163] = {.lex_state = 2}, + [3164] = {.lex_state = 631}, + [3165] = {.lex_state = 634}, + [3166] = {.lex_state = 634}, + [3167] = {.lex_state = 634}, + [3168] = {.lex_state = 634}, + [3169] = {.lex_state = 583}, + [3170] = {.lex_state = 2}, + [3171] = {.lex_state = 667}, + [3172] = {.lex_state = 583}, + [3173] = {.lex_state = 2}, + [3174] = {.lex_state = 2}, [3175] = {.lex_state = 2}, - [3176] = {.lex_state = 584}, - [3177] = {.lex_state = 635}, - [3178] = {.lex_state = 635}, - [3179] = {.lex_state = 635}, - [3180] = {.lex_state = 635}, - [3181] = {.lex_state = 632}, - [3182] = {.lex_state = 2}, - [3183] = {.lex_state = 584}, - [3184] = {.lex_state = 635}, - [3185] = {.lex_state = 635}, - [3186] = {.lex_state = 584}, - [3187] = {.lex_state = 640}, - [3188] = {.lex_state = 640}, - [3189] = {.lex_state = 635}, - [3190] = {.lex_state = 49, .external_lex_state = 2}, - [3191] = {.lex_state = 635}, - [3192] = {.lex_state = 583}, - [3193] = {.lex_state = 635}, - [3194] = {.lex_state = 640}, - [3195] = {.lex_state = 583}, - [3196] = {.lex_state = 584}, - [3197] = {.lex_state = 632}, - [3198] = {.lex_state = 2}, - [3199] = {.lex_state = 2}, - [3200] = {.lex_state = 635}, - [3201] = {.lex_state = 635}, - [3202] = {.lex_state = 635}, - [3203] = {.lex_state = 635}, - [3204] = {.lex_state = 2}, - [3205] = {.lex_state = 2}, - [3206] = {.lex_state = 632}, - [3207] = {.lex_state = 635}, - [3208] = {.lex_state = 61}, - [3209] = {.lex_state = 635}, - [3210] = {.lex_state = 635}, - [3211] = {.lex_state = 635}, - [3212] = {.lex_state = 635}, - [3213] = {.lex_state = 635}, - [3214] = {.lex_state = 635}, - [3215] = {.lex_state = 635}, - [3216] = {.lex_state = 632}, - [3217] = {.lex_state = 632}, - [3218] = {.lex_state = 635}, - [3219] = {.lex_state = 635}, - [3220] = {.lex_state = 635}, - [3221] = {.lex_state = 635}, - [3222] = {.lex_state = 635}, - [3223] = {.lex_state = 635}, - [3224] = {.lex_state = 635}, - [3225] = {.lex_state = 632}, - [3226] = {.lex_state = 635}, - [3227] = {.lex_state = 632}, - [3228] = {.lex_state = 635}, - [3229] = {.lex_state = 635}, - [3230] = {.lex_state = 635}, - [3231] = {.lex_state = 635}, - [3232] = {.lex_state = 70}, - [3233] = {.lex_state = 635}, - [3234] = {.lex_state = 635}, - [3235] = {.lex_state = 635}, - [3236] = {.lex_state = 584}, - [3237] = {.lex_state = 635}, - [3238] = {.lex_state = 584}, - [3239] = {.lex_state = 635}, - [3240] = {.lex_state = 584}, - [3241] = {.lex_state = 583}, - [3242] = {.lex_state = 584}, - [3243] = {.lex_state = 183}, + [3176] = {.lex_state = 634}, + [3177] = {.lex_state = 634}, + [3178] = {.lex_state = 2}, + [3179] = {.lex_state = 583}, + [3180] = {.lex_state = 2}, + [3181] = {.lex_state = 2}, + [3182] = {.lex_state = 583}, + [3183] = {.lex_state = 583}, + [3184] = {.lex_state = 634}, + [3185] = {.lex_state = 582}, + [3186] = {.lex_state = 583}, + [3187] = {.lex_state = 583}, + [3188] = {.lex_state = 583}, + [3189] = {.lex_state = 583}, + [3190] = {.lex_state = 583}, + [3191] = {.lex_state = 582}, + [3192] = {.lex_state = 582}, + [3193] = {.lex_state = 583}, + [3194] = {.lex_state = 583}, + [3195] = {.lex_state = 631}, + [3196] = {.lex_state = 634}, + [3197] = {.lex_state = 634}, + [3198] = {.lex_state = 634}, + [3199] = {.lex_state = 634}, + [3200] = {.lex_state = 634}, + [3201] = {.lex_state = 634}, + [3202] = {.lex_state = 67}, + [3203] = {.lex_state = 634}, + [3204] = {.lex_state = 634}, + [3205] = {.lex_state = 582}, + [3206] = {.lex_state = 634}, + [3207] = {.lex_state = 634}, + [3208] = {.lex_state = 2}, + [3209] = {.lex_state = 582}, + [3210] = {.lex_state = 583}, + [3211] = {.lex_state = 583}, + [3212] = {.lex_state = 634}, + [3213] = {.lex_state = 583}, + [3214] = {.lex_state = 2}, + [3215] = {.lex_state = 2}, + [3216] = {.lex_state = 2}, + [3217] = {.lex_state = 639}, + [3218] = {.lex_state = 583}, + [3219] = {.lex_state = 634}, + [3220] = {.lex_state = 583}, + [3221] = {.lex_state = 583}, + [3222] = {.lex_state = 631}, + [3223] = {.lex_state = 583}, + [3224] = {.lex_state = 634}, + [3225] = {.lex_state = 634}, + [3226] = {.lex_state = 2}, + [3227] = {.lex_state = 2}, + [3228] = {.lex_state = 631}, + [3229] = {.lex_state = 634}, + [3230] = {.lex_state = 631}, + [3231] = {.lex_state = 61}, + [3232] = {.lex_state = 61}, + [3233] = {.lex_state = 639}, + [3234] = {.lex_state = 61}, + [3235] = {.lex_state = 631}, + [3236] = {.lex_state = 631}, + [3237] = {.lex_state = 61}, + [3238] = {.lex_state = 61}, + [3239] = {.lex_state = 631}, + [3240] = {.lex_state = 583}, + [3241] = {.lex_state = 631}, + [3242] = {.lex_state = 634}, + [3243] = {.lex_state = 2}, [3244] = {.lex_state = 2}, - [3245] = {.lex_state = 632}, - [3246] = {.lex_state = 67}, - [3247] = {.lex_state = 632}, - [3248] = {.lex_state = 189}, - [3249] = {.lex_state = 584}, - [3250] = {.lex_state = 635}, - [3251] = {.lex_state = 635}, - [3252] = {.lex_state = 635}, - [3253] = {.lex_state = 635}, - [3254] = {.lex_state = 584}, - [3255] = {.lex_state = 584}, - [3256] = {.lex_state = 69}, - [3257] = {.lex_state = 584}, - [3258] = {.lex_state = 67}, - [3259] = {.lex_state = 67}, - [3260] = {.lex_state = 67}, - [3261] = {.lex_state = 635}, - [3262] = {.lex_state = 584}, - [3263] = {.lex_state = 632}, - [3264] = {.lex_state = 584}, - [3265] = {.lex_state = 584}, - [3266] = {.lex_state = 584}, - [3267] = {.lex_state = 635}, - [3268] = {.lex_state = 635}, - [3269] = {.lex_state = 635}, - [3270] = {.lex_state = 635}, - [3271] = {.lex_state = 635}, - [3272] = {.lex_state = 635}, - [3273] = {.lex_state = 635}, - [3274] = {.lex_state = 635}, - [3275] = {.lex_state = 584}, - [3276] = {.lex_state = 635}, - [3277] = {.lex_state = 635}, - [3278] = {.lex_state = 49, .external_lex_state = 2}, - [3279] = {.lex_state = 73}, - [3280] = {.lex_state = 183}, - [3281] = {.lex_state = 61}, - [3282] = {.lex_state = 71}, - [3283] = {.lex_state = 584}, - [3284] = {.lex_state = 71}, - [3285] = {.lex_state = 635}, - [3286] = {.lex_state = 635}, - [3287] = {.lex_state = 635}, - [3288] = {.lex_state = 635}, - [3289] = {.lex_state = 635}, - [3290] = {.lex_state = 2}, - [3291] = {.lex_state = 635}, - [3292] = {.lex_state = 635}, - [3293] = {.lex_state = 635}, - [3294] = {.lex_state = 584}, - [3295] = {.lex_state = 635}, - [3296] = {.lex_state = 2}, - [3297] = {.lex_state = 632}, - [3298] = {.lex_state = 584}, - [3299] = {.lex_state = 2}, - [3300] = {.lex_state = 632}, - [3301] = {.lex_state = 632}, - [3302] = {.lex_state = 632}, - [3303] = {.lex_state = 635}, - [3304] = {.lex_state = 635}, - [3305] = {.lex_state = 635}, - [3306] = {.lex_state = 635}, - [3307] = {.lex_state = 635}, - [3308] = {.lex_state = 635}, - [3309] = {.lex_state = 635}, - [3310] = {.lex_state = 635}, - [3311] = {.lex_state = 635}, - [3312] = {.lex_state = 632}, - [3313] = {.lex_state = 584}, - [3314] = {.lex_state = 635}, - [3315] = {.lex_state = 635}, - [3316] = {.lex_state = 635}, - [3317] = {.lex_state = 635}, - [3318] = {.lex_state = 635}, - [3319] = {.lex_state = 635}, - [3320] = {.lex_state = 635}, - [3321] = {.lex_state = 635}, - [3322] = {.lex_state = 635}, - [3323] = {.lex_state = 2}, - [3324] = {.lex_state = 2}, - [3325] = {.lex_state = 635}, - [3326] = {.lex_state = 635}, - [3327] = {.lex_state = 2}, - [3328] = {.lex_state = 2}, - [3329] = {.lex_state = 2}, - [3330] = {.lex_state = 2}, - [3331] = {.lex_state = 2}, - [3332] = {.lex_state = 2}, - [3333] = {.lex_state = 69}, - [3334] = {.lex_state = 635}, - [3335] = {.lex_state = 635}, - [3336] = {.lex_state = 75}, - [3337] = {.lex_state = 584}, - [3338] = {.lex_state = 635}, - [3339] = {.lex_state = 635}, - [3340] = {.lex_state = 635}, - [3341] = {.lex_state = 2}, - [3342] = {.lex_state = 584}, - [3343] = {.lex_state = 635}, - [3344] = {.lex_state = 635}, - [3345] = {.lex_state = 635}, - [3346] = {.lex_state = 635}, - [3347] = {.lex_state = 61}, - [3348] = {.lex_state = 584}, - [3349] = {.lex_state = 635}, - [3350] = {.lex_state = 632}, - [3351] = {.lex_state = 186}, + [3245] = {.lex_state = 631}, + [3246] = {.lex_state = 631}, + [3247] = {.lex_state = 631}, + [3248] = {.lex_state = 631}, + [3249] = {.lex_state = 634}, + [3250] = {.lex_state = 583}, + [3251] = {.lex_state = 631}, + [3252] = {.lex_state = 631}, + [3253] = {.lex_state = 634}, + [3254] = {.lex_state = 583}, + [3255] = {.lex_state = 49, .external_lex_state = 2}, + [3256] = {.lex_state = 634}, + [3257] = {.lex_state = 631}, + [3258] = {.lex_state = 631}, + [3259] = {.lex_state = 2}, + [3260] = {.lex_state = 634}, + [3261] = {.lex_state = 634}, + [3262] = {.lex_state = 71}, + [3263] = {.lex_state = 634}, + [3264] = {.lex_state = 583}, + [3265] = {.lex_state = 185}, + [3266] = {.lex_state = 634}, + [3267] = {.lex_state = 188}, + [3268] = {.lex_state = 634}, + [3269] = {.lex_state = 634}, + [3270] = {.lex_state = 2}, + [3271] = {.lex_state = 634}, + [3272] = {.lex_state = 69}, + [3273] = {.lex_state = 634}, + [3274] = {.lex_state = 2}, + [3275] = {.lex_state = 2}, + [3276] = {.lex_state = 2}, + [3277] = {.lex_state = 2}, + [3278] = {.lex_state = 583}, + [3279] = {.lex_state = 583}, + [3280] = {.lex_state = 583}, + [3281] = {.lex_state = 583}, + [3282] = {.lex_state = 2}, + [3283] = {.lex_state = 2}, + [3284] = {.lex_state = 185}, + [3285] = {.lex_state = 2}, + [3286] = {.lex_state = 583}, + [3287] = {.lex_state = 69}, + [3288] = {.lex_state = 583}, + [3289] = {.lex_state = 631}, + [3290] = {.lex_state = 634}, + [3291] = {.lex_state = 583}, + [3292] = {.lex_state = 631}, + [3293] = {.lex_state = 634}, + [3294] = {.lex_state = 634}, + [3295] = {.lex_state = 634}, + [3296] = {.lex_state = 634}, + [3297] = {.lex_state = 631}, + [3298] = {.lex_state = 583}, + [3299] = {.lex_state = 182}, + [3300] = {.lex_state = 634}, + [3301] = {.lex_state = 634}, + [3302] = {.lex_state = 631}, + [3303] = {.lex_state = 631}, + [3304] = {.lex_state = 634}, + [3305] = {.lex_state = 631}, + [3306] = {.lex_state = 639}, + [3307] = {.lex_state = 634}, + [3308] = {.lex_state = 583}, + [3309] = {.lex_state = 631}, + [3310] = {.lex_state = 634}, + [3311] = {.lex_state = 2}, + [3312] = {.lex_state = 2}, + [3313] = {.lex_state = 634}, + [3314] = {.lex_state = 634}, + [3315] = {.lex_state = 2}, + [3316] = {.lex_state = 67}, + [3317] = {.lex_state = 72}, + [3318] = {.lex_state = 67}, + [3319] = {.lex_state = 67}, + [3320] = {.lex_state = 67}, + [3321] = {.lex_state = 634}, + [3322] = {.lex_state = 634}, + [3323] = {.lex_state = 583}, + [3324] = {.lex_state = 583}, + [3325] = {.lex_state = 631}, + [3326] = {.lex_state = 2}, + [3327] = {.lex_state = 583}, + [3328] = {.lex_state = 634}, + [3329] = {.lex_state = 634}, + [3330] = {.lex_state = 634}, + [3331] = {.lex_state = 583}, + [3332] = {.lex_state = 583}, + [3333] = {.lex_state = 583}, + [3334] = {.lex_state = 634}, + [3335] = {.lex_state = 634}, + [3336] = {.lex_state = 634}, + [3337] = {.lex_state = 634}, + [3338] = {.lex_state = 65}, + [3339] = {.lex_state = 61}, + [3340] = {.lex_state = 631}, + [3341] = {.lex_state = 634}, + [3342] = {.lex_state = 634}, + [3343] = {.lex_state = 634}, + [3344] = {.lex_state = 634}, + [3345] = {.lex_state = 634}, + [3346] = {.lex_state = 2}, + [3347] = {.lex_state = 2}, + [3348] = {.lex_state = 634}, + [3349] = {.lex_state = 2}, + [3350] = {.lex_state = 2}, + [3351] = {.lex_state = 2}, [3352] = {.lex_state = 2}, - [3353] = {.lex_state = 2}, - [3354] = {.lex_state = 632}, - [3355] = {.lex_state = 584}, - [3356] = {.lex_state = 584}, - [3357] = {.lex_state = 186}, - [3358] = {.lex_state = 635}, - [3359] = {.lex_state = 635}, - [3360] = {.lex_state = 632}, - [3361] = {.lex_state = 632}, - [3362] = {.lex_state = 632}, - [3363] = {.lex_state = 584}, + [3353] = {.lex_state = 583}, + [3354] = {.lex_state = 2}, + [3355] = {.lex_state = 583}, + [3356] = {.lex_state = 634}, + [3357] = {.lex_state = 583}, + [3358] = {.lex_state = 583}, + [3359] = {.lex_state = 583}, + [3360] = {.lex_state = 583}, + [3361] = {.lex_state = 634}, + [3362] = {.lex_state = 634}, + [3363] = {.lex_state = 61}, [3364] = {.lex_state = 2}, - [3365] = {.lex_state = 2}, - [3366] = {.lex_state = 584}, - [3367] = {.lex_state = 187}, - [3368] = {.lex_state = 584}, - [3369] = {.lex_state = 632}, - [3370] = {.lex_state = 635}, - [3371] = {.lex_state = 584}, - [3372] = {.lex_state = 640}, - [3373] = {.lex_state = 584}, - [3374] = {.lex_state = 584}, - [3375] = {.lex_state = 584}, - [3376] = {.lex_state = 584}, - [3377] = {.lex_state = 584}, - [3378] = {.lex_state = 584}, - [3379] = {.lex_state = 584}, - [3380] = {.lex_state = 584}, - [3381] = {.lex_state = 584}, - [3382] = {.lex_state = 584}, - [3383] = {.lex_state = 584}, - [3384] = {.lex_state = 584}, - [3385] = {.lex_state = 635}, - [3386] = {.lex_state = 635}, - [3387] = {.lex_state = 584}, - [3388] = {.lex_state = 2}, - [3389] = {.lex_state = 2}, - [3390] = {.lex_state = 635}, - [3391] = {.lex_state = 584}, - [3392] = {.lex_state = 584}, - [3393] = {.lex_state = 584}, - [3394] = {.lex_state = 635}, - [3395] = {.lex_state = 2}, - [3396] = {.lex_state = 584}, - [3397] = {.lex_state = 2}, - [3398] = {.lex_state = 584}, - [3399] = {.lex_state = 584}, - [3400] = {.lex_state = 584}, - [3401] = {.lex_state = 584}, - [3402] = {.lex_state = 584}, - [3403] = {.lex_state = 584}, - [3404] = {.lex_state = 584}, - [3405] = {.lex_state = 584}, - [3406] = {.lex_state = 2}, - [3407] = {.lex_state = 2}, - [3408] = {.lex_state = 584}, - [3409] = {.lex_state = 584}, - [3410] = {.lex_state = 184}, - [3411] = {.lex_state = 584}, - [3412] = {.lex_state = 584}, - [3413] = {.lex_state = 584}, - [3414] = {.lex_state = 584}, - [3415] = {.lex_state = 184}, - [3416] = {.lex_state = 584}, - [3417] = {.lex_state = 584}, - [3418] = {.lex_state = 584}, - [3419] = {.lex_state = 584}, - [3420] = {.lex_state = 584}, + [3365] = {.lex_state = 583}, + [3366] = {.lex_state = 634}, + [3367] = {.lex_state = 634}, + [3368] = {.lex_state = 634}, + [3369] = {.lex_state = 634}, + [3370] = {.lex_state = 583}, + [3371] = {.lex_state = 634}, + [3372] = {.lex_state = 583}, + [3373] = {.lex_state = 631}, + [3374] = {.lex_state = 634}, + [3375] = {.lex_state = 71}, + [3376] = {.lex_state = 634}, + [3377] = {.lex_state = 634}, + [3378] = {.lex_state = 634}, + [3379] = {.lex_state = 631}, + [3380] = {.lex_state = 631}, + [3381] = {.lex_state = 583}, + [3382] = {.lex_state = 634}, + [3383] = {.lex_state = 583}, + [3384] = {.lex_state = 583}, + [3385] = {.lex_state = 634}, + [3386] = {.lex_state = 186}, + [3387] = {.lex_state = 631}, + [3388] = {.lex_state = 634}, + [3389] = {.lex_state = 634}, + [3390] = {.lex_state = 631}, + [3391] = {.lex_state = 583}, + [3392] = {.lex_state = 583}, + [3393] = {.lex_state = 583}, + [3394] = {.lex_state = 583}, + [3395] = {.lex_state = 583}, + [3396] = {.lex_state = 583}, + [3397] = {.lex_state = 583}, + [3398] = {.lex_state = 583}, + [3399] = {.lex_state = 583}, + [3400] = {.lex_state = 583}, + [3401] = {.lex_state = 583}, + [3402] = {.lex_state = 583}, + [3403] = {.lex_state = 634}, + [3404] = {.lex_state = 634}, + [3405] = {.lex_state = 634}, + [3406] = {.lex_state = 634}, + [3407] = {.lex_state = 634}, + [3408] = {.lex_state = 634}, + [3409] = {.lex_state = 634}, + [3410] = {.lex_state = 49, .external_lex_state = 2}, + [3411] = {.lex_state = 634}, + [3412] = {.lex_state = 634}, + [3413] = {.lex_state = 182}, + [3414] = {.lex_state = 583}, + [3415] = {.lex_state = 634}, + [3416] = {.lex_state = 583}, + [3417] = {.lex_state = 583}, + [3418] = {.lex_state = 583}, + [3419] = {.lex_state = 2}, + [3420] = {.lex_state = 583}, [3421] = {.lex_state = 2}, - [3422] = {.lex_state = 584}, - [3423] = {.lex_state = 584}, - [3424] = {.lex_state = 584}, - [3425] = {.lex_state = 584}, - [3426] = {.lex_state = 584}, - [3427] = {.lex_state = 584}, - [3428] = {.lex_state = 584}, - [3429] = {.lex_state = 584}, - [3430] = {.lex_state = 584}, - [3431] = {.lex_state = 584}, + [3422] = {.lex_state = 2}, + [3423] = {.lex_state = 2}, + [3424] = {.lex_state = 2}, + [3425] = {.lex_state = 583}, + [3426] = {.lex_state = 2}, + [3427] = {.lex_state = 2}, + [3428] = {.lex_state = 2156}, + [3429] = {.lex_state = 583}, + [3430] = {.lex_state = 583}, + [3431] = {.lex_state = 2}, [3432] = {.lex_state = 2}, - [3433] = {.lex_state = 185}, - [3434] = {.lex_state = 584}, - [3435] = {.lex_state = 584}, - [3436] = {.lex_state = 584}, - [3437] = {.lex_state = 584}, - [3438] = {.lex_state = 584}, - [3439] = {.lex_state = 584}, - [3440] = {.lex_state = 584}, - [3441] = {.lex_state = 584}, - [3442] = {.lex_state = 584}, - [3443] = {.lex_state = 584}, - [3444] = {.lex_state = 640}, - [3445] = {.lex_state = 2}, - [3446] = {.lex_state = 584}, - [3447] = {.lex_state = 640}, - [3448] = {.lex_state = 584}, - [3449] = {.lex_state = 2157}, - [3450] = {.lex_state = 584}, - [3451] = {.lex_state = 584}, - [3452] = {.lex_state = 584}, - [3453] = {.lex_state = 182}, - [3454] = {.lex_state = 584}, - [3455] = {.lex_state = 584}, - [3456] = {.lex_state = 183}, - [3457] = {.lex_state = 584}, - [3458] = {.lex_state = 584}, - [3459] = {.lex_state = 2157}, - [3460] = {.lex_state = 584}, - [3461] = {.lex_state = 584}, - [3462] = {.lex_state = 584}, - [3463] = {.lex_state = 584}, - [3464] = {.lex_state = 584}, - [3465] = {.lex_state = 584}, - [3466] = {.lex_state = 584}, - [3467] = {.lex_state = 584}, - [3468] = {.lex_state = 584}, - [3469] = {.lex_state = 584}, - [3470] = {.lex_state = 584}, - [3471] = {.lex_state = 584}, - [3472] = {.lex_state = 640}, - [3473] = {.lex_state = 584}, - [3474] = {.lex_state = 584}, - [3475] = {.lex_state = 2}, - [3476] = {.lex_state = 584}, - [3477] = {.lex_state = 584}, - [3478] = {.lex_state = 2}, - [3479] = {.lex_state = 584}, - [3480] = {.lex_state = 584}, - [3481] = {.lex_state = 189}, - [3482] = {.lex_state = 189}, - [3483] = {.lex_state = 189}, - [3484] = {.lex_state = 189}, - [3485] = {.lex_state = 584}, - [3486] = {.lex_state = 584}, + [3433] = {.lex_state = 583}, + [3434] = {.lex_state = 2}, + [3435] = {.lex_state = 2}, + [3436] = {.lex_state = 583}, + [3437] = {.lex_state = 2}, + [3438] = {.lex_state = 2}, + [3439] = {.lex_state = 583}, + [3440] = {.lex_state = 2}, + [3441] = {.lex_state = 92}, + [3442] = {.lex_state = 122}, + [3443] = {.lex_state = 583}, + [3444] = {.lex_state = 188}, + [3445] = {.lex_state = 583}, + [3446] = {.lex_state = 128}, + [3447] = {.lex_state = 2}, + [3448] = {.lex_state = 583}, + [3449] = {.lex_state = 80}, + [3450] = {.lex_state = 583}, + [3451] = {.lex_state = 583}, + [3452] = {.lex_state = 2}, + [3453] = {.lex_state = 583}, + [3454] = {.lex_state = 583}, + [3455] = {.lex_state = 583}, + [3456] = {.lex_state = 184}, + [3457] = {.lex_state = 583}, + [3458] = {.lex_state = 181}, + [3459] = {.lex_state = 583}, + [3460] = {.lex_state = 583}, + [3461] = {.lex_state = 583}, + [3462] = {.lex_state = 583}, + [3463] = {.lex_state = 583}, + [3464] = {.lex_state = 583}, + [3465] = {.lex_state = 583}, + [3466] = {.lex_state = 639}, + [3467] = {.lex_state = 583}, + [3468] = {.lex_state = 583}, + [3469] = {.lex_state = 2}, + [3470] = {.lex_state = 583}, + [3471] = {.lex_state = 2}, + [3472] = {.lex_state = 583}, + [3473] = {.lex_state = 583}, + [3474] = {.lex_state = 583}, + [3475] = {.lex_state = 583}, + [3476] = {.lex_state = 188}, + [3477] = {.lex_state = 188}, + [3478] = {.lex_state = 188}, + [3479] = {.lex_state = 188}, + [3480] = {.lex_state = 583}, + [3481] = {.lex_state = 583}, + [3482] = {.lex_state = 188}, + [3483] = {.lex_state = 188}, + [3484] = {.lex_state = 188}, + [3485] = {.lex_state = 583}, + [3486] = {.lex_state = 2156}, [3487] = {.lex_state = 2}, - [3488] = {.lex_state = 584}, - [3489] = {.lex_state = 584}, - [3490] = {.lex_state = 2}, + [3488] = {.lex_state = 2}, + [3489] = {.lex_state = 2}, + [3490] = {.lex_state = 583}, [3491] = {.lex_state = 2}, - [3492] = {.lex_state = 2}, + [3492] = {.lex_state = 583}, [3493] = {.lex_state = 2}, - [3494] = {.lex_state = 584}, - [3495] = {.lex_state = 93}, - [3496] = {.lex_state = 584}, - [3497] = {.lex_state = 97}, - [3498] = {.lex_state = 2}, - [3499] = {.lex_state = 2}, - [3500] = {.lex_state = 189}, - [3501] = {.lex_state = 584}, - [3502] = {.lex_state = 79}, - [3503] = {.lex_state = 129}, - [3504] = {.lex_state = 584}, - [3505] = {.lex_state = 81}, - [3506] = {.lex_state = 584}, - [3507] = {.lex_state = 584}, - [3508] = {.lex_state = 2}, - [3509] = {.lex_state = 584}, - [3510] = {.lex_state = 584}, - [3511] = {.lex_state = 584}, - [3512] = {.lex_state = 584}, - [3513] = {.lex_state = 584}, - [3514] = {.lex_state = 584}, - [3515] = {.lex_state = 189}, - [3516] = {.lex_state = 189}, - [3517] = {.lex_state = 189}, - [3518] = {.lex_state = 584}, - [3519] = {.lex_state = 584}, - [3520] = {.lex_state = 2}, - [3521] = {.lex_state = 584}, - [3522] = {.lex_state = 584}, - [3523] = {.lex_state = 2}, - [3524] = {.lex_state = 2}, - [3525] = {.lex_state = 2}, + [3494] = {.lex_state = 583}, + [3495] = {.lex_state = 2}, + [3496] = {.lex_state = 583}, + [3497] = {.lex_state = 583}, + [3498] = {.lex_state = 583}, + [3499] = {.lex_state = 583}, + [3500] = {.lex_state = 639}, + [3501] = {.lex_state = 639}, + [3502] = {.lex_state = 583}, + [3503] = {.lex_state = 2}, + [3504] = {.lex_state = 2}, + [3505] = {.lex_state = 639}, + [3506] = {.lex_state = 2}, + [3507] = {.lex_state = 2}, + [3508] = {.lex_state = 583}, + [3509] = {.lex_state = 583}, + [3510] = {.lex_state = 96}, + [3511] = {.lex_state = 583}, + [3512] = {.lex_state = 2}, + [3513] = {.lex_state = 2}, + [3514] = {.lex_state = 583}, + [3515] = {.lex_state = 583}, + [3516] = {.lex_state = 583}, + [3517] = {.lex_state = 583}, + [3518] = {.lex_state = 583}, + [3519] = {.lex_state = 583}, + [3520] = {.lex_state = 583}, + [3521] = {.lex_state = 583}, + [3522] = {.lex_state = 583}, + [3523] = {.lex_state = 184}, + [3524] = {.lex_state = 583}, + [3525] = {.lex_state = 583}, [3526] = {.lex_state = 2}, - [3527] = {.lex_state = 584}, - [3528] = {.lex_state = 584}, - [3529] = {.lex_state = 2}, - [3530] = {.lex_state = 194}, + [3527] = {.lex_state = 193}, + [3528] = {.lex_state = 2}, + [3529] = {.lex_state = 583}, + [3530] = {.lex_state = 583}, [3531] = {.lex_state = 2}, [3532] = {.lex_state = 2}, - [3533] = {.lex_state = 2}, - [3534] = {.lex_state = 2}, + [3533] = {.lex_state = 583}, + [3534] = {.lex_state = 583}, [3535] = {.lex_state = 2}, - [3536] = {.lex_state = 202}, - [3537] = {.lex_state = 2}, - [3538] = {.lex_state = 2}, - [3539] = {.lex_state = 2}, - [3540] = {.lex_state = 2}, - [3541] = {.lex_state = 2}, + [3536] = {.lex_state = 2}, + [3537] = {.lex_state = 583}, + [3538] = {.lex_state = 583}, + [3539] = {.lex_state = 583}, + [3540] = {.lex_state = 583}, + [3541] = {.lex_state = 583}, [3542] = {.lex_state = 2}, [3543] = {.lex_state = 2}, - [3544] = {.lex_state = 2}, - [3545] = {.lex_state = 185}, - [3546] = {.lex_state = 632}, - [3547] = {.lex_state = 584}, - [3548] = {.lex_state = 584}, - [3549] = {.lex_state = 584}, - [3550] = {.lex_state = 584}, - [3551] = {.lex_state = 584}, - [3552] = {.lex_state = 584}, - [3553] = {.lex_state = 584}, - [3554] = {.lex_state = 584}, - [3555] = {.lex_state = 584}, - [3556] = {.lex_state = 584}, - [3557] = {.lex_state = 584}, - [3558] = {.lex_state = 584}, - [3559] = {.lex_state = 584}, - [3560] = {.lex_state = 584}, - [3561] = {.lex_state = 2}, - [3562] = {.lex_state = 123}, - [3563] = {.lex_state = 195}, - [3564] = {.lex_state = 2}, - [3565] = {.lex_state = 640}, - [3566] = {.lex_state = 203}, - [3567] = {.lex_state = 632}, - [3568] = {.lex_state = 584}, - [3569] = {.lex_state = 584}, - [3570] = {.lex_state = 584}, - [3571] = {.lex_state = 584}, - [3572] = {.lex_state = 584}, - [3573] = {.lex_state = 584}, - [3574] = {.lex_state = 2}, - [3575] = {.lex_state = 584}, - [3576] = {.lex_state = 2}, - [3577] = {.lex_state = 584}, - [3578] = {.lex_state = 584}, - [3579] = {.lex_state = 2}, + [3544] = {.lex_state = 583}, + [3545] = {.lex_state = 2}, + [3546] = {.lex_state = 583}, + [3547] = {.lex_state = 194}, + [3548] = {.lex_state = 631}, + [3549] = {.lex_state = 583}, + [3550] = {.lex_state = 583}, + [3551] = {.lex_state = 583}, + [3552] = {.lex_state = 583}, + [3553] = {.lex_state = 583}, + [3554] = {.lex_state = 583}, + [3555] = {.lex_state = 583}, + [3556] = {.lex_state = 583}, + [3557] = {.lex_state = 583}, + [3558] = {.lex_state = 583}, + [3559] = {.lex_state = 583}, + [3560] = {.lex_state = 583}, + [3561] = {.lex_state = 182}, + [3562] = {.lex_state = 202}, + [3563] = {.lex_state = 583}, + [3564] = {.lex_state = 583}, + [3565] = {.lex_state = 201}, + [3566] = {.lex_state = 583}, + [3567] = {.lex_state = 2}, + [3568] = {.lex_state = 583}, + [3569] = {.lex_state = 583}, + [3570] = {.lex_state = 583}, + [3571] = {.lex_state = 583}, + [3572] = {.lex_state = 583}, + [3573] = {.lex_state = 183}, + [3574] = {.lex_state = 583}, + [3575] = {.lex_state = 583}, + [3576] = {.lex_state = 583}, + [3577] = {.lex_state = 2}, + [3578] = {.lex_state = 183}, + [3579] = {.lex_state = 583}, [3580] = {.lex_state = 2}, - [3581] = {.lex_state = 2}, - [3582] = {.lex_state = 584}, - [3583] = {.lex_state = 2}, - [3584] = {.lex_state = 619}, - [3585] = {.lex_state = 189}, - [3586] = {.lex_state = 2}, - [3587] = {.lex_state = 2}, - [3588] = {.lex_state = 94}, - [3589] = {.lex_state = 99}, - [3590] = {.lex_state = 123}, - [3591] = {.lex_state = 98}, - [3592] = {.lex_state = 584}, - [3593] = {.lex_state = 99}, - [3594] = {.lex_state = 123}, - [3595] = {.lex_state = 82}, - [3596] = {.lex_state = 83}, - [3597] = {.lex_state = 207}, - [3598] = {.lex_state = 82}, - [3599] = {.lex_state = 188}, - [3600] = {.lex_state = 196}, - [3601] = {.lex_state = 218}, - [3602] = {.lex_state = 588}, - [3603] = {.lex_state = 619}, - [3604] = {.lex_state = 189}, - [3605] = {.lex_state = 619}, - [3606] = {.lex_state = 2}, - [3607] = {.lex_state = 2}, - [3608] = {.lex_state = 2}, + [3581] = {.lex_state = 583}, + [3582] = {.lex_state = 583}, + [3583] = {.lex_state = 583}, + [3584] = {.lex_state = 583}, + [3585] = {.lex_state = 583}, + [3586] = {.lex_state = 583}, + [3587] = {.lex_state = 583}, + [3588] = {.lex_state = 583}, + [3589] = {.lex_state = 583}, + [3590] = {.lex_state = 583}, + [3591] = {.lex_state = 631}, + [3592] = {.lex_state = 583}, + [3593] = {.lex_state = 583}, + [3594] = {.lex_state = 583}, + [3595] = {.lex_state = 583}, + [3596] = {.lex_state = 583}, + [3597] = {.lex_state = 78}, + [3598] = {.lex_state = 583}, + [3599] = {.lex_state = 583}, + [3600] = {.lex_state = 583}, + [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 = 204}, + [3608] = {.lex_state = 122}, [3609] = {.lex_state = 2}, - [3610] = {.lex_state = 204}, - [3611] = {.lex_state = 233}, - [3612] = {.lex_state = 129}, - [3613] = {.lex_state = 619}, - [3614] = {.lex_state = 234}, - [3615] = {.lex_state = 129}, - [3616] = {.lex_state = 129}, - [3617] = {.lex_state = 129}, - [3618] = {.lex_state = 129}, - [3619] = {.lex_state = 129}, - [3620] = {.lex_state = 123}, - [3621] = {.lex_state = 123}, - [3622] = {.lex_state = 619}, - [3623] = {.lex_state = 205}, - [3624] = {.lex_state = 205}, - [3625] = {.lex_state = 584}, - [3626] = {.lex_state = 188}, + [3610] = {.lex_state = 187}, + [3611] = {.lex_state = 583}, + [3612] = {.lex_state = 128}, + [3613] = {.lex_state = 122}, + [3614] = {.lex_state = 2}, + [3615] = {.lex_state = 122}, + [3616] = {.lex_state = 93}, + [3617] = {.lex_state = 2}, + [3618] = {.lex_state = 2}, + [3619] = {.lex_state = 618}, + [3620] = {.lex_state = 2}, + [3621] = {.lex_state = 618}, + [3622] = {.lex_state = 618}, + [3623] = {.lex_state = 128}, + [3624] = {.lex_state = 618}, + [3625] = {.lex_state = 233}, + [3626] = {.lex_state = 97}, [3627] = {.lex_state = 2}, - [3628] = {.lex_state = 204}, - [3629] = {.lex_state = 100}, - [3630] = {.lex_state = 100}, - [3631] = {.lex_state = 101}, - [3632] = {.lex_state = 2203}, - [3633] = {.lex_state = 101}, - [3634] = {.lex_state = 2203}, - [3635] = {.lex_state = 588}, - [3636] = {.lex_state = 198}, - [3637] = {.lex_state = 129}, - [3638] = {.lex_state = 101}, - [3639] = {.lex_state = 95}, - [3640] = {.lex_state = 2099}, - [3641] = {.lex_state = 83}, - [3642] = {.lex_state = 2099}, - [3643] = {.lex_state = 2099}, - [3644] = {.lex_state = 2099}, - [3645] = {.lex_state = 588}, - [3646] = {.lex_state = 83}, - [3647] = {.lex_state = 2}, - [3648] = {.lex_state = 2158}, - [3649] = {.lex_state = 2158}, - [3650] = {.lex_state = 83}, - [3651] = {.lex_state = 2203}, - [3652] = {.lex_state = 197}, - [3653] = {.lex_state = 206}, - [3654] = {.lex_state = 2203}, - [3655] = {.lex_state = 220}, - [3656] = {.lex_state = 219}, - [3657] = {.lex_state = 80}, - [3658] = {.lex_state = 588}, - [3659] = {.lex_state = 1755, .external_lex_state = 2}, - [3660] = {.lex_state = 219}, - [3661] = {.lex_state = 206}, - [3662] = {.lex_state = 2099}, - [3663] = {.lex_state = 2099}, - [3664] = {.lex_state = 1755, .external_lex_state = 2}, - [3665] = {.lex_state = 2099}, - [3666] = {.lex_state = 2099}, - [3667] = {.lex_state = 2099}, - [3668] = {.lex_state = 2099}, - [3669] = {.lex_state = 1755, .external_lex_state = 2}, - [3670] = {.lex_state = 2099}, - [3671] = {.lex_state = 2099}, - [3672] = {.lex_state = 1755, .external_lex_state = 2}, - [3673] = {.lex_state = 208}, - [3674] = {.lex_state = 206}, - [3675] = {.lex_state = 2099}, - [3676] = {.lex_state = 2099}, - [3677] = {.lex_state = 1755, .external_lex_state = 2}, - [3678] = {.lex_state = 235}, - [3679] = {.lex_state = 2099}, - [3680] = {.lex_state = 2099}, - [3681] = {.lex_state = 1755, .external_lex_state = 2}, - [3682] = {.lex_state = 2099}, - [3683] = {.lex_state = 2099}, - [3684] = {.lex_state = 1755, .external_lex_state = 2}, - [3685] = {.lex_state = 2099}, - [3686] = {.lex_state = 2099}, - [3687] = {.lex_state = 1755, .external_lex_state = 2}, - [3688] = {.lex_state = 2099}, - [3689] = {.lex_state = 2099}, - [3690] = {.lex_state = 1755, .external_lex_state = 2}, - [3691] = {.lex_state = 2099}, - [3692] = {.lex_state = 2099}, - [3693] = {.lex_state = 1755, .external_lex_state = 2}, - [3694] = {.lex_state = 2099}, - [3695] = {.lex_state = 2099}, - [3696] = {.lex_state = 1755, .external_lex_state = 2}, - [3697] = {.lex_state = 2099}, - [3698] = {.lex_state = 2099}, - [3699] = {.lex_state = 1755, .external_lex_state = 2}, - [3700] = {.lex_state = 1755, .external_lex_state = 2}, - [3701] = {.lex_state = 1755, .external_lex_state = 2}, - [3702] = {.lex_state = 1755, .external_lex_state = 2}, - [3703] = {.lex_state = 1755, .external_lex_state = 2}, - [3704] = {.lex_state = 1755, .external_lex_state = 2}, - [3705] = {.lex_state = 1755, .external_lex_state = 2}, - [3706] = {.lex_state = 1755, .external_lex_state = 2}, - [3707] = {.lex_state = 1755, .external_lex_state = 2}, - [3708] = {.lex_state = 2158}, - [3709] = {.lex_state = 206}, - [3710] = {.lex_state = 2158}, - [3711] = {.lex_state = 1755, .external_lex_state = 2}, - [3712] = {.lex_state = 103}, - [3713] = {.lex_state = 235}, - [3714] = {.lex_state = 84}, - [3715] = {.lex_state = 207}, - [3716] = {.lex_state = 209}, - [3717] = {.lex_state = 101}, - [3718] = {.lex_state = 207}, - [3719] = {.lex_state = 207}, - [3720] = {.lex_state = 1755, .external_lex_state = 2}, - [3721] = {.lex_state = 588}, - [3722] = {.lex_state = 588}, - [3723] = {.lex_state = 588}, - [3724] = {.lex_state = 236}, - [3725] = {.lex_state = 130}, - [3726] = {.lex_state = 588}, - [3727] = {.lex_state = 588}, - [3728] = {.lex_state = 588}, - [3729] = {.lex_state = 130}, - [3730] = {.lex_state = 220}, - [3731] = {.lex_state = 588}, - [3732] = {.lex_state = 588}, - [3733] = {.lex_state = 130}, - [3734] = {.lex_state = 588}, - [3735] = {.lex_state = 588}, - [3736] = {.lex_state = 588}, - [3737] = {.lex_state = 83}, - [3738] = {.lex_state = 102}, - [3739] = {.lex_state = 105}, - [3740] = {.lex_state = 588}, - [3741] = {.lex_state = 130}, - [3742] = {.lex_state = 588}, - [3743] = {.lex_state = 130}, - [3744] = {.lex_state = 130}, - [3745] = {.lex_state = 105}, - [3746] = {.lex_state = 588}, - [3747] = {.lex_state = 588}, - [3748] = {.lex_state = 241}, - [3749] = {.lex_state = 588}, - [3750] = {.lex_state = 588}, - [3751] = {.lex_state = 588}, - [3752] = {.lex_state = 588}, - [3753] = {.lex_state = 588}, - [3754] = {.lex_state = 588}, - [3755] = {.lex_state = 636}, - [3756] = {.lex_state = 96}, - [3757] = {.lex_state = 588}, - [3758] = {.lex_state = 588}, - [3759] = {.lex_state = 102}, - [3760] = {.lex_state = 588}, - [3761] = {.lex_state = 588}, - [3762] = {.lex_state = 588}, - [3763] = {.lex_state = 636}, - [3764] = {.lex_state = 588}, - [3765] = {.lex_state = 588}, - [3766] = {.lex_state = 588}, - [3767] = {.lex_state = 588}, - [3768] = {.lex_state = 247}, - [3769] = {.lex_state = 588}, - [3770] = {.lex_state = 220}, - [3771] = {.lex_state = 588}, - [3772] = {.lex_state = 210}, - [3773] = {.lex_state = 236}, - [3774] = {.lex_state = 588}, - [3775] = {.lex_state = 85}, - [3776] = {.lex_state = 104}, - [3777] = {.lex_state = 588}, - [3778] = {.lex_state = 221}, - [3779] = {.lex_state = 236}, - [3780] = {.lex_state = 236}, - [3781] = {.lex_state = 91}, - [3782] = {.lex_state = 91}, - [3783] = {.lex_state = 588}, - [3784] = {.lex_state = 588}, - [3785] = {.lex_state = 588}, - [3786] = {.lex_state = 85}, - [3787] = {.lex_state = 588}, - [3788] = {.lex_state = 588}, - [3789] = {.lex_state = 588}, - [3790] = {.lex_state = 212}, - [3791] = {.lex_state = 212}, - [3792] = {.lex_state = 220}, - [3793] = {.lex_state = 588}, - [3794] = {.lex_state = 588}, - [3795] = {.lex_state = 207}, - [3796] = {.lex_state = 199}, - [3797] = {.lex_state = 588}, - [3798] = {.lex_state = 102}, - [3799] = {.lex_state = 102}, - [3800] = {.lex_state = 588}, - [3801] = {.lex_state = 91}, - [3802] = {.lex_state = 210}, - [3803] = {.lex_state = 2}, - [3804] = {.lex_state = 245}, - [3805] = {.lex_state = 107}, - [3806] = {.lex_state = 585}, - [3807] = {.lex_state = 211}, - [3808] = {.lex_state = 211}, - [3809] = {.lex_state = 245}, - [3810] = {.lex_state = 245}, - [3811] = {.lex_state = 128}, - [3812] = {.lex_state = 106}, - [3813] = {.lex_state = 245}, - [3814] = {.lex_state = 245}, - [3815] = {.lex_state = 248}, - [3816] = {.lex_state = 213}, - [3817] = {.lex_state = 245}, - [3818] = {.lex_state = 86}, - [3819] = {.lex_state = 222}, - [3820] = {.lex_state = 86}, - [3821] = {.lex_state = 245}, - [3822] = {.lex_state = 277}, - [3823] = {.lex_state = 130}, - [3824] = {.lex_state = 245}, - [3825] = {.lex_state = 86}, - [3826] = {.lex_state = 213}, - [3827] = {.lex_state = 245}, - [3828] = {.lex_state = 245}, - [3829] = {.lex_state = 213}, - [3830] = {.lex_state = 213}, - [3831] = {.lex_state = 213}, - [3832] = {.lex_state = 245}, - [3833] = {.lex_state = 106}, - [3834] = {.lex_state = 585}, - [3835] = {.lex_state = 106}, - [3836] = {.lex_state = 245}, - [3837] = {.lex_state = 86}, - [3838] = {.lex_state = 259}, - [3839] = {.lex_state = 128}, + [3628] = {.lex_state = 618}, + [3629] = {.lex_state = 587}, + [3630] = {.lex_state = 128}, + [3631] = {.lex_state = 128}, + [3632] = {.lex_state = 187}, + [3633] = {.lex_state = 195}, + [3634] = {.lex_state = 81}, + [3635] = {.lex_state = 583}, + [3636] = {.lex_state = 204}, + [3637] = {.lex_state = 203}, + [3638] = {.lex_state = 128}, + [3639] = {.lex_state = 128}, + [3640] = {.lex_state = 98}, + [3641] = {.lex_state = 82}, + [3642] = {.lex_state = 2}, + [3643] = {.lex_state = 203}, + [3644] = {.lex_state = 232}, + [3645] = {.lex_state = 188}, + [3646] = {.lex_state = 81}, + [3647] = {.lex_state = 122}, + [3648] = {.lex_state = 206}, + [3649] = {.lex_state = 2}, + [3650] = {.lex_state = 217}, + [3651] = {.lex_state = 98}, + [3652] = {.lex_state = 188}, + [3653] = {.lex_state = 1754, .external_lex_state = 2}, + [3654] = {.lex_state = 205}, + [3655] = {.lex_state = 197}, + [3656] = {.lex_state = 2098}, + [3657] = {.lex_state = 2098}, + [3658] = {.lex_state = 196}, + [3659] = {.lex_state = 2}, + [3660] = {.lex_state = 82}, + [3661] = {.lex_state = 100}, + [3662] = {.lex_state = 2098}, + [3663] = {.lex_state = 2202}, + [3664] = {.lex_state = 2157}, + [3665] = {.lex_state = 2098}, + [3666] = {.lex_state = 2098}, + [3667] = {.lex_state = 2098}, + [3668] = {.lex_state = 1754, .external_lex_state = 2}, + [3669] = {.lex_state = 218}, + [3670] = {.lex_state = 2098}, + [3671] = {.lex_state = 2098}, + [3672] = {.lex_state = 1754, .external_lex_state = 2}, + [3673] = {.lex_state = 2098}, + [3674] = {.lex_state = 2098}, + [3675] = {.lex_state = 1754, .external_lex_state = 2}, + [3676] = {.lex_state = 2098}, + [3677] = {.lex_state = 2098}, + [3678] = {.lex_state = 1754, .external_lex_state = 2}, + [3679] = {.lex_state = 2098}, + [3680] = {.lex_state = 2098}, + [3681] = {.lex_state = 1754, .external_lex_state = 2}, + [3682] = {.lex_state = 2098}, + [3683] = {.lex_state = 2098}, + [3684] = {.lex_state = 1754, .external_lex_state = 2}, + [3685] = {.lex_state = 2098}, + [3686] = {.lex_state = 2098}, + [3687] = {.lex_state = 1754, .external_lex_state = 2}, + [3688] = {.lex_state = 2098}, + [3689] = {.lex_state = 2098}, + [3690] = {.lex_state = 1754, .external_lex_state = 2}, + [3691] = {.lex_state = 1754, .external_lex_state = 2}, + [3692] = {.lex_state = 1754, .external_lex_state = 2}, + [3693] = {.lex_state = 1754, .external_lex_state = 2}, + [3694] = {.lex_state = 1754, .external_lex_state = 2}, + [3695] = {.lex_state = 1754, .external_lex_state = 2}, + [3696] = {.lex_state = 1754, .external_lex_state = 2}, + [3697] = {.lex_state = 1754, .external_lex_state = 2}, + [3698] = {.lex_state = 1754, .external_lex_state = 2}, + [3699] = {.lex_state = 219}, + [3700] = {.lex_state = 1754, .external_lex_state = 2}, + [3701] = {.lex_state = 218}, + [3702] = {.lex_state = 587}, + [3703] = {.lex_state = 79}, + [3704] = {.lex_state = 1754, .external_lex_state = 2}, + [3705] = {.lex_state = 100}, + [3706] = {.lex_state = 234}, + [3707] = {.lex_state = 100}, + [3708] = {.lex_state = 99}, + [3709] = {.lex_state = 234}, + [3710] = {.lex_state = 206}, + [3711] = {.lex_state = 100}, + [3712] = {.lex_state = 2098}, + [3713] = {.lex_state = 2098}, + [3714] = {.lex_state = 205}, + [3715] = {.lex_state = 205}, + [3716] = {.lex_state = 1754, .external_lex_state = 2}, + [3717] = {.lex_state = 208}, + [3718] = {.lex_state = 83}, + [3719] = {.lex_state = 2202}, + [3720] = {.lex_state = 94}, + [3721] = {.lex_state = 587}, + [3722] = {.lex_state = 2202}, + [3723] = {.lex_state = 99}, + [3724] = {.lex_state = 205}, + [3725] = {.lex_state = 587}, + [3726] = {.lex_state = 2098}, + [3727] = {.lex_state = 2098}, + [3728] = {.lex_state = 2157}, + [3729] = {.lex_state = 2157}, + [3730] = {.lex_state = 2157}, + [3731] = {.lex_state = 102}, + [3732] = {.lex_state = 128}, + [3733] = {.lex_state = 206}, + [3734] = {.lex_state = 82}, + [3735] = {.lex_state = 2098}, + [3736] = {.lex_state = 2098}, + [3737] = {.lex_state = 1754, .external_lex_state = 2}, + [3738] = {.lex_state = 1754, .external_lex_state = 2}, + [3739] = {.lex_state = 2202}, + [3740] = {.lex_state = 587}, + [3741] = {.lex_state = 207}, + [3742] = {.lex_state = 2098}, + [3743] = {.lex_state = 2098}, + [3744] = {.lex_state = 206}, + [3745] = {.lex_state = 82}, + [3746] = {.lex_state = 587}, + [3747] = {.lex_state = 587}, + [3748] = {.lex_state = 219}, + [3749] = {.lex_state = 587}, + [3750] = {.lex_state = 211}, + [3751] = {.lex_state = 587}, + [3752] = {.lex_state = 101}, + [3753] = {.lex_state = 635}, + [3754] = {.lex_state = 587}, + [3755] = {.lex_state = 235}, + [3756] = {.lex_state = 587}, + [3757] = {.lex_state = 587}, + [3758] = {.lex_state = 587}, + [3759] = {.lex_state = 587}, + [3760] = {.lex_state = 587}, + [3761] = {.lex_state = 587}, + [3762] = {.lex_state = 587}, + [3763] = {.lex_state = 587}, + [3764] = {.lex_state = 101}, + [3765] = {.lex_state = 90}, + [3766] = {.lex_state = 587}, + [3767] = {.lex_state = 129}, + [3768] = {.lex_state = 587}, + [3769] = {.lex_state = 587}, + [3770] = {.lex_state = 206}, + [3771] = {.lex_state = 587}, + [3772] = {.lex_state = 587}, + [3773] = {.lex_state = 587}, + [3774] = {.lex_state = 587}, + [3775] = {.lex_state = 219}, + [3776] = {.lex_state = 101}, + [3777] = {.lex_state = 587}, + [3778] = {.lex_state = 587}, + [3779] = {.lex_state = 587}, + [3780] = {.lex_state = 129}, + [3781] = {.lex_state = 587}, + [3782] = {.lex_state = 104}, + [3783] = {.lex_state = 129}, + [3784] = {.lex_state = 587}, + [3785] = {.lex_state = 209}, + [3786] = {.lex_state = 246}, + [3787] = {.lex_state = 587}, + [3788] = {.lex_state = 235}, + [3789] = {.lex_state = 587}, + [3790] = {.lex_state = 587}, + [3791] = {.lex_state = 635}, + [3792] = {.lex_state = 587}, + [3793] = {.lex_state = 587}, + [3794] = {.lex_state = 587}, + [3795] = {.lex_state = 587}, + [3796] = {.lex_state = 235}, + [3797] = {.lex_state = 209}, + [3798] = {.lex_state = 587}, + [3799] = {.lex_state = 587}, + [3800] = {.lex_state = 95}, + [3801] = {.lex_state = 129}, + [3802] = {.lex_state = 587}, + [3803] = {.lex_state = 587}, + [3804] = {.lex_state = 587}, + [3805] = {.lex_state = 219}, + [3806] = {.lex_state = 587}, + [3807] = {.lex_state = 220}, + [3808] = {.lex_state = 240}, + [3809] = {.lex_state = 129}, + [3810] = {.lex_state = 101}, + [3811] = {.lex_state = 235}, + [3812] = {.lex_state = 587}, + [3813] = {.lex_state = 129}, + [3814] = {.lex_state = 587}, + [3815] = {.lex_state = 84}, + [3816] = {.lex_state = 587}, + [3817] = {.lex_state = 211}, + [3818] = {.lex_state = 587}, + [3819] = {.lex_state = 587}, + [3820] = {.lex_state = 90}, + [3821] = {.lex_state = 103}, + [3822] = {.lex_state = 82}, + [3823] = {.lex_state = 104}, + [3824] = {.lex_state = 90}, + [3825] = {.lex_state = 198}, + [3826] = {.lex_state = 84}, + [3827] = {.lex_state = 105}, + [3828] = {.lex_state = 210}, + [3829] = {.lex_state = 258}, + [3830] = {.lex_state = 584}, + [3831] = {.lex_state = 244}, + [3832] = {.lex_state = 244}, + [3833] = {.lex_state = 105}, + [3834] = {.lex_state = 105}, + [3835] = {.lex_state = 85}, + [3836] = {.lex_state = 210}, + [3837] = {.lex_state = 244}, + [3838] = {.lex_state = 244}, + [3839] = {.lex_state = 244}, [3840] = {.lex_state = 106}, - [3841] = {.lex_state = 211}, - [3842] = {.lex_state = 107}, - [3843] = {.lex_state = 222}, - [3844] = {.lex_state = 242}, - [3845] = {.lex_state = 86}, - [3846] = {.lex_state = 248}, - [3847] = {.lex_state = 130}, - [3848] = {.lex_state = 106}, - [3849] = {.lex_state = 245}, - [3850] = {.lex_state = 206}, - [3851] = {.lex_state = 123}, - [3852] = {.lex_state = 123}, - [3853] = {.lex_state = 47}, - [3854] = {.lex_state = 47}, - [3855] = {.lex_state = 47}, - [3856] = {.lex_state = 277}, - [3857] = {.lex_state = 223}, - [3858] = {.lex_state = 276}, - [3859] = {.lex_state = 47}, - [3860] = {.lex_state = 47}, - [3861] = {.lex_state = 47}, - [3862] = {.lex_state = 47}, - [3863] = {.lex_state = 91}, - [3864] = {.lex_state = 91}, - [3865] = {.lex_state = 47}, - [3866] = {.lex_state = 47}, - [3867] = {.lex_state = 249}, - [3868] = {.lex_state = 108}, - [3869] = {.lex_state = 33}, - [3870] = {.lex_state = 47}, - [3871] = {.lex_state = 47}, - [3872] = {.lex_state = 585}, - [3873] = {.lex_state = 33}, - [3874] = {.lex_state = 47}, - [3875] = {.lex_state = 33}, - [3876] = {.lex_state = 47}, - [3877] = {.lex_state = 108}, - [3878] = {.lex_state = 217}, - [3879] = {.lex_state = 108}, - [3880] = {.lex_state = 276}, - [3881] = {.lex_state = 249}, - [3882] = {.lex_state = 33}, - [3883] = {.lex_state = 47}, - [3884] = {.lex_state = 123}, - [3885] = {.lex_state = 130}, - [3886] = {.lex_state = 47}, - [3887] = {.lex_state = 585}, - [3888] = {.lex_state = 123}, - [3889] = {.lex_state = 47}, - [3890] = {.lex_state = 223}, - [3891] = {.lex_state = 91}, - [3892] = {.lex_state = 223}, - [3893] = {.lex_state = 277}, - [3894] = {.lex_state = 33}, - [3895] = {.lex_state = 47}, - [3896] = {.lex_state = 47}, - [3897] = {.lex_state = 585}, - [3898] = {.lex_state = 585}, - [3899] = {.lex_state = 585}, - [3900] = {.lex_state = 250}, + [3841] = {.lex_state = 247}, + [3842] = {.lex_state = 244}, + [3843] = {.lex_state = 127}, + [3844] = {.lex_state = 244}, + [3845] = {.lex_state = 105}, + [3846] = {.lex_state = 247}, + [3847] = {.lex_state = 85}, + [3848] = {.lex_state = 244}, + [3849] = {.lex_state = 2}, + [3850] = {.lex_state = 106}, + [3851] = {.lex_state = 276}, + [3852] = {.lex_state = 244}, + [3853] = {.lex_state = 244}, + [3854] = {.lex_state = 244}, + [3855] = {.lex_state = 129}, + [3856] = {.lex_state = 129}, + [3857] = {.lex_state = 85}, + [3858] = {.lex_state = 244}, + [3859] = {.lex_state = 212}, + [3860] = {.lex_state = 212}, + [3861] = {.lex_state = 85}, + [3862] = {.lex_state = 244}, + [3863] = {.lex_state = 212}, + [3864] = {.lex_state = 127}, + [3865] = {.lex_state = 212}, + [3866] = {.lex_state = 221}, + [3867] = {.lex_state = 584}, + [3868] = {.lex_state = 105}, + [3869] = {.lex_state = 210}, + [3870] = {.lex_state = 241}, + [3871] = {.lex_state = 212}, + [3872] = {.lex_state = 85}, + [3873] = {.lex_state = 221}, + [3874] = {.lex_state = 256}, + [3875] = {.lex_state = 216}, + [3876] = {.lex_state = 127}, + [3877] = {.lex_state = 107}, + [3878] = {.lex_state = 107}, + [3879] = {.lex_state = 107}, + [3880] = {.lex_state = 584}, + [3881] = {.lex_state = 584}, + [3882] = {.lex_state = 222}, + [3883] = {.lex_state = 276}, + [3884] = {.lex_state = 122}, + [3885] = {.lex_state = 122}, + [3886] = {.lex_state = 222}, + [3887] = {.lex_state = 33}, + [3888] = {.lex_state = 122}, + [3889] = {.lex_state = 33}, + [3890] = {.lex_state = 47}, + [3891] = {.lex_state = 47}, + [3892] = {.lex_state = 122}, + [3893] = {.lex_state = 128}, + [3894] = {.lex_state = 129}, + [3895] = {.lex_state = 248}, + [3896] = {.lex_state = 115}, + [3897] = {.lex_state = 245}, + [3898] = {.lex_state = 47}, + [3899] = {.lex_state = 47}, + [3900] = {.lex_state = 275}, [3901] = {.lex_state = 47}, - [3902] = {.lex_state = 47}, - [3903] = {.lex_state = 130}, - [3904] = {.lex_state = 130}, - [3905] = {.lex_state = 249}, - [3906] = {.lex_state = 277}, + [3902] = {.lex_state = 210}, + [3903] = {.lex_state = 275}, + [3904] = {.lex_state = 275}, + [3905] = {.lex_state = 47}, + [3906] = {.lex_state = 249}, [3907] = {.lex_state = 47}, - [3908] = {.lex_state = 123}, - [3909] = {.lex_state = 130}, - [3910] = {.lex_state = 129}, - [3911] = {.lex_state = 123}, - [3912] = {.lex_state = 33}, - [3913] = {.lex_state = 123}, - [3914] = {.lex_state = 128}, - [3915] = {.lex_state = 91}, - [3916] = {.lex_state = 33}, - [3917] = {.lex_state = 585}, - [3918] = {.lex_state = 276}, - [3919] = {.lex_state = 123}, - [3920] = {.lex_state = 33}, - [3921] = {.lex_state = 116}, - [3922] = {.lex_state = 123}, - [3923] = {.lex_state = 243}, - [3924] = {.lex_state = 33}, - [3925] = {.lex_state = 88}, - [3926] = {.lex_state = 123}, - [3927] = {.lex_state = 211}, + [3908] = {.lex_state = 129}, + [3909] = {.lex_state = 129}, + [3910] = {.lex_state = 87}, + [3911] = {.lex_state = 276}, + [3912] = {.lex_state = 90}, + [3913] = {.lex_state = 33}, + [3914] = {.lex_state = 129}, + [3915] = {.lex_state = 47}, + [3916] = {.lex_state = 210}, + [3917] = {.lex_state = 107}, + [3918] = {.lex_state = 47}, + [3919] = {.lex_state = 129}, + [3920] = {.lex_state = 129}, + [3921] = {.lex_state = 107}, + [3922] = {.lex_state = 90}, + [3923] = {.lex_state = 205}, + [3924] = {.lex_state = 129}, + [3925] = {.lex_state = 129}, + [3926] = {.lex_state = 47}, + [3927] = {.lex_state = 122}, [3928] = {.lex_state = 108}, - [3929] = {.lex_state = 123}, - [3930] = {.lex_state = 260}, - [3931] = {.lex_state = 223}, - [3932] = {.lex_state = 123}, - [3933] = {.lex_state = 87}, - [3934] = {.lex_state = 108}, - [3935] = {.lex_state = 249}, - [3936] = {.lex_state = 214}, - [3937] = {.lex_state = 128}, - [3938] = {.lex_state = 128}, - [3939] = {.lex_state = 123}, - [3940] = {.lex_state = 33}, - [3941] = {.lex_state = 246}, - [3942] = {.lex_state = 223}, - [3943] = {.lex_state = 211}, - [3944] = {.lex_state = 109}, - [3945] = {.lex_state = 130}, - [3946] = {.lex_state = 47}, - [3947] = {.lex_state = 260}, - [3948] = {.lex_state = 130}, + [3929] = {.lex_state = 33}, + [3930] = {.lex_state = 276}, + [3931] = {.lex_state = 33}, + [3932] = {.lex_state = 33}, + [3933] = {.lex_state = 90}, + [3934] = {.lex_state = 33}, + [3935] = {.lex_state = 127}, + [3936] = {.lex_state = 90}, + [3937] = {.lex_state = 33}, + [3938] = {.lex_state = 122}, + [3939] = {.lex_state = 242}, + [3940] = {.lex_state = 222}, + [3941] = {.lex_state = 122}, + [3942] = {.lex_state = 33}, + [3943] = {.lex_state = 222}, + [3944] = {.lex_state = 47}, + [3945] = {.lex_state = 222}, + [3946] = {.lex_state = 248}, + [3947] = {.lex_state = 86}, + [3948] = {.lex_state = 248}, [3949] = {.lex_state = 47}, - [3950] = {.lex_state = 277}, - [3951] = {.lex_state = 33}, - [3952] = {.lex_state = 123}, - [3953] = {.lex_state = 277}, - [3954] = {.lex_state = 130}, - [3955] = {.lex_state = 277}, - [3956] = {.lex_state = 130}, + [3950] = {.lex_state = 33}, + [3951] = {.lex_state = 47}, + [3952] = {.lex_state = 47}, + [3953] = {.lex_state = 47}, + [3954] = {.lex_state = 47}, + [3955] = {.lex_state = 47}, + [3956] = {.lex_state = 47}, [3957] = {.lex_state = 47}, - [3958] = {.lex_state = 256}, - [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 0}, - [3961] = {.lex_state = 0}, - [3962] = {.lex_state = 123}, - [3963] = {.lex_state = 0}, - [3964] = {.lex_state = 123}, - [3965] = {.lex_state = 123}, - [3966] = {.lex_state = 118}, - [3967] = {.lex_state = 244}, - [3968] = {.lex_state = 128}, - [3969] = {.lex_state = 0}, - [3970] = {.lex_state = 110}, - [3971] = {.lex_state = 0}, - [3972] = {.lex_state = 0}, - [3973] = {.lex_state = 276}, - [3974] = {.lex_state = 276}, - [3975] = {.lex_state = 276}, - [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 251}, - [3978] = {.lex_state = 0}, - [3979] = {.lex_state = 181}, - [3980] = {.lex_state = 2100}, - [3981] = {.lex_state = 2100}, - [3982] = {.lex_state = 249}, + [3958] = {.lex_state = 47}, + [3959] = {.lex_state = 47}, + [3960] = {.lex_state = 47}, + [3961] = {.lex_state = 47}, + [3962] = {.lex_state = 122}, + [3963] = {.lex_state = 584}, + [3964] = {.lex_state = 47}, + [3965] = {.lex_state = 122}, + [3966] = {.lex_state = 584}, + [3967] = {.lex_state = 584}, + [3968] = {.lex_state = 584}, + [3969] = {.lex_state = 276}, + [3970] = {.lex_state = 122}, + [3971] = {.lex_state = 127}, + [3972] = {.lex_state = 122}, + [3973] = {.lex_state = 33}, + [3974] = {.lex_state = 213}, + [3975] = {.lex_state = 122}, + [3976] = {.lex_state = 122}, + [3977] = {.lex_state = 248}, + [3978] = {.lex_state = 259}, + [3979] = {.lex_state = 259}, + [3980] = {.lex_state = 276}, + [3981] = {.lex_state = 276}, + [3982] = {.lex_state = 122}, [3983] = {.lex_state = 0}, [3984] = {.lex_state = 0}, [3985] = {.lex_state = 0}, - [3986] = {.lex_state = 2204}, - [3987] = {.lex_state = 0}, - [3988] = {.lex_state = 2204}, - [3989] = {.lex_state = 261}, - [3990] = {.lex_state = 181}, - [3991] = {.lex_state = 118}, + [3986] = {.lex_state = 0}, + [3987] = {.lex_state = 180}, + [3988] = {.lex_state = 0}, + [3989] = {.lex_state = 0}, + [3990] = {.lex_state = 0}, + [3991] = {.lex_state = 0}, [3992] = {.lex_state = 0}, - [3993] = {.lex_state = 257}, + [3993] = {.lex_state = 645}, [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 128}, + [3995] = {.lex_state = 0}, [3996] = {.lex_state = 0}, [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 33}, - [3999] = {.lex_state = 33}, + [3998] = {.lex_state = 0}, + [3999] = {.lex_state = 0}, [4000] = {.lex_state = 0}, - [4001] = {.lex_state = 128}, - [4002] = {.lex_state = 128}, - [4003] = {.lex_state = 123}, - [4004] = {.lex_state = 91}, + [4001] = {.lex_state = 0}, + [4002] = {.lex_state = 0}, + [4003] = {.lex_state = 0}, + [4004] = {.lex_state = 0}, [4005] = {.lex_state = 0}, - [4006] = {.lex_state = 128}, - [4007] = {.lex_state = 128}, - [4008] = {.lex_state = 128}, + [4006] = {.lex_state = 0}, + [4007] = {.lex_state = 0}, + [4008] = {.lex_state = 0}, [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 123}, - [4011] = {.lex_state = 123}, - [4012] = {.lex_state = 189}, - [4013] = {.lex_state = 123}, - [4014] = {.lex_state = 123}, - [4015] = {.lex_state = 89}, - [4016] = {.lex_state = 123}, - [4017] = {.lex_state = 0}, - [4018] = {.lex_state = 0}, - [4019] = {.lex_state = 0}, - [4020] = {.lex_state = 0}, - [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 0}, - [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 0}, - [4025] = {.lex_state = 0}, - [4026] = {.lex_state = 0}, - [4027] = {.lex_state = 0}, - [4028] = {.lex_state = 0}, - [4029] = {.lex_state = 0}, - [4030] = {.lex_state = 0}, - [4031] = {.lex_state = 0}, - [4032] = {.lex_state = 123}, - [4033] = {.lex_state = 123}, - [4034] = {.lex_state = 123}, - [4035] = {.lex_state = 0}, - [4036] = {.lex_state = 123}, - [4037] = {.lex_state = 89}, - [4038] = {.lex_state = 276}, - [4039] = {.lex_state = 129}, - [4040] = {.lex_state = 129}, - [4041] = {.lex_state = 129}, - [4042] = {.lex_state = 238}, - [4043] = {.lex_state = 181}, - [4044] = {.lex_state = 2100}, - [4045] = {.lex_state = 2100}, - [4046] = {.lex_state = 130}, - [4047] = {.lex_state = 33}, - [4048] = {.lex_state = 0}, - [4049] = {.lex_state = 181}, - [4050] = {.lex_state = 123}, - [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 0}, - [4053] = {.lex_state = 129}, - [4054] = {.lex_state = 0}, - [4055] = {.lex_state = 276}, - [4056] = {.lex_state = 113}, - [4057] = {.lex_state = 0}, - [4058] = {.lex_state = 585}, - [4059] = {.lex_state = 276}, - [4060] = {.lex_state = 0}, - [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 0}, + [4010] = {.lex_state = 0}, + [4011] = {.lex_state = 0}, + [4012] = {.lex_state = 0}, + [4013] = {.lex_state = 0}, + [4014] = {.lex_state = 0}, + [4015] = {.lex_state = 122}, + [4016] = {.lex_state = 108}, + [4017] = {.lex_state = 584}, + [4018] = {.lex_state = 122}, + [4019] = {.lex_state = 645}, + [4020] = {.lex_state = 237}, + [4021] = {.lex_state = 122}, + [4022] = {.lex_state = 188}, + [4023] = {.lex_state = 33}, + [4024] = {.lex_state = 117}, + [4025] = {.lex_state = 122}, + [4026] = {.lex_state = 275}, + [4027] = {.lex_state = 250}, + [4028] = {.lex_state = 117}, + [4029] = {.lex_state = 127}, + [4030] = {.lex_state = 275}, + [4031] = {.lex_state = 584}, + [4032] = {.lex_state = 127}, + [4033] = {.lex_state = 127}, + [4034] = {.lex_state = 33}, + [4035] = {.lex_state = 116}, + [4036] = {.lex_state = 255}, + [4037] = {.lex_state = 33}, + [4038] = {.lex_state = 33}, + [4039] = {.lex_state = 257}, + [4040] = {.lex_state = 33}, + [4041] = {.lex_state = 275}, + [4042] = {.lex_state = 33}, + [4043] = {.lex_state = 127}, + [4044] = {.lex_state = 127}, + [4045] = {.lex_state = 127}, + [4046] = {.lex_state = 275}, + [4047] = {.lex_state = 668}, + [4048] = {.lex_state = 645}, + [4049] = {.lex_state = 88}, + [4050] = {.lex_state = 257}, + [4051] = {.lex_state = 128}, + [4052] = {.lex_state = 128}, + [4053] = {.lex_state = 128}, + [4054] = {.lex_state = 180}, + [4055] = {.lex_state = 2099}, + [4056] = {.lex_state = 2099}, + [4057] = {.lex_state = 180}, + [4058] = {.lex_state = 88}, + [4059] = {.lex_state = 33}, + [4060] = {.lex_state = 33}, + [4061] = {.lex_state = 122}, + [4062] = {.lex_state = 275}, [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 0}, - [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 0}, + [4064] = {.lex_state = 90}, + [4065] = {.lex_state = 122}, + [4066] = {.lex_state = 122}, [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 251}, - [4069] = {.lex_state = 276}, - [4070] = {.lex_state = 0}, + [4068] = {.lex_state = 0}, + [4069] = {.lex_state = 128}, + [4070] = {.lex_state = 250}, [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 0}, + [4072] = {.lex_state = 129}, [4073] = {.lex_state = 0}, - [4074] = {.lex_state = 181}, - [4075] = {.lex_state = 0}, + [4074] = {.lex_state = 275}, + [4075] = {.lex_state = 188}, [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 33}, - [4078] = {.lex_state = 33}, - [4079] = {.lex_state = 585}, - [4080] = {.lex_state = 130}, - [4081] = {.lex_state = 181}, - [4082] = {.lex_state = 33}, - [4083] = {.lex_state = 646}, - [4084] = {.lex_state = 123}, - [4085] = {.lex_state = 646}, - [4086] = {.lex_state = 181}, - [4087] = {.lex_state = 2100}, - [4088] = {.lex_state = 2100}, - [4089] = {.lex_state = 257}, - [4090] = {.lex_state = 181}, - [4091] = {.lex_state = 33}, - [4092] = {.lex_state = 227}, - [4093] = {.lex_state = 33}, - [4094] = {.lex_state = 181}, - [4095] = {.lex_state = 2100}, - [4096] = {.lex_state = 2100}, + [4077] = {.lex_state = 0}, + [4078] = {.lex_state = 0}, + [4079] = {.lex_state = 0}, + [4080] = {.lex_state = 255}, + [4081] = {.lex_state = 0}, + [4082] = {.lex_state = 0}, + [4083] = {.lex_state = 0}, + [4084] = {.lex_state = 0}, + [4085] = {.lex_state = 0}, + [4086] = {.lex_state = 33}, + [4087] = {.lex_state = 33}, + [4088] = {.lex_state = 275}, + [4089] = {.lex_state = 122}, + [4090] = {.lex_state = 0}, + [4091] = {.lex_state = 0}, + [4092] = {.lex_state = 248}, + [4093] = {.lex_state = 180}, + [4094] = {.lex_state = 223}, + [4095] = {.lex_state = 2099}, + [4096] = {.lex_state = 2099}, [4097] = {.lex_state = 0}, - [4098] = {.lex_state = 181}, - [4099] = {.lex_state = 123}, - [4100] = {.lex_state = 181}, - [4101] = {.lex_state = 2100}, - [4102] = {.lex_state = 2100}, - [4103] = {.lex_state = 181}, - [4104] = {.lex_state = 181}, - [4105] = {.lex_state = 0}, - [4106] = {.lex_state = 276}, - [4107] = {.lex_state = 276}, - [4108] = {.lex_state = 181}, - [4109] = {.lex_state = 646}, - [4110] = {.lex_state = 646}, - [4111] = {.lex_state = 276}, + [4098] = {.lex_state = 90}, + [4099] = {.lex_state = 180}, + [4100] = {.lex_state = 180}, + [4101] = {.lex_state = 2099}, + [4102] = {.lex_state = 2099}, + [4103] = {.lex_state = 0}, + [4104] = {.lex_state = 180}, + [4105] = {.lex_state = 129}, + [4106] = {.lex_state = 180}, + [4107] = {.lex_state = 2099}, + [4108] = {.lex_state = 2099}, + [4109] = {.lex_state = 0}, + [4110] = {.lex_state = 180}, + [4111] = {.lex_state = 0}, [4112] = {.lex_state = 0}, - [4113] = {.lex_state = 646}, - [4114] = {.lex_state = 181}, - [4115] = {.lex_state = 181}, - [4116] = {.lex_state = 181}, - [4117] = {.lex_state = 0}, + [4113] = {.lex_state = 0}, + [4114] = {.lex_state = 0}, + [4115] = {.lex_state = 180}, + [4116] = {.lex_state = 645}, + [4117] = {.lex_state = 645}, [4118] = {.lex_state = 0}, - [4119] = {.lex_state = 181}, - [4120] = {.lex_state = 0}, + [4119] = {.lex_state = 180}, + [4120] = {.lex_state = 33}, [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 0}, + [4122] = {.lex_state = 180}, [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 215}, - [4125] = {.lex_state = 0}, - [4126] = {.lex_state = 33}, - [4127] = {.lex_state = 215}, - [4128] = {.lex_state = 200}, - [4129] = {.lex_state = 669}, - [4130] = {.lex_state = 646}, - [4131] = {.lex_state = 0}, - [4132] = {.lex_state = 0}, - [4133] = {.lex_state = 128}, - [4134] = {.lex_state = 201}, + [4124] = {.lex_state = 122}, + [4125] = {.lex_state = 180}, + [4126] = {.lex_state = 243}, + [4127] = {.lex_state = 645}, + [4128] = {.lex_state = 122}, + [4129] = {.lex_state = 180}, + [4130] = {.lex_state = 180}, + [4131] = {.lex_state = 261}, + [4132] = {.lex_state = 180}, + [4133] = {.lex_state = 0}, + [4134] = {.lex_state = 0}, [4135] = {.lex_state = 0}, - [4136] = {.lex_state = 181}, - [4137] = {.lex_state = 261}, - [4138] = {.lex_state = 261}, - [4139] = {.lex_state = 261}, - [4140] = {.lex_state = 258}, - [4141] = {.lex_state = 258}, + [4136] = {.lex_state = 109}, + [4137] = {.lex_state = 127}, + [4138] = {.lex_state = 199}, + [4139] = {.lex_state = 226}, + [4140] = {.lex_state = 0}, + [4141] = {.lex_state = 0}, [4142] = {.lex_state = 0}, [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 0}, - [4145] = {.lex_state = 262}, + [4144] = {.lex_state = 275}, + [4145] = {.lex_state = 275}, [4146] = {.lex_state = 0}, - [4147] = {.lex_state = 123}, - [4148] = {.lex_state = 123}, - [4149] = {.lex_state = 123}, - [4150] = {.lex_state = 123}, - [4151] = {.lex_state = 91}, - [4152] = {.lex_state = 2100}, - [4153] = {.lex_state = 276}, - [4154] = {.lex_state = 276}, - [4155] = {.lex_state = 276}, - [4156] = {.lex_state = 33}, - [4157] = {.lex_state = 2100}, - [4158] = {.lex_state = 189}, - [4159] = {.lex_state = 109}, - [4160] = {.lex_state = 0}, + [4147] = {.lex_state = 275}, + [4148] = {.lex_state = 112}, + [4149] = {.lex_state = 0}, + [4150] = {.lex_state = 0}, + [4151] = {.lex_state = 0}, + [4152] = {.lex_state = 2099}, + [4153] = {.lex_state = 0}, + [4154] = {.lex_state = 0}, + [4155] = {.lex_state = 0}, + [4156] = {.lex_state = 127}, + [4157] = {.lex_state = 2203}, + [4158] = {.lex_state = 2203}, + [4159] = {.lex_state = 180}, + [4160] = {.lex_state = 180}, [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 276}, - [4163] = {.lex_state = 276}, - [4164] = {.lex_state = 276}, - [4165] = {.lex_state = 91}, - [4166] = {.lex_state = 276}, - [4167] = {.lex_state = 276}, - [4168] = {.lex_state = 276}, - [4169] = {.lex_state = 117}, - [4170] = {.lex_state = 224}, - [4171] = {.lex_state = 0}, - [4172] = {.lex_state = 0}, - [4173] = {.lex_state = 249}, - [4174] = {.lex_state = 33}, - [4175] = {.lex_state = 33}, - [4176] = {.lex_state = 179}, - [4177] = {.lex_state = 119}, - [4178] = {.lex_state = 225}, - [4179] = {.lex_state = 631}, - [4180] = {.lex_state = 2}, - [4181] = {.lex_state = 179}, - [4182] = {.lex_state = 278}, - [4183] = {.lex_state = 119}, - [4184] = {.lex_state = 229}, - [4185] = {.lex_state = 179}, - [4186] = {.lex_state = 278}, - [4187] = {.lex_state = 226}, - [4188] = {.lex_state = 91}, - [4189] = {.lex_state = 278}, - [4190] = {.lex_state = 631}, - [4191] = {.lex_state = 33}, - [4192] = {.lex_state = 278}, - [4193] = {.lex_state = 90}, - [4194] = {.lex_state = 179}, - [4195] = {.lex_state = 278}, - [4196] = {.lex_state = 631}, - [4197] = {.lex_state = 216}, - [4198] = {.lex_state = 123}, - [4199] = {.lex_state = 0}, - [4200] = {.lex_state = 0}, - [4201] = {.lex_state = 278}, - [4202] = {.lex_state = 123}, - [4203] = {.lex_state = 179}, - [4204] = {.lex_state = 278}, - [4205] = {.lex_state = 278}, - [4206] = {.lex_state = 216}, - [4207] = {.lex_state = 33}, - [4208] = {.lex_state = 130}, - [4209] = {.lex_state = 91}, - [4210] = {.lex_state = 278}, - [4211] = {.lex_state = 123}, - [4212] = {.lex_state = 130}, - [4213] = {.lex_state = 119}, - [4214] = {.lex_state = 216}, - [4215] = {.lex_state = 216}, - [4216] = {.lex_state = 0}, - [4217] = {.lex_state = 123}, - [4218] = {.lex_state = 179}, - [4219] = {.lex_state = 278}, - [4220] = {.lex_state = 2}, - [4221] = {.lex_state = 122}, - [4222] = {.lex_state = 278}, - [4223] = {.lex_state = 216}, - [4224] = {.lex_state = 90}, - [4225] = {.lex_state = 252}, - [4226] = {.lex_state = 179}, - [4227] = {.lex_state = 278}, - [4228] = {.lex_state = 631}, - [4229] = {.lex_state = 216}, - [4230] = {.lex_state = 90}, - [4231] = {.lex_state = 278}, - [4232] = {.lex_state = 125}, - [4233] = {.lex_state = 90}, - [4234] = {.lex_state = 276}, - [4235] = {.lex_state = 90}, - [4236] = {.lex_state = 179}, - [4237] = {.lex_state = 90}, - [4238] = {.lex_state = 179}, + [4162] = {.lex_state = 2099}, + [4163] = {.lex_state = 0}, + [4164] = {.lex_state = 0}, + [4165] = {.lex_state = 260}, + [4166] = {.lex_state = 122}, + [4167] = {.lex_state = 122}, + [4168] = {.lex_state = 122}, + [4169] = {.lex_state = 122}, + [4170] = {.lex_state = 2099}, + [4171] = {.lex_state = 33}, + [4172] = {.lex_state = 275}, + [4173] = {.lex_state = 275}, + [4174] = {.lex_state = 275}, + [4175] = {.lex_state = 2099}, + [4176] = {.lex_state = 248}, + [4177] = {.lex_state = 122}, + [4178] = {.lex_state = 214}, + [4179] = {.lex_state = 122}, + [4180] = {.lex_state = 214}, + [4181] = {.lex_state = 200}, + [4182] = {.lex_state = 180}, + [4183] = {.lex_state = 0}, + [4184] = {.lex_state = 275}, + [4185] = {.lex_state = 275}, + [4186] = {.lex_state = 275}, + [4187] = {.lex_state = 275}, + [4188] = {.lex_state = 275}, + [4189] = {.lex_state = 275}, + [4190] = {.lex_state = 260}, + [4191] = {.lex_state = 260}, + [4192] = {.lex_state = 260}, + [4193] = {.lex_state = 122}, + [4194] = {.lex_state = 122}, + [4195] = {.lex_state = 90}, + [4196] = {.lex_state = 0}, + [4197] = {.lex_state = 122}, + [4198] = {.lex_state = 0}, + [4199] = {.lex_state = 122}, + [4200] = {.lex_state = 178}, + [4201] = {.lex_state = 188}, + [4202] = {.lex_state = 147}, + [4203] = {.lex_state = 277}, + [4204] = {.lex_state = 89}, + [4205] = {.lex_state = 178}, + [4206] = {.lex_state = 277}, + [4207] = {.lex_state = 0}, + [4208] = {.lex_state = 277}, + [4209] = {.lex_state = 630}, + [4210] = {.lex_state = 122}, + [4211] = {.lex_state = 118}, + [4212] = {.lex_state = 224}, + [4213] = {.lex_state = 158}, + [4214] = {.lex_state = 122}, + [4215] = {.lex_state = 178}, + [4216] = {.lex_state = 277}, + [4217] = {.lex_state = 277}, + [4218] = {.lex_state = 90}, + [4219] = {.lex_state = 90}, + [4220] = {.lex_state = 275}, + [4221] = {.lex_state = 199}, + [4222] = {.lex_state = 277}, + [4223] = {.lex_state = 89}, + [4224] = {.lex_state = 89}, + [4225] = {.lex_state = 0}, + [4226] = {.lex_state = 178}, + [4227] = {.lex_state = 277}, + [4228] = {.lex_state = 33}, + [4229] = {.lex_state = 661}, + [4230] = {.lex_state = 215}, + [4231] = {.lex_state = 277}, + [4232] = {.lex_state = 275}, + [4233] = {.lex_state = 119}, + [4234] = {.lex_state = 89}, + [4235] = {.lex_state = 129}, + [4236] = {.lex_state = 33}, + [4237] = {.lex_state = 178}, + [4238] = {.lex_state = 277}, [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 90}, - [4241] = {.lex_state = 179}, - [4242] = {.lex_state = 278}, - [4243] = {.lex_state = 252}, - [4244] = {.lex_state = 179}, - [4245] = {.lex_state = 125}, - [4246] = {.lex_state = 216}, - [4247] = {.lex_state = 252}, - [4248] = {.lex_state = 119}, - [4249] = {.lex_state = 179}, - [4250] = {.lex_state = 128}, - [4251] = {.lex_state = 216}, - [4252] = {.lex_state = 216}, - [4253] = {.lex_state = 179}, - [4254] = {.lex_state = 179}, - [4255] = {.lex_state = 119}, - [4256] = {.lex_state = 179}, - [4257] = {.lex_state = 179}, - [4258] = {.lex_state = 35}, - [4259] = {.lex_state = 123}, - [4260] = {.lex_state = 123}, - [4261] = {.lex_state = 179}, - [4262] = {.lex_state = 252}, - [4263] = {.lex_state = 179}, - [4264] = {.lex_state = 2}, - [4265] = {.lex_state = 179}, - [4266] = {.lex_state = 588}, - [4267] = {.lex_state = 276}, - [4268] = {.lex_state = 119}, - [4269] = {.lex_state = 128}, - [4270] = {.lex_state = 119}, - [4271] = {.lex_state = 631}, - [4272] = {.lex_state = 179}, - [4273] = {.lex_state = 125}, - [4274] = {.lex_state = 588}, - [4275] = {.lex_state = 278}, - [4276] = {.lex_state = 278}, - [4277] = {.lex_state = 278}, - [4278] = {.lex_state = 119}, - [4279] = {.lex_state = 263}, - [4280] = {.lex_state = 123}, - [4281] = {.lex_state = 0}, - [4282] = {.lex_state = 276}, - [4283] = {.lex_state = 0}, - [4284] = {.lex_state = 216}, - [4285] = {.lex_state = 263}, - [4286] = {.lex_state = 119}, - [4287] = {.lex_state = 119}, - [4288] = {.lex_state = 35}, - [4289] = {.lex_state = 216}, - [4290] = {.lex_state = 123}, - [4291] = {.lex_state = 148}, - [4292] = {.lex_state = 584}, - [4293] = {.lex_state = 148}, - [4294] = {.lex_state = 159}, - [4295] = {.lex_state = 226}, - [4296] = {.lex_state = 123}, - [4297] = {.lex_state = 0}, - [4298] = {.lex_state = 189}, - [4299] = {.lex_state = 276}, - [4300] = {.lex_state = 2}, - [4301] = {.lex_state = 33}, - [4302] = {.lex_state = 200}, - [4303] = {.lex_state = 90}, - [4304] = {.lex_state = 38}, - [4305] = {.lex_state = 90}, - [4306] = {.lex_state = 119}, - [4307] = {.lex_state = 119}, - [4308] = {.lex_state = 159}, - [4309] = {.lex_state = 662}, - [4310] = {.lex_state = 120}, - [4311] = {.lex_state = 91}, - [4312] = {.lex_state = 47}, - [4313] = {.lex_state = 130}, - [4314] = {.lex_state = 2}, - [4315] = {.lex_state = 179}, - [4316] = {.lex_state = 278}, - [4317] = {.lex_state = 123}, - [4318] = {.lex_state = 631}, - [4319] = {.lex_state = 123}, - [4320] = {.lex_state = 2}, - [4321] = {.lex_state = 90}, - [4322] = {.lex_state = 216}, - [4323] = {.lex_state = 120}, - [4324] = {.lex_state = 252}, - [4325] = {.lex_state = 90}, - [4326] = {.lex_state = 229}, - [4327] = {.lex_state = 90}, - [4328] = {.lex_state = 33}, - [4329] = {.lex_state = 119}, - [4330] = {.lex_state = 90}, - [4331] = {.lex_state = 216}, - [4332] = {.lex_state = 119}, - [4333] = {.lex_state = 278}, - [4334] = {.lex_state = 0}, - [4335] = {.lex_state = 121}, - [4336] = {.lex_state = 33}, - [4337] = {.lex_state = 189}, - [4338] = {.lex_state = 33}, - [4339] = {.lex_state = 189}, - [4340] = {.lex_state = 189}, - [4341] = {.lex_state = 189}, - [4342] = {.lex_state = 33}, - [4343] = {.lex_state = 33}, - [4344] = {.lex_state = 123}, - [4345] = {.lex_state = 123}, - [4346] = {.lex_state = 635}, - [4347] = {.lex_state = 216}, - [4348] = {.lex_state = 33}, - [4349] = {.lex_state = 33}, - [4350] = {.lex_state = 90}, - [4351] = {.lex_state = 33}, - [4352] = {.lex_state = 189}, - [4353] = {.lex_state = 33}, - [4354] = {.lex_state = 125}, - [4355] = {.lex_state = 123}, - [4356] = {.lex_state = 189}, - [4357] = {.lex_state = 0}, - [4358] = {.lex_state = 148}, - [4359] = {.lex_state = 268}, - [4360] = {.lex_state = 189}, - [4361] = {.lex_state = 125}, - [4362] = {.lex_state = 245}, - [4363] = {.lex_state = 123}, - [4364] = {.lex_state = 225}, + [4240] = {.lex_state = 124}, + [4241] = {.lex_state = 118}, + [4242] = {.lex_state = 122}, + [4243] = {.lex_state = 277}, + [4244] = {.lex_state = 124}, + [4245] = {.lex_state = 89}, + [4246] = {.lex_state = 122}, + [4247] = {.lex_state = 178}, + [4248] = {.lex_state = 118}, + [4249] = {.lex_state = 127}, + [4250] = {.lex_state = 158}, + [4251] = {.lex_state = 587}, + [4252] = {.lex_state = 178}, + [4253] = {.lex_state = 262}, + [4254] = {.lex_state = 178}, + [4255] = {.lex_state = 89}, + [4256] = {.lex_state = 89}, + [4257] = {.lex_state = 178}, + [4258] = {.lex_state = 228}, + [4259] = {.lex_state = 178}, + [4260] = {.lex_state = 587}, + [4261] = {.lex_state = 178}, + [4262] = {.lex_state = 89}, + [4263] = {.lex_state = 38}, + [4264] = {.lex_state = 178}, + [4265] = {.lex_state = 251}, + [4266] = {.lex_state = 178}, + [4267] = {.lex_state = 178}, + [4268] = {.lex_state = 178}, + [4269] = {.lex_state = 178}, + [4270] = {.lex_state = 47}, + [4271] = {.lex_state = 178}, + [4272] = {.lex_state = 178}, + [4273] = {.lex_state = 228}, + [4274] = {.lex_state = 277}, + [4275] = {.lex_state = 0}, + [4276] = {.lex_state = 0}, + [4277] = {.lex_state = 277}, + [4278] = {.lex_state = 251}, + [4279] = {.lex_state = 33}, + [4280] = {.lex_state = 147}, + [4281] = {.lex_state = 275}, + [4282] = {.lex_state = 630}, + [4283] = {.lex_state = 129}, + [4284] = {.lex_state = 124}, + [4285] = {.lex_state = 251}, + [4286] = {.lex_state = 118}, + [4287] = {.lex_state = 89}, + [4288] = {.lex_state = 118}, + [4289] = {.lex_state = 630}, + [4290] = {.lex_state = 89}, + [4291] = {.lex_state = 118}, + [4292] = {.lex_state = 35}, + [4293] = {.lex_state = 215}, + [4294] = {.lex_state = 178}, + [4295] = {.lex_state = 118}, + [4296] = {.lex_state = 90}, + [4297] = {.lex_state = 277}, + [4298] = {.lex_state = 119}, + [4299] = {.lex_state = 225}, + [4300] = {.lex_state = 127}, + [4301] = {.lex_state = 35}, + [4302] = {.lex_state = 251}, + [4303] = {.lex_state = 0}, + [4304] = {.lex_state = 215}, + [4305] = {.lex_state = 262}, + [4306] = {.lex_state = 2}, + [4307] = {.lex_state = 118}, + [4308] = {.lex_state = 122}, + [4309] = {.lex_state = 2}, + [4310] = {.lex_state = 630}, + [4311] = {.lex_state = 251}, + [4312] = {.lex_state = 215}, + [4313] = {.lex_state = 215}, + [4314] = {.lex_state = 277}, + [4315] = {.lex_state = 225}, + [4316] = {.lex_state = 583}, + [4317] = {.lex_state = 122}, + [4318] = {.lex_state = 275}, + [4319] = {.lex_state = 118}, + [4320] = {.lex_state = 118}, + [4321] = {.lex_state = 89}, + [4322] = {.lex_state = 215}, + [4323] = {.lex_state = 2}, + [4324] = {.lex_state = 178}, + [4325] = {.lex_state = 277}, + [4326] = {.lex_state = 122}, + [4327] = {.lex_state = 277}, + [4328] = {.lex_state = 122}, + [4329] = {.lex_state = 215}, + [4330] = {.lex_state = 33}, + [4331] = {.lex_state = 630}, + [4332] = {.lex_state = 215}, + [4333] = {.lex_state = 215}, + [4334] = {.lex_state = 118}, + [4335] = {.lex_state = 118}, + [4336] = {.lex_state = 122}, + [4337] = {.lex_state = 2}, + [4338] = {.lex_state = 215}, + [4339] = {.lex_state = 122}, + [4340] = {.lex_state = 277}, + [4341] = {.lex_state = 118}, + [4342] = {.lex_state = 2}, + [4343] = {.lex_state = 630}, + [4344] = {.lex_state = 118}, + [4345] = {.lex_state = 121}, + [4346] = {.lex_state = 89}, + [4347] = {.lex_state = 178}, + [4348] = {.lex_state = 2}, + [4349] = {.lex_state = 277}, + [4350] = {.lex_state = 0}, + [4351] = {.lex_state = 215}, + [4352] = {.lex_state = 0}, + [4353] = {.lex_state = 215}, + [4354] = {.lex_state = 277}, + [4355] = {.lex_state = 215}, + [4356] = {.lex_state = 89}, + [4357] = {.lex_state = 122}, + [4358] = {.lex_state = 129}, + [4359] = {.lex_state = 188}, + [4360] = {.lex_state = 122}, + [4361] = {.lex_state = 224}, + [4362] = {.lex_state = 33}, + [4363] = {.lex_state = 33}, + [4364] = {.lex_state = 33}, [4365] = {.lex_state = 33}, - [4366] = {.lex_state = 584}, - [4367] = {.lex_state = 584}, - [4368] = {.lex_state = 225}, - [4369] = {.lex_state = 123}, - [4370] = {.lex_state = 189}, - [4371] = {.lex_state = 189}, - [4372] = {.lex_state = 189}, + [4366] = {.lex_state = 33}, + [4367] = {.lex_state = 33}, + [4368] = {.lex_state = 33}, + [4369] = {.lex_state = 33}, + [4370] = {.lex_state = 33}, + [4371] = {.lex_state = 634}, + [4372] = {.lex_state = 33}, [4373] = {.lex_state = 33}, - [4374] = {.lex_state = 189}, - [4375] = {.lex_state = 148}, - [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 179}, - [4378] = {.lex_state = 121}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 584}, - [4381] = {.lex_state = 584}, - [4382] = {.lex_state = 584}, - [4383] = {.lex_state = 123}, - [4384] = {.lex_state = 123}, - [4385] = {.lex_state = 33}, - [4386] = {.lex_state = 189}, - [4387] = {.lex_state = 585}, - [4388] = {.lex_state = 33}, - [4389] = {.lex_state = 148}, - [4390] = {.lex_state = 0}, + [4374] = {.lex_state = 188}, + [4375] = {.lex_state = 121}, + [4376] = {.lex_state = 124}, + [4377] = {.lex_state = 33}, + [4378] = {.lex_state = 147}, + [4379] = {.lex_state = 583}, + [4380] = {.lex_state = 583}, + [4381] = {.lex_state = 120}, + [4382] = {.lex_state = 244}, + [4383] = {.lex_state = 583}, + [4384] = {.lex_state = 180}, + [4385] = {.lex_state = 122}, + [4386] = {.lex_state = 122}, + [4387] = {.lex_state = 224}, + [4388] = {.lex_state = 124}, + [4389] = {.lex_state = 147}, + [4390] = {.lex_state = 33}, [4391] = {.lex_state = 33}, - [4392] = {.lex_state = 148}, - [4393] = {.lex_state = 121}, - [4394] = {.lex_state = 189}, - [4395] = {.lex_state = 189}, - [4396] = {.lex_state = 189}, - [4397] = {.lex_state = 189}, - [4398] = {.lex_state = 245}, - [4399] = {.lex_state = 123}, - [4400] = {.lex_state = 179}, - [4401] = {.lex_state = 123}, + [4392] = {.lex_state = 147}, + [4393] = {.lex_state = 33}, + [4394] = {.lex_state = 124}, + [4395] = {.lex_state = 124}, + [4396] = {.lex_state = 630}, + [4397] = {.lex_state = 33}, + [4398] = {.lex_state = 33}, + [4399] = {.lex_state = 33}, + [4400] = {.lex_state = 33}, + [4401] = {.lex_state = 33}, [4402] = {.lex_state = 33}, [4403] = {.lex_state = 33}, - [4404] = {.lex_state = 121}, - [4405] = {.lex_state = 121}, - [4406] = {.lex_state = 181}, - [4407] = {.lex_state = 189}, - [4408] = {.lex_state = 189}, - [4409] = {.lex_state = 189}, - [4410] = {.lex_state = 189}, - [4411] = {.lex_state = 189}, - [4412] = {.lex_state = 189}, - [4413] = {.lex_state = 189}, - [4414] = {.lex_state = 189}, - [4415] = {.lex_state = 148}, - [4416] = {.lex_state = 148}, - [4417] = {.lex_state = 0}, - [4418] = {.lex_state = 121}, - [4419] = {.lex_state = 225}, - [4420] = {.lex_state = 121}, - [4421] = {.lex_state = 148}, - [4422] = {.lex_state = 148}, - [4423] = {.lex_state = 148}, - [4424] = {.lex_state = 148}, - [4425] = {.lex_state = 148}, + [4404] = {.lex_state = 33}, + [4405] = {.lex_state = 0}, + [4406] = {.lex_state = 33}, + [4407] = {.lex_state = 122}, + [4408] = {.lex_state = 33}, + [4409] = {.lex_state = 33}, + [4410] = {.lex_state = 122}, + [4411] = {.lex_state = 224}, + [4412] = {.lex_state = 33}, + [4413] = {.lex_state = 33}, + [4414] = {.lex_state = 244}, + [4415] = {.lex_state = 33}, + [4416] = {.lex_state = 229}, + [4417] = {.lex_state = 229}, + [4418] = {.lex_state = 120}, + [4419] = {.lex_state = 120}, + [4420] = {.lex_state = 229}, + [4421] = {.lex_state = 33}, + [4422] = {.lex_state = 188}, + [4423] = {.lex_state = 33}, + [4424] = {.lex_state = 33}, + [4425] = {.lex_state = 33}, [4426] = {.lex_state = 33}, - [4427] = {.lex_state = 121}, - [4428] = {.lex_state = 225}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 225}, - [4432] = {.lex_state = 43}, - [4433] = {.lex_state = 33}, - [4434] = {.lex_state = 216}, - [4435] = {.lex_state = 33}, - [4436] = {.lex_state = 33}, - [4437] = {.lex_state = 253}, - [4438] = {.lex_state = 33}, - [4439] = {.lex_state = 33}, - [4440] = {.lex_state = 33}, - [4441] = {.lex_state = 91}, - [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 225}, - [4445] = {.lex_state = 584}, - [4446] = {.lex_state = 148}, - [4447] = {.lex_state = 635}, - [4448] = {.lex_state = 148}, + [4427] = {.lex_state = 33}, + [4428] = {.lex_state = 33}, + [4429] = {.lex_state = 147}, + [4430] = {.lex_state = 188}, + [4431] = {.lex_state = 124}, + [4432] = {.lex_state = 188}, + [4433] = {.lex_state = 122}, + [4434] = {.lex_state = 124}, + [4435] = {.lex_state = 124}, + [4436] = {.lex_state = 251}, + [4437] = {.lex_state = 33}, + [4438] = {.lex_state = 124}, + [4439] = {.lex_state = 244}, + [4440] = {.lex_state = 0}, + [4441] = {.lex_state = 188}, + [4442] = {.lex_state = 229}, + [4443] = {.lex_state = 188}, + [4444] = {.lex_state = 188}, + [4445] = {.lex_state = 122}, + [4446] = {.lex_state = 224}, + [4447] = {.lex_state = 0}, + [4448] = {.lex_state = 244}, [4449] = {.lex_state = 122}, [4450] = {.lex_state = 33}, - [4451] = {.lex_state = 122}, - [4452] = {.lex_state = 0}, - [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 33}, - [4455] = {.lex_state = 33}, - [4456] = {.lex_state = 122}, - [4457] = {.lex_state = 33}, + [4451] = {.lex_state = 236}, + [4452] = {.lex_state = 120}, + [4453] = {.lex_state = 251}, + [4454] = {.lex_state = 188}, + [4455] = {.lex_state = 229}, + [4456] = {.lex_state = 188}, + [4457] = {.lex_state = 244}, [4458] = {.lex_state = 33}, - [4459] = {.lex_state = 189}, - [4460] = {.lex_state = 33}, - [4461] = {.lex_state = 33}, + [4459] = {.lex_state = 0}, + [4460] = {.lex_state = 236}, + [4461] = {.lex_state = 147}, [4462] = {.lex_state = 33}, - [4463] = {.lex_state = 125}, - [4464] = {.lex_state = 121}, - [4465] = {.lex_state = 33}, - [4466] = {.lex_state = 0}, - [4467] = {.lex_state = 125}, - [4468] = {.lex_state = 125}, - [4469] = {.lex_state = 33}, - [4470] = {.lex_state = 148}, - [4471] = {.lex_state = 33}, - [4472] = {.lex_state = 0}, - [4473] = {.lex_state = 121}, - [4474] = {.lex_state = 245}, - [4475] = {.lex_state = 181}, - [4476] = {.lex_state = 125}, - [4477] = {.lex_state = 125}, - [4478] = {.lex_state = 125}, - [4479] = {.lex_state = 123}, + [4463] = {.lex_state = 122}, + [4464] = {.lex_state = 122}, + [4465] = {.lex_state = 122}, + [4466] = {.lex_state = 634}, + [4467] = {.lex_state = 188}, + [4468] = {.lex_state = 33}, + [4469] = {.lex_state = 188}, + [4470] = {.lex_state = 229}, + [4471] = {.lex_state = 188}, + [4472] = {.lex_state = 147}, + [4473] = {.lex_state = 244}, + [4474] = {.lex_state = 0}, + [4475] = {.lex_state = 33}, + [4476] = {.lex_state = 147}, + [4477] = {.lex_state = 33}, + [4478] = {.lex_state = 0}, + [4479] = {.lex_state = 188}, [4480] = {.lex_state = 33}, - [4481] = {.lex_state = 0}, + [4481] = {.lex_state = 33}, [4482] = {.lex_state = 33}, [4483] = {.lex_state = 33}, - [4484] = {.lex_state = 230}, - [4485] = {.lex_state = 123}, - [4486] = {.lex_state = 225}, - [4487] = {.lex_state = 0}, - [4488] = {.lex_state = 230}, - [4489] = {.lex_state = 33}, - [4490] = {.lex_state = 0}, - [4491] = {.lex_state = 631}, + [4484] = {.lex_state = 122}, + [4485] = {.lex_state = 33}, + [4486] = {.lex_state = 33}, + [4487] = {.lex_state = 33}, + [4488] = {.lex_state = 244}, + [4489] = {.lex_state = 43}, + [4490] = {.lex_state = 33}, + [4491] = {.lex_state = 0}, [4492] = {.lex_state = 0}, [4493] = {.lex_state = 33}, - [4494] = {.lex_state = 237}, - [4495] = {.lex_state = 264}, - [4496] = {.lex_state = 121}, + [4494] = {.lex_state = 33}, + [4495] = {.lex_state = 33}, + [4496] = {.lex_state = 263}, [4497] = {.lex_state = 33}, - [4498] = {.lex_state = 245}, + [4498] = {.lex_state = 244}, [4499] = {.lex_state = 33}, [4500] = {.lex_state = 33}, - [4501] = {.lex_state = 33}, - [4502] = {.lex_state = 33}, - [4503] = {.lex_state = 33}, + [4501] = {.lex_state = 236}, + [4502] = {.lex_state = 188}, + [4503] = {.lex_state = 0}, [4504] = {.lex_state = 33}, - [4505] = {.lex_state = 123}, - [4506] = {.lex_state = 123}, + [4505] = {.lex_state = 244}, + [4506] = {.lex_state = 263}, [4507] = {.lex_state = 33}, [4508] = {.lex_state = 33}, - [4509] = {.lex_state = 33}, - [4510] = {.lex_state = 0}, - [4511] = {.lex_state = 230}, - [4512] = {.lex_state = 245}, - [4513] = {.lex_state = 230}, - [4514] = {.lex_state = 230}, - [4515] = {.lex_state = 123}, - [4516] = {.lex_state = 123}, - [4517] = {.lex_state = 33}, - [4518] = {.lex_state = 225}, - [4519] = {.lex_state = 43}, - [4520] = {.lex_state = 225}, - [4521] = {.lex_state = 33}, + [4509] = {.lex_state = 215}, + [4510] = {.lex_state = 244}, + [4511] = {.lex_state = 263}, + [4512] = {.lex_state = 33}, + [4513] = {.lex_state = 224}, + [4514] = {.lex_state = 244}, + [4515] = {.lex_state = 229}, + [4516] = {.lex_state = 33}, + [4517] = {.lex_state = 224}, + [4518] = {.lex_state = 244}, + [4519] = {.lex_state = 188}, + [4520] = {.lex_state = 122}, + [4521] = {.lex_state = 127}, [4522] = {.lex_state = 33}, - [4523] = {.lex_state = 33}, - [4524] = {.lex_state = 264}, - [4525] = {.lex_state = 245}, - [4526] = {.lex_state = 225}, - [4527] = {.lex_state = 33}, + [4523] = {.lex_state = 120}, + [4524] = {.lex_state = 33}, + [4525] = {.lex_state = 43}, + [4526] = {.lex_state = 122}, + [4527] = {.lex_state = 229}, [4528] = {.lex_state = 33}, - [4529] = {.lex_state = 33}, - [4530] = {.lex_state = 123}, - [4531] = {.lex_state = 33}, - [4532] = {.lex_state = 245}, - [4533] = {.lex_state = 33}, - [4534] = {.lex_state = 33}, - [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 0}, + [4529] = {.lex_state = 188}, + [4530] = {.lex_state = 121}, + [4531] = {.lex_state = 229}, + [4532] = {.lex_state = 122}, + [4533] = {.lex_state = 122}, + [4534] = {.lex_state = 236}, + [4535] = {.lex_state = 229}, + [4536] = {.lex_state = 229}, [4537] = {.lex_state = 33}, - [4538] = {.lex_state = 33}, - [4539] = {.lex_state = 33}, - [4540] = {.lex_state = 33}, - [4541] = {.lex_state = 33}, - [4542] = {.lex_state = 245}, - [4543] = {.lex_state = 33}, - [4544] = {.lex_state = 230}, - [4545] = {.lex_state = 230}, - [4546] = {.lex_state = 128}, - [4547] = {.lex_state = 245}, - [4548] = {.lex_state = 43}, - [4549] = {.lex_state = 225}, - [4550] = {.lex_state = 123}, - [4551] = {.lex_state = 237}, - [4552] = {.lex_state = 0}, + [4538] = {.lex_state = 229}, + [4539] = {.lex_state = 0}, + [4540] = {.lex_state = 263}, + [4541] = {.lex_state = 43}, + [4542] = {.lex_state = 33}, + [4543] = {.lex_state = 583}, + [4544] = {.lex_state = 0}, + [4545] = {.lex_state = 120}, + [4546] = {.lex_state = 244}, + [4547] = {.lex_state = 224}, + [4548] = {.lex_state = 147}, + [4549] = {.lex_state = 236}, + [4550] = {.lex_state = 0}, + [4551] = {.lex_state = 236}, + [4552] = {.lex_state = 263}, [4553] = {.lex_state = 33}, - [4554] = {.lex_state = 245}, - [4555] = {.lex_state = 230}, - [4556] = {.lex_state = 230}, - [4557] = {.lex_state = 33}, - [4558] = {.lex_state = 33}, - [4559] = {.lex_state = 245}, + [4554] = {.lex_state = 129}, + [4555] = {.lex_state = 120}, + [4556] = {.lex_state = 224}, + [4557] = {.lex_state = 120}, + [4558] = {.lex_state = 224}, + [4559] = {.lex_state = 33}, [4560] = {.lex_state = 33}, - [4561] = {.lex_state = 33}, - [4562] = {.lex_state = 237}, - [4563] = {.lex_state = 230}, - [4564] = {.lex_state = 237}, - [4565] = {.lex_state = 33}, - [4566] = {.lex_state = 245}, - [4567] = {.lex_state = 33}, - [4568] = {.lex_state = 33}, - [4569] = {.lex_state = 252}, - [4570] = {.lex_state = 33}, - [4571] = {.lex_state = 245}, - [4572] = {.lex_state = 33}, - [4573] = {.lex_state = 237}, - [4574] = {.lex_state = 130}, - [4575] = {.lex_state = 245}, + [4561] = {.lex_state = 188}, + [4562] = {.lex_state = 120}, + [4563] = {.lex_state = 33}, + [4564] = {.lex_state = 33}, + [4565] = {.lex_state = 120}, + [4566] = {.lex_state = 180}, + [4567] = {.lex_state = 0}, + [4568] = {.lex_state = 188}, + [4569] = {.lex_state = 120}, + [4570] = {.lex_state = 120}, + [4571] = {.lex_state = 583}, + [4572] = {.lex_state = 120}, + [4573] = {.lex_state = 121}, + [4574] = {.lex_state = 33}, + [4575] = {.lex_state = 33}, [4576] = {.lex_state = 33}, [4577] = {.lex_state = 33}, - [4578] = {.lex_state = 123}, - [4579] = {.lex_state = 0}, + [4578] = {.lex_state = 33}, + [4579] = {.lex_state = 188}, [4580] = {.lex_state = 33}, [4581] = {.lex_state = 33}, - [4582] = {.lex_state = 128}, - [4583] = {.lex_state = 584}, - [4584] = {.lex_state = 635}, - [4585] = {.lex_state = 230}, - [4586] = {.lex_state = 230}, - [4587] = {.lex_state = 181}, - [4588] = {.lex_state = 0}, - [4589] = {.lex_state = 252}, - [4590] = {.lex_state = 123}, - [4591] = {.lex_state = 33}, + [4582] = {.lex_state = 33}, + [4583] = {.lex_state = 244}, + [4584] = {.lex_state = 0}, + [4585] = {.lex_state = 122}, + [4586] = {.lex_state = 147}, + [4587] = {.lex_state = 33}, + [4588] = {.lex_state = 127}, + [4589] = {.lex_state = 0}, + [4590] = {.lex_state = 252}, + [4591] = {.lex_state = 0}, [4592] = {.lex_state = 0}, [4593] = {.lex_state = 33}, - [4594] = {.lex_state = 264}, + [4594] = {.lex_state = 33}, [4595] = {.lex_state = 33}, [4596] = {.lex_state = 33}, - [4597] = {.lex_state = 33}, - [4598] = {.lex_state = 264}, - [4599] = {.lex_state = 264}, + [4597] = {.lex_state = 127}, + [4598] = {.lex_state = 33}, + [4599] = {.lex_state = 33}, [4600] = {.lex_state = 33}, - [4601] = {.lex_state = 33}, + [4601] = {.lex_state = 0}, [4602] = {.lex_state = 33}, - [4603] = {.lex_state = 123}, - [4604] = {.lex_state = 33}, - [4605] = {.lex_state = 33}, - [4606] = {.lex_state = 33}, - [4607] = {.lex_state = 33}, - [4608] = {.lex_state = 33}, + [4603] = {.lex_state = 188}, + [4604] = {.lex_state = 178}, + [4605] = {.lex_state = 224}, + [4606] = {.lex_state = 244}, + [4607] = {.lex_state = 0}, + [4608] = {.lex_state = 224}, [4609] = {.lex_state = 33}, - [4610] = {.lex_state = 33}, - [4611] = {.lex_state = 33}, - [4612] = {.lex_state = 33}, - [4613] = {.lex_state = 245}, - [4614] = {.lex_state = 33}, - [4615] = {.lex_state = 245}, - [4616] = {.lex_state = 245}, - [4617] = {.lex_state = 33}, - [4618] = {.lex_state = 33}, - [4619] = {.lex_state = 33}, - [4620] = {.lex_state = 33}, - [4621] = {.lex_state = 33}, - [4622] = {.lex_state = 189}, - [4623] = {.lex_state = 189}, - [4624] = {.lex_state = 123}, - [4625] = {.lex_state = 189}, - [4626] = {.lex_state = 33}, - [4627] = {.lex_state = 33}, - [4628] = {.lex_state = 189}, - [4629] = {.lex_state = 123}, - [4630] = {.lex_state = 245}, - [4631] = {.lex_state = 121}, - [4632] = {.lex_state = 0}, + [4610] = {.lex_state = 244}, + [4611] = {.lex_state = 244}, + [4612] = {.lex_state = 188}, + [4613] = {.lex_state = 188}, + [4614] = {.lex_state = 147}, + [4615] = {.lex_state = 33}, + [4616] = {.lex_state = 120}, + [4617] = {.lex_state = 224}, + [4618] = {.lex_state = 215}, + [4619] = {.lex_state = 583}, + [4620] = {.lex_state = 147}, + [4621] = {.lex_state = 90}, + [4622] = {.lex_state = 583}, + [4623] = {.lex_state = 122}, + [4624] = {.lex_state = 267}, + [4625] = {.lex_state = 0}, + [4626] = {.lex_state = 188}, + [4627] = {.lex_state = 0}, + [4628] = {.lex_state = 33}, + [4629] = {.lex_state = 188}, + [4630] = {.lex_state = 33}, + [4631] = {.lex_state = 33}, + [4632] = {.lex_state = 33}, [4633] = {.lex_state = 33}, - [4634] = {.lex_state = 225}, - [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 121}, + [4634] = {.lex_state = 244}, + [4635] = {.lex_state = 33}, + [4636] = {.lex_state = 229}, + [4637] = {.lex_state = 122}, + [4638] = {.lex_state = 147}, [4639] = {.lex_state = 33}, - [4640] = {.lex_state = 121}, - [4641] = {.lex_state = 128}, - [4642] = {.lex_state = 33}, + [4640] = {.lex_state = 122}, + [4641] = {.lex_state = 188}, + [4642] = {.lex_state = 0}, [4643] = {.lex_state = 0}, - [4644] = {.lex_state = 0}, + [4644] = {.lex_state = 147}, [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 0}, - [4647] = {.lex_state = 189}, - [4648] = {.lex_state = 237}, - [4649] = {.lex_state = 33}, - [4650] = {.lex_state = 230}, + [4646] = {.lex_state = 122}, + [4647] = {.lex_state = 584}, + [4648] = {.lex_state = 0}, + [4649] = {.lex_state = 0}, + [4650] = {.lex_state = 33}, [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 123}, - [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 240}, - [4656] = {.lex_state = 0}, - [4657] = {.lex_state = 123}, - [4658] = {.lex_state = 240}, - [4659] = {.lex_state = 123}, - [4660] = {.lex_state = 123}, + [4652] = {.lex_state = 33}, + [4653] = {.lex_state = 188}, + [4654] = {.lex_state = 33}, + [4655] = {.lex_state = 33}, + [4656] = {.lex_state = 188}, + [4657] = {.lex_state = 33}, + [4658] = {.lex_state = 178}, + [4659] = {.lex_state = 0}, + [4660] = {.lex_state = 188}, [4661] = {.lex_state = 0}, - [4662] = {.lex_state = 271}, - [4663] = {.lex_state = 123}, + [4662] = {.lex_state = 0}, + [4663] = {.lex_state = 0}, [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 128}, - [4666] = {.lex_state = 36}, - [4667] = {.lex_state = 148}, - [4668] = {.lex_state = 271}, - [4669] = {.lex_state = 148}, - [4670] = {.lex_state = 47}, - [4671] = {.lex_state = 225}, - [4672] = {.lex_state = 240}, - [4673] = {.lex_state = 0}, + [4665] = {.lex_state = 33}, + [4666] = {.lex_state = 33}, + [4667] = {.lex_state = 89}, + [4668] = {.lex_state = 634}, + [4669] = {.lex_state = 188}, + [4670] = {.lex_state = 147}, + [4671] = {.lex_state = 180}, + [4672] = {.lex_state = 122}, + [4673] = {.lex_state = 239}, [4674] = {.lex_state = 33}, - [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 0}, - [4677] = {.lex_state = 240}, - [4678] = {.lex_state = 123}, - [4679] = {.lex_state = 36}, + [4675] = {.lex_state = 122}, + [4676] = {.lex_state = 33}, + [4677] = {.lex_state = 33}, + [4678] = {.lex_state = 0}, + [4679] = {.lex_state = 0}, [4680] = {.lex_state = 0}, [4681] = {.lex_state = 0}, - [4682] = {.lex_state = 0}, - [4683] = {.lex_state = 33}, - [4684] = {.lex_state = 0}, - [4685] = {.lex_state = 148}, - [4686] = {.lex_state = 189}, - [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 0}, - [4689] = {.lex_state = 240}, - [4690] = {.lex_state = 36}, - [4691] = {.lex_state = 584}, - [4692] = {.lex_state = 254}, - [4693] = {.lex_state = 36}, - [4694] = {.lex_state = 240}, - [4695] = {.lex_state = 43}, + [4682] = {.lex_state = 90}, + [4683] = {.lex_state = 0}, + [4684] = {.lex_state = 122}, + [4685] = {.lex_state = 122}, + [4686] = {.lex_state = 121}, + [4687] = {.lex_state = 634}, + [4688] = {.lex_state = 36}, + [4689] = {.lex_state = 0}, + [4690] = {.lex_state = 0}, + [4691] = {.lex_state = 147}, + [4692] = {.lex_state = 0}, + [4693] = {.lex_state = 122}, + [4694] = {.lex_state = 0}, + [4695] = {.lex_state = 36}, [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 278}, - [4698] = {.lex_state = 33}, - [4699] = {.lex_state = 123}, - [4700] = {.lex_state = 91}, - [4701] = {.lex_state = 228}, - [4702] = {.lex_state = 36}, - [4703] = {.lex_state = 148}, + [4697] = {.lex_state = 0}, + [4698] = {.lex_state = 36}, + [4699] = {.lex_state = 239}, + [4700] = {.lex_state = 122}, + [4701] = {.lex_state = 33}, + [4702] = {.lex_state = 122}, + [4703] = {.lex_state = 127}, [4704] = {.lex_state = 122}, [4705] = {.lex_state = 0}, [4706] = {.lex_state = 0}, - [4707] = {.lex_state = 0}, + [4707] = {.lex_state = 188}, [4708] = {.lex_state = 0}, [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 189}, - [4712] = {.lex_state = 189}, - [4713] = {.lex_state = 123}, - [4714] = {.lex_state = 47}, - [4715] = {.lex_state = 189}, - [4716] = {.lex_state = 148}, - [4717] = {.lex_state = 123}, - [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 123}, - [4720] = {.lex_state = 0}, - [4721] = {.lex_state = 240}, - [4722] = {.lex_state = 123}, - [4723] = {.lex_state = 123}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 0}, - [4726] = {.lex_state = 33}, - [4727] = {.lex_state = 47}, - [4728] = {.lex_state = 123}, - [4729] = {.lex_state = 232}, - [4730] = {.lex_state = 33}, - [4731] = {.lex_state = 0}, - [4732] = {.lex_state = 639}, - [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 47}, - [4735] = {.lex_state = 123}, - [4736] = {.lex_state = 123}, - [4737] = {.lex_state = 123}, - [4738] = {.lex_state = 128}, - [4739] = {.lex_state = 608}, - [4740] = {.lex_state = 33}, - [4741] = {.lex_state = 47}, - [4742] = {.lex_state = 0}, - [4743] = {.lex_state = 123}, + [4710] = {.lex_state = 270}, + [4711] = {.lex_state = 122}, + [4712] = {.lex_state = 122}, + [4713] = {.lex_state = 147}, + [4714] = {.lex_state = 277}, + [4715] = {.lex_state = 239}, + [4716] = {.lex_state = 277}, + [4717] = {.lex_state = 33}, + [4718] = {.lex_state = 147}, + [4719] = {.lex_state = 122}, + [4720] = {.lex_state = 36}, + [4721] = {.lex_state = 122}, + [4722] = {.lex_state = 36}, + [4723] = {.lex_state = 0}, + [4724] = {.lex_state = 188}, + [4725] = {.lex_state = 188}, + [4726] = {.lex_state = 188}, + [4727] = {.lex_state = 33}, + [4728] = {.lex_state = 122}, + [4729] = {.lex_state = 122}, + [4730] = {.lex_state = 122}, + [4731] = {.lex_state = 33}, + [4732] = {.lex_state = 33}, + [4733] = {.lex_state = 121}, + [4734] = {.lex_state = 0}, + [4735] = {.lex_state = 33}, + [4736] = {.lex_state = 188}, + [4737] = {.lex_state = 0}, + [4738] = {.lex_state = 47}, + [4739] = {.lex_state = 0}, + [4740] = {.lex_state = 0}, + [4741] = {.lex_state = 0}, + [4742] = {.lex_state = 122}, + [4743] = {.lex_state = 147}, [4744] = {.lex_state = 0}, - [4745] = {.lex_state = 123}, + [4745] = {.lex_state = 239}, [4746] = {.lex_state = 0}, - [4747] = {.lex_state = 231}, - [4748] = {.lex_state = 240}, - [4749] = {.lex_state = 0}, - [4750] = {.lex_state = 230}, - [4751] = {.lex_state = 123}, - [4752] = {.lex_state = 0}, - [4753] = {.lex_state = 228}, - [4754] = {.lex_state = 189}, - [4755] = {.lex_state = 189}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 0}, + [4747] = {.lex_state = 188}, + [4748] = {.lex_state = 188}, + [4749] = {.lex_state = 188}, + [4750] = {.lex_state = 0}, + [4751] = {.lex_state = 239}, + [4752] = {.lex_state = 227}, + [4753] = {.lex_state = 36}, + [4754] = {.lex_state = 147}, + [4755] = {.lex_state = 0}, + [4756] = {.lex_state = 122}, + [4757] = {.lex_state = 253}, [4758] = {.lex_state = 0}, [4759] = {.lex_state = 0}, [4760] = {.lex_state = 0}, - [4761] = {.lex_state = 125}, + [4761] = {.lex_state = 0}, [4762] = {.lex_state = 0}, - [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 0}, - [4765] = {.lex_state = 189}, - [4766] = {.lex_state = 0}, - [4767] = {.lex_state = 0}, - [4768] = {.lex_state = 231}, - [4769] = {.lex_state = 0}, - [4770] = {.lex_state = 0}, + [4763] = {.lex_state = 33}, + [4764] = {.lex_state = 230}, + [4765] = {.lex_state = 239}, + [4766] = {.lex_state = 122}, + [4767] = {.lex_state = 43}, + [4768] = {.lex_state = 239}, + [4769] = {.lex_state = 124}, + [4770] = {.lex_state = 33}, [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 0}, + [4772] = {.lex_state = 122}, [4773] = {.lex_state = 0}, - [4774] = {.lex_state = 33}, - [4775] = {.lex_state = 0}, + [4774] = {.lex_state = 583}, + [4775] = {.lex_state = 122}, [4776] = {.lex_state = 0}, - [4777] = {.lex_state = 189}, - [4778] = {.lex_state = 123}, - [4779] = {.lex_state = 189}, + [4777] = {.lex_state = 239}, + [4778] = {.lex_state = 33}, + [4779] = {.lex_state = 239}, [4780] = {.lex_state = 0}, - [4781] = {.lex_state = 123}, + [4781] = {.lex_state = 0}, [4782] = {.lex_state = 0}, - [4783] = {.lex_state = 0}, + [4783] = {.lex_state = 277}, [4784] = {.lex_state = 0}, - [4785] = {.lex_state = 33}, - [4786] = {.lex_state = 148}, - [4787] = {.lex_state = 148}, - [4788] = {.lex_state = 123}, - [4789] = {.lex_state = 122}, - [4790] = {.lex_state = 0}, - [4791] = {.lex_state = 123}, - [4792] = {.lex_state = 189}, - [4793] = {.lex_state = 123}, - [4794] = {.lex_state = 635}, + [4785] = {.lex_state = 0}, + [4786] = {.lex_state = 122}, + [4787] = {.lex_state = 122}, + [4788] = {.lex_state = 239}, + [4789] = {.lex_state = 147}, + [4790] = {.lex_state = 33}, + [4791] = {.lex_state = 122}, + [4792] = {.lex_state = 122}, + [4793] = {.lex_state = 239}, + [4794] = {.lex_state = 239}, [4795] = {.lex_state = 0}, [4796] = {.lex_state = 0}, - [4797] = {.lex_state = 123}, - [4798] = {.lex_state = 0}, - [4799] = {.lex_state = 122}, - [4800] = {.lex_state = 33}, - [4801] = {.lex_state = 0}, + [4797] = {.lex_state = 33}, + [4798] = {.lex_state = 122}, + [4799] = {.lex_state = 33}, + [4800] = {.lex_state = 0}, + [4801] = {.lex_state = 227}, [4802] = {.lex_state = 0}, - [4803] = {.lex_state = 91}, + [4803] = {.lex_state = 178}, [4804] = {.lex_state = 0}, - [4805] = {.lex_state = 189}, - [4806] = {.lex_state = 179}, + [4805] = {.lex_state = 147}, + [4806] = {.lex_state = 0}, [4807] = {.lex_state = 0}, [4808] = {.lex_state = 0}, - [4809] = {.lex_state = 148}, + [4809] = {.lex_state = 270}, [4810] = {.lex_state = 0}, [4811] = {.lex_state = 0}, - [4812] = {.lex_state = 33}, - [4813] = {.lex_state = 148}, - [4814] = {.lex_state = 123}, - [4815] = {.lex_state = 148}, - [4816] = {.lex_state = 123}, + [4812] = {.lex_state = 0}, + [4813] = {.lex_state = 0}, + [4814] = {.lex_state = 0}, + [4815] = {.lex_state = 0}, + [4816] = {.lex_state = 0}, [4817] = {.lex_state = 0}, - [4818] = {.lex_state = 123}, - [4819] = {.lex_state = 189}, - [4820] = {.lex_state = 123}, - [4821] = {.lex_state = 33}, + [4818] = {.lex_state = 0}, + [4819] = {.lex_state = 122}, + [4820] = {.lex_state = 0}, + [4821] = {.lex_state = 188}, [4822] = {.lex_state = 0}, - [4823] = {.lex_state = 123}, - [4824] = {.lex_state = 123}, - [4825] = {.lex_state = 33}, - [4826] = {.lex_state = 0}, - [4827] = {.lex_state = 123}, - [4828] = {.lex_state = 123}, + [4823] = {.lex_state = 0}, + [4824] = {.lex_state = 121}, + [4825] = {.lex_state = 122}, + [4826] = {.lex_state = 47}, + [4827] = {.lex_state = 0}, + [4828] = {.lex_state = 121}, [4829] = {.lex_state = 0}, - [4830] = {.lex_state = 33}, - [4831] = {.lex_state = 269}, - [4832] = {.lex_state = 0}, - [4833] = {.lex_state = 47}, - [4834] = {.lex_state = 36}, - [4835] = {.lex_state = 148}, - [4836] = {.lex_state = 278}, - [4837] = {.lex_state = 122}, - [4838] = {.lex_state = 240}, - [4839] = {.lex_state = 33}, - [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 123}, - [4842] = {.lex_state = 123}, - [4843] = {.lex_state = 125}, - [4844] = {.lex_state = 228}, - [4845] = {.lex_state = 33}, - [4846] = {.lex_state = 123}, - [4847] = {.lex_state = 123}, + [4830] = {.lex_state = 122}, + [4831] = {.lex_state = 0}, + [4832] = {.lex_state = 147}, + [4833] = {.lex_state = 0}, + [4834] = {.lex_state = 0}, + [4835] = {.lex_state = 121}, + [4836] = {.lex_state = 0}, + [4837] = {.lex_state = 188}, + [4838] = {.lex_state = 0}, + [4839] = {.lex_state = 147}, + [4840] = {.lex_state = 188}, + [4841] = {.lex_state = 124}, + [4842] = {.lex_state = 0}, + [4843] = {.lex_state = 33}, + [4844] = {.lex_state = 122}, + [4845] = {.lex_state = 122}, + [4846] = {.lex_state = 33}, + [4847] = {.lex_state = 47}, [4848] = {.lex_state = 0}, - [4849] = {.lex_state = 0}, - [4850] = {.lex_state = 33}, - [4851] = {.lex_state = 47}, - [4852] = {.lex_state = 639}, - [4853] = {.lex_state = 189}, - [4854] = {.lex_state = 33}, + [4849] = {.lex_state = 224}, + [4850] = {.lex_state = 229}, + [4851] = {.lex_state = 188}, + [4852] = {.lex_state = 0}, + [4853] = {.lex_state = 122}, + [4854] = {.lex_state = 0}, [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 148}, - [4857] = {.lex_state = 33}, - [4858] = {.lex_state = 148}, - [4859] = {.lex_state = 33}, - [4860] = {.lex_state = 148}, - [4861] = {.lex_state = 240}, - [4862] = {.lex_state = 123}, - [4863] = {.lex_state = 122}, - [4864] = {.lex_state = 33}, + [4856] = {.lex_state = 90}, + [4857] = {.lex_state = 0}, + [4858] = {.lex_state = 0}, + [4859] = {.lex_state = 122}, + [4860] = {.lex_state = 147}, + [4861] = {.lex_state = 239}, + [4862] = {.lex_state = 0}, + [4863] = {.lex_state = 127}, + [4864] = {.lex_state = 122}, [4865] = {.lex_state = 33}, - [4866] = {.lex_state = 240}, - [4867] = {.lex_state = 123}, - [4868] = {.lex_state = 33}, - [4869] = {.lex_state = 189}, - [4870] = {.lex_state = 189}, - [4871] = {.lex_state = 33}, - [4872] = {.lex_state = 0}, - [4873] = {.lex_state = 123}, - [4874] = {.lex_state = 584}, - [4875] = {.lex_state = 33}, - [4876] = {.lex_state = 240}, - [4877] = {.lex_state = 278}, - [4878] = {.lex_state = 0}, - [4879] = {.lex_state = 0}, - [4880] = {.lex_state = 0}, + [4866] = {.lex_state = 121}, + [4867] = {.lex_state = 239}, + [4868] = {.lex_state = 239}, + [4869] = {.lex_state = 0}, + [4870] = {.lex_state = 127}, + [4871] = {.lex_state = 0}, + [4872] = {.lex_state = 122}, + [4873] = {.lex_state = 147}, + [4874] = {.lex_state = 638}, + [4875] = {.lex_state = 0}, + [4876] = {.lex_state = 36}, + [4877] = {.lex_state = 147}, + [4878] = {.lex_state = 33}, + [4879] = {.lex_state = 239}, + [4880] = {.lex_state = 227}, [4881] = {.lex_state = 0}, - [4882] = {.lex_state = 33}, - [4883] = {.lex_state = 122}, - [4884] = {.lex_state = 0}, - [4885] = {.lex_state = 240}, - [4886] = {.lex_state = 228}, - [4887] = {.lex_state = 36}, - [4888] = {.lex_state = 0}, - [4889] = {.lex_state = 123}, - [4890] = {.lex_state = 240}, - [4891] = {.lex_state = 36}, - [4892] = {.lex_state = 123}, - [4893] = {.lex_state = 123}, - [4894] = {.lex_state = 33}, - [4895] = {.lex_state = 0}, - [4896] = {.lex_state = 148}, - [4897] = {.lex_state = 123}, - [4898] = {.lex_state = 33}, - [4899] = {.lex_state = 123}, - [4900] = {.lex_state = 240}, - [4901] = {.lex_state = 123}, - [4902] = {.lex_state = 123}, - [4903] = {.lex_state = 0}, - [4904] = {.lex_state = 123}, - [4905] = {.lex_state = 123}, - [4906] = {.lex_state = 240}, - [4907] = {.lex_state = 148}, - [4908] = {.lex_state = 0}, - [4909] = {.lex_state = 33}, - [4910] = {.lex_state = 128}, - [4911] = {.lex_state = 2214}, - [4912] = {.lex_state = 0}, - [4913] = {.lex_state = 123}, - [4914] = {.lex_state = 0}, - [4915] = {.lex_state = 2214}, - [4916] = {.lex_state = 125}, - [4917] = {.lex_state = 0}, - [4918] = {.lex_state = 123}, - [4919] = {.lex_state = 0}, - [4920] = {.lex_state = 0}, - [4921] = {.lex_state = 0}, - [4922] = {.lex_state = 228}, - [4923] = {.lex_state = 0}, - [4924] = {.lex_state = 0}, - [4925] = {.lex_state = 228}, - [4926] = {.lex_state = 228}, - [4927] = {.lex_state = 123}, - [4928] = {.lex_state = 2210}, - [4929] = {.lex_state = 123}, - [4930] = {.lex_state = 228}, + [4882] = {.lex_state = 122}, + [4883] = {.lex_state = 268}, + [4884] = {.lex_state = 122}, + [4885] = {.lex_state = 122}, + [4886] = {.lex_state = 33}, + [4887] = {.lex_state = 122}, + [4888] = {.lex_state = 33}, + [4889] = {.lex_state = 36}, + [4890] = {.lex_state = 33}, + [4891] = {.lex_state = 122}, + [4892] = {.lex_state = 0}, + [4893] = {.lex_state = 122}, + [4894] = {.lex_state = 122}, + [4895] = {.lex_state = 47}, + [4896] = {.lex_state = 47}, + [4897] = {.lex_state = 147}, + [4898] = {.lex_state = 47}, + [4899] = {.lex_state = 147}, + [4900] = {.lex_state = 33}, + [4901] = {.lex_state = 122}, + [4902] = {.lex_state = 0}, + [4903] = {.lex_state = 122}, + [4904] = {.lex_state = 33}, + [4905] = {.lex_state = 638}, + [4906] = {.lex_state = 227}, + [4907] = {.lex_state = 583}, + [4908] = {.lex_state = 231}, + [4909] = {.lex_state = 0}, + [4910] = {.lex_state = 230}, + [4911] = {.lex_state = 188}, + [4912] = {.lex_state = 188}, + [4913] = {.lex_state = 188}, + [4914] = {.lex_state = 33}, + [4915] = {.lex_state = 122}, + [4916] = {.lex_state = 122}, + [4917] = {.lex_state = 147}, + [4918] = {.lex_state = 0}, + [4919] = {.lex_state = 122}, + [4920] = {.lex_state = 607}, + [4921] = {.lex_state = 33}, + [4922] = {.lex_state = 47}, + [4923] = {.lex_state = 122}, + [4924] = {.lex_state = 122}, + [4925] = {.lex_state = 122}, + [4926] = {.lex_state = 147}, + [4927] = {.lex_state = 122}, + [4928] = {.lex_state = 0}, + [4929] = {.lex_state = 0}, + [4930] = {.lex_state = 227}, [4931] = {.lex_state = 0}, - [4932] = {.lex_state = 0}, - [4933] = {.lex_state = 123}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 2214}, + [4932] = {.lex_state = 2213}, + [4933] = {.lex_state = 227}, + [4934] = {.lex_state = 227}, + [4935] = {.lex_state = 0}, [4936] = {.lex_state = 0}, [4937] = {.lex_state = 0}, - [4938] = {.lex_state = 2214}, - [4939] = {.lex_state = 228}, + [4938] = {.lex_state = 0}, + [4939] = {.lex_state = 0}, [4940] = {.lex_state = 0}, [4941] = {.lex_state = 0}, - [4942] = {.lex_state = 2210}, - [4943] = {.lex_state = 123}, - [4944] = {.lex_state = 0}, + [4942] = {.lex_state = 147}, + [4943] = {.lex_state = 147}, + [4944] = {.lex_state = 2209}, [4945] = {.lex_state = 0}, [4946] = {.lex_state = 122}, [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 2210}, - [4949] = {.lex_state = 2210}, - [4950] = {.lex_state = 0}, - [4951] = {.lex_state = 1742}, - [4952] = {.lex_state = 0}, + [4948] = {.lex_state = 122}, + [4949] = {.lex_state = 0}, + [4950] = {.lex_state = 122}, + [4951] = {.lex_state = 0}, + [4952] = {.lex_state = 2213}, [4953] = {.lex_state = 0}, [4954] = {.lex_state = 0}, - [4955] = {.lex_state = 228}, - [4956] = {.lex_state = 36}, + [4955] = {.lex_state = 272}, + [4956] = {.lex_state = 0}, [4957] = {.lex_state = 0}, [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 123}, - [4960] = {.lex_state = 0}, - [4961] = {.lex_state = 123}, - [4962] = {.lex_state = 0}, - [4963] = {.lex_state = 0}, - [4964] = {.lex_state = 584}, - [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 2212}, - [4967] = {.lex_state = 225}, - [4968] = {.lex_state = 123}, - [4969] = {.lex_state = 123}, - [4970] = {.lex_state = 0}, - [4971] = {.lex_state = 2210}, - [4972] = {.lex_state = 2210}, - [4973] = {.lex_state = 2210}, - [4974] = {.lex_state = 0}, - [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 123}, + [4959] = {.lex_state = 2209}, + [4960] = {.lex_state = 122}, + [4961] = {.lex_state = 583}, + [4962] = {.lex_state = 2209}, + [4963] = {.lex_state = 122}, + [4964] = {.lex_state = 227}, + [4965] = {.lex_state = 227}, + [4966] = {.lex_state = 122}, + [4967] = {.lex_state = 122}, + [4968] = {.lex_state = 227}, + [4969] = {.lex_state = 121}, + [4970] = {.lex_state = 2209}, + [4971] = {.lex_state = 0}, + [4972] = {.lex_state = 0}, + [4973] = {.lex_state = 122}, + [4974] = {.lex_state = 122}, + [4975] = {.lex_state = 2209}, + [4976] = {.lex_state = 584}, + [4977] = {.lex_state = 0}, [4978] = {.lex_state = 0}, - [4979] = {.lex_state = 2212}, - [4980] = {.lex_state = 123}, - [4981] = {.lex_state = 123}, - [4982] = {.lex_state = 123}, - [4983] = {.lex_state = 639}, - [4984] = {.lex_state = 228}, - [4985] = {.lex_state = 0}, - [4986] = {.lex_state = 0}, - [4987] = {.lex_state = 123}, - [4988] = {.lex_state = 0}, - [4989] = {.lex_state = 0}, + [4979] = {.lex_state = 0}, + [4980] = {.lex_state = 147}, + [4981] = {.lex_state = 583}, + [4982] = {.lex_state = 122}, + [4983] = {.lex_state = 0}, + [4984] = {.lex_state = 122}, + [4985] = {.lex_state = 2209}, + [4986] = {.lex_state = 2213}, + [4987] = {.lex_state = 0}, + [4988] = {.lex_state = 224}, + [4989] = {.lex_state = 124}, [4990] = {.lex_state = 0}, - [4991] = {.lex_state = 2212}, + [4991] = {.lex_state = 0}, [4992] = {.lex_state = 0}, - [4993] = {.lex_state = 125}, - [4994] = {.lex_state = 0}, - [4995] = {.lex_state = 0}, - [4996] = {.lex_state = 0}, - [4997] = {.lex_state = 148}, + [4993] = {.lex_state = 0}, + [4994] = {.lex_state = 2211}, + [4995] = {.lex_state = 122}, + [4996] = {.lex_state = 227}, + [4997] = {.lex_state = 0}, [4998] = {.lex_state = 0}, - [4999] = {.lex_state = 123}, - [5000] = {.lex_state = 2210}, - [5001] = {.lex_state = 2212}, - [5002] = {.lex_state = 125}, - [5003] = {.lex_state = 2214}, - [5004] = {.lex_state = 123}, - [5005] = {.lex_state = 0}, - [5006] = {.lex_state = 0}, - [5007] = {.lex_state = 123}, - [5008] = {.lex_state = 0}, - [5009] = {.lex_state = 0}, - [5010] = {.lex_state = 0}, - [5011] = {.lex_state = 123}, - [5012] = {.lex_state = 148}, - [5013] = {.lex_state = 148}, - [5014] = {.lex_state = 148}, - [5015] = {.lex_state = 123}, - [5016] = {.lex_state = 635}, - [5017] = {.lex_state = 585}, - [5018] = {.lex_state = 123}, - [5019] = {.lex_state = 228}, - [5020] = {.lex_state = 123}, - [5021] = {.lex_state = 123}, - [5022] = {.lex_state = 123}, - [5023] = {.lex_state = 2}, - [5024] = {.lex_state = 123}, - [5025] = {.lex_state = 123}, - [5026] = {.lex_state = 0}, - [5027] = {.lex_state = 273}, - [5028] = {.lex_state = 2212}, - [5029] = {.lex_state = 2210}, + [4999] = {.lex_state = 122}, + [5000] = {.lex_state = 2209}, + [5001] = {.lex_state = 638}, + [5002] = {.lex_state = 122}, + [5003] = {.lex_state = 0}, + [5004] = {.lex_state = 122}, + [5005] = {.lex_state = 124}, + [5006] = {.lex_state = 122}, + [5007] = {.lex_state = 147}, + [5008] = {.lex_state = 122}, + [5009] = {.lex_state = 122}, + [5010] = {.lex_state = 122}, + [5011] = {.lex_state = 0}, + [5012] = {.lex_state = 36}, + [5013] = {.lex_state = 0}, + [5014] = {.lex_state = 122}, + [5015] = {.lex_state = 0}, + [5016] = {.lex_state = 122}, + [5017] = {.lex_state = 121}, + [5018] = {.lex_state = 634}, + [5019] = {.lex_state = 0}, + [5020] = {.lex_state = 2211}, + [5021] = {.lex_state = 0}, + [5022] = {.lex_state = 227}, + [5023] = {.lex_state = 227}, + [5024] = {.lex_state = 227}, + [5025] = {.lex_state = 0}, + [5026] = {.lex_state = 227}, + [5027] = {.lex_state = 122}, + [5028] = {.lex_state = 2211}, + [5029] = {.lex_state = 122}, [5030] = {.lex_state = 0}, - [5031] = {.lex_state = 123}, + [5031] = {.lex_state = 0}, [5032] = {.lex_state = 0}, - [5033] = {.lex_state = 273}, + [5033] = {.lex_state = 0}, [5034] = {.lex_state = 122}, - [5035] = {.lex_state = 0}, - [5036] = {.lex_state = 635}, - [5037] = {.lex_state = 228}, - [5038] = {.lex_state = 228}, - [5039] = {.lex_state = 123}, - [5040] = {.lex_state = 228}, - [5041] = {.lex_state = 2214}, - [5042] = {.lex_state = 123}, - [5043] = {.lex_state = 33}, - [5044] = {.lex_state = 123}, - [5045] = {.lex_state = 0}, - [5046] = {.lex_state = 0}, - [5047] = {.lex_state = 0}, - [5048] = {.lex_state = 240}, - [5049] = {.lex_state = 123}, - [5050] = {.lex_state = 2214}, - [5051] = {.lex_state = 0}, - [5052] = {.lex_state = 0}, - [5053] = {.lex_state = 123}, - [5054] = {.lex_state = 123}, - [5055] = {.lex_state = 123}, - [5056] = {.lex_state = 2210}, - [5057] = {.lex_state = 2210}, - [5058] = {.lex_state = 2214}, - [5059] = {.lex_state = 33}, + [5035] = {.lex_state = 239}, + [5036] = {.lex_state = 0}, + [5037] = {.lex_state = 122}, + [5038] = {.lex_state = 227}, + [5039] = {.lex_state = 1741}, + [5040] = {.lex_state = 122}, + [5041] = {.lex_state = 0}, + [5042] = {.lex_state = 2213}, + [5043] = {.lex_state = 0}, + [5044] = {.lex_state = 2213}, + [5045] = {.lex_state = 2209}, + [5046] = {.lex_state = 122}, + [5047] = {.lex_state = 122}, + [5048] = {.lex_state = 0}, + [5049] = {.lex_state = 2209}, + [5050] = {.lex_state = 2211}, + [5051] = {.lex_state = 122}, + [5052] = {.lex_state = 2209}, + [5053] = {.lex_state = 0}, + [5054] = {.lex_state = 2209}, + [5055] = {.lex_state = 272}, + [5056] = {.lex_state = 0}, + [5057] = {.lex_state = 227}, + [5058] = {.lex_state = 0}, + [5059] = {.lex_state = 227}, [5060] = {.lex_state = 0}, - [5061] = {.lex_state = 2210}, - [5062] = {.lex_state = 2210}, - [5063] = {.lex_state = 0}, - [5064] = {.lex_state = 228}, - [5065] = {.lex_state = 2210}, - [5066] = {.lex_state = 2210}, - [5067] = {.lex_state = 123}, - [5068] = {.lex_state = 228}, - [5069] = {.lex_state = 228}, - [5070] = {.lex_state = 0}, - [5071] = {.lex_state = 123}, - [5072] = {.lex_state = 2210}, - [5073] = {.lex_state = 2210}, - [5074] = {.lex_state = 123}, - [5075] = {.lex_state = 123}, - [5076] = {.lex_state = 0}, - [5077] = {.lex_state = 584}, - [5078] = {.lex_state = 2214}, - [5079] = {.lex_state = 123}, - [5080] = {.lex_state = 0}, - [5081] = {.lex_state = 584}, + [5061] = {.lex_state = 33}, + [5062] = {.lex_state = 2213}, + [5063] = {.lex_state = 33}, + [5064] = {.lex_state = 122}, + [5065] = {.lex_state = 0}, + [5066] = {.lex_state = 0}, + [5067] = {.lex_state = 122}, + [5068] = {.lex_state = 0}, + [5069] = {.lex_state = 122}, + [5070] = {.lex_state = 2209}, + [5071] = {.lex_state = 2209}, + [5072] = {.lex_state = 0}, + [5073] = {.lex_state = 634}, + [5074] = {.lex_state = 2209}, + [5075] = {.lex_state = 2209}, + [5076] = {.lex_state = 2209}, + [5077] = {.lex_state = 0}, + [5078] = {.lex_state = 0}, + [5079] = {.lex_state = 2209}, + [5080] = {.lex_state = 2213}, + [5081] = {.lex_state = 0}, [5082] = {.lex_state = 2}, [5083] = {.lex_state = 0}, - [5084] = {.lex_state = 33}, - [5085] = {.lex_state = 1742}, + [5084] = {.lex_state = 2213}, + [5085] = {.lex_state = 2213}, [5086] = {.lex_state = 0}, - [5087] = {.lex_state = 0}, - [5088] = {.lex_state = 2212}, - [5089] = {.lex_state = 0, .external_lex_state = 3}, - [5090] = {.lex_state = 0}, - [5091] = {.lex_state = 2214}, - [5092] = {.lex_state = 33}, + [5087] = {.lex_state = 122}, + [5088] = {.lex_state = 124}, + [5089] = {.lex_state = 122}, + [5090] = {.lex_state = 122}, + [5091] = {.lex_state = 122}, + [5092] = {.lex_state = 122}, [5093] = {.lex_state = 0}, - [5094] = {.lex_state = 33}, - [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 584}, + [5094] = {.lex_state = 122}, + [5095] = {.lex_state = 122}, + [5096] = {.lex_state = 2211}, [5097] = {.lex_state = 0}, - [5098] = {.lex_state = 584}, - [5099] = {.lex_state = 584}, + [5098] = {.lex_state = 33}, + [5099] = {.lex_state = 0}, [5100] = {.lex_state = 33}, - [5101] = {.lex_state = 33}, - [5102] = {.lex_state = 231}, - [5103] = {.lex_state = 2}, - [5104] = {.lex_state = 0, .external_lex_state = 3}, - [5105] = {.lex_state = 0}, - [5106] = {.lex_state = 0}, - [5107] = {.lex_state = 0}, - [5108] = {.lex_state = 0}, - [5109] = {.lex_state = 33}, - [5110] = {.lex_state = 0}, - [5111] = {.lex_state = 1212}, - [5112] = {.lex_state = 0}, - [5113] = {.lex_state = 584}, - [5114] = {.lex_state = 584}, - [5115] = {.lex_state = 33}, - [5116] = {.lex_state = 0}, - [5117] = {.lex_state = 0}, + [5101] = {.lex_state = 227}, + [5102] = {.lex_state = 1211}, + [5103] = {.lex_state = 630}, + [5104] = {.lex_state = 121}, + [5105] = {.lex_state = 0, .external_lex_state = 3}, + [5106] = {.lex_state = 227}, + [5107] = {.lex_state = 230}, + [5108] = {.lex_state = 33}, + [5109] = {.lex_state = 0}, + [5110] = {.lex_state = 31}, + [5111] = {.lex_state = 0}, + [5112] = {.lex_state = 227}, + [5113] = {.lex_state = 0}, + [5114] = {.lex_state = 583}, + [5115] = {.lex_state = 583}, + [5116] = {.lex_state = 33}, + [5117] = {.lex_state = 31}, [5118] = {.lex_state = 0}, - [5119] = {.lex_state = 0, .external_lex_state = 3}, - [5120] = {.lex_state = 0}, - [5121] = {.lex_state = 147}, + [5119] = {.lex_state = 0}, + [5120] = {.lex_state = 0, .external_lex_state = 3}, + [5121] = {.lex_state = 2}, [5122] = {.lex_state = 0}, - [5123] = {.lex_state = 0}, + [5123] = {.lex_state = 33}, [5124] = {.lex_state = 0}, [5125] = {.lex_state = 0}, - [5126] = {.lex_state = 584}, - [5127] = {.lex_state = 584}, - [5128] = {.lex_state = 228}, - [5129] = {.lex_state = 0}, - [5130] = {.lex_state = 0, .external_lex_state = 3}, - [5131] = {.lex_state = 584}, - [5132] = {.lex_state = 584}, - [5133] = {.lex_state = 0}, - [5134] = {.lex_state = 0}, - [5135] = {.lex_state = 584}, + [5126] = {.lex_state = 0}, + [5127] = {.lex_state = 0}, + [5128] = {.lex_state = 583}, + [5129] = {.lex_state = 583}, + [5130] = {.lex_state = 33}, + [5131] = {.lex_state = 237}, + [5132] = {.lex_state = 0}, + [5133] = {.lex_state = 1211}, + [5134] = {.lex_state = 0, .external_lex_state = 3}, + [5135] = {.lex_state = 630}, [5136] = {.lex_state = 0}, - [5137] = {.lex_state = 584}, - [5138] = {.lex_state = 584}, - [5139] = {.lex_state = 1212}, + [5137] = {.lex_state = 0}, + [5138] = {.lex_state = 0}, + [5139] = {.lex_state = 230}, [5140] = {.lex_state = 0}, - [5141] = {.lex_state = 0, .external_lex_state = 3}, - [5142] = {.lex_state = 0}, - [5143] = {.lex_state = 584}, - [5144] = {.lex_state = 2212}, - [5145] = {.lex_state = 0}, - [5146] = {.lex_state = 584}, - [5147] = {.lex_state = 584}, - [5148] = {.lex_state = 33}, + [5141] = {.lex_state = 583}, + [5142] = {.lex_state = 583}, + [5143] = {.lex_state = 274}, + [5144] = {.lex_state = 227}, + [5145] = {.lex_state = 0, .external_lex_state = 3}, + [5146] = {.lex_state = 0}, + [5147] = {.lex_state = 0}, + [5148] = {.lex_state = 583}, [5149] = {.lex_state = 0}, - [5150] = {.lex_state = 0, .external_lex_state = 3}, - [5151] = {.lex_state = 1212}, - [5152] = {.lex_state = 0}, - [5153] = {.lex_state = 584}, - [5154] = {.lex_state = 584}, - [5155] = {.lex_state = 0}, - [5156] = {.lex_state = 31}, - [5157] = {.lex_state = 0, .external_lex_state = 3}, - [5158] = {.lex_state = 631}, - [5159] = {.lex_state = 0}, - [5160] = {.lex_state = 584}, - [5161] = {.lex_state = 584}, - [5162] = {.lex_state = 0}, - [5163] = {.lex_state = 0}, - [5164] = {.lex_state = 0, .external_lex_state = 3}, - [5165] = {.lex_state = 47}, - [5166] = {.lex_state = 0}, - [5167] = {.lex_state = 584}, - [5168] = {.lex_state = 584}, - [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 228}, - [5171] = {.lex_state = 0, .external_lex_state = 3}, + [5150] = {.lex_state = 0}, + [5151] = {.lex_state = 0}, + [5152] = {.lex_state = 583}, + [5153] = {.lex_state = 583}, + [5154] = {.lex_state = 583}, + [5155] = {.lex_state = 0, .external_lex_state = 3}, + [5156] = {.lex_state = 0, .external_lex_state = 3}, + [5157] = {.lex_state = 583}, + [5158] = {.lex_state = 630}, + [5159] = {.lex_state = 1211}, + [5160] = {.lex_state = 121}, + [5161] = {.lex_state = 0}, + [5162] = {.lex_state = 583}, + [5163] = {.lex_state = 583}, + [5164] = {.lex_state = 0}, + [5165] = {.lex_state = 1720}, + [5166] = {.lex_state = 0, .external_lex_state = 3}, + [5167] = {.lex_state = 1741}, + [5168] = {.lex_state = 0}, + [5169] = {.lex_state = 583}, + [5170] = {.lex_state = 583}, + [5171] = {.lex_state = 0}, [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 0}, - [5174] = {.lex_state = 584}, - [5175] = {.lex_state = 584}, - [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 33}, - [5178] = {.lex_state = 0, .external_lex_state = 3}, - [5179] = {.lex_state = 631}, - [5180] = {.lex_state = 0}, - [5181] = {.lex_state = 584}, - [5182] = {.lex_state = 584}, - [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 0, .external_lex_state = 3}, - [5185] = {.lex_state = 33}, - [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 584}, - [5188] = {.lex_state = 584}, - [5189] = {.lex_state = 631}, - [5190] = {.lex_state = 0, .external_lex_state = 3}, - [5191] = {.lex_state = 0}, + [5173] = {.lex_state = 0, .external_lex_state = 3}, + [5174] = {.lex_state = 0}, + [5175] = {.lex_state = 0}, + [5176] = {.lex_state = 583}, + [5177] = {.lex_state = 583}, + [5178] = {.lex_state = 0}, + [5179] = {.lex_state = 0}, + [5180] = {.lex_state = 0, .external_lex_state = 3}, + [5181] = {.lex_state = 33}, + [5182] = {.lex_state = 0}, + [5183] = {.lex_state = 583}, + [5184] = {.lex_state = 583}, + [5185] = {.lex_state = 1716}, + [5186] = {.lex_state = 1211}, + [5187] = {.lex_state = 0, .external_lex_state = 3}, + [5188] = {.lex_state = 227}, + [5189] = {.lex_state = 0}, + [5190] = {.lex_state = 583}, + [5191] = {.lex_state = 583}, [5192] = {.lex_state = 0}, - [5193] = {.lex_state = 584}, - [5194] = {.lex_state = 584}, - [5195] = {.lex_state = 33}, - [5196] = {.lex_state = 0, .external_lex_state = 4}, - [5197] = {.lex_state = 0}, - [5198] = {.lex_state = 0}, + [5193] = {.lex_state = 230}, + [5194] = {.lex_state = 0, .external_lex_state = 3}, + [5195] = {.lex_state = 227}, + [5196] = {.lex_state = 0}, + [5197] = {.lex_state = 583}, + [5198] = {.lex_state = 583}, [5199] = {.lex_state = 33}, - [5200] = {.lex_state = 0}, - [5201] = {.lex_state = 1717}, - [5202] = {.lex_state = 1721}, - [5203] = {.lex_state = 0}, - [5204] = {.lex_state = 2210}, + [5200] = {.lex_state = 0, .external_lex_state = 3}, + [5201] = {.lex_state = 31}, + [5202] = {.lex_state = 0}, + [5203] = {.lex_state = 583}, + [5204] = {.lex_state = 583}, [5205] = {.lex_state = 0}, - [5206] = {.lex_state = 33}, - [5207] = {.lex_state = 0}, - [5208] = {.lex_state = 1212}, - [5209] = {.lex_state = 0}, - [5210] = {.lex_state = 0}, - [5211] = {.lex_state = 0}, - [5212] = {.lex_state = 0}, + [5206] = {.lex_state = 0, .external_lex_state = 3}, + [5207] = {.lex_state = 121}, + [5208] = {.lex_state = 0}, + [5209] = {.lex_state = 583}, + [5210] = {.lex_state = 583}, + [5211] = {.lex_state = 121}, + [5212] = {.lex_state = 0, .external_lex_state = 4}, [5213] = {.lex_state = 0}, [5214] = {.lex_state = 0}, - [5215] = {.lex_state = 0}, - [5216] = {.lex_state = 31}, - [5217] = {.lex_state = 33}, - [5218] = {.lex_state = 122}, - [5219] = {.lex_state = 228}, - [5220] = {.lex_state = 0}, - [5221] = {.lex_state = 0}, - [5222] = {.lex_state = 635}, - [5223] = {.lex_state = 122}, - [5224] = {.lex_state = 0}, + [5215] = {.lex_state = 33}, + [5216] = {.lex_state = 0}, + [5217] = {.lex_state = 1716}, + [5218] = {.lex_state = 1720}, + [5219] = {.lex_state = 0}, + [5220] = {.lex_state = 630}, + [5221] = {.lex_state = 33}, + [5222] = {.lex_state = 33}, + [5223] = {.lex_state = 33}, + [5224] = {.lex_state = 33}, [5225] = {.lex_state = 0}, - [5226] = {.lex_state = 1212}, - [5227] = {.lex_state = 33}, - [5228] = {.lex_state = 33}, + [5226] = {.lex_state = 0}, + [5227] = {.lex_state = 0}, + [5228] = {.lex_state = 0, .external_lex_state = 3}, [5229] = {.lex_state = 0}, - [5230] = {.lex_state = 0}, - [5231] = {.lex_state = 0}, - [5232] = {.lex_state = 631}, - [5233] = {.lex_state = 0}, - [5234] = {.lex_state = 0}, - [5235] = {.lex_state = 0}, + [5230] = {.lex_state = 0, .external_lex_state = 3}, + [5231] = {.lex_state = 2211}, + [5232] = {.lex_state = 0}, + [5233] = {.lex_state = 33}, + [5234] = {.lex_state = 2}, + [5235] = {.lex_state = 33}, [5236] = {.lex_state = 0}, - [5237] = {.lex_state = 33}, - [5238] = {.lex_state = 231}, - [5239] = {.lex_state = 33}, - [5240] = {.lex_state = 0, .external_lex_state = 3}, - [5241] = {.lex_state = 47}, + [5237] = {.lex_state = 673}, + [5238] = {.lex_state = 634}, + [5239] = {.lex_state = 227}, + [5240] = {.lex_state = 0}, + [5241] = {.lex_state = 0, .external_lex_state = 3}, [5242] = {.lex_state = 0}, - [5243] = {.lex_state = 631}, - [5244] = {.lex_state = 33}, - [5245] = {.lex_state = 631}, - [5246] = {.lex_state = 147}, - [5247] = {.lex_state = 33}, - [5248] = {.lex_state = 0}, - [5249] = {.lex_state = 674}, - [5250] = {.lex_state = 228}, - [5251] = {.lex_state = 1212}, + [5243] = {.lex_state = 0}, + [5244] = {.lex_state = 630}, + [5245] = {.lex_state = 33}, + [5246] = {.lex_state = 31}, + [5247] = {.lex_state = 0}, + [5248] = {.lex_state = 630}, + [5249] = {.lex_state = 33}, + [5250] = {.lex_state = 0}, + [5251] = {.lex_state = 0}, [5252] = {.lex_state = 0}, - [5253] = {.lex_state = 0}, - [5254] = {.lex_state = 33}, - [5255] = {.lex_state = 631}, + [5253] = {.lex_state = 146}, + [5254] = {.lex_state = 227}, + [5255] = {.lex_state = 0}, [5256] = {.lex_state = 0}, - [5257] = {.lex_state = 31}, + [5257] = {.lex_state = 47}, [5258] = {.lex_state = 33}, - [5259] = {.lex_state = 0}, - [5260] = {.lex_state = 2}, - [5261] = {.lex_state = 0}, - [5262] = {.lex_state = 228}, - [5263] = {.lex_state = 31}, - [5264] = {.lex_state = 228}, - [5265] = {.lex_state = 33}, - [5266] = {.lex_state = 2210}, - [5267] = {.lex_state = 0, .external_lex_state = 4}, - [5268] = {.lex_state = 1212}, - [5269] = {.lex_state = 33}, - [5270] = {.lex_state = 0}, - [5271] = {.lex_state = 0}, - [5272] = {.lex_state = 0}, + [5259] = {.lex_state = 630}, + [5260] = {.lex_state = 0}, + [5261] = {.lex_state = 630}, + [5262] = {.lex_state = 227}, + [5263] = {.lex_state = 0}, + [5264] = {.lex_state = 0}, + [5265] = {.lex_state = 2}, + [5266] = {.lex_state = 0}, + [5267] = {.lex_state = 0}, + [5268] = {.lex_state = 0}, + [5269] = {.lex_state = 0}, + [5270] = {.lex_state = 1211}, + [5271] = {.lex_state = 33}, + [5272] = {.lex_state = 2213}, [5273] = {.lex_state = 0}, - [5274] = {.lex_state = 33}, - [5275] = {.lex_state = 1717}, - [5276] = {.lex_state = 0}, - [5277] = {.lex_state = 2214}, + [5274] = {.lex_state = 231}, + [5275] = {.lex_state = 0}, + [5276] = {.lex_state = 583}, + [5277] = {.lex_state = 230}, [5278] = {.lex_state = 0}, - [5279] = {.lex_state = 0}, - [5280] = {.lex_state = 33}, - [5281] = {.lex_state = 31}, - [5282] = {.lex_state = 0}, - [5283] = {.lex_state = 231}, + [5279] = {.lex_state = 583}, + [5280] = {.lex_state = 2213}, + [5281] = {.lex_state = 146}, + [5282] = {.lex_state = 583}, + [5283] = {.lex_state = 0}, [5284] = {.lex_state = 0}, - [5285] = {.lex_state = 584}, - [5286] = {.lex_state = 584}, - [5287] = {.lex_state = 33}, - [5288] = {.lex_state = 228}, + [5285] = {.lex_state = 1211}, + [5286] = {.lex_state = 33}, + [5287] = {.lex_state = 0}, + [5288] = {.lex_state = 583}, [5289] = {.lex_state = 0}, - [5290] = {.lex_state = 0}, - [5291] = {.lex_state = 1212}, - [5292] = {.lex_state = 33}, - [5293] = {.lex_state = 584}, - [5294] = {.lex_state = 33}, - [5295] = {.lex_state = 228}, - [5296] = {.lex_state = 31}, - [5297] = {.lex_state = 584}, - [5298] = {.lex_state = 0}, - [5299] = {.lex_state = 228}, + [5290] = {.lex_state = 583}, + [5291] = {.lex_state = 0}, + [5292] = {.lex_state = 583}, + [5293] = {.lex_state = 0}, + [5294] = {.lex_state = 0}, + [5295] = {.lex_state = 146}, + [5296] = {.lex_state = 1211}, + [5297] = {.lex_state = 630}, + [5298] = {.lex_state = 0, .external_lex_state = 4}, + [5299] = {.lex_state = 583}, [5300] = {.lex_state = 0}, - [5301] = {.lex_state = 2}, - [5302] = {.lex_state = 1721}, - [5303] = {.lex_state = 0}, - [5304] = {.lex_state = 238}, - [5305] = {.lex_state = 0}, - [5306] = {.lex_state = 0}, - [5307] = {.lex_state = 122}, - [5308] = {.lex_state = 275}, + [5301] = {.lex_state = 0}, + [5302] = {.lex_state = 33}, + [5303] = {.lex_state = 230}, + [5304] = {.lex_state = 1211}, + [5305] = {.lex_state = 630}, + [5306] = {.lex_state = 2211}, + [5307] = {.lex_state = 673}, + [5308] = {.lex_state = 33}, [5309] = {.lex_state = 33}, - [5310] = {.lex_state = 0, .external_lex_state = 3}, - [5311] = {.lex_state = 1212}, - [5312] = {.lex_state = 147}, - [5313] = {.lex_state = 122}, + [5310] = {.lex_state = 0}, + [5311] = {.lex_state = 31}, + [5312] = {.lex_state = 0}, + [5313] = {.lex_state = 0}, [5314] = {.lex_state = 33}, - [5315] = {.lex_state = 0}, - [5316] = {.lex_state = 33}, - [5317] = {.lex_state = 0, .external_lex_state = 3}, - [5318] = {.lex_state = 0}, - [5319] = {.lex_state = 231}, - [5320] = {.lex_state = 0, .external_lex_state = 3}, - [5321] = {.lex_state = 631}, + [5315] = {.lex_state = 1211}, + [5316] = {.lex_state = 0}, + [5317] = {.lex_state = 0}, + [5318] = {.lex_state = 273}, + [5319] = {.lex_state = 0}, + [5320] = {.lex_state = 630}, + [5321] = {.lex_state = 121}, [5322] = {.lex_state = 0}, [5323] = {.lex_state = 0}, - [5324] = {.lex_state = 231}, - [5325] = {.lex_state = 1212}, - [5326] = {.lex_state = 33}, - [5327] = {.lex_state = 631}, - [5328] = {.lex_state = 228}, - [5329] = {.lex_state = 0}, - [5330] = {.lex_state = 232}, - [5331] = {.lex_state = 122}, - [5332] = {.lex_state = 0}, - [5333] = {.lex_state = 0}, - [5334] = {.lex_state = 0}, - [5335] = {.lex_state = 0, .external_lex_state = 3}, - [5336] = {.lex_state = 0}, - [5337] = {.lex_state = 631}, + [5324] = {.lex_state = 630}, + [5325] = {.lex_state = 0}, + [5326] = {.lex_state = 0}, + [5327] = {.lex_state = 33}, + [5328] = {.lex_state = 33}, + [5329] = {.lex_state = 634}, + [5330] = {.lex_state = 33}, + [5331] = {.lex_state = 0, .external_lex_state = 3}, + [5332] = {.lex_state = 31}, + [5333] = {.lex_state = 2}, + [5334] = {.lex_state = 33}, + [5335] = {.lex_state = 0}, + [5336] = {.lex_state = 31}, + [5337] = {.lex_state = 227}, [5338] = {.lex_state = 0}, - [5339] = {.lex_state = 33}, - [5340] = {.lex_state = 2212}, - [5341] = {.lex_state = 231}, - [5342] = {.lex_state = 0}, - [5343] = {.lex_state = 0, .external_lex_state = 4}, + [5339] = {.lex_state = 0}, + [5340] = {.lex_state = 0}, + [5341] = {.lex_state = 0}, + [5342] = {.lex_state = 0, .external_lex_state = 3}, + [5343] = {.lex_state = 0}, [5344] = {.lex_state = 0}, - [5345] = {.lex_state = 1717}, - [5346] = {.lex_state = 1721}, - [5347] = {.lex_state = 0}, - [5348] = {.lex_state = 231}, - [5349] = {.lex_state = 635}, - [5350] = {.lex_state = 33}, - [5351] = {.lex_state = 231}, - [5352] = {.lex_state = 31}, - [5353] = {.lex_state = 631}, - [5354] = {.lex_state = 0}, - [5355] = {.lex_state = 231}, + [5345] = {.lex_state = 33}, + [5346] = {.lex_state = 0}, + [5347] = {.lex_state = 33}, + [5348] = {.lex_state = 0}, + [5349] = {.lex_state = 2209}, + [5350] = {.lex_state = 0}, + [5351] = {.lex_state = 227}, + [5352] = {.lex_state = 0}, + [5353] = {.lex_state = 0}, + [5354] = {.lex_state = 33}, + [5355] = {.lex_state = 33}, [5356] = {.lex_state = 0}, - [5357] = {.lex_state = 635}, - [5358] = {.lex_state = 147}, - [5359] = {.lex_state = 0}, - [5360] = {.lex_state = 0, .external_lex_state = 3}, - [5361] = {.lex_state = 674}, - [5362] = {.lex_state = 0}, - [5363] = {.lex_state = 2}, - [5364] = {.lex_state = 228}, - [5365] = {.lex_state = 584}, - [5366] = {.lex_state = 584}, - [5367] = {.lex_state = 631}, + [5357] = {.lex_state = 1211}, + [5358] = {.lex_state = 0}, + [5359] = {.lex_state = 0, .external_lex_state = 4}, + [5360] = {.lex_state = 0}, + [5361] = {.lex_state = 1716}, + [5362] = {.lex_state = 1720}, + [5363] = {.lex_state = 47}, + [5364] = {.lex_state = 2224}, + [5365] = {.lex_state = 0}, + [5366] = {.lex_state = 634}, + [5367] = {.lex_state = 0}, [5368] = {.lex_state = 0}, - [5369] = {.lex_state = 1212}, - [5370] = {.lex_state = 631}, - [5371] = {.lex_state = 122}, - [5372] = {.lex_state = 231}, - [5373] = {.lex_state = 631}, - [5374] = {.lex_state = 274}, - [5375] = {.lex_state = 33}, + [5369] = {.lex_state = 33}, + [5370] = {.lex_state = 0}, + [5371] = {.lex_state = 227}, + [5372] = {.lex_state = 230}, + [5373] = {.lex_state = 230}, + [5374] = {.lex_state = 0}, + [5375] = {.lex_state = 230}, [5376] = {.lex_state = 0}, - [5377] = {.lex_state = 0}, - [5378] = {.lex_state = 0}, + [5377] = {.lex_state = 583}, + [5378] = {.lex_state = 583}, [5379] = {.lex_state = 0}, [5380] = {.lex_state = 0}, - [5381] = {.lex_state = 33}, - [5382] = {.lex_state = 33}, - [5383] = {.lex_state = 2225}, - [5384] = {.lex_state = 0}, - [5385] = {.lex_state = 0, .external_lex_state = 4}, + [5381] = {.lex_state = 630}, + [5382] = {.lex_state = 1211}, + [5383] = {.lex_state = 0}, + [5384] = {.lex_state = 1211}, + [5385] = {.lex_state = 0}, [5386] = {.lex_state = 0}, - [5387] = {.lex_state = 1717}, - [5388] = {.lex_state = 1721}, - [5389] = {.lex_state = 33}, - [5390] = {.lex_state = 635}, + [5387] = {.lex_state = 0}, + [5388] = {.lex_state = 33}, + [5389] = {.lex_state = 0}, + [5390] = {.lex_state = 33}, [5391] = {.lex_state = 0}, - [5392] = {.lex_state = 584}, - [5393] = {.lex_state = 584}, - [5394] = {.lex_state = 0, .external_lex_state = 4}, + [5392] = {.lex_state = 1211}, + [5393] = {.lex_state = 0}, + [5394] = {.lex_state = 630}, [5395] = {.lex_state = 0}, - [5396] = {.lex_state = 1717}, - [5397] = {.lex_state = 1721}, - [5398] = {.lex_state = 0, .external_lex_state = 4}, - [5399] = {.lex_state = 0}, - [5400] = {.lex_state = 1717}, - [5401] = {.lex_state = 1721}, + [5396] = {.lex_state = 33}, + [5397] = {.lex_state = 31}, + [5398] = {.lex_state = 227}, + [5399] = {.lex_state = 33}, + [5400] = {.lex_state = 230}, + [5401] = {.lex_state = 121}, [5402] = {.lex_state = 0, .external_lex_state = 4}, [5403] = {.lex_state = 0}, - [5404] = {.lex_state = 1717}, - [5405] = {.lex_state = 1721}, - [5406] = {.lex_state = 0, .external_lex_state = 4}, - [5407] = {.lex_state = 1717}, - [5408] = {.lex_state = 1721}, - [5409] = {.lex_state = 0, .external_lex_state = 4}, - [5410] = {.lex_state = 1717}, - [5411] = {.lex_state = 1721}, + [5404] = {.lex_state = 1716}, + [5405] = {.lex_state = 1720}, + [5406] = {.lex_state = 33}, + [5407] = {.lex_state = 634}, + [5408] = {.lex_state = 33}, + [5409] = {.lex_state = 33}, + [5410] = {.lex_state = 33}, + [5411] = {.lex_state = 630}, [5412] = {.lex_state = 0, .external_lex_state = 4}, - [5413] = {.lex_state = 1717}, - [5414] = {.lex_state = 1721}, - [5415] = {.lex_state = 0, .external_lex_state = 4}, - [5416] = {.lex_state = 1717}, - [5417] = {.lex_state = 1721}, - [5418] = {.lex_state = 0, .external_lex_state = 4}, - [5419] = {.lex_state = 1717}, - [5420] = {.lex_state = 1721}, - [5421] = {.lex_state = 0, .external_lex_state = 4}, - [5422] = {.lex_state = 1717}, - [5423] = {.lex_state = 1721}, + [5413] = {.lex_state = 0}, + [5414] = {.lex_state = 1716}, + [5415] = {.lex_state = 1720}, + [5416] = {.lex_state = 0, .external_lex_state = 4}, + [5417] = {.lex_state = 0}, + [5418] = {.lex_state = 1716}, + [5419] = {.lex_state = 1720}, + [5420] = {.lex_state = 0, .external_lex_state = 4}, + [5421] = {.lex_state = 0}, + [5422] = {.lex_state = 1716}, + [5423] = {.lex_state = 1720}, [5424] = {.lex_state = 0, .external_lex_state = 4}, - [5425] = {.lex_state = 1717}, - [5426] = {.lex_state = 1721}, + [5425] = {.lex_state = 1716}, + [5426] = {.lex_state = 1720}, [5427] = {.lex_state = 0, .external_lex_state = 4}, - [5428] = {.lex_state = 1717}, - [5429] = {.lex_state = 1721}, + [5428] = {.lex_state = 1716}, + [5429] = {.lex_state = 1720}, [5430] = {.lex_state = 0, .external_lex_state = 4}, - [5431] = {.lex_state = 1717}, - [5432] = {.lex_state = 1721}, + [5431] = {.lex_state = 1716}, + [5432] = {.lex_state = 1720}, [5433] = {.lex_state = 0, .external_lex_state = 4}, - [5434] = {.lex_state = 1717}, - [5435] = {.lex_state = 1721}, + [5434] = {.lex_state = 1716}, + [5435] = {.lex_state = 1720}, [5436] = {.lex_state = 0, .external_lex_state = 4}, - [5437] = {.lex_state = 1717}, - [5438] = {.lex_state = 1721}, + [5437] = {.lex_state = 1716}, + [5438] = {.lex_state = 1720}, [5439] = {.lex_state = 0, .external_lex_state = 4}, - [5440] = {.lex_state = 1717}, - [5441] = {.lex_state = 1721}, + [5440] = {.lex_state = 1716}, + [5441] = {.lex_state = 1720}, [5442] = {.lex_state = 0, .external_lex_state = 4}, - [5443] = {.lex_state = 1717}, - [5444] = {.lex_state = 1721}, + [5443] = {.lex_state = 1716}, + [5444] = {.lex_state = 1720}, [5445] = {.lex_state = 0, .external_lex_state = 4}, - [5446] = {.lex_state = 1717}, - [5447] = {.lex_state = 1721}, - [5448] = {.lex_state = 231}, - [5449] = {.lex_state = 0}, - [5450] = {.lex_state = 0}, - [5451] = {.lex_state = 1212}, - [5452] = {.lex_state = 0}, - [5453] = {.lex_state = 231}, - [5454] = {.lex_state = 584}, - [5455] = {.lex_state = 0}, - [5456] = {.lex_state = 1212}, - [5457] = {.lex_state = 33}, - [5458] = {.lex_state = 0}, - [5459] = {.lex_state = 0}, - [5460] = {.lex_state = 33}, - [5461] = {.lex_state = 1212}, - [5462] = {.lex_state = 0}, - [5463] = {.lex_state = 33}, - [5464] = {.lex_state = 0}, - [5465] = {.lex_state = 33}, - [5466] = {.lex_state = 33}, - [5467] = {.lex_state = 0}, - [5468] = {.lex_state = 33}, - [5469] = {.lex_state = 122}, - [5470] = {.lex_state = 33}, + [5446] = {.lex_state = 1716}, + [5447] = {.lex_state = 1720}, + [5448] = {.lex_state = 0, .external_lex_state = 4}, + [5449] = {.lex_state = 1716}, + [5450] = {.lex_state = 1720}, + [5451] = {.lex_state = 0, .external_lex_state = 4}, + [5452] = {.lex_state = 1716}, + [5453] = {.lex_state = 1720}, + [5454] = {.lex_state = 0, .external_lex_state = 4}, + [5455] = {.lex_state = 1716}, + [5456] = {.lex_state = 1720}, + [5457] = {.lex_state = 0, .external_lex_state = 4}, + [5458] = {.lex_state = 1716}, + [5459] = {.lex_state = 1720}, + [5460] = {.lex_state = 0, .external_lex_state = 4}, + [5461] = {.lex_state = 1716}, + [5462] = {.lex_state = 1720}, + [5463] = {.lex_state = 0, .external_lex_state = 4}, + [5464] = {.lex_state = 1716}, + [5465] = {.lex_state = 1720}, + [5466] = {.lex_state = 0}, + [5467] = {.lex_state = 0, .external_lex_state = 3}, + [5468] = {.lex_state = 0}, + [5469] = {.lex_state = 146}, + [5470] = {.lex_state = 2213}, [5471] = {.lex_state = 33}, - [5472] = {.lex_state = 33}, - [5473] = {.lex_state = 631}, - [5474] = {.lex_state = 584}, - [5475] = {.lex_state = 2}, - [5476] = {.lex_state = 33}, - [5477] = {.lex_state = 228}, - [5478] = {.lex_state = 631}, - [5479] = {.lex_state = 1212}, - [5480] = {.lex_state = 1212}, - [5481] = {.lex_state = 0, .external_lex_state = 3}, - [5482] = {.lex_state = 0, .external_lex_state = 3}, - [5483] = {.lex_state = 2210}, - [5484] = {.lex_state = 122}, - [5485] = {.lex_state = 584}, - [5486] = {.lex_state = 0}, - [5487] = {.lex_state = 0}, + [5472] = {.lex_state = 583}, + [5473] = {.lex_state = 0}, + [5474] = {.lex_state = 0}, + [5475] = {.lex_state = 0}, + [5476] = {.lex_state = 31}, + [5477] = {.lex_state = 230}, + [5478] = {.lex_state = 33}, + [5479] = {.lex_state = 33}, + [5480] = {.lex_state = 33}, + [5481] = {.lex_state = 0}, + [5482] = {.lex_state = 2}, + [5483] = {.lex_state = 0}, + [5484] = {.lex_state = 583}, + [5485] = {.lex_state = 583}, + [5486] = {.lex_state = 33}, + [5487] = {.lex_state = 630}, [5488] = {.lex_state = 33}, - [5489] = {.lex_state = 228}, - [5490] = {.lex_state = 0}, - [5491] = {.lex_state = 0}, - [5492] = {.lex_state = 33}, - [5493] = {.lex_state = 2214}, - [5494] = {.lex_state = 31}, - [5495] = {.lex_state = 0}, - [5496] = {.lex_state = 0, .external_lex_state = 3}, - [5497] = {.lex_state = 0}, - [5498] = {.lex_state = 33}, - [5499] = {.lex_state = 31}, - [5500] = {.lex_state = 631}, + [5489] = {.lex_state = 0}, + [5490] = {.lex_state = 1211}, + [5491] = {.lex_state = 1211}, + [5492] = {.lex_state = 2}, + [5493] = {.lex_state = 0}, + [5494] = {.lex_state = 0}, + [5495] = {.lex_state = 33}, + [5496] = {.lex_state = 227}, + [5497] = {.lex_state = 1211}, + [5498] = {.lex_state = 31}, + [5499] = {.lex_state = 0}, + [5500] = {.lex_state = 630}, [5501] = {.lex_state = 0}, - [5502] = {.lex_state = 228}, - [5503] = {.lex_state = 0}, - [5504] = {.lex_state = 31}, + [5502] = {.lex_state = 121}, + [5503] = {.lex_state = 2209}, + [5504] = {.lex_state = 121}, [5505] = {.lex_state = 0}, - [5506] = {.lex_state = 584}, - [5507] = {.lex_state = 631}, - [5508] = {.lex_state = 584}, + [5506] = {.lex_state = 583}, + [5507] = {.lex_state = 583}, + [5508] = {.lex_state = 0, .external_lex_state = 3}, [5509] = {.lex_state = 0}, - [5510] = {.lex_state = 584}, - [5511] = {(TSStateId)(-1),}, + [5510] = {.lex_state = 33}, + [5511] = {.lex_state = 2209}, + [5512] = {.lex_state = 0}, + [5513] = {.lex_state = 583}, + [5514] = {.lex_state = 230}, + [5515] = {.lex_state = 33}, + [5516] = {.lex_state = 0}, + [5517] = {.lex_state = 0}, + [5518] = {.lex_state = 33}, + [5519] = {.lex_state = 2211}, + [5520] = {.lex_state = 230}, + [5521] = {.lex_state = 0}, + [5522] = {.lex_state = 0, .external_lex_state = 3}, + [5523] = {.lex_state = 0}, + [5524] = {.lex_state = 583}, + [5525] = {.lex_state = 583}, + [5526] = {.lex_state = 630}, + [5527] = {.lex_state = 33}, + [5528] = {.lex_state = 0}, + [5529] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -39438,77 +39441,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_nu_script] = STATE(5467), - [sym_shebang] = STATE(39), - [sym__block_body_statement] = STATE(4592), - [sym__declaration] = STATE(4832), - [sym_decl_alias] = STATE(4872), - [sym_stmt_let] = STATE(4884), - [sym_stmt_mut] = STATE(4884), - [sym_stmt_const] = STATE(4884), - [sym_assignment] = STATE(4884), - [sym__mutable_assignment_pattern] = STATE(4708), - [sym__statement] = STATE(4832), - [sym_pipeline] = STATE(4884), - [sym__block_body] = STATE(5248), - [sym_cmd_identifier] = STATE(2951), - [aux_sym__repeat_newline] = STATE(4852), - [sym_attribute_list] = STATE(4691), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4872), - [sym_decl_export] = STATE(4872), - [sym_decl_extern] = STATE(4872), - [sym_decl_module] = STATE(4872), - [sym_decl_use] = STATE(4872), - [sym__ctrl_statement] = STATE(4884), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_for] = STATE(4718), - [sym_ctrl_loop] = STATE(4718), - [sym_ctrl_while] = STATE(4718), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3125), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(444), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), + [sym_nu_script] = STATE(5341), + [sym_shebang] = STATE(59), + [sym__block_body_statement] = STATE(4627), + [sym__declaration] = STATE(4780), + [sym_decl_alias] = STATE(4857), + [sym_stmt_let] = STATE(4909), + [sym_stmt_mut] = STATE(4909), + [sym_stmt_const] = STATE(4909), + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym__statement] = STATE(4780), + [sym_pipeline] = STATE(4909), + [sym__block_body] = STATE(5300), + [sym_cmd_identifier] = STATE(2943), + [aux_sym__repeat_newline] = STATE(4905), + [sym_attribute_list] = STATE(4774), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4857), + [sym_decl_export] = STATE(4857), + [sym_decl_extern] = STATE(4857), + [sym_decl_module] = STATE(4857), + [sym_decl_use] = STATE(4857), + [sym__ctrl_statement] = STATE(4909), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_for] = STATE(4680), + [sym_ctrl_loop] = STATE(4680), + [sym_ctrl_while] = STATE(4680), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3092), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(281), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -39572,86 +39575,86 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5107), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(22), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym__match_pattern_record_body] = STATE(5279), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(387), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5120), - [sym_record_entry] = STATE(4841), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5278), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(21), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(70), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym__match_pattern_record_body] = STATE(5322), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(385), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5283), + [sym_record_entry] = STATE(4684), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(475), - [aux_sym__match_pattern_record_body_repeat1] = STATE(698), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym__match_pattern_record_body_repeat1] = STATE(701), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39719,84 +39722,84 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5117), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(41), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5490), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5287), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(60), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5240), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39864,84 +39867,84 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5462), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(37), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5509), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5278), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(21), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(70), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5283), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40009,84 +40012,84 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5086), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(41), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5490), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5213), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(60), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5240), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40154,84 +40157,84 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5315), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(22), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5120), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5505), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(21), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(70), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5283), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40299,84 +40302,84 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5107), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(22), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5126), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5120), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5252), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40444,84 +40447,84 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5253), - [sym_cmd_identifier] = STATE(2647), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5118), + [sym_cmd_identifier] = STATE(2707), [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(37), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5509), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(45), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5252), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40589,519 +40592,519 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5149), - [sym_cmd_identifier] = STATE(2647), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5132), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(49), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5137), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(9), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), + [anon_sym_export] = ACTIONS(107), + [anon_sym_alias] = ACTIONS(109), + [anon_sym_let] = ACTIONS(111), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(115), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_use] = ACTIONS(121), + [anon_sym_export_DASHenv] = ACTIONS(123), + [anon_sym_extern] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_loop] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_if] = ACTIONS(135), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(141), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(145), + [anon_sym_false] = ACTIONS(145), + [anon_sym_null] = ACTIONS(147), + [aux_sym_cmd_identifier_token3] = ACTIONS(149), + [aux_sym_cmd_identifier_token4] = ACTIONS(149), + [aux_sym_cmd_identifier_token5] = ACTIONS(149), + [sym__newline] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_PIPE] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(183), + [aux_sym__val_number_decimal_token2] = ACTIONS(185), + [aux_sym__val_number_decimal_token3] = ACTIONS(187), + [aux_sym__val_number_decimal_token4] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(10)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5242), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(25), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5266), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(10), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), + [anon_sym_export] = ACTIONS(107), + [anon_sym_alias] = ACTIONS(109), + [anon_sym_let] = ACTIONS(111), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(115), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_use] = ACTIONS(121), + [anon_sym_export_DASHenv] = ACTIONS(123), + [anon_sym_extern] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_loop] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_if] = ACTIONS(135), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(141), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(145), + [anon_sym_false] = ACTIONS(145), + [anon_sym_null] = ACTIONS(147), + [aux_sym_cmd_identifier_token3] = ACTIONS(149), + [aux_sym_cmd_identifier_token4] = ACTIONS(149), + [aux_sym_cmd_identifier_token5] = ACTIONS(149), + [sym__newline] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_PIPE] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(183), + [aux_sym__val_number_decimal_token2] = ACTIONS(185), + [aux_sym__val_number_decimal_token3] = ACTIONS(187), + [aux_sym__val_number_decimal_token4] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(11)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5353), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(61), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5367), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(11), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), + [anon_sym_export] = ACTIONS(107), + [anon_sym_alias] = ACTIONS(109), + [anon_sym_let] = ACTIONS(111), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(115), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_use] = ACTIONS(121), + [anon_sym_export_DASHenv] = ACTIONS(123), + [anon_sym_extern] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_loop] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_if] = ACTIONS(135), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(141), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(145), + [anon_sym_false] = ACTIONS(145), + [anon_sym_null] = ACTIONS(147), + [aux_sym_cmd_identifier_token3] = ACTIONS(149), + [aux_sym_cmd_identifier_token4] = ACTIONS(149), + [aux_sym_cmd_identifier_token5] = ACTIONS(149), + [sym__newline] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_PIPE] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(231), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(183), + [aux_sym__val_number_decimal_token2] = ACTIONS(185), + [aux_sym__val_number_decimal_token3] = ACTIONS(187), + [aux_sym__val_number_decimal_token4] = ACTIONS(187), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(12)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5263), + [sym_cmd_identifier] = STATE(2707), [aux_sym__repeat_newline] = STATE(23), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), [sym_parameter_pipes] = STATE(56), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5347), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5269), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(12), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(139), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_finally] = ACTIONS(137), - [anon_sym_match] = ACTIONS(141), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(145), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(10)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5354), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(50), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5359), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(139), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_finally] = ACTIONS(137), - [anon_sym_match] = ACTIONS(141), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(145), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(11)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5272), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(24), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(63), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5384), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), - [anon_sym_export] = ACTIONS(107), - [anon_sym_alias] = ACTIONS(109), - [anon_sym_let] = ACTIONS(111), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(115), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(119), - [anon_sym_use] = ACTIONS(121), - [anon_sym_export_DASHenv] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(125), - [anon_sym_module] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_loop] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_if] = ACTIONS(135), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(139), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_finally] = ACTIONS(137), - [anon_sym_match] = ACTIONS(141), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(145), - [anon_sym_false] = ACTIONS(145), - [anon_sym_null] = ACTIONS(147), - [aux_sym_cmd_identifier_token3] = ACTIONS(149), - [aux_sym_cmd_identifier_token4] = ACTIONS(149), - [aux_sym_cmd_identifier_token5] = ACTIONS(149), - [sym__newline] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(183), - [aux_sym__val_number_decimal_token2] = ACTIONS(185), - [aux_sym__val_number_decimal_token3] = ACTIONS(187), - [aux_sym__val_number_decimal_token4] = ACTIONS(187), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(12)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5272), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(24), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(63), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5276), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -41169,84 +41172,84 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5117), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(41), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5220), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5353), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(61), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5481), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -41314,84 +41317,84 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5106), - [sym_cmd_identifier] = STATE(2647), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5287), + [sym_cmd_identifier] = STATE(2707), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), [sym_parameter_pipes] = STATE(60), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5116), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5236), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -41459,84 +41462,84 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5462), - [sym_cmd_identifier] = STATE(2647), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5126), + [sym_cmd_identifier] = STATE(2707), [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(37), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(737), - [sym__spread_parenthesized] = STATE(5018), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(417), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(1261), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(1261), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(1261), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5334), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(45), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(807), + [sym__spread_parenthesized] = STATE(4966), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(1225), + [sym__val_number_decimal] = STATE(102), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(1225), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(1225), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5350), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(721), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -41604,76 +41607,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5233), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(1358), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5126), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(45), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41737,76 +41740,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5086), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(41), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5466), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(1372), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41870,76 +41873,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5207), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(1358), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(40), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5256), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(1372), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(52), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42003,76 +42006,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5462), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(37), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5287), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(60), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42136,76 +42139,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5117), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(41), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5118), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(45), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42269,76 +42272,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5253), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(37), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5340), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(1372), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(51), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42402,76 +42405,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5080), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(1358), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(47), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5213), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(60), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42535,76 +42538,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5215), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(1358), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5294), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(1372), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), [sym_parameter_pipes] = STATE(58), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42668,76 +42671,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5300), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(1358), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(65), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5174), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(1372), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(73), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42801,76 +42804,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5183), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(1358), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(62), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5339), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(1372), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(44), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42934,76 +42937,76 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5378), - [sym_cmd_identifier] = STATE(2730), - [aux_sym__repeat_newline] = STATE(1358), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym_parameter_pipes] = STATE(52), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5386), + [sym_cmd_identifier] = STATE(2819), + [aux_sym__repeat_newline] = STATE(1372), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym_parameter_pipes] = STATE(63), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -43067,74 +43070,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5350), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5233), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(27), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43198,74 +43201,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5217), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5224), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(28), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43329,74 +43332,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5265), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5271), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(29), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43460,74 +43463,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5228), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5347), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(30), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43569,7 +43572,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(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), @@ -43591,74 +43594,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5109), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5479), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(31), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43691,7 +43694,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(355), + [anon_sym_RPAREN] = ACTIONS(357), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43700,7 +43703,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(357), + [anon_sym_RPAREN2] = ACTIONS(359), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -43722,74 +43725,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5382), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5123), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(32), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43822,7 +43825,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(359), + [anon_sym_RPAREN] = ACTIONS(361), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43831,7 +43834,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(361), + [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), @@ -43853,74 +43856,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5339), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5527), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(33), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43953,7 +43956,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(363), + [anon_sym_RPAREN] = ACTIONS(365), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43962,7 +43965,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(365), + [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), @@ -43984,74 +43987,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5092), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5355), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(34), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44093,7 +44096,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(365), + [anon_sym_RPAREN2] = ACTIONS(351), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -44115,74 +44118,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5309), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5100), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(35), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44245,74 +44248,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5195), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5399), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(36), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44375,74 +44378,204 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5235), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5527), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [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), + [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_finally] = 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(373), + [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(38)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5171), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(38), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44478,7 +44611,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(373), + [anon_sym_RBRACE] = ACTIONS(375), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44504,75 +44637,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(38)] = { - [sym__block_body_statement_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5254), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(38), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(39)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5223), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(39), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44605,7 +44738,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(377), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44634,210 +44767,80 @@ 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(4592), - [sym__declaration] = STATE(4832), - [sym_decl_alias] = STATE(4872), - [sym_stmt_let] = STATE(4884), - [sym_stmt_mut] = STATE(4884), - [sym_stmt_const] = STATE(4884), - [sym_assignment] = STATE(4884), - [sym__mutable_assignment_pattern] = STATE(4708), - [sym__statement] = STATE(4832), - [sym_pipeline] = STATE(4884), - [sym__block_body] = STATE(5356), - [sym_cmd_identifier] = STATE(2951), - [sym_attribute_list] = STATE(4691), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4872), - [sym_decl_export] = STATE(4872), - [sym_decl_extern] = STATE(4872), - [sym_decl_module] = STATE(4872), - [sym_decl_use] = STATE(4872), - [sym__ctrl_statement] = STATE(4884), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_for] = STATE(4718), - [sym_ctrl_loop] = STATE(4718), - [sym_ctrl_while] = STATE(4718), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3125), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(444), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), - [sym_comment] = STATE(39), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(377), - [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_finally] = 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(40)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5140), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5271), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [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(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [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), @@ -44847,9 +44850,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -44865,19 +44868,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(379), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(379), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(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), @@ -44890,79 +44893,79 @@ 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(41)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5252), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5243), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45025,79 +45028,79 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5326), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5365), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(42), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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), @@ -45107,9 +45110,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -45125,19 +45128,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(383), [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), @@ -45150,79 +45153,79 @@ 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(43)] = { - [sym__block_body_statement_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5109), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5369), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(43), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45285,79 +45288,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(44)] = { - [sym__block_body_statement_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5185), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5393), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(44), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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), @@ -45367,9 +45370,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -45385,19 +45388,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(387), [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(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), @@ -45410,79 +45413,79 @@ 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(45)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5256), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5264), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45545,74 +45548,74 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5258), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5308), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45675,74 +45678,204 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5487), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5258), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(47), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [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), + [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_finally] = 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(393), + [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(48)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5370), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(48), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45778,7 +45911,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(393), + [anon_sym_RBRACE] = ACTIONS(395), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45804,75 +45937,205 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5092), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), + [STATE(49)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5179), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(49), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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_finally] = 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(397), + [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(50)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5181), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(50), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45905,7 +46168,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(399), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45934,75 +46197,75 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5306), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [STATE(51)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5494), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(51), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46038,7 +46301,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(401), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46064,75 +46327,75 @@ 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] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5380), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(50), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [STATE(52)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5489), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(52), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46168,7 +46431,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(399), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46194,75 +46457,75 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5381), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(53)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5215), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(53), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46295,7 +46558,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(401), + [anon_sym_RPAREN] = ACTIONS(405), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46324,80 +46587,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(52)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5455), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(52), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [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(54)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5347), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(54), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [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), @@ -46407,9 +46670,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -46425,19 +46688,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(407), [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(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), @@ -46450,79 +46713,79 @@ 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(53)] = { - [sym__block_body_statement_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5237), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(55)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5355), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(55), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46555,7 +46818,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(405), + [anon_sym_RPAREN] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46584,80 +46847,80 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5094), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), + [STATE(56)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5301), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(56), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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), @@ -46667,9 +46930,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -46685,19 +46948,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(407), [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), @@ -46710,84 +46973,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(55)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5271), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(55), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [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(57)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5302), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(57), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [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), @@ -46797,9 +47060,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -46815,19 +47078,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(409), [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), @@ -46840,79 +47103,79 @@ 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(56)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5224), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(56), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [STATE(58)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5310), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(58), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46948,7 +47211,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(411), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46974,80 +47237,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(57)] = { - [sym__block_body_statement_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5239), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), + [STATE(59)] = { + [sym__block_body_statement] = STATE(4627), + [sym__declaration] = STATE(4780), + [sym_decl_alias] = STATE(4857), + [sym_stmt_let] = STATE(4909), + [sym_stmt_mut] = STATE(4909), + [sym_stmt_const] = STATE(4909), + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym__statement] = STATE(4780), + [sym_pipeline] = STATE(4909), + [sym__block_body] = STATE(5268), + [sym_cmd_identifier] = STATE(2943), + [sym_attribute_list] = STATE(4774), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4857), + [sym_decl_export] = STATE(4857), + [sym_decl_extern] = STATE(4857), + [sym_decl_module] = STATE(4857), + [sym_decl_use] = STATE(4857), + [sym__ctrl_statement] = STATE(4909), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_for] = STATE(4680), + [sym_ctrl_loop] = STATE(4680), + [sym_ctrl_while] = STATE(4680), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3092), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(59), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(281), + [ts_builtin_sym_end] = ACTIONS(417), + [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_finally] = 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(60)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5383), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(60), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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), @@ -47057,9 +47450,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -47075,19 +47468,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(419), [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), @@ -47100,79 +47493,79 @@ 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(58)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5282), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(58), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [STATE(61)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5389), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(61), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47208,7 +47601,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(415), + [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47234,75 +47627,75 @@ 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_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5265), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(62)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5390), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(62), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47335,7 +47728,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(417), + [anon_sym_RPAREN] = ACTIONS(423), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47364,75 +47757,75 @@ 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] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5197), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(60), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [STATE(63)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5395), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(63), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47468,7 +47861,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(419), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47494,75 +47887,75 @@ 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_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5199), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(64)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5123), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(64), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47595,7 +47988,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(427), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47624,210 +48017,80 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5214), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(62), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [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_finally] = 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(423), - [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(63)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5305), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [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(65)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5495), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(65), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [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), @@ -47837,9 +48100,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -47855,19 +48118,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(429), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(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), @@ -47880,79 +48143,79 @@ 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(64)] = { - [sym__block_body_statement_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5339), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(66)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5309), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(66), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47985,7 +48248,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(427), + [anon_sym_RPAREN] = ACTIONS(431), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48014,80 +48277,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(65)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5318), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(65), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [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(67)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5116), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [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), @@ -48097,9 +48360,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -48115,19 +48378,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(433), [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), + [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), @@ -48140,79 +48403,79 @@ 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(66)] = { - [sym__block_body_statement_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5294), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(68)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5130), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(68), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48245,7 +48508,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(435), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48274,75 +48537,75 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5460), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(69)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5221), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48375,7 +48638,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(437), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48404,80 +48667,80 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5084), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), + [STATE(70)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5344), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(70), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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), @@ -48487,9 +48750,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -48505,19 +48768,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(439), [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), @@ -48530,79 +48793,79 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5100), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(71)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5345), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48635,7 +48898,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(441), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48664,75 +48927,75 @@ 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(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5115), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(72)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5233), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48765,267 +49028,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_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(71)] = { - [sym__block_body_statement_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5228), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = 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(441), - [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(72)] = { - [sym__block_body_statement_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5217), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = 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(443), + [anon_sym_RPAREN] = ACTIONS(443), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -49055,74 +49058,74 @@ 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(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5290), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5192), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -49185,207 +49188,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(74)] = { - [sym__block_body_statement] = STATE(4466), - [sym__declaration] = STATE(4832), - [sym_decl_alias] = STATE(4872), - [sym_stmt_let] = STATE(4884), - [sym_stmt_mut] = STATE(4884), - [sym_stmt_const] = STATE(4884), - [sym_assignment] = STATE(4884), - [sym__mutable_assignment_pattern] = STATE(4708), - [sym__statement] = STATE(4832), - [sym_pipeline] = STATE(4884), - [sym_cmd_identifier] = STATE(2951), - [sym_attribute_list] = STATE(4691), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4872), - [sym_decl_export] = STATE(4872), - [sym_decl_extern] = STATE(4872), - [sym_decl_module] = STATE(4872), - [sym_decl_use] = STATE(4872), - [sym__ctrl_statement] = STATE(4884), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_for] = STATE(4718), - [sym_ctrl_loop] = STATE(4718), - [sym_ctrl_while] = STATE(4718), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3125), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(444), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5408), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(1374), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(447), - [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_finally] = 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(75)] = { - [sym__block_body_statement] = STATE(4301), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(1355), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(77), [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(267), - [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_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(283), + [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), @@ -49395,7 +49270,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(459), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -49413,7 +49288,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(447), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -49442,202 +49316,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] = STATE(4301), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(76), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat1] = STATE(1355), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [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_finally] = 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(447), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(4175), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(1355), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [STATE(75)] = { + [sym__block_body_statement_parenthesized] = STATE(4040), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(75), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(1370), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), [aux_sym__parenthesized_body_repeat2] = STATE(89), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), @@ -49671,7 +49416,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(459), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -49700,75 +49445,75 @@ 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_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5292), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [STATE(76)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5354), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(76), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -49829,80 +49574,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_parenthesized] = STATE(4126), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym__parenthesized_body] = STATE(5316), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(79), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(90), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(77)] = { + [sym__block_body_statement] = STATE(4236), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(77), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(1370), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(283), + [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), @@ -49912,9 +49656,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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -49930,11 +49674,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(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), @@ -49954,84 +49699,212 @@ 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(80)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5206), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), + [STATE(78)] = { + [sym__block_body_statement] = STATE(4591), + [sym__declaration] = STATE(4780), + [sym_decl_alias] = STATE(4857), + [sym_stmt_let] = STATE(4909), + [sym_stmt_mut] = STATE(4909), + [sym_stmt_const] = STATE(4909), + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym__statement] = STATE(4780), + [sym_pipeline] = STATE(4909), + [sym_cmd_identifier] = STATE(2943), + [sym_attribute_list] = STATE(4774), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4857), + [sym_decl_export] = STATE(4857), + [sym_decl_extern] = STATE(4857), + [sym_decl_module] = STATE(4857), + [sym_decl_use] = STATE(4857), + [sym__ctrl_statement] = STATE(4909), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_for] = STATE(4680), + [sym_ctrl_loop] = STATE(4680), + [sym_ctrl_while] = STATE(4680), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3092), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(78), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(1382), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(281), + [ts_builtin_sym_end] = ACTIONS(461), + [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_finally] = 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(79)] = { + [sym__block_body_statement] = STATE(4236), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(80), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(267), - [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), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(79), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat1] = STATE(1370), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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), @@ -50041,7 +49914,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(459), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -50062,15 +49935,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), @@ -50087,80 +49961,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(81)] = { - [sym__block_body_statement] = STATE(4191), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym__block_body] = STATE(5287), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(81), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(267), - [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), + [STATE(80)] = { + [sym__block_body_statement] = STATE(4279), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym__block_body] = STATE(5249), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(80), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(86), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(283), + [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), @@ -50170,7 +50044,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(459), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -50216,203 +50090,80 @@ 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(4328), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [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_finally] = 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(83)] = { - [sym__block_body_statement] = STATE(4301), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(83), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(267), - [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), + [STATE(81)] = { + [sym__block_body_statement_parenthesized] = STATE(4171), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym__parenthesized_body] = STATE(5410), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(81), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [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), @@ -50422,9 +50173,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(459), + [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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -50435,6 +50186,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), @@ -50442,7 +50195,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), @@ -50462,77 +50215,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(84)] = { - [sym__block_body_statement] = STATE(4487), - [sym__declaration] = STATE(4832), - [sym_decl_alias] = STATE(4872), - [sym_stmt_let] = STATE(4884), - [sym_stmt_mut] = STATE(4884), - [sym_stmt_const] = STATE(4884), - [sym_assignment] = STATE(4884), - [sym__mutable_assignment_pattern] = STATE(4708), - [sym__statement] = STATE(4832), - [sym_pipeline] = STATE(4884), - [sym_cmd_identifier] = STATE(2951), - [sym_attribute_list] = STATE(4691), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4872), - [sym_decl_export] = STATE(4872), - [sym_decl_extern] = STATE(4872), - [sym_decl_module] = STATE(4872), - [sym_decl_use] = STATE(4872), - [sym__ctrl_statement] = STATE(4884), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_for] = STATE(4718), - [sym_ctrl_loop] = STATE(4718), - [sym_ctrl_while] = STATE(4718), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3125), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(444), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), + [STATE(82)] = { + [sym__block_body_statement] = STATE(4584), + [sym__declaration] = STATE(4780), + [sym_decl_alias] = STATE(4857), + [sym_stmt_let] = STATE(4909), + [sym_stmt_mut] = STATE(4909), + [sym_stmt_const] = STATE(4909), + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym__statement] = STATE(4780), + [sym_pipeline] = STATE(4909), + [sym_cmd_identifier] = STATE(2943), + [sym_attribute_list] = STATE(4774), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4857), + [sym_decl_export] = STATE(4857), + [sym_decl_extern] = STATE(4857), + [sym_decl_module] = STATE(4857), + [sym_decl_use] = STATE(4857), + [sym__ctrl_statement] = STATE(4909), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_for] = STATE(4680), + [sym_ctrl_loop] = STATE(4680), + [sym_ctrl_while] = STATE(4680), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3092), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), - [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(284), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(82), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -50591,73 +50344,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(85)] = { - [sym__block_body_statement] = STATE(4466), - [sym__declaration] = STATE(4832), - [sym_decl_alias] = STATE(4872), - [sym_stmt_let] = STATE(4884), - [sym_stmt_mut] = STATE(4884), - [sym_stmt_const] = STATE(4884), - [sym_assignment] = STATE(4884), - [sym__mutable_assignment_pattern] = STATE(4708), - [sym__statement] = STATE(4832), - [sym_pipeline] = STATE(4884), - [sym_cmd_identifier] = STATE(2951), - [sym_attribute_list] = STATE(4691), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4872), - [sym_decl_export] = STATE(4872), - [sym_decl_extern] = STATE(4872), - [sym_decl_module] = STATE(4872), - [sym_decl_use] = STATE(4872), - [sym__ctrl_statement] = STATE(4884), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_for] = STATE(4718), - [sym_ctrl_loop] = STATE(4718), - [sym_ctrl_while] = STATE(4718), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3125), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(444), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), + [STATE(83)] = { + [sym__block_body_statement] = STATE(4591), + [sym__declaration] = STATE(4780), + [sym_decl_alias] = STATE(4857), + [sym_stmt_let] = STATE(4909), + [sym_stmt_mut] = STATE(4909), + [sym_stmt_const] = STATE(4909), + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym__statement] = STATE(4780), + [sym_pipeline] = STATE(4909), + [sym_cmd_identifier] = STATE(2943), + [sym_attribute_list] = STATE(4774), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4857), + [sym_decl_export] = STATE(4857), + [sym_decl_extern] = STATE(4857), + [sym_decl_module] = STATE(4857), + [sym_decl_use] = STATE(4857), + [sym__ctrl_statement] = STATE(4909), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_for] = STATE(4680), + [sym_ctrl_loop] = STATE(4680), + [sym_ctrl_while] = STATE(4680), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3092), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), - [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(284), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(83), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -50716,198 +50469,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(86)] = { - [sym__block_body_statement] = STATE(4328), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(267), - [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_finally] = 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(87)] = { - [sym__block_body_statement] = STATE(4807), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(484), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(270), + [STATE(84)] = { + [sym__block_body_statement_parenthesized] = STATE(4405), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(490), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), + [aux_sym__parenthesized_body_repeat2] = STATE(84), [anon_sym_export] = ACTIONS(463), [anon_sym_alias] = ACTIONS(466), [anon_sym_let] = ACTIONS(469), @@ -50966,73 +50594,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(598), }, - [STATE(88)] = { - [sym__block_body_statement_parenthesized] = STATE(4472), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(480), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [STATE(85)] = { + [sym__block_body_statement] = STATE(4869), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(85), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(601), [anon_sym_alias] = ACTIONS(604), [anon_sym_let] = ACTIONS(607), @@ -51091,73 +50719,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(736), }, - [STATE(89)] = { - [sym__block_body_statement_parenthesized] = STATE(4077), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [STATE(86)] = { + [sym__block_body_statement] = STATE(4236), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(86), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(283), + [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_finally] = 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(87)] = { + [sym__block_body_statement] = STATE(4228), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(87), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(283), + [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_finally] = 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(88)] = { + [sym__block_body_statement_parenthesized] = STATE(4040), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(84), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -51216,73 +51094,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(90)] = { - [sym__block_body_statement_parenthesized] = STATE(4175), - [sym__declaration_parenthesized] = STATE(4800), - [sym_decl_alias_parenthesized] = STATE(4859), - [sym_stmt_let_parenthesized] = STATE(4864), - [sym_stmt_mut_parenthesized] = STATE(4864), - [sym_stmt_const_parenthesized] = STATE(4864), - [sym_assignment_parenthesized] = STATE(4864), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), - [sym__statement_parenthesized] = STATE(4800), - [sym_pipeline_parenthesized] = STATE(4864), - [sym_cmd_identifier] = STATE(2907), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4859), - [sym_decl_export] = STATE(4859), - [sym_decl_extern] = STATE(4859), - [sym_decl_module] = STATE(4859), - [sym_decl_use] = STATE(4859), - [sym__ctrl_statement] = STATE(4864), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(446), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [STATE(89)] = { + [sym__block_body_statement_parenthesized] = STATE(4042), + [sym__declaration_parenthesized] = STATE(4878), + [sym_decl_alias_parenthesized] = STATE(4888), + [sym_stmt_let_parenthesized] = STATE(4890), + [sym_stmt_mut_parenthesized] = STATE(4890), + [sym_stmt_const_parenthesized] = STATE(4890), + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym__statement_parenthesized] = STATE(4878), + [sym_pipeline_parenthesized] = STATE(4890), + [sym_cmd_identifier] = STATE(2963), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [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__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [aux_sym__parenthesized_body_repeat2] = STATE(84), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -51341,73 +51219,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(90)] = { + [sym__block_body_statement] = STATE(4228), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(90), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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_finally] = 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(4301), - [sym__declaration] = STATE(4507), - [sym_decl_alias] = STATE(4336), - [sym_stmt_let] = STATE(4338), - [sym_stmt_mut] = STATE(4338), - [sym_stmt_const] = STATE(4338), - [sym_assignment] = STATE(4338), - [sym__mutable_assignment_pattern] = STATE(4342), - [sym__statement] = STATE(4507), - [sym_pipeline] = STATE(4338), - [sym_cmd_identifier] = STATE(2730), - [sym_attribute_list] = STATE(4874), - [sym_attribute] = STATE(4941), - [sym_decl_def] = STATE(4336), - [sym_decl_export] = STATE(4336), - [sym_decl_extern] = STATE(4336), - [sym_decl_module] = STATE(4336), - [sym_decl_use] = STATE(4336), - [sym__ctrl_statement] = STATE(4338), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_for] = STATE(4349), - [sym_ctrl_loop] = STATE(4349), - [sym_ctrl_while] = STATE(4349), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), + [sym__block_body_statement] = STATE(4236), + [sym__declaration] = STATE(4425), + [sym_decl_alias] = STATE(4427), + [sym_stmt_let] = STATE(4428), + [sym_stmt_mut] = STATE(4428), + [sym_stmt_const] = STATE(4428), + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym__statement] = STATE(4425), + [sym_pipeline] = STATE(4428), + [sym_cmd_identifier] = STATE(2819), + [sym_attribute_list] = STATE(4907), + [sym_attribute] = STATE(4998), + [sym_decl_def] = STATE(4427), + [sym_decl_export] = STATE(4427), + [sym_decl_extern] = STATE(4427), + [sym_decl_module] = STATE(4427), + [sym_decl_use] = STATE(4427), + [sym__ctrl_statement] = STATE(4428), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_for] = STATE(4437), + [sym_ctrl_loop] = STATE(4437), + [sym_ctrl_while] = STATE(4437), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), [sym_comment] = STATE(91), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(4058), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(4031), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -51550,9 +51553,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(743), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(743), [aux_sym__immediate_decimal_token5] = ACTIONS(745), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), @@ -51659,9 +51662,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(751), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(751), [aux_sym__immediate_decimal_token5] = ACTIONS(753), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), @@ -51768,9 +51771,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(755), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(755), [aux_sym__immediate_decimal_token5] = ACTIONS(757), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), @@ -51876,9 +51879,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(759), [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), @@ -51902,114 +51905,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(96)] = { [sym_comment] = STATE(96), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_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_token5] = ACTIONS(753), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_COLON2] = ACTIONS(747), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(97)] = { - [sym_comment] = STATE(97), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52057,9 +51952,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), @@ -52094,10 +51989,10 @@ 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_token1] = ACTIONS(763), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [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), @@ -52116,225 +52011,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(98)] = { - [sym_comment] = STATE(98), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(771), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_COLON2] = ACTIONS(767), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(99)] = { - [sym_comment] = STATE(99), - [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] = ACTIONS(773), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(775), - [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(100)] = { - [sym_comment] = STATE(100), - [ts_builtin_sym_end] = ACTIONS(741), + [STATE(97)] = { + [sym_comment] = STATE(97), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52382,6 +52060,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), @@ -52416,10 +52095,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_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(777), - [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), @@ -52440,8 +52119,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(101)] = { - [sym_comment] = STATE(101), + [STATE(98)] = { + [sym_comment] = STATE(98), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52524,10 +52203,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(767), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(781), - [aux_sym__immediate_decimal_token5] = ACTIONS(783), + [aux_sym__immediate_decimal_token5] = ACTIONS(769), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52548,9 +52227,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(102)] = { - [sym_comment] = STATE(102), - [ts_builtin_sym_end] = ACTIONS(749), + [STATE(99)] = { + [sym_comment] = STATE(99), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -52600,6 +52278,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), @@ -52634,7 +52313,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_token5] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(771), + [aux_sym__immediate_decimal_token5] = ACTIONS(773), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -52655,8 +52335,438 @@ 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(100)] = { + [sym_comment] = STATE(100), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(779), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_COLON2] = ACTIONS(775), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(101)] = { + [sym_comment] = STATE(101), + [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(781), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(783), + [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(102)] = { + [sym_comment] = STATE(102), + [anon_sym_in] = ACTIONS(785), + [anon_sym_STAR_STAR] = ACTIONS(787), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(787), + [anon_sym_SLASH_SLASH] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_bit_DASHshl] = ACTIONS(787), + [anon_sym_bit_DASHshr] = ACTIONS(787), + [anon_sym_EQ_TILDE] = ACTIONS(787), + [anon_sym_BANG_TILDE] = ACTIONS(787), + [anon_sym_like] = ACTIONS(787), + [anon_sym_not_DASHlike] = ACTIONS(787), + [anon_sym_bit_DASHand] = ACTIONS(787), + [anon_sym_bit_DASHxor] = ACTIONS(787), + [anon_sym_bit_DASHor] = ACTIONS(787), + [anon_sym_and] = ACTIONS(787), + [anon_sym_xor] = ACTIONS(787), + [anon_sym_or] = ACTIONS(787), + [anon_sym_in2] = ACTIONS(787), + [anon_sym_not_DASHin] = ACTIONS(787), + [anon_sym_has] = ACTIONS(787), + [anon_sym_not_DASHhas] = ACTIONS(787), + [anon_sym_starts_DASHwith] = ACTIONS(787), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(787), + [anon_sym_ends_DASHwith] = ACTIONS(787), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(787), + [anon_sym_EQ_EQ] = ACTIONS(787), + [anon_sym_BANG_EQ] = ACTIONS(787), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(787), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(787), + [aux_sym_cmd_identifier_token6] = ACTIONS(791), + [sym__newline] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_RBRACE] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), + [anon_sym_DOT_DOT_LT2] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(797), + [sym_duration_unit] = ACTIONS(799), + [anon_sym_COLON2] = ACTIONS(785), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(785), + [anon_sym_out_GT_GT] = ACTIONS(785), + [anon_sym_e_GT_GT] = ACTIONS(785), + [anon_sym_o_GT_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(103)] = { + [sym_expr_parenthesized] = STATE(2710), + [sym__spread_parenthesized] = STATE(3196), + [sym_val_range] = STATE(3197), + [sym__val_range] = STATE(4752), + [sym__value] = STATE(3197), + [sym_val_nothing] = STATE(3097), + [sym_val_bool] = STATE(2788), + [sym__spread_variable] = STATE(3198), + [sym_val_variable] = STATE(2714), + [sym_val_cellpath] = STATE(3097), + [sym_val_number] = STATE(3097), + [sym__val_number_decimal] = STATE(2409), + [sym__val_number] = STATE(3098), + [sym_val_duration] = STATE(3097), + [sym_val_filesize] = STATE(3097), + [sym_val_binary] = STATE(3097), + [sym_val_string] = STATE(3097), + [sym__raw_str] = STATE(2476), + [sym__str_double_quotes] = STATE(2476), + [sym__str_single_quotes] = STATE(2476), + [sym__str_back_ticks] = STATE(2476), + [sym_val_interpolated] = STATE(3097), + [sym__inter_single_quotes] = STATE(3135), + [sym__inter_double_quotes] = STATE(3139), + [sym_val_list] = STATE(3097), + [sym__spread_list] = STATE(3196), + [sym_val_record] = STATE(3097), + [sym_val_table] = STATE(3097), + [sym_val_closure] = STATE(3097), + [sym__cmd_arg] = STATE(3199), + [sym_redirection] = STATE(3200), + [sym__flag] = STATE(3201), + [sym_short_flag] = STATE(3203), + [sym_long_flag] = STATE(3203), + [sym_unquoted] = STATE(2835), + [sym__unquoted_with_expr] = STATE(3204), + [sym__unquoted_anonymous_prefix] = STATE(4752), [sym_comment] = STATE(103), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [anon_sym_null] = ACTIONS(803), + [aux_sym_cmd_identifier_token3] = ACTIONS(805), + [aux_sym_cmd_identifier_token4] = ACTIONS(805), + [aux_sym_cmd_identifier_token5] = ACTIONS(805), + [sym__newline] = ACTIONS(807), + [sym__space] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_err_GT_PIPE] = ACTIONS(807), + [anon_sym_out_GT_PIPE] = ACTIONS(807), + [anon_sym_e_GT_PIPE] = ACTIONS(807), + [anon_sym_o_GT_PIPE] = ACTIONS(807), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(807), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(807), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(807), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(817), + [anon_sym_DASH2] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(823), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(825), + [anon_sym_DOT_DOT_EQ] = ACTIONS(827), + [anon_sym_DOT_DOT_LT] = ACTIONS(827), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(829), + [aux_sym__val_number_decimal_token1] = ACTIONS(831), + [aux_sym__val_number_decimal_token2] = ACTIONS(831), + [aux_sym__val_number_decimal_token3] = ACTIONS(833), + [aux_sym__val_number_decimal_token4] = ACTIONS(833), + [aux_sym__val_number_token1] = ACTIONS(835), + [aux_sym__val_number_token2] = ACTIONS(835), + [aux_sym__val_number_token3] = ACTIONS(835), + [anon_sym_0b] = ACTIONS(837), + [anon_sym_0o] = ACTIONS(839), + [anon_sym_0x] = ACTIONS(839), + [sym_val_date] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_SQUOTE] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(851), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(853), + [anon_sym_err_GT] = ACTIONS(855), + [anon_sym_out_GT] = ACTIONS(855), + [anon_sym_e_GT] = ACTIONS(855), + [anon_sym_o_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT] = ACTIONS(855), + [anon_sym_err_GT_GT] = ACTIONS(855), + [anon_sym_out_GT_GT] = ACTIONS(855), + [anon_sym_e_GT_GT] = ACTIONS(855), + [anon_sym_o_GT_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(855), + [aux_sym_unquoted_token1] = ACTIONS(857), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(859), + }, + [STATE(104)] = { + [sym_comment] = STATE(104), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -52704,9 +52814,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), @@ -52741,9 +52851,9 @@ 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_token5] = ACTIONS(761), [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), @@ -52762,329 +52872,329 @@ 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(104)] = { - [sym_expr_parenthesized] = STATE(2714), - [sym__spread_parenthesized] = STATE(3129), - [sym_val_range] = STATE(3130), - [sym__val_range] = STATE(4886), - [sym__value] = STATE(3130), - [sym_val_nothing] = STATE(3228), - [sym_val_bool] = STATE(2841), - [sym__spread_variable] = STATE(3131), - [sym_val_variable] = STATE(2686), - [sym_val_cellpath] = STATE(3228), - [sym_val_number] = STATE(3228), - [sym__val_number_decimal] = STATE(2406), - [sym__val_number] = STATE(3229), - [sym_val_duration] = STATE(3228), - [sym_val_filesize] = STATE(3228), - [sym_val_binary] = STATE(3228), - [sym_val_string] = STATE(3228), - [sym__raw_str] = STATE(2477), - [sym__str_double_quotes] = STATE(2477), - [sym__str_single_quotes] = STATE(2477), - [sym__str_back_ticks] = STATE(2477), - [sym_val_interpolated] = STATE(3228), - [sym__inter_single_quotes] = STATE(3047), - [sym__inter_double_quotes] = STATE(3048), - [sym_val_list] = STATE(3228), - [sym__spread_list] = STATE(3129), - [sym_val_record] = STATE(3228), - [sym_val_table] = STATE(3228), - [sym_val_closure] = STATE(3228), - [sym__cmd_arg] = STATE(3132), - [sym_redirection] = STATE(3133), - [sym__flag] = STATE(3134), - [sym_short_flag] = STATE(3135), - [sym_long_flag] = STATE(3135), - [sym_unquoted] = STATE(2742), - [sym__unquoted_with_expr] = STATE(3136), - [sym__unquoted_anonymous_prefix] = STATE(4886), - [sym_comment] = STATE(104), - [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(105)] = { + [sym_expr_parenthesized] = STATE(2710), + [sym__spread_parenthesized] = STATE(3196), + [sym_val_range] = STATE(3197), + [sym__val_range] = STATE(4752), + [sym__value] = STATE(3197), + [sym_val_nothing] = STATE(3097), + [sym_val_bool] = STATE(2788), + [sym__spread_variable] = STATE(3198), + [sym_val_variable] = STATE(2714), + [sym_val_cellpath] = STATE(3097), + [sym_val_number] = STATE(3097), + [sym__val_number_decimal] = STATE(2409), + [sym__val_number] = STATE(3098), + [sym_val_duration] = STATE(3097), + [sym_val_filesize] = STATE(3097), + [sym_val_binary] = STATE(3097), + [sym_val_string] = STATE(3097), + [sym__raw_str] = STATE(2476), + [sym__str_double_quotes] = STATE(2476), + [sym__str_single_quotes] = STATE(2476), + [sym__str_back_ticks] = STATE(2476), + [sym_val_interpolated] = STATE(3097), + [sym__inter_single_quotes] = STATE(3135), + [sym__inter_double_quotes] = STATE(3139), + [sym_val_list] = STATE(3097), + [sym__spread_list] = STATE(3196), + [sym_val_record] = STATE(3097), + [sym_val_table] = STATE(3097), + [sym_val_closure] = STATE(3097), + [sym__cmd_arg] = STATE(3199), + [sym_redirection] = STATE(3200), + [sym__flag] = STATE(3201), + [sym_short_flag] = STATE(3203), + [sym_long_flag] = STATE(3203), + [sym_unquoted] = STATE(2835), + [sym__unquoted_with_expr] = STATE(3204), + [sym__unquoted_anonymous_prefix] = STATE(4752), [sym_comment] = STATE(105), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(845), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [anon_sym_null] = ACTIONS(803), + [aux_sym_cmd_identifier_token3] = ACTIONS(805), + [aux_sym_cmd_identifier_token4] = ACTIONS(805), + [aux_sym_cmd_identifier_token5] = ACTIONS(805), + [sym__newline] = ACTIONS(861), + [sym__space] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_err_GT_PIPE] = ACTIONS(807), + [anon_sym_out_GT_PIPE] = ACTIONS(807), + [anon_sym_e_GT_PIPE] = ACTIONS(807), + [anon_sym_o_GT_PIPE] = ACTIONS(807), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(807), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(807), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(807), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(817), + [anon_sym_DASH2] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(823), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(825), + [anon_sym_DOT_DOT_EQ] = ACTIONS(827), + [anon_sym_DOT_DOT_LT] = ACTIONS(827), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(829), + [aux_sym__val_number_decimal_token1] = ACTIONS(831), + [aux_sym__val_number_decimal_token2] = ACTIONS(831), + [aux_sym__val_number_decimal_token3] = ACTIONS(833), + [aux_sym__val_number_decimal_token4] = ACTIONS(833), + [aux_sym__val_number_token1] = ACTIONS(835), + [aux_sym__val_number_token2] = ACTIONS(835), + [aux_sym__val_number_token3] = ACTIONS(835), + [anon_sym_0b] = ACTIONS(837), + [anon_sym_0o] = ACTIONS(839), + [anon_sym_0x] = ACTIONS(839), + [sym_val_date] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_SQUOTE] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(851), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(853), + [anon_sym_COLON2] = ACTIONS(864), + [anon_sym_err_GT] = ACTIONS(855), + [anon_sym_out_GT] = ACTIONS(855), + [anon_sym_e_GT] = ACTIONS(855), + [anon_sym_o_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT] = ACTIONS(855), + [anon_sym_err_GT_GT] = ACTIONS(855), + [anon_sym_out_GT_GT] = ACTIONS(855), + [anon_sym_e_GT_GT] = ACTIONS(855), + [anon_sym_o_GT_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(855), + [aux_sym_unquoted_token1] = ACTIONS(857), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(859), }, [STATE(106)] = { [sym_comment] = STATE(106), - [anon_sym_in] = ACTIONS(847), - [anon_sym_STAR_STAR] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(851), - [anon_sym_mod] = ACTIONS(849), - [anon_sym_SLASH_SLASH] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_bit_DASHshl] = ACTIONS(849), - [anon_sym_bit_DASHshr] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_BANG_TILDE] = ACTIONS(849), - [anon_sym_like] = ACTIONS(849), - [anon_sym_not_DASHlike] = ACTIONS(849), - [anon_sym_bit_DASHand] = ACTIONS(849), - [anon_sym_bit_DASHxor] = ACTIONS(849), - [anon_sym_bit_DASHor] = ACTIONS(849), - [anon_sym_and] = ACTIONS(849), - [anon_sym_xor] = ACTIONS(849), - [anon_sym_or] = ACTIONS(849), - [anon_sym_in2] = ACTIONS(849), - [anon_sym_not_DASHin] = ACTIONS(849), - [anon_sym_has] = ACTIONS(849), - [anon_sym_not_DASHhas] = ACTIONS(849), - [anon_sym_starts_DASHwith] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(849), - [anon_sym_ends_DASHwith] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_GT_EQ] = ACTIONS(849), - [aux_sym_cmd_identifier_token6] = ACTIONS(853), - [sym__newline] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_DOT_DOT2] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), - [anon_sym_DOT_DOT_LT2] = ACTIONS(857), - [sym_filesize_unit] = ACTIONS(859), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_COLON2] = ACTIONS(847), - [anon_sym_err_GT] = ACTIONS(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [anon_sym_err_GT_GT] = ACTIONS(847), - [anon_sym_out_GT_GT] = ACTIONS(847), - [anon_sym_e_GT_GT] = ACTIONS(847), - [anon_sym_o_GT_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_COLON2] = ACTIONS(775), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(107)] = { [sym_comment] = STATE(107), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [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(108)] = { + [sym_comment] = STATE(108), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -53132,9 +53242,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), @@ -53169,9 +53279,9 @@ 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), [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), @@ -53190,436 +53300,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(108)] = { - [sym_comment] = STATE(108), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), - [anon_sym_COLON2] = ACTIONS(863), - [anon_sym_err_GT] = ACTIONS(863), - [anon_sym_out_GT] = ACTIONS(863), - [anon_sym_e_GT] = ACTIONS(863), - [anon_sym_o_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT] = ACTIONS(863), - [anon_sym_err_GT_GT] = ACTIONS(863), - [anon_sym_out_GT_GT] = ACTIONS(863), - [anon_sym_e_GT_GT] = ACTIONS(863), - [anon_sym_o_GT_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(109)] = { [sym_comment] = STATE(109), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_COLON2] = ACTIONS(767), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(110)] = { - [sym_comment] = STATE(110), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(867), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(111)] = { - [sym_comment] = STATE(111), - [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] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(871), - [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(112)] = { - [sym_comment] = STATE(112), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -53669,6 +53351,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), @@ -53703,8 +53386,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_token1] = ACTIONS(873), - [aux_sym__immediate_decimal_token5] = ACTIONS(875), + [aux_sym__immediate_decimal_token5] = ACTIONS(769), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -53725,435 +53407,329 @@ 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(113)] = { - [sym_comment] = STATE(113), - [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_token5] = ACTIONS(775), - [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(114)] = { - [sym_expr_parenthesized] = STATE(2714), - [sym__spread_parenthesized] = STATE(3129), - [sym_val_range] = STATE(3130), - [sym__val_range] = STATE(4886), - [sym__value] = STATE(3130), - [sym_val_nothing] = STATE(3228), - [sym_val_bool] = STATE(2841), - [sym__spread_variable] = STATE(3131), - [sym_val_variable] = STATE(2686), - [sym_val_cellpath] = STATE(3228), - [sym_val_number] = STATE(3228), - [sym__val_number_decimal] = STATE(2406), - [sym__val_number] = STATE(3229), - [sym_val_duration] = STATE(3228), - [sym_val_filesize] = STATE(3228), - [sym_val_binary] = STATE(3228), - [sym_val_string] = STATE(3228), - [sym__raw_str] = STATE(2477), - [sym__str_double_quotes] = STATE(2477), - [sym__str_single_quotes] = STATE(2477), - [sym__str_back_ticks] = STATE(2477), - [sym_val_interpolated] = STATE(3228), - [sym__inter_single_quotes] = STATE(3047), - [sym__inter_double_quotes] = STATE(3048), - [sym_val_list] = STATE(3228), - [sym__spread_list] = STATE(3129), - [sym_val_record] = STATE(3228), - [sym_val_table] = STATE(3228), - [sym_val_closure] = STATE(3228), - [sym__cmd_arg] = STATE(3132), - [sym_redirection] = STATE(3133), - [sym__flag] = STATE(3134), - [sym_short_flag] = STATE(3135), - [sym_long_flag] = STATE(3135), - [sym_unquoted] = STATE(2742), - [sym__unquoted_with_expr] = STATE(3136), - [sym__unquoted_anonymous_prefix] = STATE(4886), - [sym_comment] = STATE(114), - [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(877), - [sym__space] = ACTIONS(877), - [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(880), - [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), + [STATE(110)] = { + [sym_comment] = STATE(110), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(870), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), }, - [STATE(115)] = { - [sym_comment] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(882), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [STATE(111)] = { + [sym_comment] = STATE(111), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(872), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(116)] = { - [sym_comment] = STATE(116), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [STATE(112)] = { + [sym_comment] = STATE(112), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(874), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(117)] = { - [sym_comment] = STATE(117), + [STATE(113)] = { + [sym_comment] = STATE(113), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -54203,7 +53779,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), @@ -54236,8 +53811,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(876), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(878), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -54258,8 +53835,9 @@ 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(114)] = { + [sym_comment] = STATE(114), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -54307,7 +53885,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), @@ -54344,6 +53921,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(783), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -54364,220 +53942,539 @@ 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(115)] = { + [sym_comment] = STATE(115), + [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(880), + [aux_sym__immediate_decimal_token5] = ACTIONS(882), + [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(116)] = { + [sym_comment] = STATE(116), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [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(117)] = { + [sym_comment] = STATE(117), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_in] = ACTIONS(785), + [anon_sym_STAR_STAR] = ACTIONS(886), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_STAR] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_mod] = ACTIONS(886), + [anon_sym_SLASH_SLASH] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(888), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_bit_DASHshl] = ACTIONS(886), + [anon_sym_bit_DASHshr] = ACTIONS(886), + [anon_sym_EQ_TILDE] = ACTIONS(886), + [anon_sym_BANG_TILDE] = ACTIONS(886), + [anon_sym_like] = ACTIONS(886), + [anon_sym_not_DASHlike] = ACTIONS(886), + [anon_sym_bit_DASHand] = ACTIONS(886), + [anon_sym_bit_DASHxor] = ACTIONS(886), + [anon_sym_bit_DASHor] = ACTIONS(886), + [anon_sym_and] = ACTIONS(886), + [anon_sym_xor] = ACTIONS(886), + [anon_sym_or] = ACTIONS(886), + [anon_sym_in2] = ACTIONS(886), + [anon_sym_not_DASHin] = ACTIONS(886), + [anon_sym_has] = ACTIONS(886), + [anon_sym_not_DASHhas] = ACTIONS(886), + [anon_sym_starts_DASHwith] = ACTIONS(886), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(886), + [anon_sym_ends_DASHwith] = ACTIONS(886), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(886), + [anon_sym_EQ_EQ] = ACTIONS(886), + [anon_sym_BANG_EQ] = ACTIONS(886), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(888), + [anon_sym_GT_EQ] = ACTIONS(886), + [aux_sym_cmd_identifier_token6] = ACTIONS(890), + [sym__newline] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(892), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(894), + [anon_sym_DOT_DOT_LT2] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(896), + [sym_duration_unit] = ACTIONS(898), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(785), + [anon_sym_out_GT_GT] = ACTIONS(785), + [anon_sym_e_GT_GT] = ACTIONS(785), + [anon_sym_o_GT_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(118)] = { + [sym_comment] = STATE(118), + [ts_builtin_sym_end] = ACTIONS(868), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [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(119)] = { [sym_comment] = STATE(119), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_DOT_DOT2] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), - [anon_sym_DOT_DOT_LT2] = ACTIONS(857), - [sym_filesize_unit] = ACTIONS(890), - [sym_duration_unit] = ACTIONS(892), - [anon_sym_err_GT] = ACTIONS(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [anon_sym_err_GT_GT] = ACTIONS(847), - [anon_sym_out_GT_GT] = ACTIONS(847), - [anon_sym_e_GT_GT] = ACTIONS(847), - [anon_sym_o_GT_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), + [anon_sym_in] = ACTIONS(785), + [anon_sym_STAR_STAR] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(900), + [anon_sym_SLASH_SLASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_bit_DASHshl] = ACTIONS(900), + [anon_sym_bit_DASHshr] = ACTIONS(900), + [anon_sym_EQ_TILDE] = ACTIONS(900), + [anon_sym_BANG_TILDE] = ACTIONS(900), + [anon_sym_like] = ACTIONS(900), + [anon_sym_not_DASHlike] = ACTIONS(900), + [anon_sym_bit_DASHand] = ACTIONS(900), + [anon_sym_bit_DASHxor] = ACTIONS(900), + [anon_sym_bit_DASHor] = ACTIONS(900), + [anon_sym_and] = ACTIONS(900), + [anon_sym_xor] = ACTIONS(900), + [anon_sym_or] = ACTIONS(900), + [anon_sym_in2] = ACTIONS(900), + [anon_sym_not_DASHin] = ACTIONS(900), + [anon_sym_has] = ACTIONS(900), + [anon_sym_not_DASHhas] = ACTIONS(900), + [anon_sym_starts_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), + [anon_sym_ends_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(900), + [anon_sym_BANG_EQ] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(900), + [aux_sym_cmd_identifier_token6] = ACTIONS(904), + [sym__newline] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_RBRACE] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), + [anon_sym_DOT_DOT_LT2] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(906), + [sym_duration_unit] = ACTIONS(908), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(785), + [anon_sym_out_GT_GT] = ACTIONS(785), + [anon_sym_e_GT_GT] = ACTIONS(785), + [anon_sym_o_GT_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), [anon_sym_POUND] = ACTIONS(103), }, [STATE(120)] = { [sym_comment] = STATE(120), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), - [anon_sym_err_GT] = ACTIONS(863), - [anon_sym_out_GT] = ACTIONS(863), - [anon_sym_e_GT] = ACTIONS(863), - [anon_sym_o_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT] = ACTIONS(863), - [anon_sym_err_GT_GT] = ACTIONS(863), - [anon_sym_out_GT_GT] = ACTIONS(863), - [anon_sym_e_GT_GT] = ACTIONS(863), - [anon_sym_o_GT_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(121)] = { - [sym_comment] = STATE(121), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -54615,6 +54512,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), @@ -54626,6 +54524,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), @@ -54658,10 +54557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(894), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(896), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54682,110 +54579,216 @@ 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(121)] = { + [sym_expr_parenthesized] = STATE(2911), + [sym__spread_parenthesized] = STATE(3404), + [sym_val_range] = STATE(3405), + [sym__val_range] = STATE(4906), + [sym__value] = STATE(3405), + [sym_val_nothing] = STATE(3356), + [sym_val_bool] = STATE(3000), + [sym__spread_variable] = STATE(3407), + [sym_val_variable] = STATE(2731), + [sym_val_cellpath] = STATE(3356), + [sym_val_number] = STATE(3356), + [sym__val_number_decimal] = STATE(2449), + [sym__val_number] = STATE(3368), + [sym_val_duration] = STATE(3356), + [sym_val_filesize] = STATE(3356), + [sym_val_binary] = STATE(3356), + [sym_val_string] = STATE(3356), + [sym__raw_str] = STATE(2564), + [sym__str_double_quotes] = STATE(2564), + [sym__str_single_quotes] = STATE(2564), + [sym__str_back_ticks] = STATE(2564), + [sym_val_interpolated] = STATE(3356), + [sym__inter_single_quotes] = STATE(3366), + [sym__inter_double_quotes] = STATE(3367), + [sym_val_list] = STATE(3356), + [sym__spread_list] = STATE(3404), + [sym_val_record] = STATE(3356), + [sym_val_table] = STATE(3356), + [sym_val_closure] = STATE(3356), + [sym__cmd_arg] = STATE(3408), + [sym_redirection] = STATE(3409), + [sym__flag] = STATE(3411), + [sym_short_flag] = STATE(3412), + [sym_long_flag] = STATE(3412), + [sym_unquoted] = STATE(3040), + [sym__unquoted_with_expr] = STATE(3261), + [sym__unquoted_anonymous_prefix] = STATE(4906), + [sym_comment] = STATE(121), + [ts_builtin_sym_end] = ACTIONS(809), + [anon_sym_true] = ACTIONS(910), + [anon_sym_false] = ACTIONS(910), + [anon_sym_null] = ACTIONS(912), + [aux_sym_cmd_identifier_token3] = ACTIONS(914), + [aux_sym_cmd_identifier_token4] = ACTIONS(914), + [aux_sym_cmd_identifier_token5] = ACTIONS(914), + [sym__newline] = ACTIONS(807), + [sym__space] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_err_GT_PIPE] = ACTIONS(807), + [anon_sym_out_GT_PIPE] = ACTIONS(807), + [anon_sym_e_GT_PIPE] = ACTIONS(807), + [anon_sym_o_GT_PIPE] = ACTIONS(807), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(807), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(807), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(807), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_DASH2] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(932), + [anon_sym_DOT_DOT_LT] = ACTIONS(932), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(934), + [aux_sym__val_number_decimal_token1] = ACTIONS(936), + [aux_sym__val_number_decimal_token2] = ACTIONS(936), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_decimal_token4] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(944), + [anon_sym_0x] = ACTIONS(944), + [sym_val_date] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_BQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(960), + [anon_sym_out_GT] = ACTIONS(960), + [anon_sym_e_GT] = ACTIONS(960), + [anon_sym_o_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT] = ACTIONS(960), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(964), + }, [STATE(122)] = { [sym_comment] = STATE(122), - [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_token1] = ACTIONS(898), - [aux_sym__immediate_decimal_token5] = ACTIONS(900), - [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(785), + [anon_sym_STAR_STAR] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(900), + [anon_sym_SLASH_SLASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_bit_DASHshl] = ACTIONS(900), + [anon_sym_bit_DASHshr] = ACTIONS(900), + [anon_sym_EQ_TILDE] = ACTIONS(900), + [anon_sym_BANG_TILDE] = ACTIONS(900), + [anon_sym_like] = ACTIONS(900), + [anon_sym_not_DASHlike] = ACTIONS(900), + [anon_sym_bit_DASHand] = ACTIONS(900), + [anon_sym_bit_DASHxor] = ACTIONS(900), + [anon_sym_bit_DASHor] = ACTIONS(900), + [anon_sym_and] = ACTIONS(900), + [anon_sym_xor] = ACTIONS(900), + [anon_sym_or] = ACTIONS(900), + [anon_sym_in2] = ACTIONS(900), + [anon_sym_not_DASHin] = ACTIONS(900), + [anon_sym_has] = ACTIONS(900), + [anon_sym_not_DASHhas] = ACTIONS(900), + [anon_sym_starts_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), + [anon_sym_ends_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(900), + [anon_sym_BANG_EQ] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(900), + [aux_sym_cmd_identifier_token6] = ACTIONS(904), + [sym__newline] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), + [anon_sym_DOT_DOT_LT2] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(966), + [sym_duration_unit] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(785), + [anon_sym_out_GT_GT] = ACTIONS(785), + [anon_sym_e_GT_GT] = ACTIONS(785), + [anon_sym_o_GT_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), [anon_sym_POUND] = ACTIONS(103), }, [STATE(123)] = { @@ -54837,6 +54840,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), @@ -54873,7 +54877,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_token5] = ACTIONS(871), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54896,643 +54899,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(124)] = { [sym_comment] = STATE(124), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(125)] = { [sym_comment] = STATE(125), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_DOT_DOT2] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), - [anon_sym_DOT_DOT_LT2] = ACTIONS(857), - [sym_filesize_unit] = ACTIONS(902), - [sym_duration_unit] = ACTIONS(904), - [anon_sym_err_GT] = ACTIONS(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [anon_sym_err_GT_GT] = ACTIONS(847), - [anon_sym_out_GT_GT] = ACTIONS(847), - [anon_sym_e_GT_GT] = ACTIONS(847), - [anon_sym_o_GT_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [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(126)] = { [sym_comment] = STATE(126), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(906), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(127)] = { - [sym_expr_parenthesized] = STATE(2890), - [sym__spread_parenthesized] = STATE(3326), - [sym_val_range] = STATE(3285), - [sym__val_range] = STATE(4701), - [sym__value] = STATE(3285), - [sym_val_nothing] = STATE(3270), - [sym_val_bool] = STATE(3015), - [sym__spread_variable] = STATE(3358), - [sym_val_variable] = STATE(2780), - [sym_val_cellpath] = STATE(3270), - [sym_val_number] = STATE(3270), - [sym__val_number_decimal] = STATE(2431), - [sym__val_number] = STATE(3271), - [sym_val_duration] = STATE(3270), - [sym_val_filesize] = STATE(3270), - [sym_val_binary] = STATE(3270), - [sym_val_string] = STATE(3270), - [sym__raw_str] = STATE(2547), - [sym__str_double_quotes] = STATE(2547), - [sym__str_single_quotes] = STATE(2547), - [sym__str_back_ticks] = STATE(2547), - [sym_val_interpolated] = STATE(3270), - [sym__inter_single_quotes] = STATE(3334), - [sym__inter_double_quotes] = STATE(3335), - [sym_val_list] = STATE(3270), - [sym__spread_list] = STATE(3326), - [sym_val_record] = STATE(3270), - [sym_val_table] = STATE(3270), - [sym_val_closure] = STATE(3270), - [sym__cmd_arg] = STATE(3359), - [sym_redirection] = STATE(3370), - [sym__flag] = STATE(3385), - [sym_short_flag] = STATE(3394), - [sym_long_flag] = STATE(3394), - [sym_unquoted] = STATE(3019), - [sym__unquoted_with_expr] = STATE(3325), - [sym__unquoted_anonymous_prefix] = STATE(4701), [sym_comment] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [anon_sym_null] = ACTIONS(910), - [aux_sym_cmd_identifier_token3] = ACTIONS(912), - [aux_sym_cmd_identifier_token4] = ACTIONS(912), - [aux_sym_cmd_identifier_token5] = ACTIONS(912), - [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(914), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_DASH2] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(930), - [anon_sym_DOT_DOT_LT] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(932), - [aux_sym__val_number_decimal_token1] = ACTIONS(934), - [aux_sym__val_number_decimal_token2] = ACTIONS(934), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_decimal_token4] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(940), - [anon_sym_0o] = ACTIONS(942), - [anon_sym_0x] = ACTIONS(942), - [sym_val_date] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_BQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(956), - [anon_sym_err_GT] = ACTIONS(958), - [anon_sym_out_GT] = ACTIONS(958), - [anon_sym_e_GT] = ACTIONS(958), - [anon_sym_o_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT] = ACTIONS(958), - [anon_sym_err_GT_GT] = ACTIONS(958), - [anon_sym_out_GT_GT] = ACTIONS(958), - [anon_sym_e_GT_GT] = ACTIONS(958), - [anon_sym_o_GT_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), - [aux_sym_unquoted_token1] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(962), - }, - [STATE(128)] = { - [sym_comment] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(129)] = { - [sym_comment] = STATE(129), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_RPAREN] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), - [anon_sym_err_GT] = ACTIONS(863), - [anon_sym_out_GT] = ACTIONS(863), - [anon_sym_e_GT] = ACTIONS(863), - [anon_sym_o_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT] = ACTIONS(863), - [anon_sym_err_GT_GT] = ACTIONS(863), - [anon_sym_out_GT_GT] = ACTIONS(863), - [anon_sym_e_GT_GT] = ACTIONS(863), - [anon_sym_o_GT_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(130)] = { - [sym_comment] = STATE(130), - [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -55570,7 +55254,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), @@ -55614,8 +55297,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(970), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(972), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -55636,326 +55321,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(131)] = { - [sym_expr_parenthesized] = STATE(2714), - [sym__spread_parenthesized] = STATE(3129), - [sym_val_range] = STATE(3130), - [sym__val_range] = STATE(4886), - [sym__value] = STATE(3130), - [sym_val_nothing] = STATE(3228), - [sym_val_bool] = STATE(2841), - [sym__spread_variable] = STATE(3131), - [sym_val_variable] = STATE(2686), - [sym_val_cellpath] = STATE(3228), - [sym_val_number] = STATE(3228), - [sym__val_number_decimal] = STATE(2406), - [sym__val_number] = STATE(3229), - [sym_val_duration] = STATE(3228), - [sym_val_filesize] = STATE(3228), - [sym_val_binary] = STATE(3228), - [sym_val_string] = STATE(3228), - [sym__raw_str] = STATE(2477), - [sym__str_double_quotes] = STATE(2477), - [sym__str_single_quotes] = STATE(2477), - [sym__str_back_ticks] = STATE(2477), - [sym_val_interpolated] = STATE(3228), - [sym__inter_single_quotes] = STATE(3047), - [sym__inter_double_quotes] = STATE(3048), - [sym_val_list] = STATE(3228), - [sym__spread_list] = STATE(3129), - [sym_val_record] = STATE(3228), - [sym_val_table] = STATE(3228), - [sym_val_closure] = STATE(3228), - [sym__cmd_arg] = STATE(3252), - [sym_redirection] = STATE(3133), - [sym__flag] = STATE(3134), - [sym_short_flag] = STATE(3135), - [sym_long_flag] = STATE(3135), - [sym_unquoted] = STATE(2742), - [sym__unquoted_with_expr] = STATE(3136), - [sym__unquoted_anonymous_prefix] = STATE(4886), - [sym_comment] = STATE(131), - [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(964), - [sym__space] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(964), - [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(132)] = { - [sym_comment] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [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(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [anon_sym_err_GT_GT] = ACTIONS(847), - [anon_sym_out_GT_GT] = ACTIONS(847), - [anon_sym_e_GT_GT] = ACTIONS(847), - [anon_sym_o_GT_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(133)] = { - [sym_comment] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(865), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), - [anon_sym_err_GT] = ACTIONS(863), - [anon_sym_out_GT] = ACTIONS(863), - [anon_sym_e_GT] = ACTIONS(863), - [anon_sym_o_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT] = ACTIONS(863), - [anon_sym_err_GT_GT] = ACTIONS(863), - [anon_sym_out_GT_GT] = ACTIONS(863), - [anon_sym_e_GT_GT] = ACTIONS(863), - [anon_sym_o_GT_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), + [STATE(128)] = { + [sym_comment] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(134)] = { - [sym_comment] = STATE(134), + [STATE(129)] = { + [sym_comment] = STATE(129), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -56038,7 +55511,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_token5] = ACTIONS(896), + [aux_sym__immediate_decimal_token1] = ACTIONS(974), + [aux_sym__immediate_decimal_token5] = ACTIONS(976), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -56059,218 +55533,220 @@ 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), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(984), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [STATE(130)] = { + [sym_comment] = STATE(130), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(978), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(136)] = { - [sym_comment] = STATE(136), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_DOT_DOT2] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), - [anon_sym_DOT_DOT_LT2] = ACTIONS(857), - [sym_filesize_unit] = ACTIONS(986), - [sym_duration_unit] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [anon_sym_err_GT_GT] = ACTIONS(847), - [anon_sym_out_GT_GT] = ACTIONS(847), - [anon_sym_e_GT_GT] = ACTIONS(847), - [anon_sym_o_GT_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), + [STATE(131)] = { + [sym_comment] = STATE(131), + [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_POUND] = ACTIONS(103), }, - [STATE(137)] = { - [sym_comment] = STATE(137), + [STATE(132)] = { + [sym_comment] = STATE(132), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -56354,6 +55830,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(878), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -56374,431 +55851,539 @@ 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(138)] = { - [sym_comment] = STATE(138), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [STATE(133)] = { + [sym_expr_parenthesized] = STATE(2710), + [sym__spread_parenthesized] = STATE(3196), + [sym_val_range] = STATE(3197), + [sym__val_range] = STATE(4752), + [sym__value] = STATE(3197), + [sym_val_nothing] = STATE(3097), + [sym_val_bool] = STATE(2788), + [sym__spread_variable] = STATE(3198), + [sym_val_variable] = STATE(2714), + [sym_val_cellpath] = STATE(3097), + [sym_val_number] = STATE(3097), + [sym__val_number_decimal] = STATE(2409), + [sym__val_number] = STATE(3098), + [sym_val_duration] = STATE(3097), + [sym_val_filesize] = STATE(3097), + [sym_val_binary] = STATE(3097), + [sym_val_string] = STATE(3097), + [sym__raw_str] = STATE(2476), + [sym__str_double_quotes] = STATE(2476), + [sym__str_single_quotes] = STATE(2476), + [sym__str_back_ticks] = STATE(2476), + [sym_val_interpolated] = STATE(3097), + [sym__inter_single_quotes] = STATE(3135), + [sym__inter_double_quotes] = STATE(3139), + [sym_val_list] = STATE(3097), + [sym__spread_list] = STATE(3196), + [sym_val_record] = STATE(3097), + [sym_val_table] = STATE(3097), + [sym_val_closure] = STATE(3097), + [sym__cmd_arg] = STATE(3271), + [sym_redirection] = STATE(3200), + [sym__flag] = STATE(3201), + [sym_short_flag] = STATE(3203), + [sym_long_flag] = STATE(3203), + [sym_unquoted] = STATE(2835), + [sym__unquoted_with_expr] = STATE(3204), + [sym__unquoted_anonymous_prefix] = STATE(4752), + [sym_comment] = STATE(133), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [anon_sym_null] = ACTIONS(803), + [aux_sym_cmd_identifier_token3] = ACTIONS(805), + [aux_sym_cmd_identifier_token4] = ACTIONS(805), + [aux_sym_cmd_identifier_token5] = ACTIONS(805), + [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(811), + [anon_sym_LPAREN] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(817), + [anon_sym_DASH2] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_DOT_DOT] = ACTIONS(823), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(825), + [anon_sym_DOT_DOT_EQ] = ACTIONS(827), + [anon_sym_DOT_DOT_LT] = ACTIONS(827), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(829), + [aux_sym__val_number_decimal_token1] = ACTIONS(831), + [aux_sym__val_number_decimal_token2] = ACTIONS(831), + [aux_sym__val_number_decimal_token3] = ACTIONS(833), + [aux_sym__val_number_decimal_token4] = ACTIONS(833), + [aux_sym__val_number_token1] = ACTIONS(835), + [aux_sym__val_number_token2] = ACTIONS(835), + [aux_sym__val_number_token3] = ACTIONS(835), + [anon_sym_0b] = ACTIONS(837), + [anon_sym_0o] = ACTIONS(839), + [anon_sym_0x] = ACTIONS(839), + [sym_val_date] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_SQUOTE] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(851), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(853), + [anon_sym_err_GT] = ACTIONS(855), + [anon_sym_out_GT] = ACTIONS(855), + [anon_sym_e_GT] = ACTIONS(855), + [anon_sym_o_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT] = ACTIONS(855), + [anon_sym_err_GT_GT] = ACTIONS(855), + [anon_sym_out_GT_GT] = ACTIONS(855), + [anon_sym_e_GT_GT] = ACTIONS(855), + [anon_sym_o_GT_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(855), + [aux_sym_unquoted_token1] = ACTIONS(857), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(859), }, - [STATE(139)] = { - [sym_comment] = STATE(139), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), - [anon_sym_err_GT] = ACTIONS(863), - [anon_sym_out_GT] = ACTIONS(863), - [anon_sym_e_GT] = ACTIONS(863), - [anon_sym_o_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT] = ACTIONS(863), - [anon_sym_err_GT_GT] = ACTIONS(863), - [anon_sym_out_GT_GT] = ACTIONS(863), - [anon_sym_e_GT_GT] = ACTIONS(863), - [anon_sym_o_GT_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), + [STATE(134)] = { + [sym_comment] = STATE(134), + [anon_sym_in] = ACTIONS(785), + [anon_sym_STAR_STAR] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(900), + [anon_sym_SLASH_SLASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_bit_DASHshl] = ACTIONS(900), + [anon_sym_bit_DASHshr] = ACTIONS(900), + [anon_sym_EQ_TILDE] = ACTIONS(900), + [anon_sym_BANG_TILDE] = ACTIONS(900), + [anon_sym_like] = ACTIONS(900), + [anon_sym_not_DASHlike] = ACTIONS(900), + [anon_sym_bit_DASHand] = ACTIONS(900), + [anon_sym_bit_DASHxor] = ACTIONS(900), + [anon_sym_bit_DASHor] = ACTIONS(900), + [anon_sym_and] = ACTIONS(900), + [anon_sym_xor] = ACTIONS(900), + [anon_sym_or] = ACTIONS(900), + [anon_sym_in2] = ACTIONS(900), + [anon_sym_not_DASHin] = ACTIONS(900), + [anon_sym_has] = ACTIONS(900), + [anon_sym_not_DASHhas] = ACTIONS(900), + [anon_sym_starts_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), + [anon_sym_ends_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(900), + [anon_sym_BANG_EQ] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(900), + [aux_sym_cmd_identifier_token6] = ACTIONS(904), + [sym__newline] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), + [anon_sym_DOT_DOT_LT2] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(984), + [sym_duration_unit] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(785), + [anon_sym_out_GT_GT] = ACTIONS(785), + [anon_sym_e_GT_GT] = ACTIONS(785), + [anon_sym_o_GT_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(140)] = { - [sym_comment] = STATE(140), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(767), - [anon_sym_out_GT_GT] = ACTIONS(767), - [anon_sym_e_GT_GT] = ACTIONS(767), - [anon_sym_o_GT_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [STATE(135)] = { + [sym_comment] = STATE(135), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(141)] = { - [sym_comment] = STATE(141), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), - [anon_sym_err_GT] = ACTIONS(863), - [anon_sym_out_GT] = ACTIONS(863), - [anon_sym_e_GT] = ACTIONS(863), - [anon_sym_o_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT] = ACTIONS(863), - [anon_sym_err_GT_GT] = ACTIONS(863), - [anon_sym_out_GT_GT] = ACTIONS(863), - [anon_sym_e_GT_GT] = ACTIONS(863), - [anon_sym_o_GT_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), + [STATE(136)] = { + [sym_comment] = STATE(136), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [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(142)] = { - [sym_comment] = STATE(142), - [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), + [STATE(137)] = { + [sym_comment] = STATE(137), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(988), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(138)] = { + [sym_comment] = STATE(138), + [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), @@ -56876,6 +56461,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(972), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -56896,158 +56482,161 @@ 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(143)] = { - [sym_comment] = STATE(143), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_DOT_DOT2] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), - [anon_sym_DOT_DOT_LT2] = ACTIONS(857), - [sym_filesize_unit] = ACTIONS(990), - [sym_duration_unit] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [anon_sym_err_GT_GT] = ACTIONS(847), - [anon_sym_out_GT_GT] = ACTIONS(847), - [anon_sym_e_GT_GT] = ACTIONS(847), - [anon_sym_o_GT_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), + [STATE(139)] = { + [sym_comment] = STATE(139), + [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_POUND] = ACTIONS(103), }, - [STATE(144)] = { - [sym_pipeline] = STATE(4373), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(144), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym_pipe_element_repeat2] = STATE(270), + [STATE(140)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(3457), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3172), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(140), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57059,9 +56648,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(996), + [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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -57074,18 +56663,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(998), + [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), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [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), @@ -57098,58 +56687,60 @@ 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(145)] = { - [sym_pipeline_parenthesized] = STATE(4683), - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(145), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [STATE(141)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(4797), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(141), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57176,7 +56767,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57204,54 +56795,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(146)] = { - [sym_pipeline] = STATE(4373), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(142)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(4799), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(142), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = 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(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(143)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(3324), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(3031), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(143), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57278,7 +56975,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57306,54 +57003,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(147)] = { - [sym_pipeline] = STATE(4577), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(147), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(144)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4482), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(144), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57380,7 +57079,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57408,54 +57107,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(148)] = { - [sym_pipeline] = STATE(4433), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(148), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(145)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4483), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(145), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57482,7 +57183,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57510,54 +57211,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(149)] = { - [sym_pipeline] = STATE(4450), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(149), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(146)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4574), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(146), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57584,7 +57287,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57612,54 +57315,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(150)] = { - [sym_pipeline_parenthesized] = STATE(4726), - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(150), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), + [STATE(147)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4587), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(147), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57671,9 +57376,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(1006), + [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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -57686,18 +57391,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(998), + [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), + [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(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [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), @@ -57710,58 +57415,164 @@ 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(151)] = { - [sym_pipeline] = STATE(4757), - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3125), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), + [STATE(148)] = { + [sym_comment] = STATE(148), + [anon_sym_in] = ACTIONS(785), + [anon_sym_STAR_STAR] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(900), + [anon_sym_SLASH_SLASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_bit_DASHshl] = ACTIONS(900), + [anon_sym_bit_DASHshr] = ACTIONS(900), + [anon_sym_EQ_TILDE] = ACTIONS(900), + [anon_sym_BANG_TILDE] = ACTIONS(900), + [anon_sym_like] = ACTIONS(900), + [anon_sym_not_DASHlike] = ACTIONS(900), + [anon_sym_bit_DASHand] = ACTIONS(900), + [anon_sym_bit_DASHxor] = ACTIONS(900), + [anon_sym_bit_DASHor] = ACTIONS(900), + [anon_sym_and] = ACTIONS(900), + [anon_sym_xor] = ACTIONS(900), + [anon_sym_or] = ACTIONS(900), + [anon_sym_in2] = ACTIONS(900), + [anon_sym_not_DASHin] = ACTIONS(900), + [anon_sym_has] = ACTIONS(900), + [anon_sym_not_DASHhas] = ACTIONS(900), + [anon_sym_starts_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), + [anon_sym_ends_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(900), + [anon_sym_BANG_EQ] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(900), + [aux_sym_cmd_identifier_token6] = ACTIONS(904), + [sym__newline] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), + [anon_sym_DOT_DOT_LT2] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(992), + [sym_duration_unit] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(785), + [anon_sym_out_GT_GT] = ACTIONS(785), + [anon_sym_e_GT_GT] = ACTIONS(785), + [anon_sym_o_GT_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(785), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(149)] = { + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym_pipeline] = STATE(3497), + [sym_cmd_identifier] = STATE(2943), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3240), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), - [sym_comment] = STATE(151), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(284), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(149), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(996), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -57788,7 +57599,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(1010), + [anon_sym_DOLLAR] = ACTIONS(63), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57816,54 +57627,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, + [STATE(150)] = { + [sym_comment] = STATE(150), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(151)] = { + [sym_comment] = STATE(151), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(152)] = { - [sym_pipeline_parenthesized] = STATE(4882), - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(152), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [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(153)] = { + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym_pipeline] = STATE(4690), + [sym_cmd_identifier] = STATE(2943), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3092), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(153), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(996), + [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_finally] = 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(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(154)] = { + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym_pipeline] = STATE(4705), + [sym_cmd_identifier] = STATE(2943), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3092), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(154), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(996), + [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_finally] = 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(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(155)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(3457), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3172), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(495), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(148), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(155), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57875,7 +58208,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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -57890,7 +58223,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57918,54 +58251,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(153)] = { - [sym_pipeline_parenthesized] = STATE(4894), - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(153), + [STATE(156)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(4677), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(490), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(156), [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57992,7 +58327,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58000,10 +58335,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(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58020,54 +58355,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(154)] = { - [sym_pipeline_parenthesized] = STATE(4683), - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(154), + [STATE(157)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(4797), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(490), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(157), [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58094,7 +58431,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58102,10 +58439,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(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58122,54 +58459,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(155)] = { - [sym_pipeline_parenthesized] = STATE(4698), - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(155), + [STATE(158)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(4799), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(490), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(158), [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58196,7 +58535,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58204,10 +58543,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(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58224,54 +58563,56 @@ 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(4639), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(267), + [STATE(159)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(3324), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(3031), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58283,7 +58624,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(459), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58298,7 +58639,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58326,54 +58667,56 @@ 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(4373), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(267), + [STATE(160)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4482), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(160), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58385,7 +58728,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(459), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58400,7 +58743,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58428,54 +58771,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(158)] = { - [sym_pipeline] = STATE(4577), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(267), + [STATE(161)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4483), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(161), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58487,7 +58832,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(459), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58502,7 +58847,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58530,54 +58875,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(159)] = { - [sym_pipeline] = STATE(4433), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(159), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(267), + [STATE(162)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4574), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58589,7 +58936,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(459), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58604,7 +58951,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58632,54 +58979,56 @@ 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(4450), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(267), + [STATE(163)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4587), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58691,7 +59040,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(459), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58706,7 +59055,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58734,258 +59083,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(161)] = { - [sym_pipeline] = STATE(4680), - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3125), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), - [sym_comment] = STATE(161), - [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(1008), - [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_finally] = 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(1010), - [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(162)] = { - [sym_pipeline] = STATE(4681), - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3125), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), - [sym_comment] = STATE(162), - [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(1008), - [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_finally] = 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(1010), - [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(163)] = { - [sym_pipeline] = STATE(4639), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(176), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(164)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(3457), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3172), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(490), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(164), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58997,9 +59144,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(1006), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -59012,18 +59159,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(998), + [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), - [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(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59036,58 +59183,60 @@ 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(164)] = { - [sym_pipeline_parenthesized] = STATE(4726), - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [STATE(165)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(3324), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(3031), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(526), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(148), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(165), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(290), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59099,9 +59248,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(1014), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -59114,18 +59263,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(998), + [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), + [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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59138,58 +59287,60 @@ 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(4639), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym_pipe_element_repeat2] = STATE(270), + [STATE(166)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4482), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59201,7 +59352,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(996), + [anon_sym_if] = ACTIONS(1016), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59216,7 +59367,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59224,10 +59375,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(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59244,54 +59395,56 @@ 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_parenthesized] = STATE(4698), - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(166), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [STATE(167)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4483), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59303,9 +59456,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(1016), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), @@ -59318,18 +59471,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(998), + [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), + [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(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59342,58 +59495,60 @@ 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(167)] = { - [sym_pipeline] = STATE(4577), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym_pipe_element_repeat2] = STATE(270), + [STATE(168)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4574), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(168), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59405,7 +59560,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(996), + [anon_sym_if] = ACTIONS(1016), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59420,7 +59575,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59428,10 +59583,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(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59448,54 +59603,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(168)] = { - [sym_pipeline] = STATE(4433), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym_pipe_element_repeat2] = STATE(270), + [STATE(169)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(4587), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2996), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59507,7 +59664,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(996), + [anon_sym_if] = ACTIONS(1016), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59522,7 +59679,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59530,10 +59687,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(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59550,54 +59707,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(169)] = { - [sym_pipeline] = STATE(4450), - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2909), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(177), - [aux_sym_pipe_element_repeat2] = STATE(270), + [STATE(170)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_pipeline] = STATE(3324), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(3031), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(170), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59609,7 +59768,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(996), + [anon_sym_if] = ACTIONS(1016), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59624,7 +59783,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59632,10 +59791,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(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59652,54 +59811,56 @@ 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(4775), - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3125), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), + [STATE(171)] = { + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym_pipeline] = STATE(4739), + [sym_cmd_identifier] = STATE(2943), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3092), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), - [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(284), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(171), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(996), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -59726,7 +59887,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(1010), + [anon_sym_DOLLAR] = ACTIONS(63), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59754,54 +59915,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(171)] = { - [sym_pipeline] = STATE(4696), - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3125), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), + [STATE(172)] = { + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym_pipeline] = STATE(4782), + [sym_cmd_identifier] = STATE(2943), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3092), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), - [sym_comment] = STATE(171), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(284), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(996), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -59828,7 +59991,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(1010), + [anon_sym_DOLLAR] = ACTIONS(63), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59856,54 +60019,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(172)] = { - [sym_pipeline_parenthesized] = STATE(4882), - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(172), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [STATE(173)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(4676), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(173), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59930,7 +60095,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59958,54 +60123,56 @@ 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_parenthesized] = STATE(4894), - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3176), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(173), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [STATE(174)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(4677), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(174), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60032,7 +60199,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60060,659 +60227,56 @@ 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_comment] = STATE(174), - [anon_sym_in] = ACTIONS(1012), - [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(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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(175)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_pipeline_parenthesized] = STATE(4676), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3160), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(490), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), [sym_comment] = STATE(175), - [anon_sym_in] = ACTIONS(1020), - [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(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(176)] = { - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2945), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), - [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_finally] = 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(998), - [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(177)] = { - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2945), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym_pipe_element_repeat2] = STATE(270), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), - [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(996), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = 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(998), - [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(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(178)] = { - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(3522), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(143), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym_pipe_element_repeat2] = STATE(277), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [aux_sym_cmd_identifier_token1] = ACTIONS(1031), - [anon_sym_def] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_export_DASHenv] = ACTIONS(1025), - [anon_sym_extern] = ACTIONS(1025), - [anon_sym_module] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1037), - [anon_sym_catch] = ACTIONS(1025), - [anon_sym_finally] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(1022), - [anon_sym_true] = ACTIONS(1043), - [anon_sym_false] = ACTIONS(1043), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1049), - [aux_sym_cmd_identifier_token4] = ACTIONS(1049), - [aux_sym_cmd_identifier_token5] = ACTIONS(1049), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_DASH2] = ACTIONS(1061), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_where] = ACTIONS(1070), - [aux_sym_expr_unary_token1] = ACTIONS(1073), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1079), - [aux_sym__val_number_decimal_token2] = ACTIONS(1082), - [aux_sym__val_number_decimal_token3] = ACTIONS(1085), - [aux_sym__val_number_decimal_token4] = ACTIONS(1085), - [aux_sym__val_number_token1] = ACTIONS(1088), - [aux_sym__val_number_token2] = ACTIONS(1088), - [aux_sym__val_number_token3] = ACTIONS(1088), - [anon_sym_0b] = ACTIONS(1091), - [anon_sym_0o] = ACTIONS(1094), - [anon_sym_0x] = ACTIONS(1094), - [sym_val_date] = ACTIONS(1097), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1112), - [anon_sym_CARET] = ACTIONS(1115), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1118), - }, - [STATE(179)] = { - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3510), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(143), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(285), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_alias] = ACTIONS(1124), - [anon_sym_let] = ACTIONS(1127), - [anon_sym_mut] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [aux_sym_cmd_identifier_token1] = ACTIONS(1130), - [anon_sym_def] = ACTIONS(1124), - [anon_sym_use] = ACTIONS(1124), - [anon_sym_export_DASHenv] = ACTIONS(1124), - [anon_sym_extern] = ACTIONS(1124), - [anon_sym_module] = ACTIONS(1124), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_loop] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(1133), - [anon_sym_else] = ACTIONS(1124), - [anon_sym_try] = ACTIONS(1136), - [anon_sym_catch] = ACTIONS(1124), - [anon_sym_finally] = ACTIONS(1124), - [anon_sym_match] = ACTIONS(1139), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [anon_sym_null] = ACTIONS(1145), - [aux_sym_cmd_identifier_token3] = ACTIONS(1148), - [aux_sym_cmd_identifier_token4] = ACTIONS(1148), - [aux_sym_cmd_identifier_token5] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1157), - [anon_sym_DASH2] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_DOT_DOT] = ACTIONS(1166), - [anon_sym_where] = ACTIONS(1169), - [aux_sym_expr_unary_token1] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1175), - [anon_sym_DOT_DOT_LT] = ACTIONS(1175), - [aux_sym__val_number_decimal_token1] = ACTIONS(1178), - [aux_sym__val_number_decimal_token2] = ACTIONS(1181), - [aux_sym__val_number_decimal_token3] = ACTIONS(1184), - [aux_sym__val_number_decimal_token4] = ACTIONS(1184), - [aux_sym__val_number_token1] = ACTIONS(1187), - [aux_sym__val_number_token2] = ACTIONS(1187), - [aux_sym__val_number_token3] = ACTIONS(1187), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_BQUOTE] = ACTIONS(1205), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1208), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), - [anon_sym_CARET] = ACTIONS(1214), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1217), - }, - [STATE(180)] = { - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3196), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60739,108 +60303,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(998), - [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(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(181)] = { - [sym_cmd_identifier] = STATE(2907), - [sym__ctrl_expression_parenthesized] = STATE(3454), - [sym_ctrl_if_parenthesized] = STATE(3458), - [sym_ctrl_match] = STATE(3458), - [sym_ctrl_try_parenthesized] = STATE(3458), - [sym__stmt_let_shortcut] = STATE(3471), - [sym_pipe_element_parenthesized] = STATE(3196), - [sym_where_command_parenthesized] = STATE(3454), - [sym__expression_parenthesized] = STATE(2289), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3494), - [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = 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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60848,10 +60311,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(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60868,255 +60331,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(182)] = { - [sym_comment] = STATE(182), - [anon_sym_in] = ACTIONS(1012), - [anon_sym_STAR_STAR] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1220), - [anon_sym_SLASH_SLASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_bit_DASHshl] = ACTIONS(1220), - [anon_sym_bit_DASHshr] = ACTIONS(1220), - [anon_sym_EQ_TILDE] = ACTIONS(1220), - [anon_sym_BANG_TILDE] = ACTIONS(1220), - [anon_sym_like] = ACTIONS(1220), - [anon_sym_not_DASHlike] = ACTIONS(1220), - [anon_sym_bit_DASHand] = ACTIONS(1220), - [anon_sym_bit_DASHxor] = ACTIONS(1220), - [anon_sym_bit_DASHor] = ACTIONS(1220), - [anon_sym_and] = ACTIONS(1220), - [anon_sym_xor] = ACTIONS(1220), - [anon_sym_or] = ACTIONS(1220), - [anon_sym_in2] = ACTIONS(1220), - [anon_sym_not_DASHin] = ACTIONS(1220), - [anon_sym_has] = ACTIONS(1220), - [anon_sym_not_DASHhas] = ACTIONS(1220), - [anon_sym_starts_DASHwith] = ACTIONS(1220), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1220), - [anon_sym_ends_DASHwith] = ACTIONS(1220), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1220), - [anon_sym_EQ_EQ] = ACTIONS(1220), - [anon_sym_BANG_EQ] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1220), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1220), - [aux_sym_cmd_identifier_token6] = ACTIONS(1224), - [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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(183)] = { - [sym_comment] = STATE(183), - [anon_sym_in] = ACTIONS(1020), - [anon_sym_STAR_STAR] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1220), - [anon_sym_SLASH_SLASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_bit_DASHshl] = ACTIONS(1220), - [anon_sym_bit_DASHshr] = ACTIONS(1220), - [anon_sym_EQ_TILDE] = ACTIONS(1220), - [anon_sym_BANG_TILDE] = ACTIONS(1220), - [anon_sym_like] = ACTIONS(1220), - [anon_sym_not_DASHlike] = ACTIONS(1220), - [anon_sym_bit_DASHand] = ACTIONS(1220), - [anon_sym_bit_DASHxor] = ACTIONS(1220), - [anon_sym_bit_DASHor] = ACTIONS(1220), - [anon_sym_and] = ACTIONS(1220), - [anon_sym_xor] = ACTIONS(1220), - [anon_sym_or] = ACTIONS(1220), - [anon_sym_in2] = ACTIONS(1220), - [anon_sym_not_DASHin] = ACTIONS(1220), - [anon_sym_has] = ACTIONS(1220), - [anon_sym_not_DASHhas] = ACTIONS(1220), - [anon_sym_starts_DASHwith] = ACTIONS(1220), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1220), - [anon_sym_ends_DASHwith] = ACTIONS(1220), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1220), - [anon_sym_EQ_EQ] = ACTIONS(1220), - [anon_sym_BANG_EQ] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1220), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1220), - [aux_sym_cmd_identifier_token6] = ACTIONS(1224), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(184)] = { - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3512), - [sym_ctrl_if] = STATE(3519), - [sym_ctrl_match] = STATE(3519), - [sym_ctrl_try] = STATE(3519), - [sym__stmt_let_shortcut] = STATE(3521), - [sym_pipe_element] = STATE(3122), - [sym_where_command] = STATE(3512), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), + [STATE(176)] = { + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym_cmd_identifier] = STATE(2943), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3059), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3512), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym_pipe_element_repeat2] = STATE(284), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(996), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -61143,7 +60406,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(1010), + [anon_sym_DOLLAR] = ACTIONS(63), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -61171,255 +60434,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(185)] = { - [sym_comment] = STATE(185), - [anon_sym_in] = ACTIONS(1012), - [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(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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(186)] = { - [sym_comment] = STATE(186), - [anon_sym_in] = ACTIONS(1020), - [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(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(187)] = { - [sym_cmd_identifier] = STATE(2730), - [sym__ctrl_expression] = STATE(3368), - [sym_ctrl_if] = STATE(3392), - [sym_ctrl_match] = STATE(3392), - [sym_ctrl_try] = STATE(3392), - [sym__stmt_let_shortcut] = STATE(3393), - [sym_pipe_element] = STATE(2945), - [sym_where_command] = STATE(3368), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3368), - [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(178), - [aux_sym_pipe_element_repeat2] = STATE(267), + [STATE(177)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2926), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(177), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(994), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -61431,7 +60494,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(459), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -61446,7 +60509,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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -61474,836 +60537,55 @@ 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_comment] = STATE(188), - [ts_builtin_sym_end] = ACTIONS(1226), - [anon_sym_in] = ACTIONS(1012), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_SLASH] = ACTIONS(1230), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_BANG_TILDE] = ACTIONS(1228), - [anon_sym_like] = ACTIONS(1228), - [anon_sym_not_DASHlike] = ACTIONS(1228), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_in2] = ACTIONS(1228), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_has] = ACTIONS(1228), - [anon_sym_not_DASHhas] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1228), - [aux_sym_cmd_identifier_token6] = ACTIONS(1232), - [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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(189)] = { - [sym_comment] = STATE(189), - [ts_builtin_sym_end] = ACTIONS(1234), - [anon_sym_in] = ACTIONS(1020), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_SLASH] = ACTIONS(1230), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_BANG_TILDE] = ACTIONS(1228), - [anon_sym_like] = ACTIONS(1228), - [anon_sym_not_DASHlike] = ACTIONS(1228), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_in2] = ACTIONS(1228), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_has] = ACTIONS(1228), - [anon_sym_not_DASHhas] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1228), - [aux_sym_cmd_identifier_token6] = ACTIONS(1232), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(190)] = { - [sym_comment] = STATE(190), - [anon_sym_in] = ACTIONS(1012), - [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(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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(191)] = { - [sym_comment] = STATE(191), - [anon_sym_in] = ACTIONS(1020), - [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(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(192)] = { - [sym_comment] = STATE(192), - [anon_sym_in] = ACTIONS(1020), - [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(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(193)] = { - [sym_comment] = STATE(193), - [anon_sym_in] = ACTIONS(1012), - [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(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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(194)] = { - [sym_expr_parenthesized] = STATE(4130), - [sym__spread_parenthesized] = STATE(3129), - [sym_val_range] = STATE(3130), - [sym__val_range] = STATE(4886), - [sym__value] = STATE(3130), - [sym_val_nothing] = STATE(3228), - [sym_val_bool] = STATE(4233), - [sym__spread_variable] = STATE(3131), - [sym_val_variable] = STATE(4083), - [sym_val_cellpath] = STATE(3228), - [sym_val_number] = STATE(3228), - [sym__val_number_decimal] = STATE(3596), - [sym__val_number] = STATE(3229), - [sym_val_duration] = STATE(3228), - [sym_val_filesize] = STATE(3228), - [sym_val_binary] = STATE(3228), - [sym_val_string] = STATE(3228), - [sym__raw_str] = STATE(2477), - [sym__str_double_quotes] = STATE(2477), - [sym__str_single_quotes] = STATE(2477), - [sym__str_back_ticks] = STATE(2477), - [sym_val_interpolated] = STATE(3228), - [sym__inter_single_quotes] = STATE(3047), - [sym__inter_double_quotes] = STATE(3048), - [sym_val_list] = STATE(3228), - [sym__spread_list] = STATE(3129), - [sym_val_record] = STATE(3228), - [sym_val_table] = STATE(3228), - [sym_val_closure] = STATE(3228), - [sym__cmd_arg] = STATE(3132), - [sym_redirection] = STATE(3133), - [sym__flag] = STATE(3134), - [sym_short_flag] = STATE(3135), - [sym_long_flag] = STATE(3135), - [sym_unquoted] = STATE(2742), - [sym__unquoted_with_expr] = STATE(3136), - [sym__unquoted_anonymous_prefix] = STATE(4886), - [sym_comment] = STATE(194), - [anon_sym_true] = ACTIONS(1236), - [anon_sym_false] = ACTIONS(1236), - [anon_sym_null] = ACTIONS(1238), - [aux_sym_cmd_identifier_token3] = ACTIONS(1240), - [aux_sym_cmd_identifier_token4] = ACTIONS(1240), - [aux_sym_cmd_identifier_token5] = ACTIONS(1240), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1248), - [anon_sym_DOT_DOT_LT] = ACTIONS(1248), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(1250), - [aux_sym__val_number_decimal_token2] = ACTIONS(1250), - [aux_sym__val_number_decimal_token3] = ACTIONS(1252), - [aux_sym__val_number_decimal_token4] = ACTIONS(1252), - [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(1254), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, - [STATE(195)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(207), - [sym_ctrl_if_parenthesized] = STATE(3479), - [sym_block] = STATE(3485), - [sym__expression_parenthesized] = STATE(3485), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3485), - [sym_comment] = STATE(195), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(196)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(203), - [sym_ctrl_if_parenthesized] = STATE(3473), - [sym_block] = STATE(3474), - [sym__expression_parenthesized] = STATE(3474), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3474), - [sym_comment] = STATE(196), + [STATE(178)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2926), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -62315,33 +60597,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [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), @@ -62358,140 +60640,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(197)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3477), - [sym_comment] = STATE(197), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(179)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(3475), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(526), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(148), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(179), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(290), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1027), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_finally] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1036), + [anon_sym_in] = ACTIONS(1018), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1042), + [aux_sym_cmd_identifier_token3] = ACTIONS(1045), + [aux_sym_cmd_identifier_token4] = ACTIONS(1045), + [aux_sym_cmd_identifier_token5] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_DASH2] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_where] = ACTIONS(1066), + [aux_sym_expr_unary_token1] = ACTIONS(1069), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1075), + [aux_sym__val_number_decimal_token2] = ACTIONS(1078), + [aux_sym__val_number_decimal_token3] = ACTIONS(1081), + [aux_sym__val_number_decimal_token4] = ACTIONS(1081), + [aux_sym__val_number_token1] = ACTIONS(1084), + [aux_sym__val_number_token2] = ACTIONS(1084), + [aux_sym__val_number_token3] = ACTIONS(1084), + [anon_sym_0b] = ACTIONS(1087), + [anon_sym_0o] = ACTIONS(1090), + [anon_sym_0x] = ACTIONS(1090), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1099), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1108), + [anon_sym_CARET] = ACTIONS(1111), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1114), }, - [STATE(198)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(205), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3477), - [sym_comment] = STATE(198), + [STATE(180)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3193), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(490), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(180), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -62503,33 +60803,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62542,144 +60842,162 @@ 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(199)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3479), - [sym_block] = STATE(3485), - [sym__expression_parenthesized] = STATE(3485), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3485), - [sym_comment] = STATE(199), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(181)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3459), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(495), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(148), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(181), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(1117), + [anon_sym_alias] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(1123), + [anon_sym_mut] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [aux_sym_cmd_identifier_token1] = ACTIONS(1126), + [anon_sym_def] = ACTIONS(1120), + [anon_sym_use] = ACTIONS(1120), + [anon_sym_export_DASHenv] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym_module] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_loop] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1120), + [anon_sym_try] = ACTIONS(1132), + [anon_sym_catch] = ACTIONS(1120), + [anon_sym_finally] = ACTIONS(1120), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1117), + [anon_sym_true] = ACTIONS(1138), + [anon_sym_false] = ACTIONS(1138), + [anon_sym_null] = ACTIONS(1141), + [aux_sym_cmd_identifier_token3] = ACTIONS(1144), + [aux_sym_cmd_identifier_token4] = ACTIONS(1144), + [aux_sym_cmd_identifier_token5] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_DOLLAR] = ACTIONS(1153), + [anon_sym_DASH2] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1162), + [anon_sym_where] = ACTIONS(1165), + [aux_sym_expr_unary_token1] = ACTIONS(1168), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1174), + [aux_sym__val_number_decimal_token2] = ACTIONS(1177), + [aux_sym__val_number_decimal_token3] = ACTIONS(1180), + [aux_sym__val_number_decimal_token4] = ACTIONS(1180), + [aux_sym__val_number_token1] = ACTIONS(1183), + [aux_sym__val_number_token2] = ACTIONS(1183), + [aux_sym__val_number_token3] = ACTIONS(1183), + [anon_sym_0b] = ACTIONS(1186), + [anon_sym_0o] = ACTIONS(1189), + [anon_sym_0x] = ACTIONS(1189), + [sym_val_date] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1213), }, - [STATE(200)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(217), - [sym_ctrl_if_parenthesized] = STATE(3396), - [sym_block] = STATE(3575), - [sym__expression_parenthesized] = STATE(3575), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3575), - [sym_comment] = STATE(200), + [STATE(182)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(2926), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -62691,33 +61009,33 @@ 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(1016), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62734,46 +61052,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(201)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3488), - [sym_block] = STATE(3489), - [sym__expression_parenthesized] = STATE(3489), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3489), - [sym_comment] = STATE(201), + [STATE(183)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(3001), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(526), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(148), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(183), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(290), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -62785,33 +61112,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(1014), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62828,46 +61155,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(202)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(209), - [sym_ctrl_if_parenthesized] = STATE(3488), - [sym_block] = STATE(3489), - [sym__expression_parenthesized] = STATE(3489), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3489), - [sym_comment] = STATE(202), + [STATE(184)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3193), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(184), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -62879,33 +61215,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [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), @@ -62918,50 +61254,59 @@ 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(203)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3571), - [sym_block] = STATE(3496), - [sym__expression_parenthesized] = STATE(3496), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3496), - [sym_comment] = STATE(203), + [STATE(185)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(3001), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -62973,33 +61318,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [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), @@ -63016,46 +61361,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(204)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(210), - [sym_ctrl_if_parenthesized] = STATE(3571), - [sym_block] = STATE(3496), - [sym__expression_parenthesized] = STATE(3496), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3496), - [sym_comment] = STATE(204), + [STATE(186)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3194), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(457), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(186), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -63067,33 +61421,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [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), @@ -63106,144 +61460,162 @@ 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(205)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3399), - [sym_comment] = STATE(205), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [STATE(187)] = { + [sym_assignment] = STATE(3537), + [sym__mutable_assignment_pattern] = STATE(3436), + [sym_cmd_identifier] = STATE(2943), + [sym__ctrl_expression] = STATE(3537), + [sym_ctrl_if] = STATE(3470), + [sym_ctrl_match] = STATE(3470), + [sym_ctrl_try] = STATE(3470), + [sym__stmt_let_shortcut] = STATE(3502), + [sym_pipe_element] = STATE(3250), + [sym_where_command] = STATE(3537), + [sym__expression] = STATE(2303), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(458), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3537), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(996), + [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_finally] = 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(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(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(206)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(212), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3399), - [sym_comment] = STATE(206), + [STATE(188)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3194), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(495), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(148), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(188), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -63255,33 +61627,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63294,50 +61666,59 @@ 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(207)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3400), - [sym_block] = STATE(3401), - [sym__expression_parenthesized] = STATE(3401), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3401), - [sym_comment] = STATE(207), + [STATE(189)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(3001), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(455), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -63349,33 +61730,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [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), @@ -63392,46 +61773,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(208)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(213), - [sym_ctrl_if_parenthesized] = STATE(3400), - [sym_block] = STATE(3401), - [sym__expression_parenthesized] = STATE(3401), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3401), - [sym_comment] = STATE(208), + [STATE(190)] = { + [sym_assignment_parenthesized] = STATE(3541), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3450), + [sym_cmd_identifier] = STATE(2963), + [sym__ctrl_expression_parenthesized] = STATE(3541), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_ctrl_match] = STATE(3454), + [sym_ctrl_try_parenthesized] = STATE(3454), + [sym__stmt_let_shortcut] = STATE(3455), + [sym_pipe_element_parenthesized] = STATE(3194), + [sym_where_command_parenthesized] = STATE(3541), + [sym__expression_parenthesized] = STATE(2305), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(490), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3430), + [sym_comment] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -63443,33 +61833,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63482,50 +61872,59 @@ 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(209)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3402), - [sym_block] = STATE(3403), - [sym__expression_parenthesized] = STATE(3403), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3403), - [sym_comment] = STATE(209), + [STATE(191)] = { + [sym_assignment] = STATE(3278), + [sym__mutable_assignment_pattern] = STATE(3279), + [sym_cmd_identifier] = STATE(2819), + [sym__ctrl_expression] = STATE(3278), + [sym_ctrl_if] = STATE(3280), + [sym_ctrl_match] = STATE(3280), + [sym_ctrl_try] = STATE(3280), + [sym__stmt_let_shortcut] = STATE(3281), + [sym_pipe_element] = STATE(3001), + [sym_where_command] = STATE(3278), + [sym__expression] = STATE(2298), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3278), + [sym_comment] = STATE(191), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(990), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -63537,33 +61936,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(1016), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [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(998), + [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63580,178 +61979,1386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(210)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3423), - [sym_block] = STATE(3424), - [sym__expression_parenthesized] = STATE(3424), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3424), - [sym_comment] = STATE(210), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(192)] = { + [sym_comment] = STATE(192), + [ts_builtin_sym_end] = ACTIONS(1216), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_SLASH_SLASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_bit_DASHshl] = ACTIONS(1220), + [anon_sym_bit_DASHshr] = ACTIONS(1220), + [anon_sym_EQ_TILDE] = ACTIONS(1220), + [anon_sym_BANG_TILDE] = ACTIONS(1220), + [anon_sym_like] = ACTIONS(1220), + [anon_sym_not_DASHlike] = ACTIONS(1220), + [anon_sym_bit_DASHand] = ACTIONS(1220), + [anon_sym_bit_DASHxor] = ACTIONS(1220), + [anon_sym_bit_DASHor] = ACTIONS(1220), + [anon_sym_and] = ACTIONS(1220), + [anon_sym_xor] = ACTIONS(1220), + [anon_sym_or] = ACTIONS(1220), + [anon_sym_in2] = ACTIONS(1220), + [anon_sym_not_DASHin] = ACTIONS(1220), + [anon_sym_has] = ACTIONS(1220), + [anon_sym_not_DASHhas] = ACTIONS(1220), + [anon_sym_starts_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1220), + [anon_sym_ends_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1220), + [anon_sym_EQ_EQ] = ACTIONS(1220), + [anon_sym_BANG_EQ] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1220), + [aux_sym_cmd_identifier_token6] = ACTIONS(1224), + [sym__newline] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), + [anon_sym_err_GT] = ACTIONS(1218), + [anon_sym_out_GT] = ACTIONS(1218), + [anon_sym_e_GT] = ACTIONS(1218), + [anon_sym_o_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT] = ACTIONS(1218), + [anon_sym_err_GT_GT] = ACTIONS(1218), + [anon_sym_out_GT_GT] = ACTIONS(1218), + [anon_sym_e_GT_GT] = ACTIONS(1218), + [anon_sym_o_GT_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(211)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(214), - [sym_ctrl_if_parenthesized] = STATE(3423), - [sym_block] = STATE(3424), - [sym__expression_parenthesized] = STATE(3424), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3424), - [sym_comment] = STATE(211), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), + [STATE(193)] = { + [sym_comment] = STATE(193), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), + [anon_sym_err_GT] = ACTIONS(1226), + [anon_sym_out_GT] = ACTIONS(1226), + [anon_sym_e_GT] = ACTIONS(1226), + [anon_sym_o_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT] = ACTIONS(1226), + [anon_sym_err_GT_GT] = ACTIONS(1226), + [anon_sym_out_GT_GT] = ACTIONS(1226), + [anon_sym_e_GT_GT] = ACTIONS(1226), + [anon_sym_o_GT_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(194)] = { + [sym_comment] = STATE(194), + [ts_builtin_sym_end] = ACTIONS(1234), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_STAR_STAR] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_SLASH_SLASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_bit_DASHshl] = ACTIONS(1220), + [anon_sym_bit_DASHshr] = ACTIONS(1220), + [anon_sym_EQ_TILDE] = ACTIONS(1220), + [anon_sym_BANG_TILDE] = ACTIONS(1220), + [anon_sym_like] = ACTIONS(1220), + [anon_sym_not_DASHlike] = ACTIONS(1220), + [anon_sym_bit_DASHand] = ACTIONS(1220), + [anon_sym_bit_DASHxor] = ACTIONS(1220), + [anon_sym_bit_DASHor] = ACTIONS(1220), + [anon_sym_and] = ACTIONS(1220), + [anon_sym_xor] = ACTIONS(1220), + [anon_sym_or] = ACTIONS(1220), + [anon_sym_in2] = ACTIONS(1220), + [anon_sym_not_DASHin] = ACTIONS(1220), + [anon_sym_has] = ACTIONS(1220), + [anon_sym_not_DASHhas] = ACTIONS(1220), + [anon_sym_starts_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1220), + [anon_sym_ends_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1220), + [anon_sym_EQ_EQ] = ACTIONS(1220), + [anon_sym_BANG_EQ] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1220), + [aux_sym_cmd_identifier_token6] = ACTIONS(1224), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), + [anon_sym_err_GT] = ACTIONS(1226), + [anon_sym_out_GT] = ACTIONS(1226), + [anon_sym_e_GT] = ACTIONS(1226), + [anon_sym_o_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT] = ACTIONS(1226), + [anon_sym_err_GT_GT] = ACTIONS(1226), + [anon_sym_out_GT_GT] = ACTIONS(1226), + [anon_sym_e_GT_GT] = ACTIONS(1226), + [anon_sym_o_GT_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(195)] = { + [sym_comment] = STATE(195), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), + [anon_sym_err_GT] = ACTIONS(1218), + [anon_sym_out_GT] = ACTIONS(1218), + [anon_sym_e_GT] = ACTIONS(1218), + [anon_sym_o_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT] = ACTIONS(1218), + [anon_sym_err_GT_GT] = ACTIONS(1218), + [anon_sym_out_GT_GT] = ACTIONS(1218), + [anon_sym_e_GT_GT] = ACTIONS(1218), + [anon_sym_o_GT_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(196)] = { + [sym_comment] = STATE(196), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), + [anon_sym_err_GT] = ACTIONS(1226), + [anon_sym_out_GT] = ACTIONS(1226), + [anon_sym_e_GT] = ACTIONS(1226), + [anon_sym_o_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT] = ACTIONS(1226), + [anon_sym_err_GT_GT] = ACTIONS(1226), + [anon_sym_out_GT_GT] = ACTIONS(1226), + [anon_sym_e_GT_GT] = ACTIONS(1226), + [anon_sym_o_GT_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(197)] = { + [sym_comment] = STATE(197), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), + [anon_sym_err_GT] = ACTIONS(1218), + [anon_sym_out_GT] = ACTIONS(1218), + [anon_sym_e_GT] = ACTIONS(1218), + [anon_sym_o_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT] = ACTIONS(1218), + [anon_sym_err_GT_GT] = ACTIONS(1218), + [anon_sym_out_GT_GT] = ACTIONS(1218), + [anon_sym_e_GT_GT] = ACTIONS(1218), + [anon_sym_o_GT_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(198)] = { + [sym_comment] = STATE(198), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), + [anon_sym_err_GT] = ACTIONS(1218), + [anon_sym_out_GT] = ACTIONS(1218), + [anon_sym_e_GT] = ACTIONS(1218), + [anon_sym_o_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT] = ACTIONS(1218), + [anon_sym_err_GT_GT] = ACTIONS(1218), + [anon_sym_out_GT_GT] = ACTIONS(1218), + [anon_sym_e_GT_GT] = ACTIONS(1218), + [anon_sym_o_GT_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(199)] = { + [sym_comment] = STATE(199), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_SLASH_SLASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_bit_DASHshl] = ACTIONS(1236), + [anon_sym_bit_DASHshr] = ACTIONS(1236), + [anon_sym_EQ_TILDE] = ACTIONS(1236), + [anon_sym_BANG_TILDE] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), + [anon_sym_not_DASHlike] = ACTIONS(1236), + [anon_sym_bit_DASHand] = ACTIONS(1236), + [anon_sym_bit_DASHxor] = ACTIONS(1236), + [anon_sym_bit_DASHor] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_xor] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_in2] = ACTIONS(1236), + [anon_sym_not_DASHin] = ACTIONS(1236), + [anon_sym_has] = ACTIONS(1236), + [anon_sym_not_DASHhas] = ACTIONS(1236), + [anon_sym_starts_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1236), + [anon_sym_ends_DASHwith] = ACTIONS(1236), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [aux_sym_cmd_identifier_token6] = ACTIONS(1240), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), + [anon_sym_err_GT] = ACTIONS(1226), + [anon_sym_out_GT] = ACTIONS(1226), + [anon_sym_e_GT] = ACTIONS(1226), + [anon_sym_o_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT] = ACTIONS(1226), + [anon_sym_err_GT_GT] = ACTIONS(1226), + [anon_sym_out_GT_GT] = ACTIONS(1226), + [anon_sym_e_GT_GT] = ACTIONS(1226), + [anon_sym_o_GT_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(200)] = { + [sym_comment] = STATE(200), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), + [anon_sym_err_GT] = ACTIONS(1226), + [anon_sym_out_GT] = ACTIONS(1226), + [anon_sym_e_GT] = ACTIONS(1226), + [anon_sym_o_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT] = ACTIONS(1226), + [anon_sym_err_GT_GT] = ACTIONS(1226), + [anon_sym_out_GT_GT] = ACTIONS(1226), + [anon_sym_e_GT_GT] = ACTIONS(1226), + [anon_sym_o_GT_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(201)] = { + [sym_comment] = STATE(201), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), + [anon_sym_err_GT] = ACTIONS(1218), + [anon_sym_out_GT] = ACTIONS(1218), + [anon_sym_e_GT] = ACTIONS(1218), + [anon_sym_o_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT] = ACTIONS(1218), + [anon_sym_err_GT_GT] = ACTIONS(1218), + [anon_sym_out_GT_GT] = ACTIONS(1218), + [anon_sym_e_GT_GT] = ACTIONS(1218), + [anon_sym_o_GT_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(202)] = { + [sym_comment] = STATE(202), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), + [anon_sym_err_GT] = ACTIONS(1218), + [anon_sym_out_GT] = ACTIONS(1218), + [anon_sym_e_GT] = ACTIONS(1218), + [anon_sym_o_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT] = ACTIONS(1218), + [anon_sym_err_GT_GT] = ACTIONS(1218), + [anon_sym_out_GT_GT] = ACTIONS(1218), + [anon_sym_e_GT_GT] = ACTIONS(1218), + [anon_sym_o_GT_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(203)] = { + [sym_comment] = STATE(203), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), + [anon_sym_err_GT] = ACTIONS(1226), + [anon_sym_out_GT] = ACTIONS(1226), + [anon_sym_e_GT] = ACTIONS(1226), + [anon_sym_o_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT] = ACTIONS(1226), + [anon_sym_err_GT_GT] = ACTIONS(1226), + [anon_sym_out_GT_GT] = ACTIONS(1226), + [anon_sym_e_GT_GT] = ACTIONS(1226), + [anon_sym_o_GT_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(204)] = { + [sym_expr_parenthesized] = STATE(4048), + [sym__spread_parenthesized] = STATE(3196), + [sym_val_range] = STATE(3197), + [sym__val_range] = STATE(4752), + [sym__value] = STATE(3197), + [sym_val_nothing] = STATE(3097), + [sym_val_bool] = STATE(4321), + [sym__spread_variable] = STATE(3198), + [sym_val_variable] = STATE(3993), + [sym_val_cellpath] = STATE(3097), + [sym_val_number] = STATE(3097), + [sym__val_number_decimal] = STATE(3641), + [sym__val_number] = STATE(3098), + [sym_val_duration] = STATE(3097), + [sym_val_filesize] = STATE(3097), + [sym_val_binary] = STATE(3097), + [sym_val_string] = STATE(3097), + [sym__raw_str] = STATE(2476), + [sym__str_double_quotes] = STATE(2476), + [sym__str_single_quotes] = STATE(2476), + [sym__str_back_ticks] = STATE(2476), + [sym_val_interpolated] = STATE(3097), + [sym__inter_single_quotes] = STATE(3135), + [sym__inter_double_quotes] = STATE(3139), + [sym_val_list] = STATE(3097), + [sym__spread_list] = STATE(3196), + [sym_val_record] = STATE(3097), + [sym_val_table] = STATE(3097), + [sym_val_closure] = STATE(3097), + [sym__cmd_arg] = STATE(3199), + [sym_redirection] = STATE(3200), + [sym__flag] = STATE(3201), + [sym_short_flag] = STATE(3203), + [sym_long_flag] = STATE(3203), + [sym_unquoted] = STATE(2835), + [sym__unquoted_with_expr] = STATE(3204), + [sym__unquoted_anonymous_prefix] = STATE(4752), + [sym_comment] = STATE(204), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [anon_sym_null] = ACTIONS(1244), + [aux_sym_cmd_identifier_token3] = ACTIONS(1246), + [aux_sym_cmd_identifier_token4] = ACTIONS(1246), + [aux_sym_cmd_identifier_token5] = ACTIONS(1246), + [sym__newline] = ACTIONS(807), + [sym__space] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_DASH2] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(825), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1254), + [anon_sym_DOT_DOT_LT] = ACTIONS(1254), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(829), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1256), + [aux_sym__val_number_decimal_token3] = ACTIONS(1258), + [aux_sym__val_number_decimal_token4] = ACTIONS(1258), + [aux_sym__val_number_token1] = ACTIONS(835), + [aux_sym__val_number_token2] = ACTIONS(835), + [aux_sym__val_number_token3] = ACTIONS(835), + [anon_sym_0b] = ACTIONS(837), + [anon_sym_0o] = ACTIONS(839), + [anon_sym_0x] = ACTIONS(839), + [sym_val_date] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_SQUOTE] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(851), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(853), + [anon_sym_err_GT] = ACTIONS(855), + [anon_sym_out_GT] = ACTIONS(855), + [anon_sym_e_GT] = ACTIONS(855), + [anon_sym_o_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT] = ACTIONS(855), + [anon_sym_err_GT_GT] = ACTIONS(855), + [anon_sym_out_GT_GT] = ACTIONS(855), + [anon_sym_e_GT_GT] = ACTIONS(855), + [anon_sym_o_GT_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(855), + [aux_sym_unquoted_token1] = ACTIONS(857), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(859), + }, + [STATE(205)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(216), + [sym_ctrl_if_parenthesized] = STATE(3464), + [sym_block] = STATE(3465), + [sym__expression_parenthesized] = STATE(3465), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3465), + [sym_comment] = STATE(205), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63768,43 +63375,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(212)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3425), - [sym_block] = STATE(3426), - [sym__expression_parenthesized] = STATE(3426), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3426), - [sym_comment] = STATE(212), + [STATE(206)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3582), + [sym_block] = STATE(3583), + [sym__expression_parenthesized] = STATE(3583), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3583), + [sym_comment] = STATE(206), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -63819,33 +63426,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63862,43 +63469,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(213)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3427), - [sym_block] = STATE(3428), - [sym__expression_parenthesized] = STATE(3428), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3428), - [sym_comment] = STATE(213), + [STATE(207)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(212), + [sym_ctrl_if_parenthesized] = STATE(3582), + [sym_block] = STATE(3583), + [sym__expression_parenthesized] = STATE(3583), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3583), + [sym_comment] = STATE(207), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -63913,33 +63520,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63956,43 +63563,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(214)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3439), - [sym_block] = STATE(3440), - [sym__expression_parenthesized] = STATE(3440), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3440), - [sym_comment] = STATE(214), + [STATE(208)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(214), + [sym_ctrl_if_parenthesized] = STATE(3462), + [sym_block] = STATE(3463), + [sym__expression_parenthesized] = STATE(3463), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3463), + [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64007,33 +63614,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64050,43 +63657,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(215)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3477), - [sym_comment] = STATE(215), + [STATE(209)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3464), + [sym_block] = STATE(3465), + [sym__expression_parenthesized] = STATE(3465), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3465), + [sym_comment] = STATE(209), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64108,18 +63715,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64144,43 +63751,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(216)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(223), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3477), - [sym_comment] = STATE(216), + [STATE(210)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3468), + [sym__expression_parenthesized] = STATE(3468), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3468), + [sym_comment] = STATE(210), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64202,18 +63809,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64238,43 +63845,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(217)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3479), - [sym_block] = STATE(3485), - [sym__expression_parenthesized] = STATE(3485), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3485), - [sym_comment] = STATE(217), + [STATE(211)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(218), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3468), + [sym__expression_parenthesized] = STATE(3468), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3468), + [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64296,18 +63903,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64332,43 +63939,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(218)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(249), - [sym_ctrl_if_parenthesized] = STATE(3479), - [sym_block] = STATE(3485), - [sym__expression_parenthesized] = STATE(3485), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3485), - [sym_comment] = STATE(218), + [STATE(212)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3472), + [sym_block] = STATE(3473), + [sym__expression_parenthesized] = STATE(3473), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3473), + [sym_comment] = STATE(212), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64390,18 +63997,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64426,43 +64033,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(219)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3488), - [sym_block] = STATE(3489), - [sym__expression_parenthesized] = STATE(3489), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3489), - [sym_comment] = STATE(219), + [STATE(213)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(220), + [sym_ctrl_if_parenthesized] = STATE(3472), + [sym_block] = STATE(3473), + [sym__expression_parenthesized] = STATE(3473), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3473), + [sym_comment] = STATE(213), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64484,18 +64091,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64520,43 +64127,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(220)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(251), - [sym_ctrl_if_parenthesized] = STATE(3488), - [sym_block] = STATE(3489), - [sym__expression_parenthesized] = STATE(3489), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3489), - [sym_comment] = STATE(220), + [STATE(214)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3509), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3511), + [sym_comment] = STATE(214), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64578,18 +64185,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64614,43 +64221,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(221)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3571), - [sym_block] = STATE(3496), - [sym__expression_parenthesized] = STATE(3496), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3496), - [sym_comment] = STATE(221), + [STATE(215)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(221), + [sym_ctrl_if_parenthesized] = STATE(3509), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3511), + [sym_comment] = STATE(215), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64672,18 +64279,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64708,43 +64315,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(222)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(252), - [sym_ctrl_if_parenthesized] = STATE(3571), - [sym_block] = STATE(3496), - [sym__expression_parenthesized] = STATE(3496), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3496), - [sym_comment] = STATE(222), + [STATE(216)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3514), + [sym_block] = STATE(3515), + [sym__expression_parenthesized] = STATE(3515), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3515), + [sym_comment] = STATE(216), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64766,18 +64373,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64802,43 +64409,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(223)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3399), - [sym_comment] = STATE(223), + [STATE(217)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(223), + [sym_ctrl_if_parenthesized] = STATE(3514), + [sym_block] = STATE(3515), + [sym__expression_parenthesized] = STATE(3515), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3515), + [sym_comment] = STATE(217), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64860,18 +64467,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64896,43 +64503,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(224)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(254), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3399), - [sym_comment] = STATE(224), + [STATE(218)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3517), + [sym_block] = STATE(3518), + [sym__expression_parenthesized] = STATE(3518), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3518), + [sym_comment] = STATE(218), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -64954,18 +64561,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64990,43 +64597,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(225)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(228), - [sym_ctrl_if_parenthesized] = STATE(3462), - [sym_block] = STATE(3463), - [sym__expression_parenthesized] = STATE(3463), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3463), - [sym_comment] = STATE(225), + [STATE(219)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(224), + [sym_ctrl_if_parenthesized] = STATE(3517), + [sym_block] = STATE(3518), + [sym__expression_parenthesized] = STATE(3518), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3518), + [sym_comment] = STATE(219), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65041,33 +64648,33 @@ 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(1006), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65084,43 +64691,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(226)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(231), - [sym_ctrl_if_parenthesized] = STATE(3572), - [sym_block] = STATE(3573), - [sym__expression_parenthesized] = STATE(3573), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3573), - [sym_comment] = STATE(226), + [STATE(220)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3520), + [sym_block] = STATE(3606), + [sym__expression_parenthesized] = STATE(3606), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3606), + [sym_comment] = STATE(220), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65135,33 +64742,33 @@ 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(1006), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65178,43 +64785,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(227)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(233), - [sym_ctrl_if_parenthesized] = STATE(3396), - [sym_block] = STATE(3575), - [sym__expression_parenthesized] = STATE(3575), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3575), - [sym_comment] = STATE(227), + [STATE(221)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3564), + [sym_block] = STATE(3566), + [sym__expression_parenthesized] = STATE(3566), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3566), + [sym_comment] = STATE(221), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65229,33 +64836,33 @@ 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(1006), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65272,43 +64879,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(228)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3577), - [sym_block] = STATE(3578), - [sym__expression_parenthesized] = STATE(3578), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3578), - [sym_comment] = STATE(228), + [STATE(222)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(225), + [sym_ctrl_if_parenthesized] = STATE(3564), + [sym_block] = STATE(3566), + [sym__expression_parenthesized] = STATE(3566), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3566), + [sym_comment] = STATE(222), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65323,33 +64930,33 @@ 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(1006), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65366,43 +64973,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(229)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(266), - [sym_ctrl_if_parenthesized] = STATE(3577), - [sym_block] = STATE(3578), - [sym__expression_parenthesized] = STATE(3578), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3578), - [sym_comment] = STATE(229), + [STATE(223)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3568), + [sym_block] = STATE(3571), + [sym__expression_parenthesized] = STATE(3571), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3571), + [sym_comment] = STATE(223), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65417,33 +65024,33 @@ 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(1006), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65460,43 +65067,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(230)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(237), - [sym_ctrl_if_parenthesized] = STATE(3473), - [sym_block] = STATE(3474), - [sym__expression_parenthesized] = STATE(3474), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3474), - [sym_comment] = STATE(230), + [STATE(224)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3572), + [sym_block] = STATE(3574), + [sym__expression_parenthesized] = STATE(3574), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3574), + [sym_comment] = STATE(224), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65511,33 +65118,33 @@ 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(1006), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65554,43 +65161,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(231)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3477), - [sym_comment] = STATE(231), + [STATE(225)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3589), + [sym_block] = STATE(3590), + [sym__expression_parenthesized] = STATE(3590), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3590), + [sym_comment] = STATE(225), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65605,33 +65212,33 @@ 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(1006), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65648,43 +65255,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(232)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(239), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3477), - [sym_comment] = STATE(232), + [STATE(226)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(229), + [sym_ctrl_if_parenthesized] = STATE(3439), + [sym_block] = STATE(3443), + [sym__expression_parenthesized] = STATE(3443), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3443), + [sym_comment] = STATE(226), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65699,25 +65306,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65742,43 +65349,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(233)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3479), - [sym_block] = STATE(3485), - [sym__expression_parenthesized] = STATE(3485), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3485), - [sym_comment] = STATE(233), + [STATE(227)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(232), + [sym_ctrl_if_parenthesized] = STATE(3524), + [sym_block] = STATE(3529), + [sym__expression_parenthesized] = STATE(3529), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3529), + [sym_comment] = STATE(227), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65793,25 +65400,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65836,43 +65443,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(234)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(241), - [sym_ctrl_if_parenthesized] = STATE(3479), - [sym_block] = STATE(3485), - [sym__expression_parenthesized] = STATE(3485), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3485), - [sym_comment] = STATE(234), + [STATE(228)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(234), + [sym_ctrl_if_parenthesized] = STATE(3540), + [sym_block] = STATE(3546), + [sym__expression_parenthesized] = STATE(3546), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3546), + [sym_comment] = STATE(228), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65887,25 +65494,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65930,43 +65537,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(235)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3577), - [sym_block] = STATE(3578), - [sym__expression_parenthesized] = STATE(3578), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3578), - [sym_comment] = STATE(235), + [STATE(229)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3582), + [sym_block] = STATE(3583), + [sym__expression_parenthesized] = STATE(3583), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3583), + [sym_comment] = STATE(229), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -65981,33 +65588,33 @@ 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(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66024,43 +65631,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(236)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(243), - [sym_ctrl_if_parenthesized] = STATE(3488), - [sym_block] = STATE(3489), - [sym__expression_parenthesized] = STATE(3489), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3489), - [sym_comment] = STATE(236), + [STATE(230)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(236), + [sym_ctrl_if_parenthesized] = STATE(3582), + [sym_block] = STATE(3583), + [sym__expression_parenthesized] = STATE(3583), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3583), + [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66075,25 +65682,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66118,43 +65725,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(237)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3571), - [sym_block] = STATE(3496), - [sym__expression_parenthesized] = STATE(3496), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3496), - [sym_comment] = STATE(237), + [STATE(231)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(238), + [sym_ctrl_if_parenthesized] = STATE(3462), + [sym_block] = STATE(3463), + [sym__expression_parenthesized] = STATE(3463), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3463), + [sym_comment] = STATE(231), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66169,25 +65776,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66212,43 +65819,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(238)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(244), - [sym_ctrl_if_parenthesized] = STATE(3571), - [sym_block] = STATE(3496), - [sym__expression_parenthesized] = STATE(3496), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3496), - [sym_comment] = STATE(238), + [STATE(232)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3464), + [sym_block] = STATE(3465), + [sym__expression_parenthesized] = STATE(3465), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3465), + [sym_comment] = STATE(232), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66263,25 +65870,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66306,43 +65913,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(239)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3399), - [sym_comment] = STATE(239), + [STATE(233)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(240), + [sym_ctrl_if_parenthesized] = STATE(3464), + [sym_block] = STATE(3465), + [sym__expression_parenthesized] = STATE(3465), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3465), + [sym_comment] = STATE(233), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66357,25 +65964,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66400,43 +66007,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(240)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(246), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3399), - [sym_comment] = STATE(240), + [STATE(234)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3468), + [sym__expression_parenthesized] = STATE(3468), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3468), + [sym_comment] = STATE(234), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66451,25 +66058,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66494,43 +66101,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(241)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3400), - [sym_block] = STATE(3401), - [sym__expression_parenthesized] = STATE(3401), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3401), - [sym_comment] = STATE(241), + [STATE(235)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(242), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3468), + [sym__expression_parenthesized] = STATE(3468), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3468), + [sym_comment] = STATE(235), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66545,25 +66152,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66588,43 +66195,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(242)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(247), - [sym_ctrl_if_parenthesized] = STATE(3400), - [sym_block] = STATE(3401), - [sym__expression_parenthesized] = STATE(3401), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3401), - [sym_comment] = STATE(242), + [STATE(236)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3472), + [sym_block] = STATE(3473), + [sym__expression_parenthesized] = STATE(3473), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3473), + [sym_comment] = STATE(236), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66639,25 +66246,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66682,43 +66289,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(243)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3402), - [sym_block] = STATE(3403), - [sym__expression_parenthesized] = STATE(3403), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3403), - [sym_comment] = STATE(243), + [STATE(237)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(244), + [sym_ctrl_if_parenthesized] = STATE(3472), + [sym_block] = STATE(3473), + [sym__expression_parenthesized] = STATE(3473), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3473), + [sym_comment] = STATE(237), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66733,25 +66340,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66776,43 +66383,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(244)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3423), - [sym_block] = STATE(3424), - [sym__expression_parenthesized] = STATE(3424), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3424), - [sym_comment] = STATE(244), + [STATE(238)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3509), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3511), + [sym_comment] = STATE(238), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66827,25 +66434,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66870,43 +66477,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(245)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(248), - [sym_ctrl_if_parenthesized] = STATE(3423), - [sym_block] = STATE(3424), - [sym__expression_parenthesized] = STATE(3424), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3424), - [sym_comment] = STATE(245), + [STATE(239)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(245), + [sym_ctrl_if_parenthesized] = STATE(3509), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3511), + [sym_comment] = STATE(239), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66921,25 +66528,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66964,43 +66571,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(246)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3425), - [sym_block] = STATE(3426), - [sym__expression_parenthesized] = STATE(3426), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3426), - [sym_comment] = STATE(246), + [STATE(240)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3514), + [sym_block] = STATE(3515), + [sym__expression_parenthesized] = STATE(3515), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3515), + [sym_comment] = STATE(240), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67015,25 +66622,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -67058,43 +66665,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(247)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3427), - [sym_block] = STATE(3428), - [sym__expression_parenthesized] = STATE(3428), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3428), - [sym_comment] = STATE(247), + [STATE(241)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(210), + [sym_ctrl_if_parenthesized] = STATE(3540), + [sym_block] = STATE(3546), + [sym__expression_parenthesized] = STATE(3546), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3546), + [sym_comment] = STATE(241), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67109,33 +66716,33 @@ 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(1006), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67152,43 +66759,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(248)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3439), - [sym_block] = STATE(3440), - [sym__expression_parenthesized] = STATE(3440), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3440), - [sym_comment] = STATE(248), + [STATE(242)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3517), + [sym_block] = STATE(3518), + [sym__expression_parenthesized] = STATE(3518), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3518), + [sym_comment] = STATE(242), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67203,25 +66810,25 @@ 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(1006), + [anon_sym_if] = ACTIONS(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -67246,43 +66853,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(249)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3400), - [sym_block] = STATE(3401), - [sym__expression_parenthesized] = STATE(3401), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3401), - [sym_comment] = STATE(249), + [STATE(243)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(248), + [sym_ctrl_if_parenthesized] = STATE(3517), + [sym_block] = STATE(3518), + [sym__expression_parenthesized] = STATE(3518), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3518), + [sym_comment] = STATE(243), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67297,33 +66904,33 @@ 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(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67340,43 +66947,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(250)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(255), - [sym_ctrl_if_parenthesized] = STATE(3400), - [sym_block] = STATE(3401), - [sym__expression_parenthesized] = STATE(3401), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3401), - [sym_comment] = STATE(250), + [STATE(244)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3520), + [sym_block] = STATE(3606), + [sym__expression_parenthesized] = STATE(3606), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3606), + [sym_comment] = STATE(244), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67391,33 +66998,33 @@ 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(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67434,43 +67041,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(251)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3402), - [sym_block] = STATE(3403), - [sym__expression_parenthesized] = STATE(3403), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3403), - [sym_comment] = STATE(251), + [STATE(245)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3564), + [sym_block] = STATE(3566), + [sym__expression_parenthesized] = STATE(3566), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3566), + [sym_comment] = STATE(245), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67485,33 +67092,33 @@ 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(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67528,43 +67135,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(252)] = { - [sym_cmd_identifier] = STATE(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3423), - [sym_block] = STATE(3424), - [sym__expression_parenthesized] = STATE(3424), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3424), - [sym_comment] = STATE(252), + [STATE(246)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(249), + [sym_ctrl_if_parenthesized] = STATE(3564), + [sym_block] = STATE(3566), + [sym__expression_parenthesized] = STATE(3566), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3566), + [sym_comment] = STATE(246), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67579,33 +67186,33 @@ 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(998), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67622,42 +67229,606 @@ 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(3010), + [STATE(247)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3568), + [sym_block] = STATE(3571), + [sym__expression_parenthesized] = STATE(3571), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3571), + [sym_comment] = STATE(247), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(248)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3572), + [sym_block] = STATE(3574), + [sym__expression_parenthesized] = STATE(3574), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3574), + [sym_comment] = STATE(248), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(249)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3589), + [sym_block] = STATE(3590), + [sym__expression_parenthesized] = STATE(3590), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3590), + [sym_comment] = STATE(249), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(250)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(253), + [sym_ctrl_if_parenthesized] = STATE(3439), + [sym_block] = STATE(3443), + [sym__expression_parenthesized] = STATE(3443), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3443), + [sym_comment] = STATE(250), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(251)] = { + [sym_cmd_identifier] = STATE(2973), [aux_sym__repeat_newline] = STATE(256), - [sym_ctrl_if_parenthesized] = STATE(3423), - [sym_block] = STATE(3424), - [sym__expression_parenthesized] = STATE(3424), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3424), + [sym_ctrl_if_parenthesized] = STATE(3524), + [sym_block] = STATE(3529), + [sym__expression_parenthesized] = STATE(3529), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3529), + [sym_comment] = STATE(251), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(252)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(258), + [sym_ctrl_if_parenthesized] = STATE(3540), + [sym_block] = STATE(3546), + [sym__expression_parenthesized] = STATE(3546), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3546), + [sym_comment] = STATE(252), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3582), + [sym_block] = STATE(3583), + [sym__expression_parenthesized] = STATE(3583), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3583), [sym_comment] = STATE(253), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67673,33 +67844,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67717,41 +67888,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(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3425), - [sym_block] = STATE(3426), - [sym__expression_parenthesized] = STATE(3426), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3426), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(260), + [sym_ctrl_if_parenthesized] = STATE(3582), + [sym_block] = STATE(3583), + [sym__expression_parenthesized] = STATE(3583), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3583), [sym_comment] = STATE(254), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67767,33 +67938,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67811,41 +67982,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(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3427), - [sym_block] = STATE(3428), - [sym__expression_parenthesized] = STATE(3428), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3428), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(262), + [sym_ctrl_if_parenthesized] = STATE(3462), + [sym_block] = STATE(3463), + [sym__expression_parenthesized] = STATE(3463), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3463), [sym_comment] = STATE(255), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67861,33 +68032,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67905,41 +68076,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(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3439), - [sym_block] = STATE(3440), - [sym__expression_parenthesized] = STATE(3440), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3440), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3464), + [sym_block] = STATE(3465), + [sym__expression_parenthesized] = STATE(3465), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3465), [sym_comment] = STATE(256), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67955,33 +68126,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67999,41 +68170,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(3010), - [aux_sym__repeat_newline] = STATE(219), - [sym_ctrl_if_parenthesized] = STATE(3577), - [sym_block] = STATE(3578), - [sym__expression_parenthesized] = STATE(3578), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3578), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(264), + [sym_ctrl_if_parenthesized] = STATE(3464), + [sym_block] = STATE(3465), + [sym__expression_parenthesized] = STATE(3465), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3465), [sym_comment] = STATE(257), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68049,33 +68220,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68093,41 +68264,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(3010), - [aux_sym__repeat_newline] = STATE(221), - [sym_ctrl_if_parenthesized] = STATE(3473), - [sym_block] = STATE(3474), - [sym__expression_parenthesized] = STATE(3474), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3474), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3468), + [sym__expression_parenthesized] = STATE(3468), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3468), [sym_comment] = STATE(258), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68143,33 +68314,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68187,41 +68358,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(3010), - [aux_sym__repeat_newline] = STATE(262), - [sym_ctrl_if_parenthesized] = STATE(3462), - [sym_block] = STATE(3463), - [sym__expression_parenthesized] = STATE(3463), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3463), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(266), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3468), + [sym__expression_parenthesized] = STATE(3468), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3468), [sym_comment] = STATE(259), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68237,33 +68408,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68281,41 +68452,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(3010), - [aux_sym__repeat_newline] = STATE(197), - [sym_ctrl_if_parenthesized] = STATE(3572), - [sym_block] = STATE(3573), - [sym__expression_parenthesized] = STATE(3573), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3573), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3472), + [sym_block] = STATE(3473), + [sym__expression_parenthesized] = STATE(3473), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3473), [sym_comment] = STATE(260), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68331,33 +68502,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68375,41 +68546,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(3010), - [aux_sym__repeat_newline] = STATE(199), - [sym_ctrl_if_parenthesized] = STATE(3396), - [sym_block] = STATE(3575), - [sym__expression_parenthesized] = STATE(3575), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3575), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(268), + [sym_ctrl_if_parenthesized] = STATE(3472), + [sym_block] = STATE(3473), + [sym__expression_parenthesized] = STATE(3473), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3473), [sym_comment] = STATE(261), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68425,33 +68596,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68469,41 +68640,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(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3577), - [sym_block] = STATE(3578), - [sym__expression_parenthesized] = STATE(3578), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3578), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3509), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3511), [sym_comment] = STATE(262), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68519,33 +68690,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68563,41 +68734,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(3010), - [aux_sym__repeat_newline] = STATE(201), - [sym_ctrl_if_parenthesized] = STATE(3577), - [sym_block] = STATE(3578), - [sym__expression_parenthesized] = STATE(3578), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3578), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(269), + [sym_ctrl_if_parenthesized] = STATE(3509), + [sym_block] = STATE(3511), + [sym__expression_parenthesized] = STATE(3511), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3511), [sym_comment] = STATE(263), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68613,33 +68784,33 @@ 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(1256), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68657,41 +68828,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(3010), - [aux_sym__repeat_newline] = STATE(235), - [sym_ctrl_if_parenthesized] = STATE(3462), - [sym_block] = STATE(3463), - [sym__expression_parenthesized] = STATE(3463), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3463), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3514), + [sym_block] = STATE(3515), + [sym__expression_parenthesized] = STATE(3515), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3515), [sym_comment] = STATE(264), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68707,33 +68878,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68751,41 +68922,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(3010), - [aux_sym__repeat_newline] = STATE(215), - [sym_ctrl_if_parenthesized] = STATE(3572), - [sym_block] = STATE(3573), - [sym__expression_parenthesized] = STATE(3573), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3573), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(271), + [sym_ctrl_if_parenthesized] = STATE(3514), + [sym_block] = STATE(3515), + [sym__expression_parenthesized] = STATE(3515), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3515), [sym_comment] = STATE(265), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68801,33 +68972,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68845,41 +69016,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(3010), - [aux_sym__repeat_newline] = STATE(1412), - [sym_ctrl_if_parenthesized] = STATE(3488), - [sym_block] = STATE(3489), - [sym__expression_parenthesized] = STATE(3489), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3489), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3517), + [sym_block] = STATE(3518), + [sym__expression_parenthesized] = STATE(3518), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3518), [sym_comment] = STATE(266), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68902,26 +69073,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [sym__newline] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68939,41 +69110,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(267)] = { - [sym_cmd_identifier] = STATE(2730), - [sym__expression] = STATE(2287), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3355), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(272), + [sym_ctrl_if_parenthesized] = STATE(3517), + [sym_block] = STATE(3518), + [sym__expression_parenthesized] = STATE(3518), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3518), [sym_comment] = STATE(267), - [aux_sym_pipe_element_repeat2] = STATE(1396), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68988,32 +69160,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = 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(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_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(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69031,41 +69204,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(268)] = { - [sym_cmd_identifier] = STATE(2907), - [sym__expression_parenthesized] = STATE(2295), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3507), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3520), + [sym_block] = STATE(3606), + [sym__expression_parenthesized] = STATE(3606), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3606), [sym_comment] = STATE(268), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1394), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69080,32 +69254,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = 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(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69118,46 +69293,47 @@ 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(269)] = { - [sym_cmd_identifier] = STATE(2907), - [sym__expression_parenthesized] = STATE(2295), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3507), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3564), + [sym_block] = STATE(3566), + [sym__expression_parenthesized] = STATE(3566), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3566), [sym_comment] = STATE(269), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1394), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69172,32 +69348,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = 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(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_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(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69210,46 +69387,47 @@ 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(270)] = { - [sym_cmd_identifier] = STATE(2730), - [sym__expression] = STATE(2287), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3355), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(273), + [sym_ctrl_if_parenthesized] = STATE(3564), + [sym_block] = STATE(3566), + [sym__expression_parenthesized] = STATE(3566), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3566), [sym_comment] = STATE(270), - [aux_sym_pipe_element_repeat2] = STATE(1396), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69264,32 +69442,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = 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(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69307,40 +69486,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(271)] = { - [sym_cmd_identifier] = STATE(3010), - [sym_ctrl_if] = STATE(3313), - [sym_block] = STATE(3242), - [sym__expression] = STATE(3242), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2249), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3242), + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3568), + [sym_block] = STATE(3571), + [sym__expression_parenthesized] = STATE(3571), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3571), [sym_comment] = STATE(271), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -69356,32 +69536,33 @@ 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(996), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69399,99 +69580,661 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(272)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3572), + [sym_block] = STATE(3574), + [sym__expression_parenthesized] = STATE(3574), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3574), [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] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1288), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [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(1006), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(273)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(1418), + [sym_ctrl_if_parenthesized] = STATE(3589), + [sym_block] = STATE(3590), + [sym__expression_parenthesized] = STATE(3590), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3590), [sym_comment] = STATE(273), + [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(1006), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(274)] = { + [sym_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(206), + [sym_ctrl_if_parenthesized] = STATE(3439), + [sym_block] = STATE(3443), + [sym__expression_parenthesized] = STATE(3443), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3443), + [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(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(2973), + [aux_sym__repeat_newline] = STATE(209), + [sym_ctrl_if_parenthesized] = STATE(3524), + [sym_block] = STATE(3529), + [sym__expression_parenthesized] = STATE(3529), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3529), + [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(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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_cmd_identifier] = STATE(2973), + [aux_sym__repeat_newline] = STATE(247), + [sym_ctrl_if_parenthesized] = STATE(3514), + [sym_block] = STATE(3515), + [sym__expression_parenthesized] = STATE(3515), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3515), + [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(998), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [sym__newline] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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_cmd_identifier] = STATE(2973), + [sym_ctrl_if] = STATE(3357), + [sym_block] = STATE(3358), + [sym__expression] = STATE(3358), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2263), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3358), + [sym_comment] = STATE(277), + [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_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1292), + [aux_sym__val_number_decimal_token2] = ACTIONS(1294), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(278)] = { + [sym_cmd_identifier] = STATE(3206), + [sym_ctrl_if] = STATE(3480), + [sym_block] = STATE(3481), + [sym__expression] = STATE(3481), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_command] = STATE(3481), + [sym_comment] = STATE(278), + [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_finally] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(1298), + [anon_sym_false] = ACTIONS(1298), + [anon_sym_null] = ACTIONS(1300), + [aux_sym_cmd_identifier_token3] = ACTIONS(1302), + [aux_sym_cmd_identifier_token4] = ACTIONS(1302), + [aux_sym_cmd_identifier_token5] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(1306), + [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(1308), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1312), + [aux_sym__val_number_decimal_token4] = ACTIONS(1312), + [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(279)] = { + [sym_comment] = STATE(279), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), @@ -69574,16 +70317,661 @@ 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(1314), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1290), - [aux_sym__immediate_decimal_token5] = ACTIONS(1292), + [aux_sym__immediate_decimal_token5] = ACTIONS(1316), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(274)] = { - [sym_comment] = STATE(274), + [STATE(280)] = { + [sym_cmd_identifier] = STATE(2963), + [sym__expression_parenthesized] = STATE(2306), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3461), + [sym_comment] = STATE(280), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1408), + [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_finally] = 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(1270), + [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(281)] = { + [sym_cmd_identifier] = STATE(2943), + [sym__expression] = STATE(2304), + [sym_expr_unary] = STATE(1290), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1290), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(973), + [sym_val_range] = STATE(1290), + [sym__value] = STATE(1290), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1361), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3498), + [sym_comment] = STATE(281), + [aux_sym_pipe_element_repeat2] = STATE(1405), + [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_finally] = 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(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(282)] = { + [sym_cmd_identifier] = STATE(2963), + [sym__expression_parenthesized] = STATE(2306), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(148), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3461), + [sym_comment] = STATE(282), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1408), + [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_finally] = 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(1270), + [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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(283)] = { + [sym_cmd_identifier] = STATE(2819), + [sym__expression] = STATE(2300), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(122), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3291), + [sym_comment] = STATE(283), + [aux_sym_pipe_element_repeat2] = STATE(1405), + [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_finally] = 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(1270), + [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(284)] = { + [sym_cmd_identifier] = STATE(2819), + [sym__expression] = STATE(2300), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3291), + [sym_comment] = STATE(284), + [aux_sym_pipe_element_repeat2] = STATE(1405), + [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_finally] = 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(1270), + [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(285)] = { + [sym_cmd_identifier] = STATE(2973), + [sym_ctrl_if] = STATE(3357), + [sym_block] = STATE(3358), + [sym__expression] = STATE(3358), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2263), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(313), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3358), + [sym_comment] = STATE(285), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(457), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(286)] = { + [sym_cmd_identifier] = STATE(2963), + [sym__expression_parenthesized] = STATE(2306), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2167), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(4687), + [sym__command_parenthesized] = STATE(3461), + [sym_comment] = STATE(286), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1408), + [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_finally] = 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(1270), + [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(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(287)] = { + [sym_comment] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -69631,7 +71019,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), @@ -69666,16 +71053,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(1294), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1296), + [aux_sym__immediate_decimal_token1] = ACTIONS(1318), + [aux_sym__immediate_decimal_token5] = ACTIONS(1320), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(275)] = { - [sym_comment] = STATE(275), + [STATE(288)] = { + [sym_cmd_identifier] = STATE(2973), + [sym_ctrl_if] = STATE(3357), + [sym_block] = STATE(3358), + [sym__expression] = STATE(3358), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2263), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(321), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3358), + [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(1016), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1290), + [aux_sym__val_number_decimal_token4] = ACTIONS(1290), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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_comment] = STATE(289), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -69758,142 +71237,50 @@ 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(1322), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1298), - [aux_sym__immediate_decimal_token5] = ACTIONS(1300), + [aux_sym__immediate_decimal_token5] = ACTIONS(1324), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(276)] = { - [sym_cmd_identifier] = STATE(3072), - [sym_ctrl_if] = STATE(3414), - [sym_block] = STATE(3420), - [sym__expression] = STATE(3420), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2251), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(307), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_command] = STATE(3420), - [sym_comment] = STATE(276), - [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_finally] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1304), - [aux_sym_cmd_identifier_token3] = ACTIONS(1306), - [aux_sym_cmd_identifier_token4] = ACTIONS(1306), - [aux_sym_cmd_identifier_token5] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1308), - [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(1310), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1314), - [aux_sym__val_number_decimal_token4] = ACTIONS(1314), - [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(277)] = { - [sym_cmd_identifier] = STATE(2730), - [sym__expression] = STATE(2287), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(143), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3355), - [sym_comment] = STATE(277), - [aux_sym_pipe_element_repeat2] = STATE(1396), + [STATE(290)] = { + [sym_cmd_identifier] = STATE(2819), + [sym__expression] = STATE(2300), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(148), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3291), + [sym_comment] = STATE(290), + [aux_sym_pipe_element_repeat2] = STATE(1405), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69923,17 +71310,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(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69950,8 +71337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(278)] = { - [sym_comment] = STATE(278), + [STATE(291)] = { + [sym_comment] = STATE(291), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -69999,9 +71386,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), @@ -70034,16 +71421,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(1322), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1324), + [aux_sym__immediate_decimal_token1] = ACTIONS(1326), + [aux_sym__immediate_decimal_token5] = ACTIONS(1328), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(279)] = { - [sym_comment] = STATE(279), + [STATE(292)] = { + [sym_cmd_identifier] = STATE(2819), + [sym__expression] = STATE(2300), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(134), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_env_var] = STATE(5018), + [sym_command] = STATE(3291), + [sym_comment] = STATE(292), + [aux_sym_pipe_element_repeat2] = STATE(1405), + [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_finally] = 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(1270), + [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(1008), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -70126,50 +71605,50 @@ 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(1330), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1326), - [aux_sym__immediate_decimal_token5] = ACTIONS(1328), + [aux_sym__immediate_decimal_token5] = ACTIONS(1332), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(280)] = { - [sym_cmd_identifier] = STATE(3010), - [sym_ctrl_if] = STATE(3313), - [sym_block] = STATE(3242), - [sym__expression] = STATE(3242), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2249), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3242), - [sym_comment] = STATE(280), + [STATE(294)] = { + [sym_cmd_identifier] = STATE(2973), + [sym_ctrl_if] = STATE(3357), + [sym_block] = STATE(3358), + [sym__expression] = STATE(3358), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2263), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_command] = STATE(3358), + [sym_comment] = STATE(294), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -70184,32 +71663,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(459), + [anon_sym_if] = ACTIONS(1014), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1266), + [aux_sym_cmd_identifier_token4] = ACTIONS(1266), + [aux_sym_cmd_identifier_token5] = ACTIONS(1266), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1272), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -70226,832 +71705,8 @@ 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(2730), - [sym__expression] = STATE(2287), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3355), - [sym_comment] = STATE(281), - [aux_sym_pipe_element_repeat2] = STATE(1396), - [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_finally] = 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(998), - [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(282)] = { - [sym_cmd_identifier] = STATE(3010), - [sym_ctrl_if] = STATE(3313), - [sym_block] = STATE(3242), - [sym__expression] = STATE(3242), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2249), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(309), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3242), - [sym_comment] = 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(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1330), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1334), - [aux_sym__val_number_decimal_token4] = ACTIONS(1334), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(3010), - [sym_ctrl_if] = STATE(3313), - [sym_block] = STATE(3242), - [sym__expression] = STATE(3242), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2249), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_command] = STATE(3242), - [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(1336), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_finally] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [aux_sym_cmd_identifier_token3] = ACTIONS(1262), - [aux_sym_cmd_identifier_token4] = ACTIONS(1262), - [aux_sym_cmd_identifier_token5] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1268), - [aux_sym__val_number_decimal_token2] = ACTIONS(1270), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(2290), - [sym_expr_unary] = STATE(1292), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1292), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(964), - [sym_val_range] = STATE(1292), - [sym__value] = STATE(1292), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1316), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_env_var] = STATE(5036), - [sym_command] = STATE(3506), - [sym_comment] = STATE(284), - [aux_sym_pipe_element_repeat2] = STATE(1396), - [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_finally] = 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(1010), - [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(285)] = { - [sym_cmd_identifier] = STATE(2907), - [sym__expression_parenthesized] = STATE(2295), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(143), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_env_var] = STATE(4794), - [sym__command_parenthesized] = STATE(3507), - [sym_comment] = STATE(285), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1394), - [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_finally] = 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(998), - [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(286)] = { - [sym_comment] = STATE(286), - [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] = ACTIONS(1338), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1340), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(287)] = { - [sym_comment] = STATE(287), - [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_token5] = ACTIONS(1288), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(288)] = { - [sym_comment] = STATE(288), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(1342), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(289)] = { - [sym_comment] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(1344), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(290)] = { - [sym_comment] = STATE(290), + [STATE(295)] = { + [sym_comment] = STATE(295), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -71099,9 +71754,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), @@ -71136,13 +71791,14 @@ 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_token5] = ACTIONS(1296), + [aux_sym__immediate_decimal_token1] = ACTIONS(1334), + [aux_sym__immediate_decimal_token5] = ACTIONS(1336), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(291)] = { - [sym_comment] = STATE(291), + [STATE(296)] = { + [sym_comment] = STATE(296), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -71192,7 +71848,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), @@ -71227,13 +71882,14 @@ 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_token5] = ACTIONS(1324), + [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(292)] = { - [sym_comment] = STATE(292), + [STATE(297)] = { + [sym_comment] = STATE(297), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71315,287 +71971,17 @@ 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(1342), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1346), - [aux_sym__immediate_decimal_token5] = ACTIONS(1348), + [aux_sym__immediate_decimal_token5] = ACTIONS(1344), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(293)] = { - [sym_comment] = STATE(293), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(1350), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(294)] = { - [sym_comment] = STATE(294), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(295)] = { - [sym_comment] = STATE(295), - [ts_builtin_sym_end] = ACTIONS(865), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(296)] = { - [sym_comment] = STATE(296), + [STATE(298)] = { + [sym_comment] = STATE(298), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71643,7 +72029,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), @@ -71680,13 +72065,13 @@ 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(1316), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(297)] = { - [sym_comment] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(741), + [STATE(299)] = { + [sym_comment] = STATE(299), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71736,6 +72121,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), @@ -71770,462 +72156,377 @@ 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(1332), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(298)] = { - [sym_comment] = STATE(298), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(299)] = { - [sym_comment] = STATE(299), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_RPAREN] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(300)] = { [sym_comment] = STATE(300), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), + [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(1324), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(301)] = { [sym_comment] = STATE(301), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1346), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(103), }, [STATE(302)] = { [sym_comment] = STATE(302), - [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] = ACTIONS(1352), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1354), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1348), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(103), }, [STATE(303)] = { [sym_comment] = STATE(303), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1350), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [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), @@ -72306,16 +72607,196 @@ 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(1352), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1356), - [aux_sym__immediate_decimal_token5] = ACTIONS(1358), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(304)] = { - [sym_comment] = STATE(304), + [STATE(305)] = { + [sym_comment] = STATE(305), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(306)] = { + [sym_comment] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_in] = ACTIONS(785), + [anon_sym_STAR_STAR] = ACTIONS(886), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_STAR] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_mod] = ACTIONS(886), + [anon_sym_SLASH_SLASH] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(888), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_bit_DASHshl] = ACTIONS(886), + [anon_sym_bit_DASHshr] = ACTIONS(886), + [anon_sym_EQ_TILDE] = ACTIONS(886), + [anon_sym_BANG_TILDE] = ACTIONS(886), + [anon_sym_like] = ACTIONS(886), + [anon_sym_not_DASHlike] = ACTIONS(886), + [anon_sym_bit_DASHand] = ACTIONS(886), + [anon_sym_bit_DASHxor] = ACTIONS(886), + [anon_sym_bit_DASHor] = ACTIONS(886), + [anon_sym_and] = ACTIONS(886), + [anon_sym_xor] = ACTIONS(886), + [anon_sym_or] = ACTIONS(886), + [anon_sym_in2] = ACTIONS(886), + [anon_sym_not_DASHin] = ACTIONS(886), + [anon_sym_has] = ACTIONS(886), + [anon_sym_not_DASHhas] = ACTIONS(886), + [anon_sym_starts_DASHwith] = ACTIONS(886), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(886), + [anon_sym_ends_DASHwith] = ACTIONS(886), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(886), + [anon_sym_EQ_EQ] = ACTIONS(886), + [anon_sym_BANG_EQ] = ACTIONS(886), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(888), + [anon_sym_GT_EQ] = ACTIONS(886), + [aux_sym_cmd_identifier_token6] = ACTIONS(890), + [sym__newline] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(892), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(894), + [anon_sym_DOT_DOT_LT2] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(1356), + [sym_duration_unit] = ACTIONS(1358), + [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), @@ -72353,7 +72834,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), @@ -72399,13 +72879,14 @@ 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_token5] = ACTIONS(1340), + [aux_sym__immediate_decimal_token1] = ACTIONS(1360), + [aux_sym__immediate_decimal_token5] = ACTIONS(1362), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(305)] = { - [sym_comment] = STATE(305), + [STATE(308)] = { + [sym_comment] = STATE(308), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -72455,7 +72936,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), @@ -72490,724 +72970,459 @@ 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(1344), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(306)] = { - [sym_comment] = STATE(306), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(307)] = { - [sym_comment] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(1362), - [sym_duration_unit] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(308)] = { - [sym_comment] = STATE(308), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_DOT_DOT2] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), - [anon_sym_DOT_DOT_LT2] = ACTIONS(857), - [sym_filesize_unit] = ACTIONS(1366), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(309)] = { [sym_comment] = STATE(309), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_DOT_DOT2] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), - [anon_sym_DOT_DOT_LT2] = ACTIONS(857), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1372), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1364), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(103), }, [STATE(310)] = { [sym_comment] = STATE(310), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(1374), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), + [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, [STATE(311)] = { [sym_comment] = STATE(311), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(103), }, [STATE(312)] = { [sym_comment] = STATE(312), - [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), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), + [ts_builtin_sym_end] = ACTIONS(868), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), [anon_sym_POUND] = ACTIONS(103), }, [STATE(313)] = { [sym_comment] = STATE(313), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), + [anon_sym_in] = ACTIONS(785), + [anon_sym_STAR_STAR] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(900), + [anon_sym_SLASH_SLASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_bit_DASHshl] = ACTIONS(900), + [anon_sym_bit_DASHshr] = ACTIONS(900), + [anon_sym_EQ_TILDE] = ACTIONS(900), + [anon_sym_BANG_TILDE] = ACTIONS(900), + [anon_sym_like] = ACTIONS(900), + [anon_sym_not_DASHlike] = ACTIONS(900), + [anon_sym_bit_DASHand] = ACTIONS(900), + [anon_sym_bit_DASHxor] = ACTIONS(900), + [anon_sym_bit_DASHor] = ACTIONS(900), + [anon_sym_and] = ACTIONS(900), + [anon_sym_xor] = ACTIONS(900), + [anon_sym_or] = ACTIONS(900), + [anon_sym_in2] = ACTIONS(900), + [anon_sym_not_DASHin] = ACTIONS(900), + [anon_sym_has] = ACTIONS(900), + [anon_sym_not_DASHhas] = ACTIONS(900), + [anon_sym_starts_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), + [anon_sym_ends_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(900), + [anon_sym_BANG_EQ] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(900), + [aux_sym_cmd_identifier_token6] = ACTIONS(904), + [sym__newline] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), + [anon_sym_DOT_DOT_LT2] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(1366), + [sym_duration_unit] = ACTIONS(1368), [anon_sym_POUND] = ACTIONS(103), }, [STATE(314)] = { @@ -73249,6 +73464,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), @@ -73258,6 +73474,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), @@ -73294,102 +73511,462 @@ 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_token5] = ACTIONS(1354), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, [STATE(315)] = { [sym_comment] = STATE(315), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_DOT_DOT2] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), - [anon_sym_DOT_DOT_LT2] = ACTIONS(857), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(103), }, [STATE(316)] = { [sym_comment] = STATE(316), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(317)] = { + [sym_comment] = STATE(317), + [anon_sym_in] = ACTIONS(785), + [anon_sym_STAR_STAR] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(900), + [anon_sym_SLASH_SLASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_bit_DASHshl] = ACTIONS(900), + [anon_sym_bit_DASHshr] = ACTIONS(900), + [anon_sym_EQ_TILDE] = ACTIONS(900), + [anon_sym_BANG_TILDE] = ACTIONS(900), + [anon_sym_like] = ACTIONS(900), + [anon_sym_not_DASHlike] = ACTIONS(900), + [anon_sym_bit_DASHand] = ACTIONS(900), + [anon_sym_bit_DASHxor] = ACTIONS(900), + [anon_sym_bit_DASHor] = ACTIONS(900), + [anon_sym_and] = ACTIONS(900), + [anon_sym_xor] = ACTIONS(900), + [anon_sym_or] = ACTIONS(900), + [anon_sym_in2] = ACTIONS(900), + [anon_sym_not_DASHin] = ACTIONS(900), + [anon_sym_has] = ACTIONS(900), + [anon_sym_not_DASHhas] = ACTIONS(900), + [anon_sym_starts_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), + [anon_sym_ends_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(900), + [anon_sym_BANG_EQ] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(900), + [aux_sym_cmd_identifier_token6] = ACTIONS(904), + [sym__newline] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_RBRACE] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), + [anon_sym_DOT_DOT_LT2] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(1370), + [sym_duration_unit] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(318)] = { + [sym_comment] = STATE(318), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(319)] = { + [sym_comment] = STATE(319), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(320)] = { + [sym_comment] = STATE(320), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -73472,346 +74049,880 @@ 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(1354), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(317)] = { - [sym_comment] = STATE(317), - [anon_sym_in] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(769), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_bit_DASHshl] = ACTIONS(769), - [anon_sym_bit_DASHshr] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_BANG_TILDE] = ACTIONS(769), - [anon_sym_like] = ACTIONS(769), - [anon_sym_not_DASHlike] = ACTIONS(769), - [anon_sym_bit_DASHand] = ACTIONS(769), - [anon_sym_bit_DASHxor] = ACTIONS(769), - [anon_sym_bit_DASHor] = ACTIONS(769), - [anon_sym_and] = ACTIONS(769), - [anon_sym_xor] = ACTIONS(769), - [anon_sym_or] = ACTIONS(769), - [anon_sym_in2] = ACTIONS(769), - [anon_sym_not_DASHin] = ACTIONS(769), - [anon_sym_has] = ACTIONS(769), - [anon_sym_not_DASHhas] = ACTIONS(769), - [anon_sym_starts_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), - [anon_sym_ends_DASHwith] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [aux_sym_cmd_identifier_token6] = ACTIONS(767), - [sym__newline] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_err_GT_PIPE] = ACTIONS(767), - [anon_sym_out_GT_PIPE] = ACTIONS(767), - [anon_sym_e_GT_PIPE] = ACTIONS(767), - [anon_sym_o_GT_PIPE] = ACTIONS(767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(767), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(767), - [anon_sym_xor2] = ACTIONS(767), - [anon_sym_or2] = ACTIONS(767), - [anon_sym_not_DASHin2] = ACTIONS(767), - [anon_sym_has2] = ACTIONS(767), - [anon_sym_not_DASHhas2] = ACTIONS(767), - [anon_sym_starts_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), - [anon_sym_ends_DASHwith2] = ACTIONS(767), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), - [anon_sym_EQ_EQ2] = ACTIONS(767), - [anon_sym_BANG_EQ2] = ACTIONS(767), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(767), - [anon_sym_GT_EQ2] = ACTIONS(767), - [anon_sym_EQ_TILDE2] = ACTIONS(767), - [anon_sym_BANG_TILDE2] = ACTIONS(767), - [anon_sym_like2] = ACTIONS(767), - [anon_sym_not_DASHlike2] = ACTIONS(767), - [anon_sym_STAR_STAR2] = ACTIONS(767), - [anon_sym_PLUS_PLUS2] = ACTIONS(767), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(767), - [anon_sym_SLASH_SLASH2] = ACTIONS(767), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(767), - [anon_sym_bit_DASHshr2] = ACTIONS(767), - [anon_sym_bit_DASHand2] = ACTIONS(767), - [anon_sym_bit_DASHxor2] = ACTIONS(767), - [anon_sym_bit_DASHor2] = ACTIONS(767), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(318)] = { - [sym_comment] = STATE(318), - [anon_sym_in] = ACTIONS(863), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_like] = ACTIONS(865), - [anon_sym_not_DASHlike] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_in2] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_has] = ACTIONS(865), - [anon_sym_not_DASHhas] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [aux_sym_cmd_identifier_token6] = ACTIONS(863), - [sym__newline] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_err_GT_PIPE] = ACTIONS(863), - [anon_sym_out_GT_PIPE] = ACTIONS(863), - [anon_sym_e_GT_PIPE] = ACTIONS(863), - [anon_sym_o_GT_PIPE] = ACTIONS(863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(863), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(863), - [anon_sym_xor2] = ACTIONS(863), - [anon_sym_or2] = ACTIONS(863), - [anon_sym_not_DASHin2] = ACTIONS(863), - [anon_sym_has2] = ACTIONS(863), - [anon_sym_not_DASHhas2] = ACTIONS(863), - [anon_sym_starts_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), - [anon_sym_ends_DASHwith2] = ACTIONS(863), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), - [anon_sym_EQ_EQ2] = ACTIONS(863), - [anon_sym_BANG_EQ2] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(863), - [anon_sym_GT_EQ2] = ACTIONS(863), - [anon_sym_EQ_TILDE2] = ACTIONS(863), - [anon_sym_BANG_TILDE2] = ACTIONS(863), - [anon_sym_like2] = ACTIONS(863), - [anon_sym_not_DASHlike2] = ACTIONS(863), - [anon_sym_STAR_STAR2] = ACTIONS(863), - [anon_sym_PLUS_PLUS2] = ACTIONS(863), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(863), - [anon_sym_SLASH_SLASH2] = ACTIONS(863), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(863), - [anon_sym_bit_DASHshr2] = ACTIONS(863), - [anon_sym_bit_DASHand2] = ACTIONS(863), - [anon_sym_bit_DASHxor2] = ACTIONS(863), - [anon_sym_bit_DASHor2] = ACTIONS(863), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), + [STATE(321)] = { + [sym_comment] = STATE(321), + [anon_sym_in] = ACTIONS(785), + [anon_sym_STAR_STAR] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(900), + [anon_sym_SLASH_SLASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_bit_DASHshl] = ACTIONS(900), + [anon_sym_bit_DASHshr] = ACTIONS(900), + [anon_sym_EQ_TILDE] = ACTIONS(900), + [anon_sym_BANG_TILDE] = ACTIONS(900), + [anon_sym_like] = ACTIONS(900), + [anon_sym_not_DASHlike] = ACTIONS(900), + [anon_sym_bit_DASHand] = ACTIONS(900), + [anon_sym_bit_DASHxor] = ACTIONS(900), + [anon_sym_bit_DASHor] = ACTIONS(900), + [anon_sym_and] = ACTIONS(900), + [anon_sym_xor] = ACTIONS(900), + [anon_sym_or] = ACTIONS(900), + [anon_sym_in2] = ACTIONS(900), + [anon_sym_not_DASHin] = ACTIONS(900), + [anon_sym_has] = ACTIONS(900), + [anon_sym_not_DASHhas] = ACTIONS(900), + [anon_sym_starts_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), + [anon_sym_ends_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(900), + [anon_sym_BANG_EQ] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(900), + [aux_sym_cmd_identifier_token6] = ACTIONS(904), + [sym__newline] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), + [anon_sym_DOT_DOT_LT2] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(1374), + [sym_duration_unit] = ACTIONS(1376), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(319)] = { - [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_err_GT_PIPE] = ACTIONS(847), - [anon_sym_out_GT_PIPE] = ACTIONS(847), - [anon_sym_e_GT_PIPE] = ACTIONS(847), - [anon_sym_o_GT_PIPE] = ACTIONS(847), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(847), - [anon_sym_BANG_EQ2] = ACTIONS(847), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(847), - [anon_sym_GT_EQ2] = ACTIONS(847), - [anon_sym_EQ_TILDE2] = ACTIONS(847), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_DOT_DOT2] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), - [anon_sym_DOT_DOT_LT2] = ACTIONS(857), - [sym_filesize_unit] = ACTIONS(1380), - [sym_duration_unit] = ACTIONS(1382), + [STATE(322)] = { + [sym_comment] = STATE(322), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(320)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym__match_pattern_expression] = STATE(4356), - [sym__match_pattern_value] = STATE(4686), - [sym__match_pattern_list_body] = STATE(4803), - [sym__match_pattern_list] = STATE(4805), - [sym__match_pattern_rest] = STATE(5278), - [sym__match_pattern_record] = STATE(4754), - [sym_expr_parenthesized] = STATE(4010), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4869), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4870), - [sym_val_bool] = STATE(4322), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4011), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4870), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4870), - [sym_val_filesize] = STATE(4870), - [sym_val_binary] = STATE(4870), - [sym_val_string] = STATE(4870), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5333), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3940), - [sym_val_table] = STATE(4870), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4012), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(320), - [aux_sym__types_body_repeat1] = STATE(368), - [aux_sym_parameter_repeat2] = STATE(4188), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1386), - [aux_sym_cmd_identifier_token3] = ACTIONS(1388), - [aux_sym_cmd_identifier_token4] = ACTIONS(1388), - [aux_sym_cmd_identifier_token5] = ACTIONS(1388), - [sym__newline] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_RBRACK] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1408), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_decimal_token4] = ACTIONS(1412), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), + [STATE(323)] = { + [sym_comment] = STATE(323), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(324)] = { + [sym_comment] = STATE(324), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(325)] = { + [sym_comment] = STATE(325), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1378), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(326)] = { + [sym_comment] = STATE(326), + [anon_sym_in] = ACTIONS(785), + [anon_sym_STAR_STAR] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(900), + [anon_sym_SLASH_SLASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_bit_DASHshl] = ACTIONS(900), + [anon_sym_bit_DASHshr] = ACTIONS(900), + [anon_sym_EQ_TILDE] = ACTIONS(900), + [anon_sym_BANG_TILDE] = ACTIONS(900), + [anon_sym_like] = ACTIONS(900), + [anon_sym_not_DASHlike] = ACTIONS(900), + [anon_sym_bit_DASHand] = ACTIONS(900), + [anon_sym_bit_DASHxor] = ACTIONS(900), + [anon_sym_bit_DASHor] = ACTIONS(900), + [anon_sym_and] = ACTIONS(900), + [anon_sym_xor] = ACTIONS(900), + [anon_sym_or] = ACTIONS(900), + [anon_sym_in2] = ACTIONS(900), + [anon_sym_not_DASHin] = ACTIONS(900), + [anon_sym_has] = ACTIONS(900), + [anon_sym_not_DASHhas] = ACTIONS(900), + [anon_sym_starts_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(900), + [anon_sym_ends_DASHwith] = ACTIONS(900), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(900), + [anon_sym_EQ_EQ] = ACTIONS(900), + [anon_sym_BANG_EQ] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(900), + [aux_sym_cmd_identifier_token6] = ACTIONS(904), + [sym__newline] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_err_GT_PIPE] = ACTIONS(785), + [anon_sym_out_GT_PIPE] = ACTIONS(785), + [anon_sym_e_GT_PIPE] = ACTIONS(785), + [anon_sym_o_GT_PIPE] = ACTIONS(785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(785), + [anon_sym_BANG_EQ2] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(785), + [anon_sym_GT_EQ2] = ACTIONS(785), + [anon_sym_EQ_TILDE2] = ACTIONS(785), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_DOT_DOT2] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(795), + [anon_sym_DOT_DOT_LT2] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(1380), + [sym_duration_unit] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(327)] = { + [sym_comment] = STATE(327), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(866), + [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(866), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(328)] = { + [sym_comment] = STATE(328), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(329)] = { + [sym_comment] = STATE(329), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(330)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym__match_pattern_expression] = STATE(4454), + [sym__match_pattern_value] = STATE(4911), + [sym__match_pattern_list_body] = STATE(4682), + [sym__match_pattern_list] = STATE(4912), + [sym__match_pattern_rest] = STATE(5214), + [sym__match_pattern_record] = STATE(4913), + [sym_expr_parenthesized] = STATE(4015), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(4837), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4840), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4021), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4840), + [sym__val_number_decimal] = STATE(3648), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4840), + [sym_val_filesize] = STATE(4840), + [sym_val_binary] = STATE(4840), + [sym_val_string] = STATE(4840), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5119), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3937), + [sym_val_table] = STATE(4840), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4022), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(330), + [aux_sym__types_body_repeat1] = STATE(378), + [aux_sym_parameter_repeat2] = STATE(4218), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_RBRACK] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), @@ -73827,54 +74938,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(321)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym__match_pattern_expression] = STATE(4356), - [sym__match_pattern_value] = STATE(4686), - [sym__match_pattern_list_body] = STATE(4803), - [sym__match_pattern_list] = STATE(4805), - [sym__match_pattern_rest] = STATE(5278), - [sym__match_pattern_record] = STATE(4754), - [sym_expr_parenthesized] = STATE(4010), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4869), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4870), - [sym_val_bool] = STATE(4322), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4011), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4870), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4870), - [sym_val_filesize] = STATE(4870), - [sym_val_binary] = STATE(4870), - [sym_val_string] = STATE(4870), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5087), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3940), - [sym_val_table] = STATE(4870), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4012), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(321), - [aux_sym__types_body_repeat1] = STATE(368), - [aux_sym_parameter_repeat2] = STATE(4188), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), - [aux_sym_list_body_repeat1] = STATE(558), + [STATE(331)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym__match_pattern_expression] = STATE(4454), + [sym__match_pattern_value] = STATE(4911), + [sym__match_pattern_list_body] = STATE(4682), + [sym__match_pattern_list] = STATE(4912), + [sym__match_pattern_rest] = STATE(5214), + [sym__match_pattern_record] = STATE(4913), + [sym_expr_parenthesized] = STATE(4015), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(4837), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4840), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4021), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4840), + [sym__val_number_decimal] = STATE(3648), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4840), + [sym_val_filesize] = STATE(4840), + [sym_val_binary] = STATE(4840), + [sym_val_string] = STATE(4840), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5219), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3937), + [sym_val_table] = STATE(4840), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4022), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(331), + [aux_sym__types_body_repeat1] = STATE(378), + [aux_sym_parameter_repeat2] = STATE(4218), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [aux_sym_list_body_repeat1] = STATE(667), [anon_sym_true] = ACTIONS(1384), [anon_sym_false] = ACTIONS(1384), [anon_sym_null] = ACTIONS(1386), @@ -73914,54 +75025,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(322)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym__match_pattern_expression] = STATE(4356), - [sym__match_pattern_value] = STATE(4686), - [sym__match_pattern_list_body] = STATE(4803), - [sym__match_pattern_list] = STATE(4805), - [sym__match_pattern_rest] = STATE(5278), - [sym__match_pattern_record] = STATE(4754), - [sym_expr_parenthesized] = STATE(4010), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4869), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4870), - [sym_val_bool] = STATE(4322), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4011), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4870), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4870), - [sym_val_filesize] = STATE(4870), - [sym_val_binary] = STATE(4870), - [sym_val_string] = STATE(4870), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5342), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3940), - [sym_val_table] = STATE(4870), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4012), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(322), - [aux_sym__types_body_repeat1] = STATE(368), - [aux_sym_parameter_repeat2] = STATE(4188), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), - [aux_sym_list_body_repeat1] = STATE(558), + [STATE(332)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym__match_pattern_expression] = STATE(4454), + [sym__match_pattern_value] = STATE(4911), + [sym__match_pattern_list_body] = STATE(4682), + [sym__match_pattern_list] = STATE(4912), + [sym__match_pattern_rest] = STATE(5214), + [sym__match_pattern_record] = STATE(4913), + [sym_expr_parenthesized] = STATE(4015), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(4837), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4840), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4021), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4840), + [sym__val_number_decimal] = STATE(3648), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4840), + [sym_val_filesize] = STATE(4840), + [sym_val_binary] = STATE(4840), + [sym_val_string] = STATE(4840), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5267), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3937), + [sym_val_table] = STATE(4840), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4022), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(332), + [aux_sym__types_body_repeat1] = STATE(378), + [aux_sym_parameter_repeat2] = STATE(4218), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [aux_sym_list_body_repeat1] = STATE(667), [anon_sym_true] = ACTIONS(1384), [anon_sym_false] = ACTIONS(1384), [anon_sym_null] = ACTIONS(1386), @@ -74001,10 +75112,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(323)] = { - [sym_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1226), - [anon_sym_in] = ACTIONS(1012), + [STATE(333)] = { + [sym_comment] = STATE(333), + [ts_builtin_sym_end] = ACTIONS(1234), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_STAR_STAR] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_SLASH_SLASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_bit_DASHshl] = ACTIONS(1220), + [anon_sym_bit_DASHshr] = ACTIONS(1220), + [anon_sym_EQ_TILDE] = ACTIONS(1220), + [anon_sym_BANG_TILDE] = ACTIONS(1220), + [anon_sym_like] = ACTIONS(1220), + [anon_sym_not_DASHlike] = ACTIONS(1220), + [anon_sym_bit_DASHand] = ACTIONS(1220), + [anon_sym_bit_DASHxor] = ACTIONS(1220), + [anon_sym_bit_DASHor] = ACTIONS(1220), + [anon_sym_and] = ACTIONS(1220), + [anon_sym_xor] = ACTIONS(1220), + [anon_sym_or] = ACTIONS(1220), + [anon_sym_in2] = ACTIONS(1220), + [anon_sym_not_DASHin] = ACTIONS(1220), + [anon_sym_has] = ACTIONS(1220), + [anon_sym_not_DASHhas] = ACTIONS(1220), + [anon_sym_starts_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1220), + [anon_sym_ends_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1220), + [anon_sym_EQ_EQ] = ACTIONS(1220), + [anon_sym_BANG_EQ] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1220), + [aux_sym_cmd_identifier_token6] = ACTIONS(1224), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(334)] = { + [sym_comment] = STATE(334), + [ts_builtin_sym_end] = ACTIONS(1216), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_SLASH_SLASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_bit_DASHshl] = ACTIONS(1220), + [anon_sym_bit_DASHshr] = ACTIONS(1220), + [anon_sym_EQ_TILDE] = ACTIONS(1220), + [anon_sym_BANG_TILDE] = ACTIONS(1220), + [anon_sym_like] = ACTIONS(1220), + [anon_sym_not_DASHlike] = ACTIONS(1220), + [anon_sym_bit_DASHand] = ACTIONS(1220), + [anon_sym_bit_DASHxor] = ACTIONS(1220), + [anon_sym_bit_DASHor] = ACTIONS(1220), + [anon_sym_and] = ACTIONS(1220), + [anon_sym_xor] = ACTIONS(1220), + [anon_sym_or] = ACTIONS(1220), + [anon_sym_in2] = ACTIONS(1220), + [anon_sym_not_DASHin] = ACTIONS(1220), + [anon_sym_has] = ACTIONS(1220), + [anon_sym_not_DASHhas] = ACTIONS(1220), + [anon_sym_starts_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1220), + [anon_sym_ends_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1220), + [anon_sym_EQ_EQ] = ACTIONS(1220), + [anon_sym_BANG_EQ] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1220), + [aux_sym_cmd_identifier_token6] = ACTIONS(1224), + [sym__newline] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(335)] = { + [sym_comment] = STATE(335), + [anon_sym_in] = ACTIONS(1218), [anon_sym_STAR_STAR] = ACTIONS(1228), [anon_sym_PLUS_PLUS] = ACTIONS(1228), [anon_sym_STAR] = ACTIONS(1230), @@ -74040,56 +75320,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1230), [anon_sym_GT_EQ] = ACTIONS(1228), [aux_sym_cmd_identifier_token6] = ACTIONS(1232), - [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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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), + [sym__newline] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(324)] = { - [sym_comment] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(1234), - [anon_sym_in] = ACTIONS(1020), + [STATE(336)] = { + [sym_comment] = STATE(336), + [anon_sym_in] = ACTIONS(1226), [anon_sym_STAR_STAR] = ACTIONS(1228), [anon_sym_PLUS_PLUS] = ACTIONS(1228), [anon_sym_STAR] = ACTIONS(1230), @@ -74125,729 +75405,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1230), [anon_sym_GT_EQ] = ACTIONS(1228), [aux_sym_cmd_identifier_token6] = ACTIONS(1232), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(325)] = { - [sym_comment] = STATE(325), - [anon_sym_in] = ACTIONS(1012), - [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(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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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_POUND] = ACTIONS(103), - }, - [STATE(326)] = { - [sym_comment] = STATE(326), - [anon_sym_in] = ACTIONS(1020), - [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(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(327)] = { - [sym_comment] = STATE(327), - [anon_sym_in] = ACTIONS(1020), - [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(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), + [STATE(337)] = { + [sym_comment] = STATE(337), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(328)] = { - [sym_comment] = STATE(328), - [anon_sym_in] = ACTIONS(1012), - [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(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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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), + [STATE(338)] = { + [sym_comment] = STATE(338), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(329)] = { - [sym_comment] = STATE(329), - [anon_sym_in] = ACTIONS(1012), - [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(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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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), + [STATE(339)] = { + [sym_comment] = STATE(339), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(330)] = { - [sym_comment] = STATE(330), - [anon_sym_in] = ACTIONS(1020), - [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(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), + [STATE(340)] = { + [sym_comment] = STATE(340), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(331)] = { - [sym_comment] = STATE(331), - [anon_sym_in] = ACTIONS(1012), - [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(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(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [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(1012), - [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_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1012), - [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), + [STATE(341)] = { + [sym_comment] = STATE(341), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_err_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_GT_PIPE] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1218), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1218), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1218), + [anon_sym_xor2] = ACTIONS(1218), + [anon_sym_or2] = ACTIONS(1218), + [anon_sym_not_DASHin2] = ACTIONS(1218), + [anon_sym_has2] = ACTIONS(1218), + [anon_sym_not_DASHhas2] = ACTIONS(1218), + [anon_sym_starts_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1218), + [anon_sym_ends_DASHwith2] = ACTIONS(1218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1218), + [anon_sym_EQ_EQ2] = ACTIONS(1218), + [anon_sym_BANG_EQ2] = ACTIONS(1218), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1218), + [anon_sym_GT_EQ2] = ACTIONS(1218), + [anon_sym_EQ_TILDE2] = ACTIONS(1218), + [anon_sym_BANG_TILDE2] = ACTIONS(1218), + [anon_sym_like2] = ACTIONS(1218), + [anon_sym_not_DASHlike2] = ACTIONS(1218), + [anon_sym_STAR_STAR2] = ACTIONS(1218), + [anon_sym_PLUS_PLUS2] = ACTIONS(1218), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1218), + [anon_sym_SLASH_SLASH2] = ACTIONS(1218), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1218), + [anon_sym_bit_DASHshr2] = ACTIONS(1218), + [anon_sym_bit_DASHand2] = ACTIONS(1218), + [anon_sym_bit_DASHxor2] = ACTIONS(1218), + [anon_sym_bit_DASHor2] = ACTIONS(1218), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(332)] = { - [sym_comment] = STATE(332), - [anon_sym_in] = ACTIONS(1020), - [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(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), + [STATE(342)] = { + [sym_comment] = STATE(342), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(333)] = { - [sym__path_suffix] = STATE(355), - [sym_comment] = STATE(333), + [STATE(343)] = { + [sym_cell_path] = STATE(383), + [sym_path] = STATE(367), + [sym_comment] = STATE(343), + [aux_sym__where_predicate_lhs_repeat1] = STATE(375), [anon_sym_EQ] = ACTIONS(1442), [anon_sym_PLUS_EQ] = ACTIONS(1442), [anon_sym_DASH_EQ] = ACTIONS(1442), @@ -74905,9 +76018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), [sym__entry_separator] = ACTIONS(1444), [anon_sym_COLON2] = ACTIONS(1442), - [anon_sym_QMARK2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_DOT2] = ACTIONS(1446), [anon_sym_err_GT] = ACTIONS(1442), [anon_sym_out_GT] = ACTIONS(1442), [anon_sym_e_GT] = ACTIONS(1442), @@ -74926,9 +76037,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1442), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(334)] = { - [sym__path_suffix] = STATE(396), - [sym_comment] = STATE(334), + [STATE(344)] = { + [sym__path_suffix] = STATE(386), + [sym_comment] = STATE(344), + [anon_sym_EQ] = ACTIONS(1448), + [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_RPAREN] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [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(1448), + [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(1448), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [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(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [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(3), + }, + [STATE(345)] = { + [sym_cell_path] = STATE(426), + [sym_path] = STATE(395), + [sym_comment] = STATE(345), + [aux_sym__where_predicate_lhs_repeat1] = STATE(359), [anon_sym_EQ] = ACTIONS(1442), [anon_sym_PLUS_EQ] = ACTIONS(1444), [anon_sym_DASH_EQ] = ACTIONS(1444), @@ -74986,9 +76180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), [anon_sym_COLON2] = ACTIONS(1444), - [anon_sym_QMARK2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_DOT2] = ACTIONS(1456), [anon_sym_err_GT] = ACTIONS(1442), [anon_sym_out_GT] = ACTIONS(1442), [anon_sym_e_GT] = ACTIONS(1442), @@ -75007,251 +76199,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(335)] = { - [sym_cell_path] = STATE(402), - [sym_path] = STATE(393), - [sym_comment] = STATE(335), - [aux_sym__where_predicate_lhs_repeat1] = STATE(347), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_PLUS_EQ] = ACTIONS(1456), - [anon_sym_DASH_EQ] = ACTIONS(1456), - [anon_sym_STAR_EQ] = ACTIONS(1456), - [anon_sym_SLASH_EQ] = ACTIONS(1456), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1456), - [anon_sym_in] = ACTIONS(1456), - [sym__newline] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_err_GT_PIPE] = ACTIONS(1456), - [anon_sym_out_GT_PIPE] = ACTIONS(1456), - [anon_sym_e_GT_PIPE] = ACTIONS(1456), - [anon_sym_o_GT_PIPE] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1456), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_GT2] = ACTIONS(1454), - [anon_sym_DASH2] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_STAR2] = ACTIONS(1454), - [anon_sym_and2] = ACTIONS(1456), - [anon_sym_xor2] = ACTIONS(1456), - [anon_sym_or2] = ACTIONS(1456), - [anon_sym_not_DASHin2] = ACTIONS(1456), - [anon_sym_has2] = ACTIONS(1456), - [anon_sym_not_DASHhas2] = ACTIONS(1456), - [anon_sym_starts_DASHwith2] = ACTIONS(1456), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1456), - [anon_sym_ends_DASHwith2] = ACTIONS(1456), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1456), - [anon_sym_EQ_EQ2] = ACTIONS(1456), - [anon_sym_BANG_EQ2] = ACTIONS(1456), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ2] = ACTIONS(1456), - [anon_sym_GT_EQ2] = ACTIONS(1456), - [anon_sym_EQ_TILDE2] = ACTIONS(1456), - [anon_sym_BANG_TILDE2] = ACTIONS(1456), - [anon_sym_like2] = ACTIONS(1456), - [anon_sym_not_DASHlike2] = ACTIONS(1456), - [anon_sym_STAR_STAR2] = ACTIONS(1456), - [anon_sym_PLUS_PLUS2] = ACTIONS(1454), - [anon_sym_SLASH2] = ACTIONS(1454), - [anon_sym_mod2] = ACTIONS(1456), - [anon_sym_SLASH_SLASH2] = ACTIONS(1456), - [anon_sym_PLUS2] = ACTIONS(1454), - [anon_sym_bit_DASHshl2] = ACTIONS(1456), - [anon_sym_bit_DASHshr2] = ACTIONS(1456), - [anon_sym_bit_DASHand2] = ACTIONS(1456), - [anon_sym_bit_DASHxor2] = ACTIONS(1456), - [anon_sym_bit_DASHor2] = ACTIONS(1456), - [anon_sym_DOT_DOT2] = ACTIONS(1454), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1456), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1456), - [anon_sym_COLON2] = ACTIONS(1456), - [anon_sym_DOT2] = ACTIONS(1458), - [anon_sym_err_GT] = ACTIONS(1454), - [anon_sym_out_GT] = ACTIONS(1454), - [anon_sym_e_GT] = ACTIONS(1454), - [anon_sym_o_GT] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT] = ACTIONS(1454), - [anon_sym_err_GT_GT] = ACTIONS(1456), - [anon_sym_out_GT_GT] = ACTIONS(1456), - [anon_sym_e_GT_GT] = ACTIONS(1456), - [anon_sym_o_GT_GT] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(336)] = { - [sym_comment] = STATE(336), - [anon_sym_EQ] = ACTIONS(1460), - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_STAR_EQ] = ACTIONS(1460), - [anon_sym_SLASH_EQ] = ACTIONS(1460), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_RBRACK] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1460), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1460), - [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(1460), - [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(1460), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1460), - [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(1460), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), - [sym__entry_separator] = ACTIONS(1462), - [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_QMARK2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1460), - [anon_sym_err_GT] = ACTIONS(1460), - [anon_sym_out_GT] = ACTIONS(1460), - [anon_sym_e_GT] = ACTIONS(1460), - [anon_sym_o_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT] = ACTIONS(1460), - [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), + [STATE(346)] = { + [sym__path_suffix] = STATE(350), + [sym_comment] = STATE(346), + [anon_sym_EQ] = ACTIONS(1448), + [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(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1448), + [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(1448), + [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(1448), + [anon_sym_mod2] = ACTIONS(1448), + [anon_sym_SLASH_SLASH2] = ACTIONS(1448), + [anon_sym_PLUS2] = ACTIONS(1448), + [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(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [sym__entry_separator] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1448), + [anon_sym_QMARK2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [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(103), }, - [STATE(337)] = { - [sym_cell_path] = STATE(372), - [sym_path] = STATE(352), - [sym_comment] = STATE(337), - [aux_sym__where_predicate_lhs_repeat1] = STATE(365), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_PLUS_EQ] = ACTIONS(1454), - [anon_sym_DASH_EQ] = ACTIONS(1454), - [anon_sym_STAR_EQ] = ACTIONS(1454), - [anon_sym_SLASH_EQ] = ACTIONS(1454), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [sym__newline] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_err_GT_PIPE] = ACTIONS(1454), - [anon_sym_out_GT_PIPE] = ACTIONS(1454), - [anon_sym_e_GT_PIPE] = ACTIONS(1454), - [anon_sym_o_GT_PIPE] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1454), - [anon_sym_GT2] = ACTIONS(1454), - [anon_sym_DASH2] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_STAR2] = ACTIONS(1454), - [anon_sym_and2] = ACTIONS(1454), - [anon_sym_xor2] = ACTIONS(1454), - [anon_sym_or2] = ACTIONS(1454), - [anon_sym_not_DASHin2] = ACTIONS(1454), - [anon_sym_has2] = ACTIONS(1454), - [anon_sym_not_DASHhas2] = ACTIONS(1454), - [anon_sym_starts_DASHwith2] = ACTIONS(1454), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1454), - [anon_sym_ends_DASHwith2] = ACTIONS(1454), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1454), - [anon_sym_EQ_EQ2] = ACTIONS(1454), - [anon_sym_BANG_EQ2] = ACTIONS(1454), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ2] = ACTIONS(1454), - [anon_sym_GT_EQ2] = ACTIONS(1454), - [anon_sym_EQ_TILDE2] = ACTIONS(1454), - [anon_sym_BANG_TILDE2] = ACTIONS(1454), - [anon_sym_like2] = ACTIONS(1454), - [anon_sym_not_DASHlike2] = ACTIONS(1454), - [anon_sym_STAR_STAR2] = ACTIONS(1454), - [anon_sym_PLUS_PLUS2] = ACTIONS(1454), - [anon_sym_SLASH2] = ACTIONS(1454), - [anon_sym_mod2] = ACTIONS(1454), - [anon_sym_SLASH_SLASH2] = ACTIONS(1454), - [anon_sym_PLUS2] = ACTIONS(1454), - [anon_sym_bit_DASHshl2] = ACTIONS(1454), - [anon_sym_bit_DASHshr2] = ACTIONS(1454), - [anon_sym_bit_DASHand2] = ACTIONS(1454), - [anon_sym_bit_DASHxor2] = ACTIONS(1454), - [anon_sym_bit_DASHor2] = ACTIONS(1454), - [anon_sym_DOT_DOT2] = ACTIONS(1454), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1456), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1456), - [sym__entry_separator] = ACTIONS(1456), - [anon_sym_COLON2] = ACTIONS(1454), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1454), - [anon_sym_out_GT] = ACTIONS(1454), - [anon_sym_e_GT] = ACTIONS(1454), - [anon_sym_o_GT] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT] = ACTIONS(1454), - [anon_sym_err_GT_GT] = ACTIONS(1454), - [anon_sym_out_GT_GT] = ACTIONS(1454), - [anon_sym_e_GT_GT] = ACTIONS(1454), - [anon_sym_o_GT_GT] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1454), + [STATE(347)] = { + [sym_comment] = STATE(347), + [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_QMARK2] = ACTIONS(1466), + [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(338)] = { - [sym_comment] = STATE(338), + [STATE(348)] = { + [sym_comment] = STATE(348), [anon_sym_EQ] = ACTIONS(1468), [anon_sym_PLUS_EQ] = ACTIONS(1468), [anon_sym_DASH_EQ] = ACTIONS(1468), @@ -75270,11 +76381,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_RBRACK] = ACTIONS(1468), [anon_sym_GT2] = ACTIONS(1468), [anon_sym_DASH2] = ACTIONS(1468), [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), [anon_sym_STAR2] = ACTIONS(1468), [anon_sym_and2] = ACTIONS(1468), [anon_sym_xor2] = ACTIONS(1468), @@ -75311,6 +76420,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), [sym__entry_separator] = ACTIONS(1470), [anon_sym_COLON2] = ACTIONS(1468), + [anon_sym_QMARK2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), [anon_sym_DOT2] = ACTIONS(1468), [anon_sym_err_GT] = ACTIONS(1468), [anon_sym_out_GT] = ACTIONS(1468), @@ -75330,76 +76441,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(339)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5213), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3951), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(339), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACK] = ACTIONS(1482), + [STATE(349)] = { + [sym_comment] = STATE(349), + [anon_sym_EQ] = ACTIONS(1472), + [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_RPAREN] = ACTIONS(1474), + [anon_sym_GT2] = ACTIONS(1472), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_STAR2] = ACTIONS(1472), + [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(1472), + [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(1472), + [anon_sym_SLASH2] = ACTIONS(1472), + [anon_sym_mod2] = ACTIONS(1474), + [anon_sym_SLASH_SLASH2] = ACTIONS(1474), + [anon_sym_PLUS2] = ACTIONS(1472), + [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(1472), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), + [anon_sym_COLON2] = ACTIONS(1474), + [anon_sym_QMARK2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DOT2] = ACTIONS(1472), + [anon_sym_err_GT] = ACTIONS(1472), + [anon_sym_out_GT] = ACTIONS(1472), + [anon_sym_e_GT] = ACTIONS(1472), + [anon_sym_o_GT] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT] = ACTIONS(1472), + [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(3), + }, + [STATE(350)] = { + [sym_comment] = STATE(350), + [anon_sym_EQ] = ACTIONS(1476), + [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_RBRACK] = ACTIONS(1476), + [anon_sym_GT2] = ACTIONS(1476), + [anon_sym_DASH2] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_STAR2] = ACTIONS(1476), + [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(1476), + [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(1476), + [anon_sym_mod2] = ACTIONS(1476), + [anon_sym_SLASH_SLASH2] = ACTIONS(1476), + [anon_sym_PLUS2] = ACTIONS(1476), + [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(1476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), + [sym__entry_separator] = ACTIONS(1478), + [anon_sym_COLON2] = ACTIONS(1476), + [anon_sym_DOT2] = ACTIONS(1476), + [anon_sym_err_GT] = ACTIONS(1476), + [anon_sym_out_GT] = ACTIONS(1476), + [anon_sym_e_GT] = ACTIONS(1476), + [anon_sym_o_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT] = ACTIONS(1476), + [anon_sym_err_GT_GT] = ACTIONS(1476), + [anon_sym_out_GT_GT] = ACTIONS(1476), + [anon_sym_e_GT_GT] = ACTIONS(1476), + [anon_sym_o_GT_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(351)] = { + [sym_comment] = STATE(351), + [anon_sym_EQ] = ACTIONS(1480), + [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(1480), + [anon_sym_DASH2] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_STAR2] = ACTIONS(1480), + [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(1480), + [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(1480), + [anon_sym_mod2] = ACTIONS(1480), + [anon_sym_SLASH_SLASH2] = ACTIONS(1480), + [anon_sym_PLUS2] = ACTIONS(1480), + [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(1480), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1482), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1482), + [sym__entry_separator] = ACTIONS(1482), + [anon_sym_COLON2] = ACTIONS(1480), + [anon_sym_QMARK2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DOT2] = ACTIONS(1480), + [anon_sym_err_GT] = ACTIONS(1480), + [anon_sym_out_GT] = ACTIONS(1480), + [anon_sym_e_GT] = ACTIONS(1480), + [anon_sym_o_GT] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT] = ACTIONS(1480), + [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(103), + }, + [STATE(352)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5517), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3887), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(352), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -75410,248 +76761,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(340)] = { - [sym_comment] = STATE(340), - [anon_sym_EQ] = ACTIONS(1500), - [anon_sym_PLUS_EQ] = ACTIONS(1500), - [anon_sym_DASH_EQ] = ACTIONS(1500), - [anon_sym_STAR_EQ] = ACTIONS(1500), - [anon_sym_SLASH_EQ] = ACTIONS(1500), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1500), - [anon_sym_in] = ACTIONS(1500), - [sym__newline] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_err_GT_PIPE] = ACTIONS(1500), - [anon_sym_out_GT_PIPE] = ACTIONS(1500), - [anon_sym_e_GT_PIPE] = ACTIONS(1500), - [anon_sym_o_GT_PIPE] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1500), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1500), - [anon_sym_xor2] = ACTIONS(1500), - [anon_sym_or2] = ACTIONS(1500), - [anon_sym_not_DASHin2] = ACTIONS(1500), - [anon_sym_has2] = ACTIONS(1500), - [anon_sym_not_DASHhas2] = ACTIONS(1500), - [anon_sym_starts_DASHwith2] = ACTIONS(1500), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1500), - [anon_sym_ends_DASHwith2] = ACTIONS(1500), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1500), - [anon_sym_EQ_EQ2] = ACTIONS(1500), - [anon_sym_BANG_EQ2] = ACTIONS(1500), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1500), - [anon_sym_GT_EQ2] = ACTIONS(1500), - [anon_sym_EQ_TILDE2] = ACTIONS(1500), - [anon_sym_BANG_TILDE2] = ACTIONS(1500), - [anon_sym_like2] = ACTIONS(1500), - [anon_sym_not_DASHlike2] = ACTIONS(1500), - [anon_sym_STAR_STAR2] = ACTIONS(1500), - [anon_sym_PLUS_PLUS2] = ACTIONS(1500), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1500), - [anon_sym_SLASH_SLASH2] = ACTIONS(1500), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1500), - [anon_sym_bit_DASHshr2] = ACTIONS(1500), - [anon_sym_bit_DASHand2] = ACTIONS(1500), - [anon_sym_bit_DASHxor2] = ACTIONS(1500), - [anon_sym_bit_DASHor2] = ACTIONS(1500), - [anon_sym_DOT_DOT2] = ACTIONS(1500), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), - [sym__entry_separator] = ACTIONS(1502), - [anon_sym_COLON2] = ACTIONS(1500), - [anon_sym_QMARK2] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DOT2] = ACTIONS(1500), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1500), - [anon_sym_out_GT_GT] = ACTIONS(1500), - [anon_sym_e_GT_GT] = ACTIONS(1500), - [anon_sym_o_GT_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(341)] = { - [sym_comment] = STATE(341), - [anon_sym_EQ] = ACTIONS(1504), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1504), - [anon_sym_in] = ACTIONS(1504), - [sym__newline] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_err_GT_PIPE] = ACTIONS(1504), - [anon_sym_out_GT_PIPE] = ACTIONS(1504), - [anon_sym_e_GT_PIPE] = ACTIONS(1504), - [anon_sym_o_GT_PIPE] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), - [anon_sym_GT2] = ACTIONS(1504), - [anon_sym_DASH2] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_STAR2] = ACTIONS(1504), - [anon_sym_and2] = ACTIONS(1504), - [anon_sym_xor2] = ACTIONS(1504), - [anon_sym_or2] = ACTIONS(1504), - [anon_sym_not_DASHin2] = ACTIONS(1504), - [anon_sym_has2] = ACTIONS(1504), - [anon_sym_not_DASHhas2] = ACTIONS(1504), - [anon_sym_starts_DASHwith2] = ACTIONS(1504), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1504), - [anon_sym_ends_DASHwith2] = ACTIONS(1504), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1504), - [anon_sym_EQ_EQ2] = ACTIONS(1504), - [anon_sym_BANG_EQ2] = ACTIONS(1504), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ2] = ACTIONS(1504), - [anon_sym_GT_EQ2] = ACTIONS(1504), - [anon_sym_EQ_TILDE2] = ACTIONS(1504), - [anon_sym_BANG_TILDE2] = ACTIONS(1504), - [anon_sym_like2] = ACTIONS(1504), - [anon_sym_not_DASHlike2] = ACTIONS(1504), - [anon_sym_STAR_STAR2] = ACTIONS(1504), - [anon_sym_PLUS_PLUS2] = ACTIONS(1504), - [anon_sym_SLASH2] = ACTIONS(1504), - [anon_sym_mod2] = ACTIONS(1504), - [anon_sym_SLASH_SLASH2] = ACTIONS(1504), - [anon_sym_PLUS2] = ACTIONS(1504), - [anon_sym_bit_DASHshl2] = ACTIONS(1504), - [anon_sym_bit_DASHshr2] = ACTIONS(1504), - [anon_sym_bit_DASHand2] = ACTIONS(1504), - [anon_sym_bit_DASHxor2] = ACTIONS(1504), - [anon_sym_bit_DASHor2] = ACTIONS(1504), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [sym__entry_separator] = ACTIONS(1506), - [anon_sym_COLON2] = ACTIONS(1504), - [anon_sym_QMARK2] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1504), - [anon_sym_out_GT_GT] = ACTIONS(1504), - [anon_sym_e_GT_GT] = ACTIONS(1504), - [anon_sym_o_GT_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(342)] = { - [sym_comment] = STATE(342), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_PLUS_EQ] = ACTIONS(1508), - [anon_sym_DASH_EQ] = ACTIONS(1508), - [anon_sym_STAR_EQ] = ACTIONS(1508), - [anon_sym_SLASH_EQ] = ACTIONS(1508), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1508), - [anon_sym_in] = ACTIONS(1508), - [sym__newline] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_err_GT_PIPE] = ACTIONS(1508), - [anon_sym_out_GT_PIPE] = ACTIONS(1508), - [anon_sym_e_GT_PIPE] = ACTIONS(1508), - [anon_sym_o_GT_PIPE] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), - [anon_sym_GT2] = ACTIONS(1508), - [anon_sym_DASH2] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_STAR2] = ACTIONS(1508), - [anon_sym_and2] = ACTIONS(1508), - [anon_sym_xor2] = ACTIONS(1508), - [anon_sym_or2] = ACTIONS(1508), - [anon_sym_not_DASHin2] = ACTIONS(1508), - [anon_sym_has2] = ACTIONS(1508), - [anon_sym_not_DASHhas2] = ACTIONS(1508), - [anon_sym_starts_DASHwith2] = ACTIONS(1508), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1508), - [anon_sym_ends_DASHwith2] = ACTIONS(1508), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1508), - [anon_sym_EQ_EQ2] = ACTIONS(1508), - [anon_sym_BANG_EQ2] = ACTIONS(1508), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ2] = ACTIONS(1508), - [anon_sym_GT_EQ2] = ACTIONS(1508), - [anon_sym_EQ_TILDE2] = ACTIONS(1508), - [anon_sym_BANG_TILDE2] = ACTIONS(1508), - [anon_sym_like2] = ACTIONS(1508), - [anon_sym_not_DASHlike2] = ACTIONS(1508), - [anon_sym_STAR_STAR2] = ACTIONS(1508), - [anon_sym_PLUS_PLUS2] = ACTIONS(1508), - [anon_sym_SLASH2] = ACTIONS(1508), - [anon_sym_mod2] = ACTIONS(1508), - [anon_sym_SLASH_SLASH2] = ACTIONS(1508), - [anon_sym_PLUS2] = ACTIONS(1508), - [anon_sym_bit_DASHshl2] = ACTIONS(1508), - [anon_sym_bit_DASHshr2] = ACTIONS(1508), - [anon_sym_bit_DASHand2] = ACTIONS(1508), - [anon_sym_bit_DASHxor2] = ACTIONS(1508), - [anon_sym_bit_DASHor2] = ACTIONS(1508), - [anon_sym_DOT_DOT2] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), - [sym__entry_separator] = ACTIONS(1510), - [anon_sym_COLON2] = ACTIONS(1508), - [anon_sym_QMARK2] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DOT2] = ACTIONS(1508), - [anon_sym_err_GT] = ACTIONS(1508), - [anon_sym_out_GT] = ACTIONS(1508), - [anon_sym_e_GT] = ACTIONS(1508), - [anon_sym_o_GT] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT] = ACTIONS(1508), - [anon_sym_err_GT_GT] = ACTIONS(1508), - [anon_sym_out_GT_GT] = ACTIONS(1508), - [anon_sym_e_GT_GT] = ACTIONS(1508), - [anon_sym_o_GT_GT] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(343)] = { - [sym_comment] = STATE(343), + [STATE(353)] = { + [sym_comment] = STATE(353), [anon_sym_EQ] = ACTIONS(1512), [anon_sym_PLUS_EQ] = ACTIONS(1512), [anon_sym_DASH_EQ] = ACTIONS(1512), @@ -75670,9 +76781,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1512), [anon_sym_GT2] = ACTIONS(1512), [anon_sym_DASH2] = ACTIONS(1512), [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1512), [anon_sym_STAR2] = ACTIONS(1512), [anon_sym_and2] = ACTIONS(1512), [anon_sym_xor2] = ACTIONS(1512), @@ -75709,8 +76822,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), [sym__entry_separator] = ACTIONS(1514), [anon_sym_COLON2] = ACTIONS(1512), - [anon_sym_QMARK2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), [anon_sym_DOT2] = ACTIONS(1512), [anon_sym_err_GT] = ACTIONS(1512), [anon_sym_out_GT] = ACTIONS(1512), @@ -75730,76 +76841,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(344)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5142), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3894), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(344), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACK] = ACTIONS(1516), + [STATE(354)] = { + [sym_comment] = STATE(354), + [anon_sym_EQ] = ACTIONS(1516), + [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(1516), + [anon_sym_DASH2] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_STAR2] = ACTIONS(1516), + [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(1516), + [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(1516), + [anon_sym_mod2] = ACTIONS(1516), + [anon_sym_SLASH_SLASH2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1516), + [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(1516), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1518), + [sym__entry_separator] = ACTIONS(1518), + [anon_sym_COLON2] = ACTIONS(1516), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_DOT2] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1516), + [anon_sym_out_GT] = ACTIONS(1516), + [anon_sym_e_GT] = ACTIONS(1516), + [anon_sym_o_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT] = ACTIONS(1516), + [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(103), + }, + [STATE(355)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5229), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3950), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(355), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1520), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -75810,249 +77001,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(345)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5087), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3916), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(345), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [STATE(356)] = { + [sym_comment] = STATE(356), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1518), + [anon_sym_DASH_EQ] = ACTIONS(1518), + [anon_sym_STAR_EQ] = ACTIONS(1518), + [anon_sym_SLASH_EQ] = ACTIONS(1518), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1518), + [anon_sym_in] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_err_GT_PIPE] = ACTIONS(1518), + [anon_sym_out_GT_PIPE] = ACTIONS(1518), + [anon_sym_e_GT_PIPE] = ACTIONS(1518), + [anon_sym_o_GT_PIPE] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_GT2] = ACTIONS(1516), + [anon_sym_DASH2] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_STAR2] = ACTIONS(1516), + [anon_sym_and2] = ACTIONS(1518), + [anon_sym_xor2] = ACTIONS(1518), + [anon_sym_or2] = ACTIONS(1518), + [anon_sym_not_DASHin2] = ACTIONS(1518), + [anon_sym_has2] = ACTIONS(1518), + [anon_sym_not_DASHhas2] = ACTIONS(1518), + [anon_sym_starts_DASHwith2] = ACTIONS(1518), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1518), + [anon_sym_ends_DASHwith2] = ACTIONS(1518), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1518), + [anon_sym_EQ_EQ2] = ACTIONS(1518), + [anon_sym_BANG_EQ2] = ACTIONS(1518), + [anon_sym_LT2] = ACTIONS(1516), + [anon_sym_LT_EQ2] = ACTIONS(1518), + [anon_sym_GT_EQ2] = ACTIONS(1518), + [anon_sym_EQ_TILDE2] = ACTIONS(1518), + [anon_sym_BANG_TILDE2] = ACTIONS(1518), + [anon_sym_like2] = ACTIONS(1518), + [anon_sym_not_DASHlike2] = ACTIONS(1518), + [anon_sym_STAR_STAR2] = ACTIONS(1518), + [anon_sym_PLUS_PLUS2] = ACTIONS(1516), + [anon_sym_SLASH2] = ACTIONS(1516), + [anon_sym_mod2] = ACTIONS(1518), + [anon_sym_SLASH_SLASH2] = ACTIONS(1518), + [anon_sym_PLUS2] = ACTIONS(1516), + [anon_sym_bit_DASHshl2] = ACTIONS(1518), + [anon_sym_bit_DASHshr2] = ACTIONS(1518), + [anon_sym_bit_DASHand2] = ACTIONS(1518), + [anon_sym_bit_DASHxor2] = ACTIONS(1518), + [anon_sym_bit_DASHor2] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1518), + [anon_sym_COLON2] = ACTIONS(1518), + [anon_sym_QMARK2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_DOT2] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1516), + [anon_sym_out_GT] = ACTIONS(1516), + [anon_sym_e_GT] = ACTIONS(1516), + [anon_sym_o_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT] = ACTIONS(1516), + [anon_sym_err_GT_GT] = ACTIONS(1518), + [anon_sym_out_GT_GT] = ACTIONS(1518), + [anon_sym_e_GT_GT] = ACTIONS(1518), + [anon_sym_o_GT_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(346)] = { - [sym_comment] = STATE(346), - [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_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_RBRACE] = 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_QMARK2] = ACTIONS(1520), - [anon_sym_BANG] = 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(357)] = { + [sym_comment] = STATE(357), + [anon_sym_EQ] = ACTIONS(1522), + [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_RPAREN] = ACTIONS(1524), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_STAR2] = ACTIONS(1522), + [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(1522), + [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(1522), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [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(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_COLON2] = ACTIONS(1524), + [anon_sym_QMARK2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [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(3), + }, + [STATE(358)] = { + [sym_comment] = STATE(358), + [anon_sym_EQ] = ACTIONS(1472), + [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(1472), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_STAR2] = ACTIONS(1472), + [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(1472), + [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(1472), + [anon_sym_mod2] = ACTIONS(1472), + [anon_sym_SLASH_SLASH2] = ACTIONS(1472), + [anon_sym_PLUS2] = ACTIONS(1472), + [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(1472), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), + [sym__entry_separator] = ACTIONS(1474), + [anon_sym_COLON2] = ACTIONS(1472), + [anon_sym_QMARK2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DOT2] = ACTIONS(1472), + [anon_sym_err_GT] = ACTIONS(1472), + [anon_sym_out_GT] = ACTIONS(1472), + [anon_sym_e_GT] = ACTIONS(1472), + [anon_sym_o_GT] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT] = ACTIONS(1472), + [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(103), }, - [STATE(347)] = { - [sym_path] = STATE(393), - [sym_comment] = STATE(347), - [aux_sym__where_predicate_lhs_repeat1] = STATE(349), - [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(1458), - [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(348)] = { - [sym_comment] = STATE(348), - [anon_sym_EQ] = ACTIONS(1528), + [STATE(359)] = { + [sym_path] = STATE(395), + [sym_comment] = STATE(359), + [aux_sym__where_predicate_lhs_repeat1] = STATE(364), + [anon_sym_EQ] = ACTIONS(1526), [anon_sym_PLUS_EQ] = ACTIONS(1528), [anon_sym_DASH_EQ] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1528), @@ -76070,10 +77263,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), - [anon_sym_GT2] = ACTIONS(1528), - [anon_sym_DASH2] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_STAR2] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1526), [anon_sym_and2] = ACTIONS(1528), [anon_sym_xor2] = ACTIONS(1528), [anon_sym_or2] = ACTIONS(1528), @@ -76086,7 +77280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1528), [anon_sym_EQ_EQ2] = ACTIONS(1528), [anon_sym_BANG_EQ2] = ACTIONS(1528), - [anon_sym_LT2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), [anon_sym_LT_EQ2] = ACTIONS(1528), [anon_sym_GT_EQ2] = ACTIONS(1528), [anon_sym_EQ_TILDE2] = ACTIONS(1528), @@ -76094,32 +77288,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1528), [anon_sym_not_DASHlike2] = ACTIONS(1528), [anon_sym_STAR_STAR2] = ACTIONS(1528), - [anon_sym_PLUS_PLUS2] = ACTIONS(1528), - [anon_sym_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1526), + [anon_sym_SLASH2] = ACTIONS(1526), [anon_sym_mod2] = ACTIONS(1528), [anon_sym_SLASH_SLASH2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), [anon_sym_bit_DASHshl2] = ACTIONS(1528), [anon_sym_bit_DASHshr2] = ACTIONS(1528), [anon_sym_bit_DASHand2] = ACTIONS(1528), [anon_sym_bit_DASHxor2] = ACTIONS(1528), [anon_sym_bit_DASHor2] = ACTIONS(1528), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [sym__entry_separator] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), [anon_sym_COLON2] = ACTIONS(1528), - [anon_sym_QMARK2] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_DOT2] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), [anon_sym_err_GT_GT] = ACTIONS(1528), [anon_sym_out_GT_GT] = ACTIONS(1528), [anon_sym_e_GT_GT] = ACTIONS(1528), @@ -76128,158 +77319,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(349)] = { - [sym_path] = STATE(393), - [sym_comment] = STATE(349), - [aux_sym__where_predicate_lhs_repeat1] = STATE(349), - [anon_sym_EQ] = ACTIONS(1532), - [anon_sym_PLUS_EQ] = ACTIONS(1534), - [anon_sym_DASH_EQ] = ACTIONS(1534), - [anon_sym_STAR_EQ] = ACTIONS(1534), - [anon_sym_SLASH_EQ] = ACTIONS(1534), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1534), - [anon_sym_in] = ACTIONS(1534), - [sym__newline] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_err_GT_PIPE] = ACTIONS(1534), - [anon_sym_out_GT_PIPE] = ACTIONS(1534), - [anon_sym_e_GT_PIPE] = ACTIONS(1534), - [anon_sym_o_GT_PIPE] = ACTIONS(1534), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1534), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1534), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1534), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_GT2] = ACTIONS(1532), - [anon_sym_DASH2] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1534), - [anon_sym_STAR2] = ACTIONS(1532), - [anon_sym_and2] = ACTIONS(1534), - [anon_sym_xor2] = ACTIONS(1534), - [anon_sym_or2] = ACTIONS(1534), - [anon_sym_not_DASHin2] = ACTIONS(1534), - [anon_sym_has2] = ACTIONS(1534), - [anon_sym_not_DASHhas2] = ACTIONS(1534), - [anon_sym_starts_DASHwith2] = ACTIONS(1534), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1534), - [anon_sym_ends_DASHwith2] = ACTIONS(1534), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1534), - [anon_sym_EQ_EQ2] = ACTIONS(1534), - [anon_sym_BANG_EQ2] = ACTIONS(1534), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ2] = ACTIONS(1534), - [anon_sym_GT_EQ2] = ACTIONS(1534), - [anon_sym_EQ_TILDE2] = ACTIONS(1534), - [anon_sym_BANG_TILDE2] = ACTIONS(1534), - [anon_sym_like2] = ACTIONS(1534), - [anon_sym_not_DASHlike2] = ACTIONS(1534), - [anon_sym_STAR_STAR2] = ACTIONS(1534), - [anon_sym_PLUS_PLUS2] = ACTIONS(1532), - [anon_sym_SLASH2] = ACTIONS(1532), - [anon_sym_mod2] = ACTIONS(1534), - [anon_sym_SLASH_SLASH2] = ACTIONS(1534), - [anon_sym_PLUS2] = ACTIONS(1532), - [anon_sym_bit_DASHshl2] = ACTIONS(1534), - [anon_sym_bit_DASHshr2] = ACTIONS(1534), - [anon_sym_bit_DASHand2] = ACTIONS(1534), - [anon_sym_bit_DASHxor2] = ACTIONS(1534), - [anon_sym_bit_DASHor2] = ACTIONS(1534), - [anon_sym_DOT_DOT2] = ACTIONS(1532), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1534), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1534), - [anon_sym_COLON2] = ACTIONS(1534), - [anon_sym_DOT2] = ACTIONS(1536), - [anon_sym_err_GT] = ACTIONS(1532), - [anon_sym_out_GT] = ACTIONS(1532), - [anon_sym_e_GT] = ACTIONS(1532), - [anon_sym_o_GT] = ACTIONS(1532), - [anon_sym_err_PLUSout_GT] = ACTIONS(1532), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), - [anon_sym_o_PLUSe_GT] = ACTIONS(1532), - [anon_sym_e_PLUSo_GT] = ACTIONS(1532), - [anon_sym_err_GT_GT] = ACTIONS(1534), - [anon_sym_out_GT_GT] = ACTIONS(1534), - [anon_sym_e_GT_GT] = ACTIONS(1534), - [anon_sym_o_GT_GT] = ACTIONS(1534), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1534), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1534), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1534), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1534), + [STATE(360)] = { + [sym_comment] = STATE(360), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_PLUS_EQ] = ACTIONS(1532), + [anon_sym_DASH_EQ] = ACTIONS(1532), + [anon_sym_STAR_EQ] = ACTIONS(1532), + [anon_sym_SLASH_EQ] = ACTIONS(1532), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_GT2] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1530), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1530), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_like2] = ACTIONS(1532), + [anon_sym_not_DASHlike2] = ACTIONS(1532), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1530), + [anon_sym_SLASH2] = ACTIONS(1530), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT_DOT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), + [anon_sym_COLON2] = ACTIONS(1532), + [anon_sym_QMARK2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(350)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5122), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3869), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(350), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACK] = ACTIONS(1539), + [STATE(361)] = { + [sym_comment] = STATE(361), + [anon_sym_EQ] = ACTIONS(1522), + [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(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_STAR2] = ACTIONS(1522), + [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(1522), + [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(1522), + [anon_sym_mod2] = ACTIONS(1522), + [anon_sym_SLASH_SLASH2] = ACTIONS(1522), + [anon_sym_PLUS2] = ACTIONS(1522), + [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(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [sym__entry_separator] = ACTIONS(1524), + [anon_sym_COLON2] = ACTIONS(1522), + [anon_sym_QMARK2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [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(103), + }, + [STATE(362)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5219), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3913), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(362), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1534), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76290,76 +77561,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(351)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5342), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3916), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(351), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACK] = ACTIONS(1541), + [STATE(363)] = { + [sym_comment] = STATE(363), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_PLUS_EQ] = ACTIONS(1530), + [anon_sym_DASH_EQ] = ACTIONS(1530), + [anon_sym_STAR_EQ] = ACTIONS(1530), + [anon_sym_SLASH_EQ] = ACTIONS(1530), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1530), + [anon_sym_in] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_GT2] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_STAR2] = ACTIONS(1530), + [anon_sym_and2] = ACTIONS(1530), + [anon_sym_xor2] = ACTIONS(1530), + [anon_sym_or2] = ACTIONS(1530), + [anon_sym_not_DASHin2] = ACTIONS(1530), + [anon_sym_has2] = ACTIONS(1530), + [anon_sym_not_DASHhas2] = ACTIONS(1530), + [anon_sym_starts_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1530), + [anon_sym_ends_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1530), + [anon_sym_EQ_EQ2] = ACTIONS(1530), + [anon_sym_BANG_EQ2] = ACTIONS(1530), + [anon_sym_LT2] = ACTIONS(1530), + [anon_sym_LT_EQ2] = ACTIONS(1530), + [anon_sym_GT_EQ2] = ACTIONS(1530), + [anon_sym_EQ_TILDE2] = ACTIONS(1530), + [anon_sym_BANG_TILDE2] = ACTIONS(1530), + [anon_sym_like2] = ACTIONS(1530), + [anon_sym_not_DASHlike2] = ACTIONS(1530), + [anon_sym_STAR_STAR2] = ACTIONS(1530), + [anon_sym_PLUS_PLUS2] = ACTIONS(1530), + [anon_sym_SLASH2] = ACTIONS(1530), + [anon_sym_mod2] = ACTIONS(1530), + [anon_sym_SLASH_SLASH2] = ACTIONS(1530), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_bit_DASHshl2] = ACTIONS(1530), + [anon_sym_bit_DASHshr2] = ACTIONS(1530), + [anon_sym_bit_DASHand2] = ACTIONS(1530), + [anon_sym_bit_DASHxor2] = ACTIONS(1530), + [anon_sym_bit_DASHor2] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), + [sym__entry_separator] = ACTIONS(1532), + [anon_sym_COLON2] = ACTIONS(1530), + [anon_sym_QMARK2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(364)] = { + [sym_path] = STATE(395), + [sym_comment] = STATE(364), + [aux_sym__where_predicate_lhs_repeat1] = STATE(364), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_GT2] = ACTIONS(1536), + [anon_sym_DASH2] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_STAR2] = ACTIONS(1536), + [anon_sym_and2] = ACTIONS(1538), + [anon_sym_xor2] = ACTIONS(1538), + [anon_sym_or2] = ACTIONS(1538), + [anon_sym_not_DASHin2] = ACTIONS(1538), + [anon_sym_has2] = ACTIONS(1538), + [anon_sym_not_DASHhas2] = ACTIONS(1538), + [anon_sym_starts_DASHwith2] = ACTIONS(1538), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1538), + [anon_sym_ends_DASHwith2] = ACTIONS(1538), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1538), + [anon_sym_EQ_EQ2] = ACTIONS(1538), + [anon_sym_BANG_EQ2] = ACTIONS(1538), + [anon_sym_LT2] = ACTIONS(1536), + [anon_sym_LT_EQ2] = ACTIONS(1538), + [anon_sym_GT_EQ2] = ACTIONS(1538), + [anon_sym_EQ_TILDE2] = ACTIONS(1538), + [anon_sym_BANG_TILDE2] = ACTIONS(1538), + [anon_sym_like2] = ACTIONS(1538), + [anon_sym_not_DASHlike2] = ACTIONS(1538), + [anon_sym_STAR_STAR2] = ACTIONS(1538), + [anon_sym_PLUS_PLUS2] = ACTIONS(1536), + [anon_sym_SLASH2] = ACTIONS(1536), + [anon_sym_mod2] = ACTIONS(1538), + [anon_sym_SLASH_SLASH2] = ACTIONS(1538), + [anon_sym_PLUS2] = ACTIONS(1536), + [anon_sym_bit_DASHshl2] = ACTIONS(1538), + [anon_sym_bit_DASHshr2] = ACTIONS(1538), + [anon_sym_bit_DASHand2] = ACTIONS(1538), + [anon_sym_bit_DASHxor2] = ACTIONS(1538), + [anon_sym_bit_DASHor2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [anon_sym_COLON2] = ACTIONS(1538), + [anon_sym_DOT2] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(365)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5255), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3929), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(365), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76370,156 +77801,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(352)] = { - [sym_comment] = STATE(352), - [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_RBRACK] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_DOT_DOT] = 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_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), + [STATE(366)] = { + [sym_comment] = STATE(366), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1482), + [anon_sym_in] = ACTIONS(1482), + [sym__newline] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_err_GT_PIPE] = ACTIONS(1482), + [anon_sym_out_GT_PIPE] = ACTIONS(1482), + [anon_sym_e_GT_PIPE] = ACTIONS(1482), + [anon_sym_o_GT_PIPE] = ACTIONS(1482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_GT2] = ACTIONS(1480), + [anon_sym_DASH2] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_STAR2] = ACTIONS(1480), + [anon_sym_and2] = ACTIONS(1482), + [anon_sym_xor2] = ACTIONS(1482), + [anon_sym_or2] = ACTIONS(1482), + [anon_sym_not_DASHin2] = ACTIONS(1482), + [anon_sym_has2] = ACTIONS(1482), + [anon_sym_not_DASHhas2] = ACTIONS(1482), + [anon_sym_starts_DASHwith2] = ACTIONS(1482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1482), + [anon_sym_ends_DASHwith2] = ACTIONS(1482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1482), + [anon_sym_EQ_EQ2] = ACTIONS(1482), + [anon_sym_BANG_EQ2] = ACTIONS(1482), + [anon_sym_LT2] = ACTIONS(1480), + [anon_sym_LT_EQ2] = ACTIONS(1482), + [anon_sym_GT_EQ2] = ACTIONS(1482), + [anon_sym_EQ_TILDE2] = ACTIONS(1482), + [anon_sym_BANG_TILDE2] = ACTIONS(1482), + [anon_sym_like2] = ACTIONS(1482), + [anon_sym_not_DASHlike2] = ACTIONS(1482), + [anon_sym_STAR_STAR2] = ACTIONS(1482), + [anon_sym_PLUS_PLUS2] = ACTIONS(1480), + [anon_sym_SLASH2] = ACTIONS(1480), + [anon_sym_mod2] = ACTIONS(1482), + [anon_sym_SLASH_SLASH2] = ACTIONS(1482), + [anon_sym_PLUS2] = ACTIONS(1480), + [anon_sym_bit_DASHshl2] = ACTIONS(1482), + [anon_sym_bit_DASHshr2] = ACTIONS(1482), + [anon_sym_bit_DASHand2] = ACTIONS(1482), + [anon_sym_bit_DASHxor2] = ACTIONS(1482), + [anon_sym_bit_DASHor2] = ACTIONS(1482), + [anon_sym_DOT_DOT2] = ACTIONS(1480), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1482), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1482), + [anon_sym_COLON2] = ACTIONS(1482), + [anon_sym_QMARK2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DOT2] = ACTIONS(1480), + [anon_sym_err_GT] = ACTIONS(1480), + [anon_sym_out_GT] = ACTIONS(1480), + [anon_sym_e_GT] = ACTIONS(1480), + [anon_sym_o_GT] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT] = ACTIONS(1480), + [anon_sym_err_GT_GT] = ACTIONS(1482), + [anon_sym_out_GT_GT] = ACTIONS(1482), + [anon_sym_e_GT_GT] = ACTIONS(1482), + [anon_sym_o_GT_GT] = ACTIONS(1482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(367)] = { + [sym_comment] = STATE(367), + [anon_sym_EQ] = ACTIONS(1545), + [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_RBRACK] = ACTIONS(1545), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_STAR2] = ACTIONS(1545), + [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(1545), + [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(1545), + [anon_sym_mod2] = ACTIONS(1545), + [anon_sym_SLASH_SLASH2] = ACTIONS(1545), + [anon_sym_PLUS2] = ACTIONS(1545), + [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(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [sym__entry_separator] = ACTIONS(1547), + [anon_sym_COLON2] = ACTIONS(1545), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [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(103), }, - [STATE(353)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5090), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3882), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(353), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACK] = ACTIONS(1547), + [STATE(368)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5343), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3931), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(368), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76530,76 +78041,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(354)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5261), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3924), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(354), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACK] = ACTIONS(1549), + [STATE(369)] = { + [sym_comment] = STATE(369), + [anon_sym_EQ] = ACTIONS(1468), + [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_RPAREN] = ACTIONS(1470), + [anon_sym_GT2] = ACTIONS(1468), + [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_STAR2] = ACTIONS(1468), + [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(1468), + [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(1468), + [anon_sym_SLASH2] = ACTIONS(1468), + [anon_sym_mod2] = ACTIONS(1470), + [anon_sym_SLASH_SLASH2] = ACTIONS(1470), + [anon_sym_PLUS2] = ACTIONS(1468), + [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(1468), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), + [anon_sym_COLON2] = ACTIONS(1470), + [anon_sym_QMARK2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DOT2] = ACTIONS(1468), + [anon_sym_err_GT] = ACTIONS(1468), + [anon_sym_out_GT] = ACTIONS(1468), + [anon_sym_e_GT] = ACTIONS(1468), + [anon_sym_o_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT] = ACTIONS(1468), + [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(3), + }, + [STATE(370)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5475), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3932), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(370), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1551), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76610,236 +78201,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(355)] = { - [sym_comment] = STATE(355), - [anon_sym_EQ] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(1551), - [anon_sym_DASH_EQ] = ACTIONS(1551), - [anon_sym_STAR_EQ] = ACTIONS(1551), - [anon_sym_SLASH_EQ] = ACTIONS(1551), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1551), - [anon_sym_in] = ACTIONS(1551), - [sym__newline] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_err_GT_PIPE] = ACTIONS(1551), - [anon_sym_out_GT_PIPE] = ACTIONS(1551), - [anon_sym_e_GT_PIPE] = ACTIONS(1551), - [anon_sym_o_GT_PIPE] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1551), - [anon_sym_RBRACK] = ACTIONS(1551), - [anon_sym_GT2] = ACTIONS(1551), - [anon_sym_DASH2] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_STAR2] = ACTIONS(1551), - [anon_sym_and2] = ACTIONS(1551), - [anon_sym_xor2] = ACTIONS(1551), - [anon_sym_or2] = ACTIONS(1551), - [anon_sym_not_DASHin2] = ACTIONS(1551), - [anon_sym_has2] = ACTIONS(1551), - [anon_sym_not_DASHhas2] = ACTIONS(1551), - [anon_sym_starts_DASHwith2] = ACTIONS(1551), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1551), - [anon_sym_ends_DASHwith2] = ACTIONS(1551), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1551), - [anon_sym_EQ_EQ2] = ACTIONS(1551), - [anon_sym_BANG_EQ2] = ACTIONS(1551), - [anon_sym_LT2] = ACTIONS(1551), - [anon_sym_LT_EQ2] = ACTIONS(1551), - [anon_sym_GT_EQ2] = ACTIONS(1551), - [anon_sym_EQ_TILDE2] = ACTIONS(1551), - [anon_sym_BANG_TILDE2] = ACTIONS(1551), - [anon_sym_like2] = ACTIONS(1551), - [anon_sym_not_DASHlike2] = ACTIONS(1551), - [anon_sym_STAR_STAR2] = ACTIONS(1551), - [anon_sym_PLUS_PLUS2] = ACTIONS(1551), - [anon_sym_SLASH2] = ACTIONS(1551), - [anon_sym_mod2] = ACTIONS(1551), - [anon_sym_SLASH_SLASH2] = ACTIONS(1551), - [anon_sym_PLUS2] = ACTIONS(1551), - [anon_sym_bit_DASHshl2] = ACTIONS(1551), - [anon_sym_bit_DASHshr2] = ACTIONS(1551), - [anon_sym_bit_DASHand2] = ACTIONS(1551), - [anon_sym_bit_DASHxor2] = ACTIONS(1551), - [anon_sym_bit_DASHor2] = ACTIONS(1551), - [anon_sym_DOT_DOT2] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1553), - [sym__entry_separator] = ACTIONS(1553), - [anon_sym_COLON2] = ACTIONS(1551), - [anon_sym_DOT2] = ACTIONS(1551), - [anon_sym_err_GT] = ACTIONS(1551), - [anon_sym_out_GT] = ACTIONS(1551), - [anon_sym_e_GT] = ACTIONS(1551), - [anon_sym_o_GT] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT] = ACTIONS(1551), - [anon_sym_err_GT_GT] = ACTIONS(1551), - [anon_sym_out_GT_GT] = ACTIONS(1551), - [anon_sym_e_GT_GT] = ACTIONS(1551), - [anon_sym_o_GT_GT] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(356)] = { - [sym_comment] = STATE(356), - [anon_sym_EQ] = ACTIONS(1500), - [anon_sym_PLUS_EQ] = ACTIONS(1502), - [anon_sym_DASH_EQ] = ACTIONS(1502), - [anon_sym_STAR_EQ] = ACTIONS(1502), - [anon_sym_SLASH_EQ] = ACTIONS(1502), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1502), - [sym__newline] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_err_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_GT_PIPE] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1502), - [anon_sym_xor2] = ACTIONS(1502), - [anon_sym_or2] = ACTIONS(1502), - [anon_sym_not_DASHin2] = ACTIONS(1502), - [anon_sym_has2] = ACTIONS(1502), - [anon_sym_not_DASHhas2] = ACTIONS(1502), - [anon_sym_starts_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), - [anon_sym_ends_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), - [anon_sym_EQ_EQ2] = ACTIONS(1502), - [anon_sym_BANG_EQ2] = ACTIONS(1502), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1502), - [anon_sym_GT_EQ2] = ACTIONS(1502), - [anon_sym_EQ_TILDE2] = ACTIONS(1502), - [anon_sym_BANG_TILDE2] = ACTIONS(1502), - [anon_sym_like2] = ACTIONS(1502), - [anon_sym_not_DASHlike2] = ACTIONS(1502), - [anon_sym_STAR_STAR2] = ACTIONS(1502), - [anon_sym_PLUS_PLUS2] = ACTIONS(1500), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1502), - [anon_sym_SLASH_SLASH2] = ACTIONS(1502), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1502), - [anon_sym_bit_DASHshr2] = ACTIONS(1502), - [anon_sym_bit_DASHand2] = ACTIONS(1502), - [anon_sym_bit_DASHxor2] = ACTIONS(1502), - [anon_sym_bit_DASHor2] = ACTIONS(1502), - [anon_sym_DOT_DOT2] = ACTIONS(1500), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), - [anon_sym_COLON2] = ACTIONS(1502), - [anon_sym_QMARK2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DOT2] = ACTIONS(1500), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1502), - [anon_sym_out_GT_GT] = ACTIONS(1502), - [anon_sym_e_GT_GT] = ACTIONS(1502), - [anon_sym_o_GT_GT] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [STATE(371)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5516), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3934), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(371), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(357)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5376), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3875), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(357), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), + [STATE(372)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5109), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3942), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(372), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), [anon_sym_RBRACK] = ACTIONS(1555), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76850,76 +78361,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(358)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5491), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3920), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(358), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), + [STATE(373)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5178), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3889), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(373), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), [anon_sym_RBRACK] = ACTIONS(1557), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76930,76 +78441,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(359)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5093), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3873), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(359), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), + [STATE(374)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5348), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3973), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(374), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), [anon_sym_RBRACK] = ACTIONS(1559), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -77010,236 +78521,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(360)] = { - [sym_comment] = STATE(360), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_PLUS_EQ] = ACTIONS(1510), - [anon_sym_DASH_EQ] = ACTIONS(1510), - [anon_sym_STAR_EQ] = ACTIONS(1510), - [anon_sym_SLASH_EQ] = ACTIONS(1510), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1510), - [anon_sym_in] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_GT2] = ACTIONS(1508), - [anon_sym_DASH2] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_STAR2] = ACTIONS(1508), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_has2] = ACTIONS(1510), - [anon_sym_not_DASHhas2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_like2] = ACTIONS(1510), - [anon_sym_not_DASHlike2] = ACTIONS(1510), - [anon_sym_STAR_STAR2] = ACTIONS(1510), - [anon_sym_PLUS_PLUS2] = ACTIONS(1508), - [anon_sym_SLASH2] = ACTIONS(1508), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), - [anon_sym_PLUS2] = ACTIONS(1508), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), - [anon_sym_DOT_DOT2] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), - [anon_sym_COLON2] = ACTIONS(1510), - [anon_sym_QMARK2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DOT2] = ACTIONS(1508), - [anon_sym_err_GT] = ACTIONS(1508), - [anon_sym_out_GT] = ACTIONS(1508), - [anon_sym_e_GT] = ACTIONS(1508), - [anon_sym_o_GT] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT] = ACTIONS(1508), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(3), + [STATE(375)] = { + [sym_path] = STATE(367), + [sym_comment] = STATE(375), + [aux_sym__where_predicate_lhs_repeat1] = STATE(376), + [anon_sym_EQ] = ACTIONS(1526), + [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(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_STAR2] = ACTIONS(1526), + [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(1526), + [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(1526), + [anon_sym_mod2] = ACTIONS(1526), + [anon_sym_SLASH_SLASH2] = ACTIONS(1526), + [anon_sym_PLUS2] = ACTIONS(1526), + [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(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [sym__entry_separator] = ACTIONS(1528), + [anon_sym_COLON2] = ACTIONS(1526), + [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [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(103), }, - [STATE(361)] = { - [sym_comment] = STATE(361), - [anon_sym_EQ] = ACTIONS(1528), - [anon_sym_PLUS_EQ] = ACTIONS(1530), - [anon_sym_DASH_EQ] = ACTIONS(1530), - [anon_sym_STAR_EQ] = ACTIONS(1530), - [anon_sym_SLASH_EQ] = ACTIONS(1530), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1530), - [anon_sym_in] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_GT2] = ACTIONS(1528), - [anon_sym_DASH2] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_STAR2] = ACTIONS(1528), - [anon_sym_and2] = ACTIONS(1530), - [anon_sym_xor2] = ACTIONS(1530), - [anon_sym_or2] = ACTIONS(1530), - [anon_sym_not_DASHin2] = ACTIONS(1530), - [anon_sym_has2] = ACTIONS(1530), - [anon_sym_not_DASHhas2] = ACTIONS(1530), - [anon_sym_starts_DASHwith2] = ACTIONS(1530), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1530), - [anon_sym_ends_DASHwith2] = ACTIONS(1530), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1530), - [anon_sym_EQ_EQ2] = ACTIONS(1530), - [anon_sym_BANG_EQ2] = ACTIONS(1530), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ2] = ACTIONS(1530), - [anon_sym_GT_EQ2] = ACTIONS(1530), - [anon_sym_EQ_TILDE2] = ACTIONS(1530), - [anon_sym_BANG_TILDE2] = ACTIONS(1530), - [anon_sym_like2] = ACTIONS(1530), - [anon_sym_not_DASHlike2] = ACTIONS(1530), - [anon_sym_STAR_STAR2] = ACTIONS(1530), - [anon_sym_PLUS_PLUS2] = ACTIONS(1528), - [anon_sym_SLASH2] = ACTIONS(1528), - [anon_sym_mod2] = ACTIONS(1530), - [anon_sym_SLASH_SLASH2] = ACTIONS(1530), - [anon_sym_PLUS2] = ACTIONS(1528), - [anon_sym_bit_DASHshl2] = ACTIONS(1530), - [anon_sym_bit_DASHshr2] = ACTIONS(1530), - [anon_sym_bit_DASHand2] = ACTIONS(1530), - [anon_sym_bit_DASHxor2] = ACTIONS(1530), - [anon_sym_bit_DASHor2] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [anon_sym_COLON2] = ACTIONS(1530), - [anon_sym_QMARK2] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_DOT2] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(3), + [STATE(376)] = { + [sym_path] = STATE(367), + [sym_comment] = STATE(376), + [aux_sym__where_predicate_lhs_repeat1] = STATE(376), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(1536), + [anon_sym_DASH_EQ] = ACTIONS(1536), + [anon_sym_STAR_EQ] = ACTIONS(1536), + [anon_sym_SLASH_EQ] = ACTIONS(1536), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_err_GT_PIPE] = ACTIONS(1536), + [anon_sym_out_GT_PIPE] = ACTIONS(1536), + [anon_sym_e_GT_PIPE] = ACTIONS(1536), + [anon_sym_o_GT_PIPE] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1536), + [anon_sym_GT2] = ACTIONS(1536), + [anon_sym_DASH2] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_STAR2] = ACTIONS(1536), + [anon_sym_and2] = ACTIONS(1536), + [anon_sym_xor2] = ACTIONS(1536), + [anon_sym_or2] = ACTIONS(1536), + [anon_sym_not_DASHin2] = ACTIONS(1536), + [anon_sym_has2] = ACTIONS(1536), + [anon_sym_not_DASHhas2] = ACTIONS(1536), + [anon_sym_starts_DASHwith2] = ACTIONS(1536), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1536), + [anon_sym_ends_DASHwith2] = ACTIONS(1536), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1536), + [anon_sym_EQ_EQ2] = ACTIONS(1536), + [anon_sym_BANG_EQ2] = ACTIONS(1536), + [anon_sym_LT2] = ACTIONS(1536), + [anon_sym_LT_EQ2] = ACTIONS(1536), + [anon_sym_GT_EQ2] = ACTIONS(1536), + [anon_sym_EQ_TILDE2] = ACTIONS(1536), + [anon_sym_BANG_TILDE2] = ACTIONS(1536), + [anon_sym_like2] = ACTIONS(1536), + [anon_sym_not_DASHlike2] = ACTIONS(1536), + [anon_sym_STAR_STAR2] = ACTIONS(1536), + [anon_sym_PLUS_PLUS2] = ACTIONS(1536), + [anon_sym_SLASH2] = ACTIONS(1536), + [anon_sym_mod2] = ACTIONS(1536), + [anon_sym_SLASH_SLASH2] = ACTIONS(1536), + [anon_sym_PLUS2] = ACTIONS(1536), + [anon_sym_bit_DASHshl2] = ACTIONS(1536), + [anon_sym_bit_DASHshr2] = ACTIONS(1536), + [anon_sym_bit_DASHand2] = ACTIONS(1536), + [anon_sym_bit_DASHxor2] = ACTIONS(1536), + [anon_sym_bit_DASHor2] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [sym__entry_separator] = ACTIONS(1538), + [anon_sym_COLON2] = ACTIONS(1536), + [anon_sym_DOT2] = ACTIONS(1561), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1536), + [anon_sym_out_GT_GT] = ACTIONS(1536), + [anon_sym_e_GT_GT] = ACTIONS(1536), + [anon_sym_o_GT_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(362)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4738), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5332), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym__table_head] = STATE(3912), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(362), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACK] = ACTIONS(1561), + [STATE(377)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4703), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5267), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym__table_head] = STATE(3913), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(377), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1564), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -77250,448 +78761,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(363)] = { - [sym_comment] = STATE(363), - [anon_sym_EQ] = ACTIONS(1512), - [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_RPAREN] = ACTIONS(1514), - [anon_sym_GT2] = ACTIONS(1512), - [anon_sym_DASH2] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1512), - [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(1512), - [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(1512), - [anon_sym_SLASH2] = ACTIONS(1512), - [anon_sym_mod2] = ACTIONS(1514), - [anon_sym_SLASH_SLASH2] = ACTIONS(1514), - [anon_sym_PLUS2] = ACTIONS(1512), - [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(1512), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), - [anon_sym_COLON2] = ACTIONS(1514), - [anon_sym_QMARK2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_DOT2] = ACTIONS(1512), - [anon_sym_err_GT] = ACTIONS(1512), - [anon_sym_out_GT] = ACTIONS(1512), - [anon_sym_e_GT] = ACTIONS(1512), - [anon_sym_o_GT] = ACTIONS(1512), - [anon_sym_err_PLUSout_GT] = ACTIONS(1512), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), - [anon_sym_o_PLUSe_GT] = ACTIONS(1512), - [anon_sym_e_PLUSo_GT] = ACTIONS(1512), - [anon_sym_err_GT_GT] = ACTIONS(1514), - [anon_sym_out_GT_GT] = ACTIONS(1514), - [anon_sym_e_GT_GT] = ACTIONS(1514), - [anon_sym_o_GT_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(364)] = { - [sym_comment] = STATE(364), - [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_QMARK2] = ACTIONS(1522), - [anon_sym_BANG] = 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(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(365)] = { - [sym_path] = STATE(352), - [sym_comment] = STATE(365), - [aux_sym__where_predicate_lhs_repeat1] = STATE(366), - [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(1466), - [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(366)] = { - [sym_path] = STATE(352), - [sym_comment] = STATE(366), - [aux_sym__where_predicate_lhs_repeat1] = STATE(366), - [anon_sym_EQ] = ACTIONS(1532), - [anon_sym_PLUS_EQ] = ACTIONS(1532), - [anon_sym_DASH_EQ] = ACTIONS(1532), - [anon_sym_STAR_EQ] = ACTIONS(1532), - [anon_sym_SLASH_EQ] = ACTIONS(1532), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1532), - [anon_sym_in] = ACTIONS(1532), - [sym__newline] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_err_GT_PIPE] = ACTIONS(1532), - [anon_sym_out_GT_PIPE] = ACTIONS(1532), - [anon_sym_e_GT_PIPE] = ACTIONS(1532), - [anon_sym_o_GT_PIPE] = ACTIONS(1532), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), - [anon_sym_GT2] = ACTIONS(1532), - [anon_sym_DASH2] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_STAR2] = ACTIONS(1532), - [anon_sym_and2] = ACTIONS(1532), - [anon_sym_xor2] = ACTIONS(1532), - [anon_sym_or2] = ACTIONS(1532), - [anon_sym_not_DASHin2] = ACTIONS(1532), - [anon_sym_has2] = ACTIONS(1532), - [anon_sym_not_DASHhas2] = ACTIONS(1532), - [anon_sym_starts_DASHwith2] = ACTIONS(1532), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1532), - [anon_sym_ends_DASHwith2] = ACTIONS(1532), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1532), - [anon_sym_EQ_EQ2] = ACTIONS(1532), - [anon_sym_BANG_EQ2] = ACTIONS(1532), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ2] = ACTIONS(1532), - [anon_sym_GT_EQ2] = ACTIONS(1532), - [anon_sym_EQ_TILDE2] = ACTIONS(1532), - [anon_sym_BANG_TILDE2] = ACTIONS(1532), - [anon_sym_like2] = ACTIONS(1532), - [anon_sym_not_DASHlike2] = ACTIONS(1532), - [anon_sym_STAR_STAR2] = ACTIONS(1532), - [anon_sym_PLUS_PLUS2] = ACTIONS(1532), - [anon_sym_SLASH2] = ACTIONS(1532), - [anon_sym_mod2] = ACTIONS(1532), - [anon_sym_SLASH_SLASH2] = ACTIONS(1532), - [anon_sym_PLUS2] = ACTIONS(1532), - [anon_sym_bit_DASHshl2] = ACTIONS(1532), - [anon_sym_bit_DASHshr2] = ACTIONS(1532), - [anon_sym_bit_DASHand2] = ACTIONS(1532), - [anon_sym_bit_DASHxor2] = ACTIONS(1532), - [anon_sym_bit_DASHor2] = ACTIONS(1532), - [anon_sym_DOT_DOT2] = ACTIONS(1532), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1534), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1534), - [sym__entry_separator] = ACTIONS(1534), - [anon_sym_COLON2] = ACTIONS(1532), - [anon_sym_DOT2] = ACTIONS(1563), - [anon_sym_err_GT] = ACTIONS(1532), - [anon_sym_out_GT] = ACTIONS(1532), - [anon_sym_e_GT] = ACTIONS(1532), - [anon_sym_o_GT] = ACTIONS(1532), - [anon_sym_err_PLUSout_GT] = ACTIONS(1532), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), - [anon_sym_o_PLUSe_GT] = ACTIONS(1532), - [anon_sym_e_PLUSo_GT] = ACTIONS(1532), - [anon_sym_err_GT_GT] = ACTIONS(1532), - [anon_sym_out_GT_GT] = ACTIONS(1532), - [anon_sym_e_GT_GT] = ACTIONS(1532), - [anon_sym_o_GT_GT] = ACTIONS(1532), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(367)] = { - [sym_comment] = STATE(367), - [anon_sym_EQ] = ACTIONS(1504), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_GT2] = ACTIONS(1504), - [anon_sym_DASH2] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_STAR2] = ACTIONS(1504), - [anon_sym_and2] = ACTIONS(1506), - [anon_sym_xor2] = ACTIONS(1506), - [anon_sym_or2] = ACTIONS(1506), - [anon_sym_not_DASHin2] = ACTIONS(1506), - [anon_sym_has2] = ACTIONS(1506), - [anon_sym_not_DASHhas2] = ACTIONS(1506), - [anon_sym_starts_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), - [anon_sym_ends_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), - [anon_sym_EQ_EQ2] = ACTIONS(1506), - [anon_sym_BANG_EQ2] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ2] = ACTIONS(1506), - [anon_sym_GT_EQ2] = ACTIONS(1506), - [anon_sym_EQ_TILDE2] = ACTIONS(1506), - [anon_sym_BANG_TILDE2] = ACTIONS(1506), - [anon_sym_like2] = ACTIONS(1506), - [anon_sym_not_DASHlike2] = ACTIONS(1506), - [anon_sym_STAR_STAR2] = ACTIONS(1506), - [anon_sym_PLUS_PLUS2] = ACTIONS(1504), - [anon_sym_SLASH2] = ACTIONS(1504), - [anon_sym_mod2] = ACTIONS(1506), - [anon_sym_SLASH_SLASH2] = ACTIONS(1506), - [anon_sym_PLUS2] = ACTIONS(1504), - [anon_sym_bit_DASHshl2] = ACTIONS(1506), - [anon_sym_bit_DASHshr2] = ACTIONS(1506), - [anon_sym_bit_DASHand2] = ACTIONS(1506), - [anon_sym_bit_DASHxor2] = ACTIONS(1506), - [anon_sym_bit_DASHor2] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_COLON2] = ACTIONS(1506), - [anon_sym_QMARK2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(368)] = { - [sym__match_pattern_expression] = STATE(4339), - [sym__match_pattern_value] = STATE(4686), - [sym__match_pattern_list] = STATE(4805), - [sym__match_pattern_record] = STATE(4754), - [sym_expr_parenthesized] = STATE(4010), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4869), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4870), - [sym_val_bool] = STATE(4322), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4011), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4870), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4870), - [sym_val_filesize] = STATE(4870), - [sym_val_binary] = STATE(4870), - [sym_val_string] = STATE(4870), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_val_entry] = STATE(4778), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4870), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4158), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(368), - [aux_sym__types_body_repeat1] = STATE(2185), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1424), - [aux_sym_list_body_repeat1] = STATE(624), + [STATE(378)] = { + [sym__match_pattern_expression] = STATE(4456), + [sym__match_pattern_value] = STATE(4911), + [sym__match_pattern_list] = STATE(4912), + [sym__match_pattern_record] = STATE(4913), + [sym_expr_parenthesized] = STATE(4015), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(4837), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4840), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4021), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4840), + [sym__val_number_decimal] = STATE(3648), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4840), + [sym_val_filesize] = STATE(4840), + [sym_val_binary] = STATE(4840), + [sym_val_string] = STATE(4840), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_val_entry] = STATE(4887), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4840), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4075), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(378), + [aux_sym__types_body_repeat1] = STATE(2189), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1444), + [aux_sym_list_body_repeat1] = STATE(532), [anon_sym_true] = ACTIONS(1384), [anon_sym_false] = ACTIONS(1384), [anon_sym_null] = ACTIONS(1386), @@ -77729,88 +78840,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(369)] = { - [sym_comment] = STATE(369), - [anon_sym_EQ] = ACTIONS(1460), - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_STAR_EQ] = ACTIONS(1460), - [anon_sym_SLASH_EQ] = ACTIONS(1460), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1460), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1460), - [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(1460), - [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(1460), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1460), - [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(1460), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), - [sym__entry_separator] = ACTIONS(1462), - [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1460), - [anon_sym_err_GT] = ACTIONS(1460), - [anon_sym_out_GT] = ACTIONS(1460), - [anon_sym_e_GT] = ACTIONS(1460), - [anon_sym_o_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT] = ACTIONS(1460), - [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(103), - }, - [STATE(370)] = { - [sym_comment] = STATE(370), - [anon_sym_EQ] = ACTIONS(1460), + [STATE(379)] = { + [sym_comment] = STATE(379), + [anon_sym_EQ] = ACTIONS(1462), [anon_sym_PLUS_EQ] = ACTIONS(1462), [anon_sym_DASH_EQ] = ACTIONS(1462), [anon_sym_STAR_EQ] = ACTIONS(1462), @@ -77828,11 +78860,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_RPAREN] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1460), - [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_GT2] = ACTIONS(1462), + [anon_sym_DASH2] = ACTIONS(1462), [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1460), + [anon_sym_STAR2] = ACTIONS(1462), [anon_sym_and2] = ACTIONS(1462), [anon_sym_xor2] = ACTIONS(1462), [anon_sym_or2] = ACTIONS(1462), @@ -77845,7 +78876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), [anon_sym_EQ_EQ2] = ACTIONS(1462), [anon_sym_BANG_EQ2] = ACTIONS(1462), - [anon_sym_LT2] = ACTIONS(1460), + [anon_sym_LT2] = ACTIONS(1462), [anon_sym_LT_EQ2] = ACTIONS(1462), [anon_sym_GT_EQ2] = ACTIONS(1462), [anon_sym_EQ_TILDE2] = ACTIONS(1462), @@ -77853,30 +78884,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1462), [anon_sym_not_DASHlike2] = ACTIONS(1462), [anon_sym_STAR_STAR2] = ACTIONS(1462), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1460), + [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(1460), + [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(1460), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), - [anon_sym_DOT_DOT_LT2] = 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_BANG] = ACTIONS(1572), - [anon_sym_DOT2] = ACTIONS(1460), - [anon_sym_err_GT] = ACTIONS(1460), - [anon_sym_out_GT] = ACTIONS(1460), - [anon_sym_e_GT] = ACTIONS(1460), - [anon_sym_o_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1466), + [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), @@ -77885,11 +78917,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(371)] = { - [sym__path_suffix] = STATE(430), - [sym_comment] = STATE(371), + [STATE(380)] = { + [sym_cell_path] = STATE(443), + [sym_path] = STATE(427), + [sym_comment] = STATE(380), + [aux_sym__where_predicate_lhs_repeat1] = STATE(410), [ts_builtin_sym_end] = ACTIONS(1444), [anon_sym_EQ] = ACTIONS(1442), [anon_sym_PLUS_EQ] = ACTIONS(1444), @@ -77945,9 +78979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1442), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), - [anon_sym_QMARK2] = ACTIONS(1574), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_DOT2] = ACTIONS(1572), [anon_sym_err_GT] = ACTIONS(1442), [anon_sym_out_GT] = ACTIONS(1442), [anon_sym_e_GT] = ACTIONS(1442), @@ -77966,1403 +78998,780 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(372)] = { - [sym_comment] = STATE(372), - [anon_sym_EQ] = ACTIONS(1578), - [anon_sym_PLUS_EQ] = ACTIONS(1578), - [anon_sym_DASH_EQ] = ACTIONS(1578), - [anon_sym_STAR_EQ] = ACTIONS(1578), - [anon_sym_SLASH_EQ] = ACTIONS(1578), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1578), - [anon_sym_in] = ACTIONS(1578), - [sym__newline] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1578), - [anon_sym_err_GT_PIPE] = ACTIONS(1578), - [anon_sym_out_GT_PIPE] = ACTIONS(1578), - [anon_sym_e_GT_PIPE] = ACTIONS(1578), - [anon_sym_o_GT_PIPE] = ACTIONS(1578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1578), - [anon_sym_GT2] = ACTIONS(1578), - [anon_sym_DASH2] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_DOT_DOT] = ACTIONS(1578), - [anon_sym_STAR2] = ACTIONS(1578), - [anon_sym_and2] = ACTIONS(1578), - [anon_sym_xor2] = ACTIONS(1578), - [anon_sym_or2] = ACTIONS(1578), - [anon_sym_not_DASHin2] = ACTIONS(1578), - [anon_sym_has2] = ACTIONS(1578), - [anon_sym_not_DASHhas2] = ACTIONS(1578), - [anon_sym_starts_DASHwith2] = ACTIONS(1578), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1578), - [anon_sym_ends_DASHwith2] = ACTIONS(1578), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1578), - [anon_sym_EQ_EQ2] = ACTIONS(1578), - [anon_sym_BANG_EQ2] = ACTIONS(1578), - [anon_sym_LT2] = ACTIONS(1578), - [anon_sym_LT_EQ2] = ACTIONS(1578), - [anon_sym_GT_EQ2] = ACTIONS(1578), - [anon_sym_EQ_TILDE2] = ACTIONS(1578), - [anon_sym_BANG_TILDE2] = ACTIONS(1578), - [anon_sym_like2] = ACTIONS(1578), - [anon_sym_not_DASHlike2] = ACTIONS(1578), - [anon_sym_STAR_STAR2] = ACTIONS(1578), - [anon_sym_PLUS_PLUS2] = ACTIONS(1578), - [anon_sym_SLASH2] = ACTIONS(1578), - [anon_sym_mod2] = ACTIONS(1578), - [anon_sym_SLASH_SLASH2] = ACTIONS(1578), - [anon_sym_PLUS2] = ACTIONS(1578), - [anon_sym_bit_DASHshl2] = ACTIONS(1578), - [anon_sym_bit_DASHshr2] = ACTIONS(1578), - [anon_sym_bit_DASHand2] = ACTIONS(1578), - [anon_sym_bit_DASHxor2] = ACTIONS(1578), - [anon_sym_bit_DASHor2] = ACTIONS(1578), - [anon_sym_DOT_DOT2] = ACTIONS(1578), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1580), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1580), - [sym__entry_separator] = ACTIONS(1580), - [anon_sym_COLON2] = ACTIONS(1578), - [anon_sym_err_GT] = ACTIONS(1578), - [anon_sym_out_GT] = ACTIONS(1578), - [anon_sym_e_GT] = ACTIONS(1578), - [anon_sym_o_GT] = ACTIONS(1578), - [anon_sym_err_PLUSout_GT] = ACTIONS(1578), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1578), - [anon_sym_o_PLUSe_GT] = ACTIONS(1578), - [anon_sym_e_PLUSo_GT] = ACTIONS(1578), - [anon_sym_err_GT_GT] = ACTIONS(1578), - [anon_sym_out_GT_GT] = ACTIONS(1578), - [anon_sym_e_GT_GT] = ACTIONS(1578), - [anon_sym_o_GT_GT] = ACTIONS(1578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1578), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(373)] = { - [sym_comment] = STATE(373), - [anon_sym_EQ] = ACTIONS(1460), - [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_RPAREN] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1460), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1460), - [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(1460), - [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(1460), - [anon_sym_SLASH2] = ACTIONS(1460), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1460), - [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(1460), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), - [anon_sym_COLON2] = ACTIONS(1462), - [anon_sym_QMARK2] = ACTIONS(1582), - [anon_sym_DOT2] = ACTIONS(1460), - [anon_sym_err_GT] = ACTIONS(1460), - [anon_sym_out_GT] = ACTIONS(1460), - [anon_sym_e_GT] = ACTIONS(1460), - [anon_sym_o_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT] = ACTIONS(1460), - [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), + [STATE(381)] = { + [sym__path_suffix] = STATE(435), + [sym_comment] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1448), + [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(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1448), + [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(1448), + [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(1448), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [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(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [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(3), }, - [STATE(374)] = { - [sym_cell_path] = STATE(432), - [sym_path] = STATE(419), - [sym_comment] = STATE(374), - [aux_sym__where_predicate_lhs_repeat1] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_PLUS_EQ] = ACTIONS(1456), - [anon_sym_DASH_EQ] = ACTIONS(1456), - [anon_sym_STAR_EQ] = ACTIONS(1456), - [anon_sym_SLASH_EQ] = ACTIONS(1456), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1456), - [anon_sym_in] = ACTIONS(1456), - [sym__newline] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_err_GT_PIPE] = ACTIONS(1456), - [anon_sym_out_GT_PIPE] = ACTIONS(1456), - [anon_sym_e_GT_PIPE] = ACTIONS(1456), - [anon_sym_o_GT_PIPE] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1456), - [anon_sym_GT2] = ACTIONS(1454), - [anon_sym_DASH2] = ACTIONS(1454), - [anon_sym_STAR2] = ACTIONS(1454), - [anon_sym_and2] = ACTIONS(1456), - [anon_sym_xor2] = ACTIONS(1456), - [anon_sym_or2] = ACTIONS(1456), - [anon_sym_not_DASHin2] = ACTIONS(1456), - [anon_sym_has2] = ACTIONS(1456), - [anon_sym_not_DASHhas2] = ACTIONS(1456), - [anon_sym_starts_DASHwith2] = ACTIONS(1456), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1456), - [anon_sym_ends_DASHwith2] = ACTIONS(1456), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1456), - [anon_sym_EQ_EQ2] = ACTIONS(1456), - [anon_sym_BANG_EQ2] = ACTIONS(1456), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ2] = ACTIONS(1456), - [anon_sym_GT_EQ2] = ACTIONS(1456), - [anon_sym_EQ_TILDE2] = ACTIONS(1456), - [anon_sym_BANG_TILDE2] = ACTIONS(1456), - [anon_sym_like2] = ACTIONS(1456), - [anon_sym_not_DASHlike2] = ACTIONS(1456), - [anon_sym_STAR_STAR2] = ACTIONS(1456), - [anon_sym_PLUS_PLUS2] = ACTIONS(1454), - [anon_sym_SLASH2] = ACTIONS(1454), - [anon_sym_mod2] = ACTIONS(1456), - [anon_sym_SLASH_SLASH2] = ACTIONS(1456), - [anon_sym_PLUS2] = ACTIONS(1454), - [anon_sym_bit_DASHshl2] = ACTIONS(1456), - [anon_sym_bit_DASHshr2] = ACTIONS(1456), - [anon_sym_bit_DASHand2] = ACTIONS(1456), - [anon_sym_bit_DASHxor2] = ACTIONS(1456), - [anon_sym_bit_DASHor2] = ACTIONS(1456), - [anon_sym_DOT_DOT2] = ACTIONS(1454), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1456), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1456), - [anon_sym_DOT2] = ACTIONS(1584), - [anon_sym_err_GT] = ACTIONS(1454), - [anon_sym_out_GT] = ACTIONS(1454), - [anon_sym_e_GT] = ACTIONS(1454), - [anon_sym_o_GT] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT] = ACTIONS(1454), - [anon_sym_err_GT_GT] = ACTIONS(1456), - [anon_sym_out_GT_GT] = ACTIONS(1456), - [anon_sym_e_GT_GT] = ACTIONS(1456), - [anon_sym_o_GT_GT] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1456), + [STATE(382)] = { + [sym_comment] = STATE(382), + [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_QMARK2] = ACTIONS(1578), + [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(375)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5213), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(375), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [STATE(383)] = { + [sym_comment] = STATE(383), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1580), + [anon_sym_in] = ACTIONS(1580), + [sym__newline] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_err_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_GT_PIPE] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_STAR2] = ACTIONS(1580), + [anon_sym_and2] = ACTIONS(1580), + [anon_sym_xor2] = ACTIONS(1580), + [anon_sym_or2] = ACTIONS(1580), + [anon_sym_not_DASHin2] = ACTIONS(1580), + [anon_sym_has2] = ACTIONS(1580), + [anon_sym_not_DASHhas2] = ACTIONS(1580), + [anon_sym_starts_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), + [anon_sym_ends_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), + [anon_sym_EQ_EQ2] = ACTIONS(1580), + [anon_sym_BANG_EQ2] = ACTIONS(1580), + [anon_sym_LT2] = ACTIONS(1580), + [anon_sym_LT_EQ2] = ACTIONS(1580), + [anon_sym_GT_EQ2] = ACTIONS(1580), + [anon_sym_EQ_TILDE2] = ACTIONS(1580), + [anon_sym_BANG_TILDE2] = ACTIONS(1580), + [anon_sym_like2] = ACTIONS(1580), + [anon_sym_not_DASHlike2] = ACTIONS(1580), + [anon_sym_STAR_STAR2] = ACTIONS(1580), + [anon_sym_PLUS_PLUS2] = ACTIONS(1580), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1580), + [anon_sym_SLASH_SLASH2] = ACTIONS(1580), + [anon_sym_PLUS2] = ACTIONS(1580), + [anon_sym_bit_DASHshl2] = ACTIONS(1580), + [anon_sym_bit_DASHshr2] = ACTIONS(1580), + [anon_sym_bit_DASHand2] = ACTIONS(1580), + [anon_sym_bit_DASHxor2] = ACTIONS(1580), + [anon_sym_bit_DASHor2] = ACTIONS(1580), + [anon_sym_DOT_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [sym__entry_separator] = ACTIONS(1582), + [anon_sym_COLON2] = ACTIONS(1580), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [anon_sym_err_GT_GT] = ACTIONS(1580), + [anon_sym_out_GT_GT] = ACTIONS(1580), + [anon_sym_e_GT_GT] = ACTIONS(1580), + [anon_sym_o_GT_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(384)] = { + [sym_comment] = STATE(384), + [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_BANG] = ACTIONS(1584), + [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), - [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(376)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5108), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(376), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [STATE(385)] = { + [sym_comment] = STATE(385), + [aux_sym__types_body_repeat2] = STATE(1487), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1586), + [anon_sym_in] = ACTIONS(1588), + [sym__newline] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_err_GT_PIPE] = ACTIONS(1588), + [anon_sym_out_GT_PIPE] = ACTIONS(1588), + [anon_sym_e_GT_PIPE] = ACTIONS(1588), + [anon_sym_o_GT_PIPE] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1588), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1588), + [anon_sym_xor2] = ACTIONS(1588), + [anon_sym_or2] = ACTIONS(1588), + [anon_sym_not_DASHin2] = ACTIONS(1588), + [anon_sym_has2] = ACTIONS(1588), + [anon_sym_not_DASHhas2] = ACTIONS(1588), + [anon_sym_starts_DASHwith2] = ACTIONS(1588), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1588), + [anon_sym_ends_DASHwith2] = ACTIONS(1588), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1588), + [anon_sym_EQ_EQ2] = ACTIONS(1588), + [anon_sym_BANG_EQ2] = ACTIONS(1588), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1588), + [anon_sym_GT_EQ2] = ACTIONS(1588), + [anon_sym_EQ_TILDE2] = ACTIONS(1588), + [anon_sym_BANG_TILDE2] = ACTIONS(1588), + [anon_sym_like2] = ACTIONS(1588), + [anon_sym_not_DASHlike2] = ACTIONS(1588), + [anon_sym_STAR_STAR2] = ACTIONS(1588), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1588), + [anon_sym_SLASH_SLASH2] = ACTIONS(1588), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1588), + [anon_sym_bit_DASHshr2] = ACTIONS(1588), + [anon_sym_bit_DASHand2] = ACTIONS(1588), + [anon_sym_bit_DASHxor2] = ACTIONS(1588), + [anon_sym_bit_DASHor2] = ACTIONS(1588), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [sym__entry_separator] = ACTIONS(1596), + [anon_sym_COLON2] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1588), + [anon_sym_out_GT_GT] = ACTIONS(1588), + [anon_sym_e_GT_GT] = ACTIONS(1588), + [anon_sym_o_GT_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(386)] = { + [sym_comment] = STATE(386), + [anon_sym_EQ] = ACTIONS(1476), + [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_RPAREN] = ACTIONS(1478), + [anon_sym_GT2] = ACTIONS(1476), + [anon_sym_DASH2] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_STAR2] = ACTIONS(1476), + [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(1476), + [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(1476), + [anon_sym_SLASH2] = ACTIONS(1476), + [anon_sym_mod2] = ACTIONS(1478), + [anon_sym_SLASH_SLASH2] = ACTIONS(1478), + [anon_sym_PLUS2] = ACTIONS(1476), + [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(1476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), + [anon_sym_COLON2] = ACTIONS(1478), + [anon_sym_DOT2] = ACTIONS(1476), + [anon_sym_err_GT] = ACTIONS(1476), + [anon_sym_out_GT] = ACTIONS(1476), + [anon_sym_e_GT] = ACTIONS(1476), + [anon_sym_o_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT] = ACTIONS(1476), + [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(3), - [sym_raw_string_begin] = ACTIONS(1436), - }, - [STATE(377)] = { - [sym_comment] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(1514), - [anon_sym_EQ] = ACTIONS(1512), - [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(1512), - [anon_sym_DASH2] = ACTIONS(1512), - [anon_sym_STAR2] = ACTIONS(1512), - [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(1512), - [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(1512), - [anon_sym_SLASH2] = ACTIONS(1512), - [anon_sym_mod2] = ACTIONS(1514), - [anon_sym_SLASH_SLASH2] = ACTIONS(1514), - [anon_sym_PLUS2] = ACTIONS(1512), - [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(1512), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), - [anon_sym_QMARK2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_DOT2] = ACTIONS(1512), - [anon_sym_err_GT] = ACTIONS(1512), - [anon_sym_out_GT] = ACTIONS(1512), - [anon_sym_e_GT] = ACTIONS(1512), - [anon_sym_o_GT] = ACTIONS(1512), - [anon_sym_err_PLUSout_GT] = ACTIONS(1512), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), - [anon_sym_o_PLUSe_GT] = ACTIONS(1512), - [anon_sym_e_PLUSo_GT] = ACTIONS(1512), - [anon_sym_err_GT_GT] = ACTIONS(1514), - [anon_sym_out_GT_GT] = ACTIONS(1514), - [anon_sym_e_GT_GT] = ACTIONS(1514), - [anon_sym_o_GT_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(378)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5242), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(378), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), - }, - [STATE(379)] = { - [sym_comment] = STATE(379), - [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_QMARK2] = ACTIONS(1522), - [anon_sym_BANG] = 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(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(380)] = { - [sym_comment] = STATE(380), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_EQ] = ACTIONS(1528), - [anon_sym_PLUS_EQ] = ACTIONS(1530), - [anon_sym_DASH_EQ] = ACTIONS(1530), - [anon_sym_STAR_EQ] = ACTIONS(1530), - [anon_sym_SLASH_EQ] = ACTIONS(1530), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1530), - [anon_sym_in] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_GT2] = ACTIONS(1528), - [anon_sym_DASH2] = ACTIONS(1528), - [anon_sym_STAR2] = ACTIONS(1528), - [anon_sym_and2] = ACTIONS(1530), - [anon_sym_xor2] = ACTIONS(1530), - [anon_sym_or2] = ACTIONS(1530), - [anon_sym_not_DASHin2] = ACTIONS(1530), - [anon_sym_has2] = ACTIONS(1530), - [anon_sym_not_DASHhas2] = ACTIONS(1530), - [anon_sym_starts_DASHwith2] = ACTIONS(1530), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1530), - [anon_sym_ends_DASHwith2] = ACTIONS(1530), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1530), - [anon_sym_EQ_EQ2] = ACTIONS(1530), - [anon_sym_BANG_EQ2] = ACTIONS(1530), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ2] = ACTIONS(1530), - [anon_sym_GT_EQ2] = ACTIONS(1530), - [anon_sym_EQ_TILDE2] = ACTIONS(1530), - [anon_sym_BANG_TILDE2] = ACTIONS(1530), - [anon_sym_like2] = ACTIONS(1530), - [anon_sym_not_DASHlike2] = ACTIONS(1530), - [anon_sym_STAR_STAR2] = ACTIONS(1530), - [anon_sym_PLUS_PLUS2] = ACTIONS(1528), - [anon_sym_SLASH2] = ACTIONS(1528), - [anon_sym_mod2] = ACTIONS(1530), - [anon_sym_SLASH_SLASH2] = ACTIONS(1530), - [anon_sym_PLUS2] = ACTIONS(1528), - [anon_sym_bit_DASHshl2] = ACTIONS(1530), - [anon_sym_bit_DASHshr2] = ACTIONS(1530), - [anon_sym_bit_DASHand2] = ACTIONS(1530), - [anon_sym_bit_DASHxor2] = ACTIONS(1530), - [anon_sym_bit_DASHor2] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [anon_sym_QMARK2] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_DOT2] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(381)] = { - [sym_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1500), - [anon_sym_PLUS_EQ] = ACTIONS(1502), - [anon_sym_DASH_EQ] = ACTIONS(1502), - [anon_sym_STAR_EQ] = ACTIONS(1502), - [anon_sym_SLASH_EQ] = ACTIONS(1502), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1502), - [sym__newline] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_err_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_GT_PIPE] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1502), - [anon_sym_xor2] = ACTIONS(1502), - [anon_sym_or2] = ACTIONS(1502), - [anon_sym_not_DASHin2] = ACTIONS(1502), - [anon_sym_has2] = ACTIONS(1502), - [anon_sym_not_DASHhas2] = ACTIONS(1502), - [anon_sym_starts_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), - [anon_sym_ends_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), - [anon_sym_EQ_EQ2] = ACTIONS(1502), - [anon_sym_BANG_EQ2] = ACTIONS(1502), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1502), - [anon_sym_GT_EQ2] = ACTIONS(1502), - [anon_sym_EQ_TILDE2] = ACTIONS(1502), - [anon_sym_BANG_TILDE2] = ACTIONS(1502), - [anon_sym_like2] = ACTIONS(1502), - [anon_sym_not_DASHlike2] = ACTIONS(1502), - [anon_sym_STAR_STAR2] = ACTIONS(1502), - [anon_sym_PLUS_PLUS2] = ACTIONS(1500), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1502), - [anon_sym_SLASH_SLASH2] = ACTIONS(1502), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1502), - [anon_sym_bit_DASHshr2] = ACTIONS(1502), - [anon_sym_bit_DASHand2] = ACTIONS(1502), - [anon_sym_bit_DASHxor2] = ACTIONS(1502), - [anon_sym_bit_DASHor2] = ACTIONS(1502), - [anon_sym_DOT_DOT2] = ACTIONS(1500), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), - [anon_sym_QMARK2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DOT2] = ACTIONS(1500), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1502), - [anon_sym_out_GT_GT] = ACTIONS(1502), - [anon_sym_e_GT_GT] = ACTIONS(1502), - [anon_sym_o_GT_GT] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(382)] = { - [sym_comment] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1504), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_GT2] = ACTIONS(1504), - [anon_sym_DASH2] = ACTIONS(1504), - [anon_sym_STAR2] = ACTIONS(1504), - [anon_sym_and2] = ACTIONS(1506), - [anon_sym_xor2] = ACTIONS(1506), - [anon_sym_or2] = ACTIONS(1506), - [anon_sym_not_DASHin2] = ACTIONS(1506), - [anon_sym_has2] = ACTIONS(1506), - [anon_sym_not_DASHhas2] = ACTIONS(1506), - [anon_sym_starts_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), - [anon_sym_ends_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), - [anon_sym_EQ_EQ2] = ACTIONS(1506), - [anon_sym_BANG_EQ2] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ2] = ACTIONS(1506), - [anon_sym_GT_EQ2] = ACTIONS(1506), - [anon_sym_EQ_TILDE2] = ACTIONS(1506), - [anon_sym_BANG_TILDE2] = ACTIONS(1506), - [anon_sym_like2] = ACTIONS(1506), - [anon_sym_not_DASHlike2] = ACTIONS(1506), - [anon_sym_STAR_STAR2] = ACTIONS(1506), - [anon_sym_PLUS_PLUS2] = ACTIONS(1504), - [anon_sym_SLASH2] = ACTIONS(1504), - [anon_sym_mod2] = ACTIONS(1506), - [anon_sym_SLASH_SLASH2] = ACTIONS(1506), - [anon_sym_PLUS2] = ACTIONS(1504), - [anon_sym_bit_DASHshl2] = ACTIONS(1506), - [anon_sym_bit_DASHshr2] = ACTIONS(1506), - [anon_sym_bit_DASHand2] = ACTIONS(1506), - [anon_sym_bit_DASHxor2] = ACTIONS(1506), - [anon_sym_bit_DASHor2] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_QMARK2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(383)] = { - [sym_path] = STATE(419), - [sym_comment] = STATE(383), - [aux_sym__where_predicate_lhs_repeat1] = STATE(383), - [ts_builtin_sym_end] = ACTIONS(1534), - [anon_sym_EQ] = ACTIONS(1532), - [anon_sym_PLUS_EQ] = ACTIONS(1534), - [anon_sym_DASH_EQ] = ACTIONS(1534), - [anon_sym_STAR_EQ] = ACTIONS(1534), - [anon_sym_SLASH_EQ] = ACTIONS(1534), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1534), - [anon_sym_in] = ACTIONS(1534), - [sym__newline] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_err_GT_PIPE] = ACTIONS(1534), - [anon_sym_out_GT_PIPE] = ACTIONS(1534), - [anon_sym_e_GT_PIPE] = ACTIONS(1534), - [anon_sym_o_GT_PIPE] = ACTIONS(1534), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1534), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1534), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1534), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1534), - [anon_sym_GT2] = ACTIONS(1532), - [anon_sym_DASH2] = ACTIONS(1532), - [anon_sym_STAR2] = ACTIONS(1532), - [anon_sym_and2] = ACTIONS(1534), - [anon_sym_xor2] = ACTIONS(1534), - [anon_sym_or2] = ACTIONS(1534), - [anon_sym_not_DASHin2] = ACTIONS(1534), - [anon_sym_has2] = ACTIONS(1534), - [anon_sym_not_DASHhas2] = ACTIONS(1534), - [anon_sym_starts_DASHwith2] = ACTIONS(1534), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1534), - [anon_sym_ends_DASHwith2] = ACTIONS(1534), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1534), - [anon_sym_EQ_EQ2] = ACTIONS(1534), - [anon_sym_BANG_EQ2] = ACTIONS(1534), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ2] = ACTIONS(1534), - [anon_sym_GT_EQ2] = ACTIONS(1534), - [anon_sym_EQ_TILDE2] = ACTIONS(1534), - [anon_sym_BANG_TILDE2] = ACTIONS(1534), - [anon_sym_like2] = ACTIONS(1534), - [anon_sym_not_DASHlike2] = ACTIONS(1534), - [anon_sym_STAR_STAR2] = ACTIONS(1534), - [anon_sym_PLUS_PLUS2] = ACTIONS(1532), - [anon_sym_SLASH2] = ACTIONS(1532), - [anon_sym_mod2] = ACTIONS(1534), - [anon_sym_SLASH_SLASH2] = ACTIONS(1534), - [anon_sym_PLUS2] = ACTIONS(1532), - [anon_sym_bit_DASHshl2] = ACTIONS(1534), - [anon_sym_bit_DASHshr2] = ACTIONS(1534), - [anon_sym_bit_DASHand2] = ACTIONS(1534), - [anon_sym_bit_DASHxor2] = ACTIONS(1534), - [anon_sym_bit_DASHor2] = ACTIONS(1534), - [anon_sym_DOT_DOT2] = ACTIONS(1532), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1534), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1534), - [anon_sym_DOT2] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1532), - [anon_sym_out_GT] = ACTIONS(1532), - [anon_sym_e_GT] = ACTIONS(1532), - [anon_sym_o_GT] = ACTIONS(1532), - [anon_sym_err_PLUSout_GT] = ACTIONS(1532), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), - [anon_sym_o_PLUSe_GT] = ACTIONS(1532), - [anon_sym_e_PLUSo_GT] = ACTIONS(1532), - [anon_sym_err_GT_GT] = ACTIONS(1534), - [anon_sym_out_GT_GT] = ACTIONS(1534), - [anon_sym_e_GT_GT] = ACTIONS(1534), - [anon_sym_o_GT_GT] = ACTIONS(1534), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1534), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1534), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1534), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(384)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5333), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(384), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), - }, - [STATE(385)] = { - [sym__expr_parenthesized_immediate] = STATE(701), - [sym__immediate_decimal] = STATE(702), - [sym_val_variable] = STATE(701), - [sym_comment] = STATE(385), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(1607), - [aux_sym__immediate_decimal_token1] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(386)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5491), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(386), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(387)] = { [sym_comment] = STATE(387), - [aux_sym__types_body_repeat2] = STATE(1480), - [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), + [ts_builtin_sym_end] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(1522), + [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(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_STAR2] = ACTIONS(1522), + [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(1522), + [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(1522), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [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(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_QMARK2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [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(3), }, [STATE(388)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5225), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(388), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_PLUS_EQ] = ACTIONS(1532), + [anon_sym_DASH_EQ] = ACTIONS(1532), + [anon_sym_STAR_EQ] = ACTIONS(1532), + [anon_sym_SLASH_EQ] = ACTIONS(1532), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_GT2] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_STAR2] = ACTIONS(1530), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1530), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_like2] = ACTIONS(1532), + [anon_sym_not_DASHlike2] = ACTIONS(1532), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1530), + [anon_sym_SLASH2] = ACTIONS(1530), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT_DOT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), + [anon_sym_QMARK2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(389)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5123), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym__expr_parenthesized_immediate] = STATE(724), + [sym__immediate_decimal] = STATE(725), + [sym_val_variable] = STATE(724), [sym_comment] = STATE(389), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1600), + [sym__newline] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_err_GT_PIPE] = ACTIONS(1600), + [anon_sym_out_GT_PIPE] = ACTIONS(1600), + [anon_sym_e_GT_PIPE] = ACTIONS(1600), + [anon_sym_o_GT_PIPE] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1600), + [anon_sym_xor2] = ACTIONS(1600), + [anon_sym_or2] = ACTIONS(1600), + [anon_sym_not_DASHin2] = ACTIONS(1600), + [anon_sym_has2] = ACTIONS(1600), + [anon_sym_not_DASHhas2] = ACTIONS(1600), + [anon_sym_starts_DASHwith2] = ACTIONS(1600), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1600), + [anon_sym_ends_DASHwith2] = ACTIONS(1600), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1600), + [anon_sym_EQ_EQ2] = ACTIONS(1600), + [anon_sym_BANG_EQ2] = ACTIONS(1600), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1600), + [anon_sym_GT_EQ2] = ACTIONS(1600), + [anon_sym_EQ_TILDE2] = ACTIONS(1600), + [anon_sym_BANG_TILDE2] = ACTIONS(1600), + [anon_sym_like2] = ACTIONS(1600), + [anon_sym_not_DASHlike2] = ACTIONS(1600), + [anon_sym_LPAREN2] = ACTIONS(1606), + [anon_sym_STAR_STAR2] = ACTIONS(1600), + [anon_sym_PLUS_PLUS2] = ACTIONS(1600), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1600), + [anon_sym_SLASH_SLASH2] = ACTIONS(1600), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1600), + [anon_sym_bit_DASHshr2] = ACTIONS(1600), + [anon_sym_bit_DASHand2] = ACTIONS(1600), + [anon_sym_bit_DASHxor2] = ACTIONS(1600), + [anon_sym_bit_DASHor2] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(1608), + [aux_sym__immediate_decimal_token1] = ACTIONS(1610), + [aux_sym__immediate_decimal_token2] = ACTIONS(1610), + [aux_sym__immediate_decimal_token3] = ACTIONS(1612), + [aux_sym__immediate_decimal_token4] = ACTIONS(1612), + [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(1600), + [anon_sym_out_GT_GT] = ACTIONS(1600), + [anon_sym_e_GT_GT] = ACTIONS(1600), + [anon_sym_o_GT_GT] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(390)] = { + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5312), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(390), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -79373,386 +79782,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(390)] = { - [sym__expr_parenthesized_immediate] = STATE(703), - [sym__immediate_decimal] = STATE(556), - [sym_val_variable] = STATE(703), - [sym_comment] = STATE(390), - [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(1601), - [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(1605), - [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_DOT] = ACTIONS(1635), - [aux_sym__immediate_decimal_token1] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [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(1637), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(391)] = { - [sym__expr_parenthesized_immediate] = STATE(703), - [sym__immediate_decimal] = STATE(704), - [sym_val_variable] = STATE(703), [sym_comment] = STATE(391), - [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(1601), - [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(1605), - [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_DOT] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [ts_builtin_sym_end] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1482), + [anon_sym_in] = ACTIONS(1482), + [sym__newline] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_err_GT_PIPE] = ACTIONS(1482), + [anon_sym_out_GT_PIPE] = ACTIONS(1482), + [anon_sym_e_GT_PIPE] = ACTIONS(1482), + [anon_sym_o_GT_PIPE] = ACTIONS(1482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), + [anon_sym_GT2] = ACTIONS(1480), + [anon_sym_DASH2] = ACTIONS(1480), + [anon_sym_STAR2] = ACTIONS(1480), + [anon_sym_and2] = ACTIONS(1482), + [anon_sym_xor2] = ACTIONS(1482), + [anon_sym_or2] = ACTIONS(1482), + [anon_sym_not_DASHin2] = ACTIONS(1482), + [anon_sym_has2] = ACTIONS(1482), + [anon_sym_not_DASHhas2] = ACTIONS(1482), + [anon_sym_starts_DASHwith2] = ACTIONS(1482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1482), + [anon_sym_ends_DASHwith2] = ACTIONS(1482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1482), + [anon_sym_EQ_EQ2] = ACTIONS(1482), + [anon_sym_BANG_EQ2] = ACTIONS(1482), + [anon_sym_LT2] = ACTIONS(1480), + [anon_sym_LT_EQ2] = ACTIONS(1482), + [anon_sym_GT_EQ2] = ACTIONS(1482), + [anon_sym_EQ_TILDE2] = ACTIONS(1482), + [anon_sym_BANG_TILDE2] = ACTIONS(1482), + [anon_sym_like2] = ACTIONS(1482), + [anon_sym_not_DASHlike2] = ACTIONS(1482), + [anon_sym_STAR_STAR2] = ACTIONS(1482), + [anon_sym_PLUS_PLUS2] = ACTIONS(1480), + [anon_sym_SLASH2] = ACTIONS(1480), + [anon_sym_mod2] = ACTIONS(1482), + [anon_sym_SLASH_SLASH2] = ACTIONS(1482), + [anon_sym_PLUS2] = ACTIONS(1480), + [anon_sym_bit_DASHshl2] = ACTIONS(1482), + [anon_sym_bit_DASHshr2] = ACTIONS(1482), + [anon_sym_bit_DASHand2] = ACTIONS(1482), + [anon_sym_bit_DASHxor2] = ACTIONS(1482), + [anon_sym_bit_DASHor2] = ACTIONS(1482), + [anon_sym_DOT_DOT2] = ACTIONS(1480), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1482), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1482), + [anon_sym_QMARK2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DOT2] = ACTIONS(1480), + [anon_sym_err_GT] = ACTIONS(1480), + [anon_sym_out_GT] = ACTIONS(1480), + [anon_sym_e_GT] = ACTIONS(1480), + [anon_sym_o_GT] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT] = ACTIONS(1480), + [anon_sym_err_GT_GT] = ACTIONS(1482), + [anon_sym_out_GT_GT] = ACTIONS(1482), + [anon_sym_e_GT_GT] = ACTIONS(1482), + [anon_sym_o_GT_GT] = ACTIONS(1482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(392)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5093), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(392), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1518), + [anon_sym_DASH_EQ] = ACTIONS(1518), + [anon_sym_STAR_EQ] = ACTIONS(1518), + [anon_sym_SLASH_EQ] = ACTIONS(1518), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1518), + [anon_sym_in] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_err_GT_PIPE] = ACTIONS(1518), + [anon_sym_out_GT_PIPE] = ACTIONS(1518), + [anon_sym_e_GT_PIPE] = ACTIONS(1518), + [anon_sym_o_GT_PIPE] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1518), + [anon_sym_GT2] = ACTIONS(1516), + [anon_sym_DASH2] = ACTIONS(1516), + [anon_sym_STAR2] = ACTIONS(1516), + [anon_sym_and2] = ACTIONS(1518), + [anon_sym_xor2] = ACTIONS(1518), + [anon_sym_or2] = ACTIONS(1518), + [anon_sym_not_DASHin2] = ACTIONS(1518), + [anon_sym_has2] = ACTIONS(1518), + [anon_sym_not_DASHhas2] = ACTIONS(1518), + [anon_sym_starts_DASHwith2] = ACTIONS(1518), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1518), + [anon_sym_ends_DASHwith2] = ACTIONS(1518), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1518), + [anon_sym_EQ_EQ2] = ACTIONS(1518), + [anon_sym_BANG_EQ2] = ACTIONS(1518), + [anon_sym_LT2] = ACTIONS(1516), + [anon_sym_LT_EQ2] = ACTIONS(1518), + [anon_sym_GT_EQ2] = ACTIONS(1518), + [anon_sym_EQ_TILDE2] = ACTIONS(1518), + [anon_sym_BANG_TILDE2] = ACTIONS(1518), + [anon_sym_like2] = ACTIONS(1518), + [anon_sym_not_DASHlike2] = ACTIONS(1518), + [anon_sym_STAR_STAR2] = ACTIONS(1518), + [anon_sym_PLUS_PLUS2] = ACTIONS(1516), + [anon_sym_SLASH2] = ACTIONS(1516), + [anon_sym_mod2] = ACTIONS(1518), + [anon_sym_SLASH_SLASH2] = ACTIONS(1518), + [anon_sym_PLUS2] = ACTIONS(1516), + [anon_sym_bit_DASHshl2] = ACTIONS(1518), + [anon_sym_bit_DASHshr2] = ACTIONS(1518), + [anon_sym_bit_DASHand2] = ACTIONS(1518), + [anon_sym_bit_DASHxor2] = ACTIONS(1518), + [anon_sym_bit_DASHor2] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1518), + [anon_sym_QMARK2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_DOT2] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1516), + [anon_sym_out_GT] = ACTIONS(1516), + [anon_sym_e_GT] = ACTIONS(1516), + [anon_sym_o_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT] = ACTIONS(1516), + [anon_sym_err_GT_GT] = ACTIONS(1518), + [anon_sym_out_GT_GT] = ACTIONS(1518), + [anon_sym_e_GT_GT] = ACTIONS(1518), + [anon_sym_o_GT_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(393)] = { + [sym__expr_parenthesized_immediate] = STATE(727), + [sym__immediate_decimal] = STATE(728), + [sym_val_variable] = STATE(727), [sym_comment] = STATE(393), - [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_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1622), + [anon_sym_DASH2] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_STAR2] = ACTIONS(1622), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1622), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_like2] = ACTIONS(1620), + [anon_sym_not_DASHlike2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1606), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1622), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1622), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1624), + [aux_sym__immediate_decimal_token1] = ACTIONS(1610), + [aux_sym__immediate_decimal_token2] = ACTIONS(1610), + [aux_sym__immediate_decimal_token3] = ACTIONS(1612), + [aux_sym__immediate_decimal_token4] = ACTIONS(1612), + [anon_sym_err_GT] = ACTIONS(1622), + [anon_sym_out_GT] = ACTIONS(1622), + [anon_sym_e_GT] = ACTIONS(1622), + [anon_sym_o_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT] = ACTIONS(1622), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), [anon_sym_POUND] = ACTIONS(3), }, [STATE(394)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5332), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5124), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(394), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1561), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1626), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -79764,163 +80095,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(395)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5134), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(395), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1547), + [anon_sym_in] = ACTIONS(1547), + [sym__newline] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_err_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_GT_PIPE] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_STAR2] = ACTIONS(1545), + [anon_sym_and2] = ACTIONS(1547), + [anon_sym_xor2] = ACTIONS(1547), + [anon_sym_or2] = ACTIONS(1547), + [anon_sym_not_DASHin2] = ACTIONS(1547), + [anon_sym_has2] = ACTIONS(1547), + [anon_sym_not_DASHhas2] = ACTIONS(1547), + [anon_sym_starts_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1547), + [anon_sym_ends_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1547), + [anon_sym_EQ_EQ2] = ACTIONS(1547), + [anon_sym_BANG_EQ2] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ2] = ACTIONS(1547), + [anon_sym_GT_EQ2] = ACTIONS(1547), + [anon_sym_EQ_TILDE2] = ACTIONS(1547), + [anon_sym_BANG_TILDE2] = ACTIONS(1547), + [anon_sym_like2] = ACTIONS(1547), + [anon_sym_not_DASHlike2] = ACTIONS(1547), + [anon_sym_STAR_STAR2] = ACTIONS(1547), + [anon_sym_PLUS_PLUS2] = ACTIONS(1545), + [anon_sym_SLASH2] = ACTIONS(1545), + [anon_sym_mod2] = ACTIONS(1547), + [anon_sym_SLASH_SLASH2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1545), + [anon_sym_bit_DASHshl2] = ACTIONS(1547), + [anon_sym_bit_DASHshr2] = ACTIONS(1547), + [anon_sym_bit_DASHand2] = ACTIONS(1547), + [anon_sym_bit_DASHxor2] = ACTIONS(1547), + [anon_sym_bit_DASHor2] = ACTIONS(1547), + [anon_sym_DOT_DOT2] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [anon_sym_COLON2] = ACTIONS(1547), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [anon_sym_err_GT_GT] = ACTIONS(1547), + [anon_sym_out_GT_GT] = ACTIONS(1547), + [anon_sym_e_GT_GT] = ACTIONS(1547), + [anon_sym_o_GT_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(396)] = { [sym_comment] = STATE(396), - [anon_sym_EQ] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(1553), - [anon_sym_DASH_EQ] = ACTIONS(1553), - [anon_sym_STAR_EQ] = ACTIONS(1553), - [anon_sym_SLASH_EQ] = ACTIONS(1553), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1553), - [anon_sym_in] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_GT2] = ACTIONS(1551), - [anon_sym_DASH2] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1551), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_has2] = ACTIONS(1553), - [anon_sym_not_DASHhas2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1551), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_like2] = ACTIONS(1553), - [anon_sym_not_DASHlike2] = ACTIONS(1553), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1551), - [anon_sym_SLASH2] = ACTIONS(1551), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1551), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT_DOT2] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1553), - [anon_sym_COLON2] = ACTIONS(1553), - [anon_sym_DOT2] = ACTIONS(1551), - [anon_sym_err_GT] = ACTIONS(1551), - [anon_sym_out_GT] = ACTIONS(1551), - [anon_sym_e_GT] = ACTIONS(1551), - [anon_sym_o_GT] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT] = ACTIONS(1551), - [anon_sym_err_GT_GT] = ACTIONS(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(397)] = { - [sym_comment] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(1470), [anon_sym_EQ] = ACTIONS(1468), [anon_sym_PLUS_EQ] = ACTIONS(1470), [anon_sym_DASH_EQ] = ACTIONS(1470), @@ -79939,10 +80193,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_RPAREN] = ACTIONS(1470), [anon_sym_GT2] = ACTIONS(1468), [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1470), [anon_sym_STAR2] = ACTIONS(1468), [anon_sym_and2] = ACTIONS(1470), [anon_sym_xor2] = ACTIONS(1470), @@ -79977,7 +80229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1468), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), - [anon_sym_COLON2] = ACTIONS(1470), + [anon_sym_QMARK2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1468), [anon_sym_DOT2] = ACTIONS(1468), [anon_sym_err_GT] = ACTIONS(1468), [anon_sym_out_GT] = ACTIONS(1468), @@ -79997,152 +80250,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1470), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(397)] = { + [sym_comment] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1472), + [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(1472), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_STAR2] = ACTIONS(1472), + [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(1472), + [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(1472), + [anon_sym_SLASH2] = ACTIONS(1472), + [anon_sym_mod2] = ACTIONS(1474), + [anon_sym_SLASH_SLASH2] = ACTIONS(1474), + [anon_sym_PLUS2] = ACTIONS(1472), + [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(1472), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), + [anon_sym_QMARK2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DOT2] = ACTIONS(1472), + [anon_sym_err_GT] = ACTIONS(1472), + [anon_sym_out_GT] = ACTIONS(1472), + [anon_sym_e_GT] = ACTIONS(1472), + [anon_sym_o_GT] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT] = ACTIONS(1472), + [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(3), + }, [STATE(398)] = { - [sym_path] = STATE(419), + [sym_path] = STATE(427), [sym_comment] = STATE(398), - [aux_sym__where_predicate_lhs_repeat1] = STATE(383), - [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(1584), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_GT2] = ACTIONS(1536), + [anon_sym_DASH2] = ACTIONS(1536), + [anon_sym_STAR2] = ACTIONS(1536), + [anon_sym_and2] = ACTIONS(1538), + [anon_sym_xor2] = ACTIONS(1538), + [anon_sym_or2] = ACTIONS(1538), + [anon_sym_not_DASHin2] = ACTIONS(1538), + [anon_sym_has2] = ACTIONS(1538), + [anon_sym_not_DASHhas2] = ACTIONS(1538), + [anon_sym_starts_DASHwith2] = ACTIONS(1538), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1538), + [anon_sym_ends_DASHwith2] = ACTIONS(1538), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1538), + [anon_sym_EQ_EQ2] = ACTIONS(1538), + [anon_sym_BANG_EQ2] = ACTIONS(1538), + [anon_sym_LT2] = ACTIONS(1536), + [anon_sym_LT_EQ2] = ACTIONS(1538), + [anon_sym_GT_EQ2] = ACTIONS(1538), + [anon_sym_EQ_TILDE2] = ACTIONS(1538), + [anon_sym_BANG_TILDE2] = ACTIONS(1538), + [anon_sym_like2] = ACTIONS(1538), + [anon_sym_not_DASHlike2] = ACTIONS(1538), + [anon_sym_STAR_STAR2] = ACTIONS(1538), + [anon_sym_PLUS_PLUS2] = ACTIONS(1536), + [anon_sym_SLASH2] = ACTIONS(1536), + [anon_sym_mod2] = ACTIONS(1538), + [anon_sym_SLASH_SLASH2] = ACTIONS(1538), + [anon_sym_PLUS2] = ACTIONS(1536), + [anon_sym_bit_DASHshl2] = ACTIONS(1538), + [anon_sym_bit_DASHshr2] = ACTIONS(1538), + [anon_sym_bit_DASHand2] = ACTIONS(1538), + [anon_sym_bit_DASHxor2] = ACTIONS(1538), + [anon_sym_bit_DASHor2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [anon_sym_DOT2] = ACTIONS(1628), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), [anon_sym_POUND] = ACTIONS(3), }, [STATE(399)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5342), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5225), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(399), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1541), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1631), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -80154,151 +80485,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(400)] = { + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5219), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_PLUS_EQ] = ACTIONS(1510), - [anon_sym_DASH_EQ] = ACTIONS(1510), - [anon_sym_STAR_EQ] = ACTIONS(1510), - [anon_sym_SLASH_EQ] = ACTIONS(1510), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1510), - [anon_sym_in] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_GT2] = ACTIONS(1508), - [anon_sym_DASH2] = ACTIONS(1508), - [anon_sym_STAR2] = ACTIONS(1508), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_has2] = ACTIONS(1510), - [anon_sym_not_DASHhas2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_like2] = ACTIONS(1510), - [anon_sym_not_DASHlike2] = ACTIONS(1510), - [anon_sym_STAR_STAR2] = ACTIONS(1510), - [anon_sym_PLUS_PLUS2] = ACTIONS(1508), - [anon_sym_SLASH2] = ACTIONS(1508), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), - [anon_sym_PLUS2] = ACTIONS(1508), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), - [anon_sym_DOT_DOT2] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), - [anon_sym_QMARK2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DOT2] = ACTIONS(1508), - [anon_sym_err_GT] = ACTIONS(1508), - [anon_sym_out_GT] = ACTIONS(1508), - [anon_sym_e_GT] = ACTIONS(1508), - [anon_sym_o_GT] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT] = ACTIONS(1508), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(401)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_list_body] = STATE(5191), - [sym_val_entry] = STATE(4745), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5516), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(401), - [aux_sym__types_body_repeat1] = STATE(482), - [aux_sym_parameter_repeat2] = STATE(4481), - [aux_sym_list_body_repeat1] = STATE(558), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1643), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1553), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1496), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -80310,717 +80641,1035 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(402)] = { + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5119), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(402), - [anon_sym_EQ] = ACTIONS(1578), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1580), - [sym__newline] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_err_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_GT_PIPE] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_GT2] = ACTIONS(1578), - [anon_sym_DASH2] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_STAR2] = ACTIONS(1578), - [anon_sym_and2] = ACTIONS(1580), - [anon_sym_xor2] = ACTIONS(1580), - [anon_sym_or2] = ACTIONS(1580), - [anon_sym_not_DASHin2] = ACTIONS(1580), - [anon_sym_has2] = ACTIONS(1580), - [anon_sym_not_DASHhas2] = ACTIONS(1580), - [anon_sym_starts_DASHwith2] = ACTIONS(1580), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), - [anon_sym_ends_DASHwith2] = ACTIONS(1580), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), - [anon_sym_EQ_EQ2] = ACTIONS(1580), - [anon_sym_BANG_EQ2] = ACTIONS(1580), - [anon_sym_LT2] = ACTIONS(1578), - [anon_sym_LT_EQ2] = ACTIONS(1580), - [anon_sym_GT_EQ2] = ACTIONS(1580), - [anon_sym_EQ_TILDE2] = ACTIONS(1580), - [anon_sym_BANG_TILDE2] = ACTIONS(1580), - [anon_sym_like2] = ACTIONS(1580), - [anon_sym_not_DASHlike2] = ACTIONS(1580), - [anon_sym_STAR_STAR2] = ACTIONS(1580), - [anon_sym_PLUS_PLUS2] = ACTIONS(1578), - [anon_sym_SLASH2] = ACTIONS(1578), - [anon_sym_mod2] = ACTIONS(1580), - [anon_sym_SLASH_SLASH2] = ACTIONS(1580), - [anon_sym_PLUS2] = ACTIONS(1578), - [anon_sym_bit_DASHshl2] = ACTIONS(1580), - [anon_sym_bit_DASHshr2] = ACTIONS(1580), - [anon_sym_bit_DASHand2] = ACTIONS(1580), - [anon_sym_bit_DASHxor2] = ACTIONS(1580), - [anon_sym_bit_DASHor2] = ACTIONS(1580), - [anon_sym_DOT_DOT2] = ACTIONS(1578), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1580), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1580), - [anon_sym_COLON2] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1578), - [anon_sym_out_GT] = ACTIONS(1578), - [anon_sym_e_GT] = ACTIONS(1578), - [anon_sym_o_GT] = ACTIONS(1578), - [anon_sym_err_PLUSout_GT] = ACTIONS(1578), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1578), - [anon_sym_o_PLUSe_GT] = ACTIONS(1578), - [anon_sym_e_PLUSo_GT] = ACTIONS(1578), - [anon_sym_err_GT_GT] = ACTIONS(1580), - [anon_sym_out_GT_GT] = ACTIONS(1580), - [anon_sym_e_GT_GT] = ACTIONS(1580), - [anon_sym_o_GT_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(403)] = { - [sym__expr_parenthesized_immediate] = STATE(783), - [sym__immediate_decimal] = STATE(784), - [sym_val_variable] = STATE(783), [sym_comment] = STATE(403), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [aux_sym__immediate_decimal_token1] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_EQ] = ACTIONS(1512), + [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_RPAREN] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [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(1512), + [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(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [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(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_COLON2] = ACTIONS(1514), + [anon_sym_DOT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), [anon_sym_POUND] = ACTIONS(3), }, [STATE(404)] = { - [sym_cell_path] = STATE(472), - [sym_path] = STATE(458), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5251), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(404), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), - [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_GT2] = 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), - [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_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), - [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), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(405)] = { - [sym_cell_path] = STATE(478), - [sym_path] = STATE(458), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5138), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(405), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), - [anon_sym_in] = ACTIONS(1653), - [sym__newline] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_err_GT_PIPE] = ACTIONS(1653), - [anon_sym_out_GT_PIPE] = ACTIONS(1653), - [anon_sym_e_GT_PIPE] = ACTIONS(1653), - [anon_sym_o_GT_PIPE] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), - [anon_sym_RPAREN] = ACTIONS(1653), - [anon_sym_GT2] = ACTIONS(1655), - [anon_sym_DASH2] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_EQ_GT] = ACTIONS(1653), - [anon_sym_STAR2] = ACTIONS(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_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), - [anon_sym_DOT_DOT2] = ACTIONS(1655), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1653), - [anon_sym_COLON2] = ACTIONS(1653), - [anon_sym_DOT2] = ACTIONS(1651), - [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), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(406)] = { - [sym__expr_parenthesized_immediate] = STATE(788), - [sym__immediate_decimal] = STATE(966), - [sym_val_variable] = STATE(788), + [sym__expr_parenthesized_immediate] = STATE(727), + [sym__immediate_decimal] = STATE(528), + [sym_val_variable] = STATE(727), [sym_comment] = STATE(406), - [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(1601), - [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(1605), - [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(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [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(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1622), + [anon_sym_DASH2] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_STAR2] = ACTIONS(1622), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1622), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_like2] = ACTIONS(1620), + [anon_sym_not_DASHlike2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1606), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1622), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1622), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1639), + [aux_sym__immediate_decimal_token1] = ACTIONS(1610), + [aux_sym__immediate_decimal_token2] = ACTIONS(1610), + [aux_sym__immediate_decimal_token3] = ACTIONS(1612), + [aux_sym__immediate_decimal_token4] = ACTIONS(1612), + [anon_sym_err_GT] = ACTIONS(1622), + [anon_sym_out_GT] = ACTIONS(1622), + [anon_sym_e_GT] = ACTIONS(1622), + [anon_sym_o_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT] = ACTIONS(1622), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, [STATE(407)] = { + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5109), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(1462), - [anon_sym_EQ] = ACTIONS(1460), - [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_GT2] = ACTIONS(1460), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1460), - [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(1460), - [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(1460), - [anon_sym_SLASH2] = ACTIONS(1460), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1460), - [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(1460), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_DOT2] = ACTIONS(1460), - [anon_sym_err_GT] = ACTIONS(1460), - [anon_sym_out_GT] = ACTIONS(1460), - [anon_sym_e_GT] = ACTIONS(1460), - [anon_sym_o_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT] = ACTIONS(1460), - [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), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(408)] = { - [sym__expr_parenthesized_immediate] = STATE(803), - [sym__immediate_decimal] = STATE(804), - [sym_val_variable] = STATE(803), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5348), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(408), - [anon_sym_in] = ACTIONS(1659), - [sym__newline] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_err_GT_PIPE] = ACTIONS(1659), - [anon_sym_out_GT_PIPE] = ACTIONS(1659), - [anon_sym_e_GT_PIPE] = ACTIONS(1659), - [anon_sym_o_GT_PIPE] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1659), - [anon_sym_xor2] = ACTIONS(1659), - [anon_sym_or2] = ACTIONS(1659), - [anon_sym_not_DASHin2] = ACTIONS(1659), - [anon_sym_has2] = ACTIONS(1659), - [anon_sym_not_DASHhas2] = ACTIONS(1659), - [anon_sym_starts_DASHwith2] = ACTIONS(1659), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1659), - [anon_sym_ends_DASHwith2] = ACTIONS(1659), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1659), - [anon_sym_EQ_EQ2] = ACTIONS(1659), - [anon_sym_BANG_EQ2] = ACTIONS(1659), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1659), - [anon_sym_GT_EQ2] = ACTIONS(1659), - [anon_sym_EQ_TILDE2] = ACTIONS(1659), - [anon_sym_BANG_TILDE2] = ACTIONS(1659), - [anon_sym_like2] = ACTIONS(1659), - [anon_sym_not_DASHlike2] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1659), - [anon_sym_PLUS_PLUS2] = ACTIONS(1659), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1659), - [anon_sym_SLASH_SLASH2] = ACTIONS(1659), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1659), - [anon_sym_bit_DASHshr2] = ACTIONS(1659), - [anon_sym_bit_DASHand2] = ACTIONS(1659), - [anon_sym_bit_DASHxor2] = ACTIONS(1659), - [anon_sym_bit_DASHor2] = ACTIONS(1659), - [aux_sym__immediate_decimal_token1] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1659), - [anon_sym_out_GT_GT] = ACTIONS(1659), - [anon_sym_e_GT_GT] = ACTIONS(1659), - [anon_sym_o_GT_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(409)] = { + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5149), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1462), - [anon_sym_EQ] = ACTIONS(1460), - [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_GT2] = ACTIONS(1460), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1460), - [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(1460), - [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(1460), - [anon_sym_SLASH2] = ACTIONS(1460), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1460), - [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(1460), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), - [anon_sym_QMARK2] = ACTIONS(1663), - [anon_sym_DOT2] = ACTIONS(1460), - [anon_sym_err_GT] = ACTIONS(1460), - [anon_sym_out_GT] = ACTIONS(1460), - [anon_sym_e_GT] = ACTIONS(1460), - [anon_sym_o_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT] = ACTIONS(1460), - [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), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(410)] = { - [sym__expr_parenthesized_immediate] = STATE(788), - [sym__immediate_decimal] = STATE(965), - [sym_val_variable] = STATE(788), + [sym_path] = STATE(427), [sym_comment] = STATE(410), - [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(1601), - [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(1605), - [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(1665), - [aux_sym__immediate_decimal_token2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1667), - [aux_sym__immediate_decimal_token4] = ACTIONS(1667), - [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(1637), + [aux_sym__where_predicate_lhs_repeat1] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(1528), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_PLUS_EQ] = ACTIONS(1528), + [anon_sym_DASH_EQ] = ACTIONS(1528), + [anon_sym_STAR_EQ] = ACTIONS(1528), + [anon_sym_SLASH_EQ] = ACTIONS(1528), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_has2] = ACTIONS(1528), + [anon_sym_not_DASHhas2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_like2] = ACTIONS(1528), + [anon_sym_not_DASHlike2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1526), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_DOT2] = ACTIONS(1572), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), [anon_sym_POUND] = ACTIONS(3), }, [STATE(411)] = { + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_list_body] = STATE(5229), + [sym_val_entry] = STATE(4711), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(411), + [aux_sym__types_body_repeat1] = STATE(483), + [aux_sym_parameter_repeat2] = STATE(4447), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [sym__newline] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(412)] = { [sym__expr_parenthesized_immediate] = STATE(805), - [sym__immediate_decimal] = STATE(806), + [sym__immediate_decimal] = STATE(934), [sym_val_variable] = STATE(805), - [sym_comment] = STATE(411), - [anon_sym_in] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1601), + [sym_comment] = STATE(412), + [anon_sym_in] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1647), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_STAR2] = ACTIONS(1647), + [anon_sym_and2] = ACTIONS(1645), + [anon_sym_xor2] = ACTIONS(1645), + [anon_sym_or2] = ACTIONS(1645), + [anon_sym_not_DASHin2] = ACTIONS(1645), + [anon_sym_has2] = ACTIONS(1645), + [anon_sym_not_DASHhas2] = ACTIONS(1645), + [anon_sym_starts_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), + [anon_sym_ends_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), + [anon_sym_EQ_EQ2] = ACTIONS(1645), + [anon_sym_BANG_EQ2] = ACTIONS(1645), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ2] = ACTIONS(1645), + [anon_sym_GT_EQ2] = ACTIONS(1645), + [anon_sym_EQ_TILDE2] = ACTIONS(1645), + [anon_sym_BANG_TILDE2] = ACTIONS(1645), + [anon_sym_like2] = ACTIONS(1645), + [anon_sym_not_DASHlike2] = ACTIONS(1645), + [anon_sym_LPAREN2] = ACTIONS(1606), + [anon_sym_STAR_STAR2] = ACTIONS(1645), + [anon_sym_PLUS_PLUS2] = ACTIONS(1645), + [anon_sym_SLASH2] = ACTIONS(1647), + [anon_sym_mod2] = ACTIONS(1645), + [anon_sym_SLASH_SLASH2] = ACTIONS(1645), + [anon_sym_PLUS2] = ACTIONS(1647), + [anon_sym_bit_DASHshl2] = ACTIONS(1645), + [anon_sym_bit_DASHshr2] = ACTIONS(1645), + [anon_sym_bit_DASHand2] = ACTIONS(1645), + [anon_sym_bit_DASHxor2] = ACTIONS(1645), + [anon_sym_bit_DASHor2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token1] = ACTIONS(1649), + [aux_sym__immediate_decimal_token2] = ACTIONS(1649), + [aux_sym__immediate_decimal_token3] = ACTIONS(1651), + [aux_sym__immediate_decimal_token4] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1647), + [anon_sym_out_GT] = ACTIONS(1647), + [anon_sym_e_GT] = ACTIONS(1647), + [anon_sym_o_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT] = ACTIONS(1647), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [sym__unquoted_pattern] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(413)] = { + [sym__expr_parenthesized_immediate] = STATE(943), + [sym__immediate_decimal] = STATE(695), + [sym_val_variable] = STATE(943), + [sym_comment] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1622), + [anon_sym_DASH2] = ACTIONS(1622), + [anon_sym_STAR2] = ACTIONS(1622), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1622), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_like2] = ACTIONS(1620), + [anon_sym_not_DASHlike2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1622), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1622), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1659), + [aux_sym__immediate_decimal_token1] = ACTIONS(1661), + [aux_sym__immediate_decimal_token2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token3] = ACTIONS(1663), + [aux_sym__immediate_decimal_token4] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1622), + [anon_sym_out_GT] = ACTIONS(1622), + [anon_sym_e_GT] = ACTIONS(1622), + [anon_sym_o_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT] = ACTIONS(1622), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [sym__unquoted_pattern] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(414)] = { + [sym__path_suffix] = STATE(480), + [sym_comment] = STATE(414), + [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_RPAREN] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_EQ_GT] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [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(1448), + [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(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [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(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [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(3), + }, + [STATE(415)] = { + [sym__expr_parenthesized_immediate] = STATE(785), + [sym__immediate_decimal] = STATE(786), + [sym_val_variable] = STATE(785), + [sym_comment] = STATE(415), + [anon_sym_in] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1602), [anon_sym_GT2] = ACTIONS(1671), [anon_sym_DASH2] = ACTIONS(1671), [anon_sym_LBRACE] = ACTIONS(1669), @@ -81045,7 +81694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1669), [anon_sym_like2] = ACTIONS(1669), [anon_sym_not_DASHlike2] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1606), [anon_sym_STAR_STAR2] = ACTIONS(1669), [anon_sym_PLUS_PLUS2] = ACTIONS(1669), [anon_sym_SLASH2] = ACTIONS(1671), @@ -81057,10 +81706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1669), [anon_sym_bit_DASHxor2] = ACTIONS(1669), [anon_sym_bit_DASHor2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token1] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [aux_sym__immediate_decimal_token1] = ACTIONS(1673), + [aux_sym__immediate_decimal_token2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token3] = ACTIONS(1612), + [aux_sym__immediate_decimal_token4] = ACTIONS(1612), [anon_sym_err_GT] = ACTIONS(1671), [anon_sym_out_GT] = ACTIONS(1671), [anon_sym_e_GT] = ACTIONS(1671), @@ -81079,165 +81728,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(412)] = { - [sym__path_suffix] = STATE(443), - [sym_comment] = STATE(412), - [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_RPAREN] = ACTIONS(1444), - [anon_sym_GT2] = ACTIONS(1442), - [anon_sym_DASH2] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_EQ_GT] = ACTIONS(1444), - [anon_sym_STAR2] = ACTIONS(1442), - [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(1442), - [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(1442), - [anon_sym_mod2] = ACTIONS(1444), - [anon_sym_SLASH_SLASH2] = ACTIONS(1444), - [anon_sym_PLUS2] = ACTIONS(1442), - [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(1442), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), - [anon_sym_COLON2] = ACTIONS(1444), - [anon_sym_QMARK2] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_DOT2] = ACTIONS(1442), - [anon_sym_err_GT] = ACTIONS(1442), - [anon_sym_out_GT] = ACTIONS(1442), - [anon_sym_e_GT] = ACTIONS(1442), - [anon_sym_o_GT] = ACTIONS(1442), - [anon_sym_err_PLUSout_GT] = ACTIONS(1442), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), - [anon_sym_o_PLUSe_GT] = ACTIONS(1442), - [anon_sym_e_PLUSo_GT] = ACTIONS(1442), - [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), + [STATE(416)] = { + [sym_cell_path] = STATE(493), + [sym_path] = STATE(470), + [sym_comment] = STATE(416), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [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_GT2] = ACTIONS(1677), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_EQ_GT] = 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_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), + [anon_sym_DOT_DOT2] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_COLON2] = ACTIONS(1675), + [anon_sym_DOT2] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1677), + [anon_sym_out_GT] = ACTIONS(1677), + [anon_sym_e_GT] = ACTIONS(1677), + [anon_sym_o_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT] = ACTIONS(1677), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(413)] = { + [STATE(417)] = { [sym__expr_parenthesized_immediate] = STATE(801), [sym__immediate_decimal] = STATE(802), [sym_val_variable] = STATE(801), - [sym_comment] = STATE(413), - [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_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1679), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_RBRACE] = 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_LPAREN2] = ACTIONS(1605), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [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(414)] = { - [sym__expr_parenthesized_immediate] = STATE(807), - [sym__immediate_decimal] = STATE(944), - [sym_val_variable] = STATE(807), - [sym_comment] = STATE(414), + [sym_comment] = STATE(417), [anon_sym_in] = ACTIONS(1681), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), @@ -81251,7 +81823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1602), [anon_sym_GT2] = ACTIONS(1683), [anon_sym_DASH2] = ACTIONS(1683), [anon_sym_LBRACE] = ACTIONS(1681), @@ -81276,160 +81848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1681), [anon_sym_like2] = ACTIONS(1681), [anon_sym_not_DASHlike2] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1683), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1683), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [aux_sym__immediate_decimal_token1] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1683), - [anon_sym_out_GT] = ACTIONS(1683), - [anon_sym_e_GT] = ACTIONS(1683), - [anon_sym_o_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT] = ACTIONS(1683), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(415)] = { - [sym__expr_parenthesized_immediate] = STATE(919), - [sym__immediate_decimal] = STATE(714), - [sym_val_variable] = STATE(919), - [sym_comment] = STATE(415), - [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(1685), - [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(1687), - [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_DOT] = ACTIONS(1689), - [aux_sym__immediate_decimal_token1] = ACTIONS(1691), - [aux_sym__immediate_decimal_token2] = ACTIONS(1691), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [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(1637), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(416)] = { - [sym__expr_parenthesized_immediate] = STATE(807), - [sym__immediate_decimal] = STATE(931), - [sym_val_variable] = STATE(807), - [sym_comment] = STATE(416), - [anon_sym_in] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1683), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_has2] = ACTIONS(1681), - [anon_sym_not_DASHhas2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1683), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_like2] = ACTIONS(1681), - [anon_sym_not_DASHlike2] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1606), [anon_sym_STAR_STAR2] = ACTIONS(1681), [anon_sym_PLUS_PLUS2] = ACTIONS(1681), [anon_sym_SLASH2] = ACTIONS(1683), @@ -81441,10 +81860,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1667), - [aux_sym__immediate_decimal_token4] = ACTIONS(1667), + [aux_sym__immediate_decimal_token1] = ACTIONS(1673), + [aux_sym__immediate_decimal_token2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token3] = ACTIONS(1612), + [aux_sym__immediate_decimal_token4] = ACTIONS(1612), [anon_sym_err_GT] = ACTIONS(1683), [anon_sym_out_GT] = ACTIONS(1683), [anon_sym_e_GT] = ACTIONS(1683), @@ -81461,771 +81880,1007 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), - [sym__unquoted_pattern] = ACTIONS(1695), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(417)] = { - [sym_comment] = STATE(417), - [anon_sym_EQ] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(1697), - [anon_sym_DASH_EQ] = ACTIONS(1697), - [anon_sym_STAR_EQ] = ACTIONS(1697), - [anon_sym_SLASH_EQ] = ACTIONS(1697), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1697), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_COLON2] = ACTIONS(1701), - [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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), [anon_sym_POUND] = ACTIONS(3), }, [STATE(418)] = { + [sym__expr_parenthesized_immediate] = STATE(768), + [sym__immediate_decimal] = STATE(931), + [sym_val_variable] = STATE(768), [sym_comment] = STATE(418), - [anon_sym_in] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_GT2] = ACTIONS(1508), - [anon_sym_DASH2] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_EQ_GT] = ACTIONS(1510), - [anon_sym_STAR2] = ACTIONS(1508), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_has2] = ACTIONS(1510), - [anon_sym_not_DASHhas2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_like2] = ACTIONS(1510), - [anon_sym_not_DASHlike2] = ACTIONS(1510), - [anon_sym_STAR_STAR2] = ACTIONS(1510), - [anon_sym_PLUS_PLUS2] = ACTIONS(1510), - [anon_sym_SLASH2] = ACTIONS(1508), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), - [anon_sym_PLUS2] = ACTIONS(1508), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), - [anon_sym_DOT_DOT2] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), - [anon_sym_COLON2] = ACTIONS(1510), - [anon_sym_QMARK2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DOT2] = ACTIONS(1508), - [anon_sym_err_GT] = ACTIONS(1508), - [anon_sym_out_GT] = ACTIONS(1508), - [anon_sym_e_GT] = ACTIONS(1508), - [anon_sym_o_GT] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT] = ACTIONS(1508), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1622), + [anon_sym_DASH2] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_STAR2] = ACTIONS(1622), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1622), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_like2] = ACTIONS(1620), + [anon_sym_not_DASHlike2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1606), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1622), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1622), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token1] = ACTIONS(1649), + [aux_sym__immediate_decimal_token2] = ACTIONS(1649), + [aux_sym__immediate_decimal_token3] = ACTIONS(1651), + [aux_sym__immediate_decimal_token4] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1622), + [anon_sym_out_GT] = ACTIONS(1622), + [anon_sym_e_GT] = ACTIONS(1622), + [anon_sym_o_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT] = ACTIONS(1622), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, [STATE(419)] = { + [sym__expr_parenthesized_immediate] = STATE(803), + [sym__immediate_decimal] = STATE(804), + [sym_val_variable] = STATE(803), [sym_comment] = STATE(419), - [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_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_has2] = ACTIONS(1685), + [anon_sym_not_DASHhas2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_like2] = ACTIONS(1685), + [anon_sym_not_DASHlike2] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1606), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [aux_sym__immediate_decimal_token1] = ACTIONS(1673), + [aux_sym__immediate_decimal_token2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token3] = ACTIONS(1612), + [aux_sym__immediate_decimal_token4] = ACTIONS(1612), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(3), }, [STATE(420)] = { - [sym_cell_path] = STATE(501), - [sym_path] = STATE(458), + [sym__expr_parenthesized_immediate] = STATE(805), + [sym__immediate_decimal] = STATE(980), + [sym_val_variable] = STATE(805), [sym_comment] = STATE(420), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), - [anon_sym_in] = ACTIONS(1456), - [sym__newline] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_err_GT_PIPE] = ACTIONS(1456), - [anon_sym_out_GT_PIPE] = ACTIONS(1456), - [anon_sym_e_GT_PIPE] = ACTIONS(1456), - [anon_sym_o_GT_PIPE] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1456), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_GT2] = ACTIONS(1454), - [anon_sym_DASH2] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_STAR2] = ACTIONS(1454), - [anon_sym_and2] = ACTIONS(1456), - [anon_sym_xor2] = ACTIONS(1456), - [anon_sym_or2] = ACTIONS(1456), - [anon_sym_not_DASHin2] = ACTIONS(1456), - [anon_sym_has2] = ACTIONS(1456), - [anon_sym_not_DASHhas2] = ACTIONS(1456), - [anon_sym_starts_DASHwith2] = ACTIONS(1456), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1456), - [anon_sym_ends_DASHwith2] = ACTIONS(1456), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1456), - [anon_sym_EQ_EQ2] = ACTIONS(1456), - [anon_sym_BANG_EQ2] = ACTIONS(1456), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ2] = ACTIONS(1456), - [anon_sym_GT_EQ2] = ACTIONS(1456), - [anon_sym_EQ_TILDE2] = ACTIONS(1456), - [anon_sym_BANG_TILDE2] = ACTIONS(1456), - [anon_sym_like2] = ACTIONS(1456), - [anon_sym_not_DASHlike2] = ACTIONS(1456), - [anon_sym_STAR_STAR2] = ACTIONS(1456), - [anon_sym_PLUS_PLUS2] = ACTIONS(1456), - [anon_sym_SLASH2] = ACTIONS(1454), - [anon_sym_mod2] = ACTIONS(1456), - [anon_sym_SLASH_SLASH2] = ACTIONS(1456), - [anon_sym_PLUS2] = ACTIONS(1454), - [anon_sym_bit_DASHshl2] = ACTIONS(1456), - [anon_sym_bit_DASHshr2] = ACTIONS(1456), - [anon_sym_bit_DASHand2] = ACTIONS(1456), - [anon_sym_bit_DASHxor2] = ACTIONS(1456), - [anon_sym_bit_DASHor2] = ACTIONS(1456), - [anon_sym_DOT_DOT2] = ACTIONS(1454), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1456), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1456), - [anon_sym_DOT2] = ACTIONS(1651), - [anon_sym_err_GT] = ACTIONS(1454), - [anon_sym_out_GT] = ACTIONS(1454), - [anon_sym_e_GT] = ACTIONS(1454), - [anon_sym_o_GT] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT] = ACTIONS(1454), - [anon_sym_err_GT_GT] = ACTIONS(1456), - [anon_sym_out_GT_GT] = ACTIONS(1456), - [anon_sym_e_GT_GT] = ACTIONS(1456), - [anon_sym_o_GT_GT] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1456), + [anon_sym_in] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1647), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_STAR2] = ACTIONS(1647), + [anon_sym_and2] = ACTIONS(1645), + [anon_sym_xor2] = ACTIONS(1645), + [anon_sym_or2] = ACTIONS(1645), + [anon_sym_not_DASHin2] = ACTIONS(1645), + [anon_sym_has2] = ACTIONS(1645), + [anon_sym_not_DASHhas2] = ACTIONS(1645), + [anon_sym_starts_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), + [anon_sym_ends_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), + [anon_sym_EQ_EQ2] = ACTIONS(1645), + [anon_sym_BANG_EQ2] = ACTIONS(1645), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ2] = ACTIONS(1645), + [anon_sym_GT_EQ2] = ACTIONS(1645), + [anon_sym_EQ_TILDE2] = ACTIONS(1645), + [anon_sym_BANG_TILDE2] = ACTIONS(1645), + [anon_sym_like2] = ACTIONS(1645), + [anon_sym_not_DASHlike2] = ACTIONS(1645), + [anon_sym_LPAREN2] = ACTIONS(1606), + [anon_sym_STAR_STAR2] = ACTIONS(1645), + [anon_sym_PLUS_PLUS2] = ACTIONS(1645), + [anon_sym_SLASH2] = ACTIONS(1647), + [anon_sym_mod2] = ACTIONS(1645), + [anon_sym_SLASH_SLASH2] = ACTIONS(1645), + [anon_sym_PLUS2] = ACTIONS(1647), + [anon_sym_bit_DASHshl2] = ACTIONS(1645), + [anon_sym_bit_DASHshr2] = ACTIONS(1645), + [anon_sym_bit_DASHand2] = ACTIONS(1645), + [anon_sym_bit_DASHxor2] = ACTIONS(1645), + [anon_sym_bit_DASHor2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token1] = ACTIONS(1673), + [aux_sym__immediate_decimal_token2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token3] = ACTIONS(1612), + [aux_sym__immediate_decimal_token4] = ACTIONS(1612), + [anon_sym_err_GT] = ACTIONS(1647), + [anon_sym_out_GT] = ACTIONS(1647), + [anon_sym_e_GT] = ACTIONS(1647), + [anon_sym_o_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT] = ACTIONS(1647), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), [anon_sym_POUND] = ACTIONS(3), }, [STATE(421)] = { + [sym__expr_parenthesized_immediate] = STATE(768), + [sym__immediate_decimal] = STATE(972), + [sym_val_variable] = STATE(768), [sym_comment] = STATE(421), - [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_RPAREN] = ACTIONS(1514), - [anon_sym_GT2] = ACTIONS(1512), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_EQ_GT] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1512), - [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(1512), - [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(1512), - [anon_sym_mod2] = ACTIONS(1514), - [anon_sym_SLASH_SLASH2] = ACTIONS(1514), - [anon_sym_PLUS2] = ACTIONS(1512), - [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(1512), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), - [anon_sym_COLON2] = ACTIONS(1514), - [anon_sym_QMARK2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_DOT2] = ACTIONS(1512), - [anon_sym_err_GT] = ACTIONS(1512), - [anon_sym_out_GT] = ACTIONS(1512), - [anon_sym_e_GT] = ACTIONS(1512), - [anon_sym_o_GT] = ACTIONS(1512), - [anon_sym_err_PLUSout_GT] = ACTIONS(1512), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), - [anon_sym_o_PLUSe_GT] = ACTIONS(1512), - [anon_sym_e_PLUSo_GT] = ACTIONS(1512), - [anon_sym_err_GT_GT] = ACTIONS(1514), - [anon_sym_out_GT_GT] = ACTIONS(1514), - [anon_sym_e_GT_GT] = ACTIONS(1514), - [anon_sym_o_GT_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1622), + [anon_sym_DASH2] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_STAR2] = ACTIONS(1622), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1622), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_like2] = ACTIONS(1620), + [anon_sym_not_DASHlike2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1606), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1622), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1622), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token1] = ACTIONS(1673), + [aux_sym__immediate_decimal_token2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token3] = ACTIONS(1612), + [aux_sym__immediate_decimal_token4] = ACTIONS(1612), + [anon_sym_err_GT] = ACTIONS(1622), + [anon_sym_out_GT] = ACTIONS(1622), + [anon_sym_e_GT] = ACTIONS(1622), + [anon_sym_o_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT] = ACTIONS(1622), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), [anon_sym_POUND] = ACTIONS(3), }, [STATE(422)] = { + [sym_cell_path] = STATE(487), + [sym_path] = STATE(470), [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] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1705), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [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(1691), + [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(1691), + [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(1691), + [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(1691), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1691), + [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(1691), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1689), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1689), + [anon_sym_COLON2] = ACTIONS(1689), + [anon_sym_DOT2] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1691), + [anon_sym_out_GT] = ACTIONS(1691), + [anon_sym_e_GT] = ACTIONS(1691), + [anon_sym_o_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT] = ACTIONS(1691), + [anon_sym_err_GT_GT] = ACTIONS(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(423)] = { [sym_comment] = STATE(423), - [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_QMARK2] = ACTIONS(1522), - [anon_sym_BANG] = 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(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(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_BANG] = ACTIONS(1693), + [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(424)] = { + [sym__expr_parenthesized_immediate] = STATE(764), + [sym__immediate_decimal] = STATE(765), + [sym_val_variable] = STATE(764), [sym_comment] = STATE(424), - [anon_sym_in] = ACTIONS(1502), - [sym__newline] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_err_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_GT_PIPE] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1502), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1502), - [anon_sym_xor2] = ACTIONS(1502), - [anon_sym_or2] = ACTIONS(1502), - [anon_sym_not_DASHin2] = ACTIONS(1502), - [anon_sym_has2] = ACTIONS(1502), - [anon_sym_not_DASHhas2] = ACTIONS(1502), - [anon_sym_starts_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), - [anon_sym_ends_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), - [anon_sym_EQ_EQ2] = ACTIONS(1502), - [anon_sym_BANG_EQ2] = ACTIONS(1502), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1502), - [anon_sym_GT_EQ2] = ACTIONS(1502), - [anon_sym_EQ_TILDE2] = ACTIONS(1502), - [anon_sym_BANG_TILDE2] = ACTIONS(1502), - [anon_sym_like2] = ACTIONS(1502), - [anon_sym_not_DASHlike2] = ACTIONS(1502), - [anon_sym_STAR_STAR2] = ACTIONS(1502), - [anon_sym_PLUS_PLUS2] = ACTIONS(1502), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1502), - [anon_sym_SLASH_SLASH2] = ACTIONS(1502), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1502), - [anon_sym_bit_DASHshr2] = ACTIONS(1502), - [anon_sym_bit_DASHand2] = ACTIONS(1502), - [anon_sym_bit_DASHxor2] = ACTIONS(1502), - [anon_sym_bit_DASHor2] = ACTIONS(1502), - [anon_sym_DOT_DOT2] = ACTIONS(1500), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), - [anon_sym_COLON2] = ACTIONS(1502), - [anon_sym_QMARK2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DOT2] = ACTIONS(1500), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1502), - [anon_sym_out_GT_GT] = ACTIONS(1502), - [anon_sym_e_GT_GT] = ACTIONS(1502), - [anon_sym_o_GT_GT] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_in] = ACTIONS(1600), + [sym__newline] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_err_GT_PIPE] = ACTIONS(1600), + [anon_sym_out_GT_PIPE] = ACTIONS(1600), + [anon_sym_e_GT_PIPE] = ACTIONS(1600), + [anon_sym_o_GT_PIPE] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1600), + [anon_sym_xor2] = ACTIONS(1600), + [anon_sym_or2] = ACTIONS(1600), + [anon_sym_not_DASHin2] = ACTIONS(1600), + [anon_sym_has2] = ACTIONS(1600), + [anon_sym_not_DASHhas2] = ACTIONS(1600), + [anon_sym_starts_DASHwith2] = ACTIONS(1600), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1600), + [anon_sym_ends_DASHwith2] = ACTIONS(1600), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1600), + [anon_sym_EQ_EQ2] = ACTIONS(1600), + [anon_sym_BANG_EQ2] = ACTIONS(1600), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1600), + [anon_sym_GT_EQ2] = ACTIONS(1600), + [anon_sym_EQ_TILDE2] = ACTIONS(1600), + [anon_sym_BANG_TILDE2] = ACTIONS(1600), + [anon_sym_like2] = ACTIONS(1600), + [anon_sym_not_DASHlike2] = ACTIONS(1600), + [anon_sym_LPAREN2] = ACTIONS(1606), + [anon_sym_STAR_STAR2] = ACTIONS(1600), + [anon_sym_PLUS_PLUS2] = ACTIONS(1600), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1600), + [anon_sym_SLASH_SLASH2] = ACTIONS(1600), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1600), + [anon_sym_bit_DASHshr2] = ACTIONS(1600), + [anon_sym_bit_DASHand2] = ACTIONS(1600), + [anon_sym_bit_DASHxor2] = ACTIONS(1600), + [anon_sym_bit_DASHor2] = ACTIONS(1600), + [aux_sym__immediate_decimal_token1] = ACTIONS(1673), + [aux_sym__immediate_decimal_token2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token3] = ACTIONS(1612), + [aux_sym__immediate_decimal_token4] = ACTIONS(1612), + [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(1600), + [anon_sym_out_GT_GT] = ACTIONS(1600), + [anon_sym_e_GT_GT] = ACTIONS(1600), + [anon_sym_o_GT_GT] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1600), [anon_sym_POUND] = ACTIONS(3), }, [STATE(425)] = { [sym_comment] = STATE(425), - [anon_sym_if] = 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_RPAREN] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1460), + [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_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_EQ_GT] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1460), - [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(1460), - [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_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(1460), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1460), - [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(1460), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), - [anon_sym_COLON2] = ACTIONS(1462), - [anon_sym_QMARK2] = ACTIONS(1707), - [anon_sym_DOT2] = ACTIONS(1460), - [anon_sym_err_GT] = ACTIONS(1460), - [anon_sym_out_GT] = ACTIONS(1460), - [anon_sym_e_GT] = ACTIONS(1460), - [anon_sym_o_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT] = ACTIONS(1460), - [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_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_QMARK2] = ACTIONS(1695), + [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(426)] = { - [sym__expr_parenthesized_immediate] = STATE(919), - [sym__immediate_decimal] = STATE(920), - [sym_val_variable] = STATE(919), [sym_comment] = STATE(426), - [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(1685), - [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(1687), - [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_DOT] = ACTIONS(1709), - [aux_sym__immediate_decimal_token1] = ACTIONS(1691), - [aux_sym__immediate_decimal_token2] = ACTIONS(1691), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [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_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PLUS_PLUS_EQ] = 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_RPAREN] = ACTIONS(1582), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_STAR2] = ACTIONS(1580), + [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(1580), + [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_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1580), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1580), + [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_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [anon_sym_COLON2] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [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(427)] = { [sym_comment] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(1547), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1547), + [anon_sym_in] = ACTIONS(1547), + [sym__newline] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_err_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_GT_PIPE] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1545), + [anon_sym_STAR2] = ACTIONS(1545), + [anon_sym_and2] = ACTIONS(1547), + [anon_sym_xor2] = ACTIONS(1547), + [anon_sym_or2] = ACTIONS(1547), + [anon_sym_not_DASHin2] = ACTIONS(1547), + [anon_sym_has2] = ACTIONS(1547), + [anon_sym_not_DASHhas2] = ACTIONS(1547), + [anon_sym_starts_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1547), + [anon_sym_ends_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1547), + [anon_sym_EQ_EQ2] = ACTIONS(1547), + [anon_sym_BANG_EQ2] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ2] = ACTIONS(1547), + [anon_sym_GT_EQ2] = ACTIONS(1547), + [anon_sym_EQ_TILDE2] = ACTIONS(1547), + [anon_sym_BANG_TILDE2] = ACTIONS(1547), + [anon_sym_like2] = ACTIONS(1547), + [anon_sym_not_DASHlike2] = ACTIONS(1547), + [anon_sym_STAR_STAR2] = ACTIONS(1547), + [anon_sym_PLUS_PLUS2] = ACTIONS(1545), + [anon_sym_SLASH2] = ACTIONS(1545), + [anon_sym_mod2] = ACTIONS(1547), + [anon_sym_SLASH_SLASH2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1545), + [anon_sym_bit_DASHshl2] = ACTIONS(1547), + [anon_sym_bit_DASHshr2] = ACTIONS(1547), + [anon_sym_bit_DASHand2] = ACTIONS(1547), + [anon_sym_bit_DASHxor2] = ACTIONS(1547), + [anon_sym_bit_DASHor2] = ACTIONS(1547), + [anon_sym_DOT_DOT2] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [anon_sym_err_GT_GT] = ACTIONS(1547), + [anon_sym_out_GT_GT] = ACTIONS(1547), + [anon_sym_e_GT_GT] = ACTIONS(1547), + [anon_sym_o_GT_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(428)] = { + [sym_comment] = STATE(428), + [anon_sym_in] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_GT2] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_EQ_GT] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1530), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1530), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_like2] = ACTIONS(1532), + [anon_sym_not_DASHlike2] = ACTIONS(1532), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1530), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT_DOT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), + [anon_sym_COLON2] = ACTIONS(1532), + [anon_sym_QMARK2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(429)] = { + [sym_cell_path] = STATE(518), + [sym_path] = STATE(470), + [sym_comment] = STATE(429), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [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_RPAREN] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1442), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1442), + [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(1442), + [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(1442), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1442), + [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(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [anon_sym_DOT2] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [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(3), + }, + [STATE(430)] = { + [sym_path] = STATE(470), + [sym_comment] = STATE(430), + [aux_sym__where_predicate_lhs_repeat1] = STATE(437), + [anon_sym_in] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_EQ_GT] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_has2] = ACTIONS(1528), + [anon_sym_not_DASHhas2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_like2] = ACTIONS(1528), + [anon_sym_not_DASHlike2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1528), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_COLON2] = ACTIONS(1528), + [anon_sym_DOT2] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(431)] = { + [sym_comment] = STATE(431), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -82275,10 +82930,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(1697), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1711), - [aux_sym__immediate_decimal_token5] = ACTIONS(1713), + [aux_sym__immediate_decimal_token5] = ACTIONS(1699), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -82300,471 +82955,464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(428)] = { - [sym_path] = STATE(458), - [sym_comment] = STATE(428), - [aux_sym__where_predicate_lhs_repeat1] = STATE(431), - [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(1651), - [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), + [STATE(432)] = { + [sym_comment] = STATE(432), + [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(1701), + [aux_sym__immediate_decimal_token5] = ACTIONS(1703), + [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(429)] = { - [sym_comment] = STATE(429), - [anon_sym_in] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_GT2] = ACTIONS(1504), - [anon_sym_DASH2] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_EQ_GT] = ACTIONS(1506), - [anon_sym_STAR2] = ACTIONS(1504), - [anon_sym_and2] = ACTIONS(1506), - [anon_sym_xor2] = ACTIONS(1506), - [anon_sym_or2] = ACTIONS(1506), - [anon_sym_not_DASHin2] = ACTIONS(1506), - [anon_sym_has2] = ACTIONS(1506), - [anon_sym_not_DASHhas2] = ACTIONS(1506), - [anon_sym_starts_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), - [anon_sym_ends_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), - [anon_sym_EQ_EQ2] = ACTIONS(1506), - [anon_sym_BANG_EQ2] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ2] = ACTIONS(1506), - [anon_sym_GT_EQ2] = ACTIONS(1506), - [anon_sym_EQ_TILDE2] = ACTIONS(1506), - [anon_sym_BANG_TILDE2] = ACTIONS(1506), - [anon_sym_like2] = ACTIONS(1506), - [anon_sym_not_DASHlike2] = ACTIONS(1506), - [anon_sym_STAR_STAR2] = ACTIONS(1506), - [anon_sym_PLUS_PLUS2] = ACTIONS(1506), - [anon_sym_SLASH2] = ACTIONS(1504), - [anon_sym_mod2] = ACTIONS(1506), - [anon_sym_SLASH_SLASH2] = ACTIONS(1506), - [anon_sym_PLUS2] = ACTIONS(1504), - [anon_sym_bit_DASHshl2] = ACTIONS(1506), - [anon_sym_bit_DASHshr2] = ACTIONS(1506), - [anon_sym_bit_DASHand2] = ACTIONS(1506), - [anon_sym_bit_DASHxor2] = ACTIONS(1506), - [anon_sym_bit_DASHor2] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_COLON2] = ACTIONS(1506), - [anon_sym_QMARK2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [STATE(433)] = { + [sym_comment] = STATE(433), + [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_RPAREN] = ACTIONS(1474), + [anon_sym_GT2] = ACTIONS(1472), + [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_EQ_GT] = ACTIONS(1474), + [anon_sym_STAR2] = ACTIONS(1472), + [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(1472), + [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(1472), + [anon_sym_mod2] = ACTIONS(1474), + [anon_sym_SLASH_SLASH2] = ACTIONS(1474), + [anon_sym_PLUS2] = ACTIONS(1472), + [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(1472), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), + [anon_sym_COLON2] = ACTIONS(1474), + [anon_sym_QMARK2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DOT2] = ACTIONS(1472), + [anon_sym_err_GT] = ACTIONS(1472), + [anon_sym_out_GT] = ACTIONS(1472), + [anon_sym_e_GT] = ACTIONS(1472), + [anon_sym_o_GT] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT] = ACTIONS(1472), + [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(3), }, - [STATE(430)] = { - [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1553), - [anon_sym_EQ] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(1553), - [anon_sym_DASH_EQ] = ACTIONS(1553), - [anon_sym_STAR_EQ] = ACTIONS(1553), - [anon_sym_SLASH_EQ] = ACTIONS(1553), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1553), - [anon_sym_in] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_GT2] = ACTIONS(1551), - [anon_sym_DASH2] = ACTIONS(1551), - [anon_sym_STAR2] = ACTIONS(1551), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_has2] = ACTIONS(1553), - [anon_sym_not_DASHhas2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1551), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_like2] = ACTIONS(1553), - [anon_sym_not_DASHlike2] = ACTIONS(1553), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1551), - [anon_sym_SLASH2] = ACTIONS(1551), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1551), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT_DOT2] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1553), - [anon_sym_DOT2] = ACTIONS(1551), - [anon_sym_err_GT] = ACTIONS(1551), - [anon_sym_out_GT] = ACTIONS(1551), - [anon_sym_e_GT] = ACTIONS(1551), - [anon_sym_o_GT] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT] = ACTIONS(1551), - [anon_sym_err_GT_GT] = ACTIONS(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), + [STATE(434)] = { + [sym__expr_parenthesized_immediate] = STATE(941), + [sym__immediate_decimal] = STATE(942), + [sym_val_variable] = STATE(941), + [sym_comment] = STATE(434), + [ts_builtin_sym_end] = ACTIONS(1600), + [anon_sym_in] = ACTIONS(1600), + [sym__newline] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_err_GT_PIPE] = ACTIONS(1600), + [anon_sym_out_GT_PIPE] = ACTIONS(1600), + [anon_sym_e_GT_PIPE] = ACTIONS(1600), + [anon_sym_o_GT_PIPE] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1600), + [anon_sym_xor2] = ACTIONS(1600), + [anon_sym_or2] = ACTIONS(1600), + [anon_sym_not_DASHin2] = ACTIONS(1600), + [anon_sym_has2] = ACTIONS(1600), + [anon_sym_not_DASHhas2] = ACTIONS(1600), + [anon_sym_starts_DASHwith2] = ACTIONS(1600), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1600), + [anon_sym_ends_DASHwith2] = ACTIONS(1600), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1600), + [anon_sym_EQ_EQ2] = ACTIONS(1600), + [anon_sym_BANG_EQ2] = ACTIONS(1600), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1600), + [anon_sym_GT_EQ2] = ACTIONS(1600), + [anon_sym_EQ_TILDE2] = ACTIONS(1600), + [anon_sym_BANG_TILDE2] = ACTIONS(1600), + [anon_sym_like2] = ACTIONS(1600), + [anon_sym_not_DASHlike2] = ACTIONS(1600), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1600), + [anon_sym_PLUS_PLUS2] = ACTIONS(1600), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1600), + [anon_sym_SLASH_SLASH2] = ACTIONS(1600), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1600), + [anon_sym_bit_DASHshr2] = ACTIONS(1600), + [anon_sym_bit_DASHand2] = ACTIONS(1600), + [anon_sym_bit_DASHxor2] = ACTIONS(1600), + [anon_sym_bit_DASHor2] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(1661), + [aux_sym__immediate_decimal_token2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token3] = ACTIONS(1663), + [aux_sym__immediate_decimal_token4] = ACTIONS(1663), + [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(1600), + [anon_sym_out_GT_GT] = ACTIONS(1600), + [anon_sym_e_GT_GT] = ACTIONS(1600), + [anon_sym_o_GT_GT] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1600), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(431)] = { - [sym_path] = STATE(458), - [sym_comment] = STATE(431), - [aux_sym__where_predicate_lhs_repeat1] = STATE(431), - [anon_sym_in] = ACTIONS(1534), - [sym__newline] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_err_GT_PIPE] = ACTIONS(1534), - [anon_sym_out_GT_PIPE] = ACTIONS(1534), - [anon_sym_e_GT_PIPE] = ACTIONS(1534), - [anon_sym_o_GT_PIPE] = ACTIONS(1534), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1534), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1534), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1534), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_GT2] = ACTIONS(1532), - [anon_sym_DASH2] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_RBRACE] = ACTIONS(1534), - [anon_sym_EQ_GT] = ACTIONS(1534), - [anon_sym_STAR2] = ACTIONS(1532), - [anon_sym_and2] = ACTIONS(1534), - [anon_sym_xor2] = ACTIONS(1534), - [anon_sym_or2] = ACTIONS(1534), - [anon_sym_not_DASHin2] = ACTIONS(1534), - [anon_sym_has2] = ACTIONS(1534), - [anon_sym_not_DASHhas2] = ACTIONS(1534), - [anon_sym_starts_DASHwith2] = ACTIONS(1534), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1534), - [anon_sym_ends_DASHwith2] = ACTIONS(1534), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1534), - [anon_sym_EQ_EQ2] = ACTIONS(1534), - [anon_sym_BANG_EQ2] = ACTIONS(1534), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ2] = ACTIONS(1534), - [anon_sym_GT_EQ2] = ACTIONS(1534), - [anon_sym_EQ_TILDE2] = ACTIONS(1534), - [anon_sym_BANG_TILDE2] = ACTIONS(1534), - [anon_sym_like2] = ACTIONS(1534), - [anon_sym_not_DASHlike2] = ACTIONS(1534), - [anon_sym_STAR_STAR2] = ACTIONS(1534), - [anon_sym_PLUS_PLUS2] = ACTIONS(1534), - [anon_sym_SLASH2] = ACTIONS(1532), - [anon_sym_mod2] = ACTIONS(1534), - [anon_sym_SLASH_SLASH2] = ACTIONS(1534), - [anon_sym_PLUS2] = ACTIONS(1532), - [anon_sym_bit_DASHshl2] = ACTIONS(1534), - [anon_sym_bit_DASHshr2] = ACTIONS(1534), - [anon_sym_bit_DASHand2] = ACTIONS(1534), - [anon_sym_bit_DASHxor2] = ACTIONS(1534), - [anon_sym_bit_DASHor2] = ACTIONS(1534), - [anon_sym_DOT_DOT2] = ACTIONS(1532), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1534), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1534), - [anon_sym_COLON2] = ACTIONS(1534), - [anon_sym_DOT2] = ACTIONS(1715), - [anon_sym_err_GT] = ACTIONS(1532), - [anon_sym_out_GT] = ACTIONS(1532), - [anon_sym_e_GT] = ACTIONS(1532), - [anon_sym_o_GT] = ACTIONS(1532), - [anon_sym_err_PLUSout_GT] = ACTIONS(1532), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), - [anon_sym_o_PLUSe_GT] = ACTIONS(1532), - [anon_sym_e_PLUSo_GT] = ACTIONS(1532), - [anon_sym_err_GT_GT] = ACTIONS(1534), - [anon_sym_out_GT_GT] = ACTIONS(1534), - [anon_sym_e_GT_GT] = ACTIONS(1534), - [anon_sym_o_GT_GT] = ACTIONS(1534), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1534), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1534), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1534), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1534), + [STATE(435)] = { + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1476), + [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(1476), + [anon_sym_DASH2] = ACTIONS(1476), + [anon_sym_STAR2] = ACTIONS(1476), + [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(1476), + [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(1476), + [anon_sym_SLASH2] = ACTIONS(1476), + [anon_sym_mod2] = ACTIONS(1478), + [anon_sym_SLASH_SLASH2] = ACTIONS(1478), + [anon_sym_PLUS2] = ACTIONS(1476), + [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(1476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), + [anon_sym_DOT2] = ACTIONS(1476), + [anon_sym_err_GT] = ACTIONS(1476), + [anon_sym_out_GT] = ACTIONS(1476), + [anon_sym_e_GT] = ACTIONS(1476), + [anon_sym_o_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT] = ACTIONS(1476), + [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(3), }, - [STATE(432)] = { - [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(1580), - [anon_sym_EQ] = ACTIONS(1578), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1580), - [sym__newline] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_err_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_GT_PIPE] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), - [anon_sym_COLON] = ACTIONS(1580), - [anon_sym_GT2] = ACTIONS(1578), - [anon_sym_DASH2] = ACTIONS(1578), - [anon_sym_STAR2] = ACTIONS(1578), - [anon_sym_and2] = ACTIONS(1580), - [anon_sym_xor2] = ACTIONS(1580), - [anon_sym_or2] = ACTIONS(1580), - [anon_sym_not_DASHin2] = ACTIONS(1580), - [anon_sym_has2] = ACTIONS(1580), - [anon_sym_not_DASHhas2] = ACTIONS(1580), - [anon_sym_starts_DASHwith2] = ACTIONS(1580), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), - [anon_sym_ends_DASHwith2] = ACTIONS(1580), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), - [anon_sym_EQ_EQ2] = ACTIONS(1580), - [anon_sym_BANG_EQ2] = ACTIONS(1580), - [anon_sym_LT2] = ACTIONS(1578), - [anon_sym_LT_EQ2] = ACTIONS(1580), - [anon_sym_GT_EQ2] = ACTIONS(1580), - [anon_sym_EQ_TILDE2] = ACTIONS(1580), - [anon_sym_BANG_TILDE2] = ACTIONS(1580), - [anon_sym_like2] = ACTIONS(1580), - [anon_sym_not_DASHlike2] = ACTIONS(1580), - [anon_sym_STAR_STAR2] = ACTIONS(1580), - [anon_sym_PLUS_PLUS2] = ACTIONS(1578), - [anon_sym_SLASH2] = ACTIONS(1578), - [anon_sym_mod2] = ACTIONS(1580), - [anon_sym_SLASH_SLASH2] = ACTIONS(1580), - [anon_sym_PLUS2] = ACTIONS(1578), - [anon_sym_bit_DASHshl2] = ACTIONS(1580), - [anon_sym_bit_DASHshr2] = ACTIONS(1580), - [anon_sym_bit_DASHand2] = ACTIONS(1580), - [anon_sym_bit_DASHxor2] = ACTIONS(1580), - [anon_sym_bit_DASHor2] = ACTIONS(1580), - [anon_sym_DOT_DOT2] = ACTIONS(1578), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1580), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1578), - [anon_sym_out_GT] = ACTIONS(1578), - [anon_sym_e_GT] = ACTIONS(1578), - [anon_sym_o_GT] = ACTIONS(1578), - [anon_sym_err_PLUSout_GT] = ACTIONS(1578), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1578), - [anon_sym_o_PLUSe_GT] = ACTIONS(1578), - [anon_sym_e_PLUSo_GT] = ACTIONS(1578), - [anon_sym_err_GT_GT] = ACTIONS(1580), - [anon_sym_out_GT_GT] = ACTIONS(1580), - [anon_sym_e_GT_GT] = ACTIONS(1580), - [anon_sym_o_GT_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), + [STATE(436)] = { + [sym_comment] = STATE(436), + [anon_sym_in] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_err_GT_PIPE] = ACTIONS(1518), + [anon_sym_out_GT_PIPE] = ACTIONS(1518), + [anon_sym_e_GT_PIPE] = ACTIONS(1518), + [anon_sym_o_GT_PIPE] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_GT2] = ACTIONS(1516), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_EQ_GT] = ACTIONS(1518), + [anon_sym_STAR2] = ACTIONS(1516), + [anon_sym_and2] = ACTIONS(1518), + [anon_sym_xor2] = ACTIONS(1518), + [anon_sym_or2] = ACTIONS(1518), + [anon_sym_not_DASHin2] = ACTIONS(1518), + [anon_sym_has2] = ACTIONS(1518), + [anon_sym_not_DASHhas2] = ACTIONS(1518), + [anon_sym_starts_DASHwith2] = ACTIONS(1518), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1518), + [anon_sym_ends_DASHwith2] = ACTIONS(1518), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1518), + [anon_sym_EQ_EQ2] = ACTIONS(1518), + [anon_sym_BANG_EQ2] = ACTIONS(1518), + [anon_sym_LT2] = ACTIONS(1516), + [anon_sym_LT_EQ2] = ACTIONS(1518), + [anon_sym_GT_EQ2] = ACTIONS(1518), + [anon_sym_EQ_TILDE2] = ACTIONS(1518), + [anon_sym_BANG_TILDE2] = ACTIONS(1518), + [anon_sym_like2] = ACTIONS(1518), + [anon_sym_not_DASHlike2] = ACTIONS(1518), + [anon_sym_STAR_STAR2] = ACTIONS(1518), + [anon_sym_PLUS_PLUS2] = ACTIONS(1518), + [anon_sym_SLASH2] = ACTIONS(1516), + [anon_sym_mod2] = ACTIONS(1518), + [anon_sym_SLASH_SLASH2] = ACTIONS(1518), + [anon_sym_PLUS2] = ACTIONS(1516), + [anon_sym_bit_DASHshl2] = ACTIONS(1518), + [anon_sym_bit_DASHshr2] = ACTIONS(1518), + [anon_sym_bit_DASHand2] = ACTIONS(1518), + [anon_sym_bit_DASHxor2] = ACTIONS(1518), + [anon_sym_bit_DASHor2] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1518), + [anon_sym_COLON2] = ACTIONS(1518), + [anon_sym_QMARK2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_DOT2] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1516), + [anon_sym_out_GT] = ACTIONS(1516), + [anon_sym_e_GT] = ACTIONS(1516), + [anon_sym_o_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT] = ACTIONS(1516), + [anon_sym_err_GT_GT] = ACTIONS(1518), + [anon_sym_out_GT_GT] = ACTIONS(1518), + [anon_sym_e_GT_GT] = ACTIONS(1518), + [anon_sym_o_GT_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(433)] = { - [sym_comment] = STATE(433), - [anon_sym_in] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_GT2] = ACTIONS(1528), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_EQ_GT] = ACTIONS(1530), - [anon_sym_STAR2] = ACTIONS(1528), - [anon_sym_and2] = ACTIONS(1530), - [anon_sym_xor2] = ACTIONS(1530), - [anon_sym_or2] = ACTIONS(1530), - [anon_sym_not_DASHin2] = ACTIONS(1530), - [anon_sym_has2] = ACTIONS(1530), - [anon_sym_not_DASHhas2] = ACTIONS(1530), - [anon_sym_starts_DASHwith2] = ACTIONS(1530), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1530), - [anon_sym_ends_DASHwith2] = ACTIONS(1530), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1530), - [anon_sym_EQ_EQ2] = ACTIONS(1530), - [anon_sym_BANG_EQ2] = ACTIONS(1530), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ2] = ACTIONS(1530), - [anon_sym_GT_EQ2] = ACTIONS(1530), - [anon_sym_EQ_TILDE2] = ACTIONS(1530), - [anon_sym_BANG_TILDE2] = ACTIONS(1530), - [anon_sym_like2] = ACTIONS(1530), - [anon_sym_not_DASHlike2] = ACTIONS(1530), - [anon_sym_STAR_STAR2] = ACTIONS(1530), - [anon_sym_PLUS_PLUS2] = ACTIONS(1530), - [anon_sym_SLASH2] = ACTIONS(1528), - [anon_sym_mod2] = ACTIONS(1530), - [anon_sym_SLASH_SLASH2] = ACTIONS(1530), - [anon_sym_PLUS2] = ACTIONS(1528), - [anon_sym_bit_DASHshl2] = ACTIONS(1530), - [anon_sym_bit_DASHshr2] = ACTIONS(1530), - [anon_sym_bit_DASHand2] = ACTIONS(1530), - [anon_sym_bit_DASHxor2] = ACTIONS(1530), - [anon_sym_bit_DASHor2] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [anon_sym_COLON2] = ACTIONS(1530), - [anon_sym_QMARK2] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_DOT2] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [STATE(437)] = { + [sym_path] = STATE(470), + [sym_comment] = STATE(437), + [aux_sym__where_predicate_lhs_repeat1] = STATE(437), + [anon_sym_in] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_GT2] = ACTIONS(1536), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_EQ_GT] = ACTIONS(1538), + [anon_sym_STAR2] = ACTIONS(1536), + [anon_sym_and2] = ACTIONS(1538), + [anon_sym_xor2] = ACTIONS(1538), + [anon_sym_or2] = ACTIONS(1538), + [anon_sym_not_DASHin2] = ACTIONS(1538), + [anon_sym_has2] = ACTIONS(1538), + [anon_sym_not_DASHhas2] = ACTIONS(1538), + [anon_sym_starts_DASHwith2] = ACTIONS(1538), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1538), + [anon_sym_ends_DASHwith2] = ACTIONS(1538), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1538), + [anon_sym_EQ_EQ2] = ACTIONS(1538), + [anon_sym_BANG_EQ2] = ACTIONS(1538), + [anon_sym_LT2] = ACTIONS(1536), + [anon_sym_LT_EQ2] = ACTIONS(1538), + [anon_sym_GT_EQ2] = ACTIONS(1538), + [anon_sym_EQ_TILDE2] = ACTIONS(1538), + [anon_sym_BANG_TILDE2] = ACTIONS(1538), + [anon_sym_like2] = ACTIONS(1538), + [anon_sym_not_DASHlike2] = ACTIONS(1538), + [anon_sym_STAR_STAR2] = ACTIONS(1538), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1536), + [anon_sym_mod2] = ACTIONS(1538), + [anon_sym_SLASH_SLASH2] = ACTIONS(1538), + [anon_sym_PLUS2] = ACTIONS(1536), + [anon_sym_bit_DASHshl2] = ACTIONS(1538), + [anon_sym_bit_DASHshr2] = ACTIONS(1538), + [anon_sym_bit_DASHand2] = ACTIONS(1538), + [anon_sym_bit_DASHxor2] = ACTIONS(1538), + [anon_sym_bit_DASHor2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [anon_sym_COLON2] = ACTIONS(1538), + [anon_sym_DOT2] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(434)] = { - [sym_comment] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1468), - [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), + [STATE(438)] = { + [sym_comment] = STATE(438), [anon_sym_in] = ACTIONS(1470), [sym__newline] = ACTIONS(1470), [anon_sym_SEMI] = ACTIONS(1470), @@ -82777,8 +83425,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_RPAREN] = ACTIONS(1470), [anon_sym_GT2] = ACTIONS(1468), - [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_DASH2] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_EQ_GT] = ACTIONS(1470), [anon_sym_STAR2] = ACTIONS(1468), [anon_sym_and2] = ACTIONS(1470), [anon_sym_xor2] = ACTIONS(1470), @@ -82800,7 +83452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1470), [anon_sym_not_DASHlike2] = ACTIONS(1470), [anon_sym_STAR_STAR2] = ACTIONS(1470), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1470), [anon_sym_SLASH2] = ACTIONS(1468), [anon_sym_mod2] = ACTIONS(1470), [anon_sym_SLASH_SLASH2] = ACTIONS(1470), @@ -82813,6 +83465,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1468), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), + [anon_sym_COLON2] = ACTIONS(1470), + [anon_sym_QMARK2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1468), [anon_sym_DOT2] = ACTIONS(1468), [anon_sym_err_GT] = ACTIONS(1468), [anon_sym_out_GT] = ACTIONS(1468), @@ -82832,386 +83487,842 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1470), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(435)] = { - [sym__expr_parenthesized_immediate] = STATE(1288), - [sym__immediate_decimal] = STATE(1031), - [sym_val_variable] = STATE(1288), - [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1681), - [anon_sym_in] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1683), - [anon_sym_STAR2] = ACTIONS(1683), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_has2] = ACTIONS(1681), - [anon_sym_not_DASHhas2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1683), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_like2] = ACTIONS(1681), - [anon_sym_not_DASHlike2] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1683), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1683), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [aux_sym__immediate_decimal_token1] = ACTIONS(1718), - [aux_sym__immediate_decimal_token2] = ACTIONS(1718), - [aux_sym__immediate_decimal_token3] = ACTIONS(1720), - [aux_sym__immediate_decimal_token4] = ACTIONS(1720), - [anon_sym_err_GT] = ACTIONS(1683), - [anon_sym_out_GT] = ACTIONS(1683), - [anon_sym_e_GT] = ACTIONS(1683), - [anon_sym_o_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT] = ACTIONS(1683), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), - [sym__unquoted_pattern] = ACTIONS(1695), + [STATE(439)] = { + [sym_comment] = STATE(439), + [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_QMARK2] = ACTIONS(1710), + [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(436)] = { - [sym__expr_parenthesized_immediate] = STATE(949), - [sym__immediate_decimal] = STATE(952), - [sym_val_variable] = STATE(949), - [sym_comment] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(1599), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(1722), - [aux_sym__immediate_decimal_token1] = ACTIONS(1691), - [aux_sym__immediate_decimal_token2] = ACTIONS(1691), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [STATE(440)] = { + [sym_comment] = STATE(440), + [anon_sym_in] = ACTIONS(1482), + [sym__newline] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_err_GT_PIPE] = ACTIONS(1482), + [anon_sym_out_GT_PIPE] = ACTIONS(1482), + [anon_sym_e_GT_PIPE] = ACTIONS(1482), + [anon_sym_o_GT_PIPE] = ACTIONS(1482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_GT2] = ACTIONS(1480), + [anon_sym_DASH2] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_EQ_GT] = ACTIONS(1482), + [anon_sym_STAR2] = ACTIONS(1480), + [anon_sym_and2] = ACTIONS(1482), + [anon_sym_xor2] = ACTIONS(1482), + [anon_sym_or2] = ACTIONS(1482), + [anon_sym_not_DASHin2] = ACTIONS(1482), + [anon_sym_has2] = ACTIONS(1482), + [anon_sym_not_DASHhas2] = ACTIONS(1482), + [anon_sym_starts_DASHwith2] = ACTIONS(1482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1482), + [anon_sym_ends_DASHwith2] = ACTIONS(1482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1482), + [anon_sym_EQ_EQ2] = ACTIONS(1482), + [anon_sym_BANG_EQ2] = ACTIONS(1482), + [anon_sym_LT2] = ACTIONS(1480), + [anon_sym_LT_EQ2] = ACTIONS(1482), + [anon_sym_GT_EQ2] = ACTIONS(1482), + [anon_sym_EQ_TILDE2] = ACTIONS(1482), + [anon_sym_BANG_TILDE2] = ACTIONS(1482), + [anon_sym_like2] = ACTIONS(1482), + [anon_sym_not_DASHlike2] = ACTIONS(1482), + [anon_sym_STAR_STAR2] = ACTIONS(1482), + [anon_sym_PLUS_PLUS2] = ACTIONS(1482), + [anon_sym_SLASH2] = ACTIONS(1480), + [anon_sym_mod2] = ACTIONS(1482), + [anon_sym_SLASH_SLASH2] = ACTIONS(1482), + [anon_sym_PLUS2] = ACTIONS(1480), + [anon_sym_bit_DASHshl2] = ACTIONS(1482), + [anon_sym_bit_DASHshr2] = ACTIONS(1482), + [anon_sym_bit_DASHand2] = ACTIONS(1482), + [anon_sym_bit_DASHxor2] = ACTIONS(1482), + [anon_sym_bit_DASHor2] = ACTIONS(1482), + [anon_sym_DOT_DOT2] = ACTIONS(1480), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1482), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1482), + [anon_sym_COLON2] = ACTIONS(1482), + [anon_sym_QMARK2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DOT2] = ACTIONS(1480), + [anon_sym_err_GT] = ACTIONS(1480), + [anon_sym_out_GT] = ACTIONS(1480), + [anon_sym_e_GT] = ACTIONS(1480), + [anon_sym_o_GT] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT] = ACTIONS(1480), + [anon_sym_err_GT_GT] = ACTIONS(1482), + [anon_sym_out_GT_GT] = ACTIONS(1482), + [anon_sym_e_GT_GT] = ACTIONS(1482), + [anon_sym_o_GT_GT] = ACTIONS(1482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(437)] = { - [sym__expr_parenthesized_immediate] = STATE(1351), - [sym__immediate_decimal] = STATE(1013), - [sym_val_variable] = STATE(1351), - [sym_comment] = STATE(437), - [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(1685), - [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(1687), - [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(1718), - [aux_sym__immediate_decimal_token2] = ACTIONS(1718), - [aux_sym__immediate_decimal_token3] = ACTIONS(1720), - [aux_sym__immediate_decimal_token4] = ACTIONS(1720), - [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(1637), + [STATE(441)] = { + [sym_comment] = STATE(441), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_PLUS_EQ] = ACTIONS(1712), + [anon_sym_DASH_EQ] = ACTIONS(1712), + [anon_sym_STAR_EQ] = ACTIONS(1712), + [anon_sym_SLASH_EQ] = ACTIONS(1712), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [anon_sym_COLON2] = ACTIONS(1716), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(438)] = { - [sym_comment] = STATE(438), + [STATE(442)] = { + [sym_comment] = STATE(442), + [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_RPAREN] = ACTIONS(1524), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_EQ_GT] = ACTIONS(1524), + [anon_sym_STAR2] = ACTIONS(1522), + [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(1522), + [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(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [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(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_COLON2] = ACTIONS(1524), + [anon_sym_QMARK2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [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(3), + }, + [STATE(443)] = { + [sym_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PLUS_PLUS_EQ] = 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_COLON] = ACTIONS(1582), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_STAR2] = ACTIONS(1580), + [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(1580), + [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_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1580), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1580), + [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_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [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(444)] = { + [sym__expr_parenthesized_immediate] = STATE(1297), + [sym__immediate_decimal] = STATE(1144), + [sym_val_variable] = STATE(1297), + [sym_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1622), + [anon_sym_DASH2] = ACTIONS(1622), + [anon_sym_STAR2] = ACTIONS(1622), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1622), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_like2] = ACTIONS(1620), + [anon_sym_not_DASHlike2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1622), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1622), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token1] = ACTIONS(1718), + [aux_sym__immediate_decimal_token2] = ACTIONS(1718), + [aux_sym__immediate_decimal_token3] = ACTIONS(1720), + [aux_sym__immediate_decimal_token4] = ACTIONS(1720), + [anon_sym_err_GT] = ACTIONS(1622), + [anon_sym_out_GT] = ACTIONS(1622), + [anon_sym_e_GT] = ACTIONS(1622), + [anon_sym_o_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT] = ACTIONS(1622), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [sym__unquoted_pattern] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(445)] = { + [sym_comment] = STATE(445), + [ts_builtin_sym_end] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1512), + [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(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [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(1512), + [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(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [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(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_DOT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(446)] = { + [sym__expr_parenthesized_immediate] = STATE(943), + [sym__immediate_decimal] = STATE(944), + [sym_val_variable] = STATE(943), + [sym_comment] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1622), + [anon_sym_DASH2] = ACTIONS(1622), + [anon_sym_STAR2] = ACTIONS(1622), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1622), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_like2] = ACTIONS(1620), + [anon_sym_not_DASHlike2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1622), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1622), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1722), + [aux_sym__immediate_decimal_token1] = ACTIONS(1661), + [aux_sym__immediate_decimal_token2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token3] = ACTIONS(1663), + [aux_sym__immediate_decimal_token4] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1622), + [anon_sym_out_GT] = ACTIONS(1622), + [anon_sym_e_GT] = ACTIONS(1622), + [anon_sym_o_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT] = ACTIONS(1622), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(447)] = { + [sym__expr_parenthesized_immediate] = STATE(1324), + [sym__immediate_decimal] = STATE(1077), + [sym_val_variable] = STATE(1324), + [sym_comment] = STATE(447), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_in] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1647), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_STAR2] = ACTIONS(1647), + [anon_sym_and2] = ACTIONS(1645), + [anon_sym_xor2] = ACTIONS(1645), + [anon_sym_or2] = ACTIONS(1645), + [anon_sym_not_DASHin2] = ACTIONS(1645), + [anon_sym_has2] = ACTIONS(1645), + [anon_sym_not_DASHhas2] = ACTIONS(1645), + [anon_sym_starts_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), + [anon_sym_ends_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), + [anon_sym_EQ_EQ2] = ACTIONS(1645), + [anon_sym_BANG_EQ2] = ACTIONS(1645), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ2] = ACTIONS(1645), + [anon_sym_GT_EQ2] = ACTIONS(1645), + [anon_sym_EQ_TILDE2] = ACTIONS(1645), + [anon_sym_BANG_TILDE2] = ACTIONS(1645), + [anon_sym_like2] = ACTIONS(1645), + [anon_sym_not_DASHlike2] = ACTIONS(1645), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1645), + [anon_sym_PLUS_PLUS2] = ACTIONS(1645), + [anon_sym_SLASH2] = ACTIONS(1647), + [anon_sym_mod2] = ACTIONS(1645), + [anon_sym_SLASH_SLASH2] = ACTIONS(1645), + [anon_sym_PLUS2] = ACTIONS(1647), + [anon_sym_bit_DASHshl2] = ACTIONS(1645), + [anon_sym_bit_DASHshr2] = ACTIONS(1645), + [anon_sym_bit_DASHand2] = ACTIONS(1645), + [anon_sym_bit_DASHxor2] = ACTIONS(1645), + [anon_sym_bit_DASHor2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token1] = ACTIONS(1718), + [aux_sym__immediate_decimal_token2] = ACTIONS(1718), + [aux_sym__immediate_decimal_token3] = ACTIONS(1720), + [aux_sym__immediate_decimal_token4] = ACTIONS(1720), + [anon_sym_err_GT] = ACTIONS(1647), + [anon_sym_out_GT] = ACTIONS(1647), + [anon_sym_e_GT] = ACTIONS(1647), + [anon_sym_o_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT] = ACTIONS(1647), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [sym__unquoted_pattern] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(448)] = { + [sym_comment] = STATE(448), [anon_sym_EQ] = ACTIONS(1724), [anon_sym_PLUS_EQ] = ACTIONS(1726), [anon_sym_DASH_EQ] = ACTIONS(1726), [anon_sym_STAR_EQ] = ACTIONS(1726), [anon_sym_SLASH_EQ] = ACTIONS(1726), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(439)] = { - [sym__expr_parenthesized_immediate] = STATE(1351), - [sym__immediate_decimal] = STATE(1352), - [sym_val_variable] = STATE(1351), - [sym_comment] = STATE(439), - [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(1685), - [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(1687), - [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), + [STATE(449)] = { + [sym__expr_parenthesized_immediate] = STATE(1332), + [sym__immediate_decimal] = STATE(1350), + [sym_val_variable] = STATE(1332), + [sym_comment] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(1600), + [anon_sym_in] = ACTIONS(1600), + [sym__newline] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_err_GT_PIPE] = ACTIONS(1600), + [anon_sym_out_GT_PIPE] = ACTIONS(1600), + [anon_sym_e_GT_PIPE] = ACTIONS(1600), + [anon_sym_o_GT_PIPE] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1600), + [anon_sym_xor2] = ACTIONS(1600), + [anon_sym_or2] = ACTIONS(1600), + [anon_sym_not_DASHin2] = ACTIONS(1600), + [anon_sym_has2] = ACTIONS(1600), + [anon_sym_not_DASHhas2] = ACTIONS(1600), + [anon_sym_starts_DASHwith2] = ACTIONS(1600), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1600), + [anon_sym_ends_DASHwith2] = ACTIONS(1600), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1600), + [anon_sym_EQ_EQ2] = ACTIONS(1600), + [anon_sym_BANG_EQ2] = ACTIONS(1600), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1600), + [anon_sym_GT_EQ2] = ACTIONS(1600), + [anon_sym_EQ_TILDE2] = ACTIONS(1600), + [anon_sym_BANG_TILDE2] = ACTIONS(1600), + [anon_sym_like2] = ACTIONS(1600), + [anon_sym_not_DASHlike2] = ACTIONS(1600), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1600), + [anon_sym_PLUS_PLUS2] = ACTIONS(1600), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1600), + [anon_sym_SLASH_SLASH2] = ACTIONS(1600), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1600), + [anon_sym_bit_DASHshr2] = ACTIONS(1600), + [anon_sym_bit_DASHand2] = ACTIONS(1600), + [anon_sym_bit_DASHxor2] = ACTIONS(1600), + [anon_sym_bit_DASHor2] = ACTIONS(1600), [aux_sym__immediate_decimal_token1] = ACTIONS(1728), [aux_sym__immediate_decimal_token2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [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), + [aux_sym__immediate_decimal_token3] = ACTIONS(1663), + [aux_sym__immediate_decimal_token4] = ACTIONS(1663), + [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(1600), + [anon_sym_out_GT_GT] = ACTIONS(1600), + [anon_sym_e_GT_GT] = ACTIONS(1600), + [anon_sym_o_GT_GT] = ACTIONS(1600), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1600), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1600), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1600), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1600), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(440)] = { - [sym_comment] = STATE(440), + [STATE(450)] = { + [sym_comment] = STATE(450), [anon_sym_in] = ACTIONS(1730), [sym__newline] = ACTIONS(1730), [anon_sym_SEMI] = ACTIONS(1730), @@ -83285,330 +84396,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(441)] = { - [sym_comment] = STATE(441), - [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] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1740), - [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(442)] = { - [sym_comment] = STATE(442), - [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_token1] = ACTIONS(1742), - [aux_sym__immediate_decimal_token5] = ACTIONS(1744), - [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(443)] = { - [sym_comment] = STATE(443), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_in] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_GT2] = ACTIONS(1551), - [anon_sym_DASH2] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1551), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_has2] = ACTIONS(1553), - [anon_sym_not_DASHhas2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1551), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_like2] = ACTIONS(1553), - [anon_sym_not_DASHlike2] = ACTIONS(1553), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1553), - [anon_sym_SLASH2] = ACTIONS(1551), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1551), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT_DOT2] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1553), - [anon_sym_COLON2] = ACTIONS(1553), - [anon_sym_DOT2] = ACTIONS(1551), - [anon_sym_err_GT] = ACTIONS(1551), - [anon_sym_out_GT] = ACTIONS(1551), - [anon_sym_e_GT] = ACTIONS(1551), - [anon_sym_o_GT] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT] = ACTIONS(1551), - [anon_sym_err_GT_GT] = ACTIONS(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(444)] = { - [sym_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(1699), - [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(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(1750), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), - [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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [STATE(451)] = { + [sym_comment] = STATE(451), + [anon_sym_in] = ACTIONS(777), + [sym__newline] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_err_GT_PIPE] = ACTIONS(777), + [anon_sym_out_GT_PIPE] = ACTIONS(777), + [anon_sym_e_GT_PIPE] = ACTIONS(777), + [anon_sym_o_GT_PIPE] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(777), + [anon_sym_xor2] = ACTIONS(777), + [anon_sym_or2] = ACTIONS(777), + [anon_sym_not_DASHin2] = ACTIONS(777), + [anon_sym_has2] = ACTIONS(777), + [anon_sym_not_DASHhas2] = ACTIONS(777), + [anon_sym_starts_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), + [anon_sym_ends_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), + [anon_sym_EQ_EQ2] = ACTIONS(777), + [anon_sym_BANG_EQ2] = ACTIONS(777), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(777), + [anon_sym_GT_EQ2] = ACTIONS(777), + [anon_sym_EQ_TILDE2] = ACTIONS(777), + [anon_sym_BANG_TILDE2] = ACTIONS(777), + [anon_sym_like2] = ACTIONS(777), + [anon_sym_not_DASHlike2] = ACTIONS(777), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_STAR_STAR2] = ACTIONS(777), + [anon_sym_PLUS_PLUS2] = ACTIONS(777), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(777), + [anon_sym_SLASH_SLASH2] = ACTIONS(777), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(777), + [anon_sym_bit_DASHshr2] = ACTIONS(777), + [anon_sym_bit_DASHand2] = ACTIONS(777), + [anon_sym_bit_DASHxor2] = ACTIONS(777), + [anon_sym_bit_DASHor2] = ACTIONS(777), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1738), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(777), + [anon_sym_out_GT_GT] = ACTIONS(777), + [anon_sym_e_GT_GT] = ACTIONS(777), + [anon_sym_o_GT_GT] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), + [sym__unquoted_pattern] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(445)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5276), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(445), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_record_body_repeat1] = STATE(721), + [STATE(452)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5481), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(452), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83630,135 +84516,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1750), [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(446)] = { - [sym_comment] = STATE(446), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [STATE(453)] = { + [sym_comment] = STATE(453), + [anon_sym_if] = 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_RPAREN] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_EQ_GT] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [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(1512), + [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(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [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(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_COLON2] = ACTIONS(1514), + [anon_sym_DOT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(447)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5384), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(447), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_record_body_repeat1] = STATE(721), + [STATE(454)] = { + [sym_cmd_identifier] = STATE(4489), + [sym__match_pattern_record_body] = STATE(5322), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(4465), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4872), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(454), + [aux_sym__types_body_repeat1] = STATE(496), + [aux_sym__match_pattern_record_body_repeat1] = STATE(701), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83780,360 +84666,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1766), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1768), [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(448)] = { - [sym_comment] = STATE(448), - [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_RPAREN] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1460), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_EQ_GT] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1460), - [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(1460), - [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(1460), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1460), - [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(1460), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), - [anon_sym_COLON2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_DOT2] = ACTIONS(1460), - [anon_sym_err_GT] = ACTIONS(1460), - [anon_sym_out_GT] = ACTIONS(1460), - [anon_sym_e_GT] = ACTIONS(1460), - [anon_sym_o_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT] = ACTIONS(1460), - [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), + [STATE(455)] = { + [sym_comment] = STATE(455), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_PLUS_EQ] = ACTIONS(1712), + [anon_sym_DASH_EQ] = ACTIONS(1712), + [anon_sym_STAR_EQ] = ACTIONS(1712), + [anon_sym_SLASH_EQ] = ACTIONS(1712), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(449)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5220), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(449), - [aux_sym__types_body_repeat1] = STATE(514), - [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_finally] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1788), - [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), - [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(456)] = { + [sym_comment] = STATE(456), + [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_BANG] = ACTIONS(1770), + [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), - [sym_raw_string_begin] = ACTIONS(1778), }, - [STATE(450)] = { - [sym_comment] = STATE(450), - [anon_sym_in] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_GT2] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_STAR2] = ACTIONS(1792), - [anon_sym_and2] = ACTIONS(1790), - [anon_sym_xor2] = ACTIONS(1790), - [anon_sym_or2] = ACTIONS(1790), - [anon_sym_not_DASHin2] = ACTIONS(1790), - [anon_sym_has2] = ACTIONS(1790), - [anon_sym_not_DASHhas2] = ACTIONS(1790), - [anon_sym_starts_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), - [anon_sym_ends_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), - [anon_sym_EQ_EQ2] = ACTIONS(1790), - [anon_sym_BANG_EQ2] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ2] = ACTIONS(1790), - [anon_sym_GT_EQ2] = ACTIONS(1790), - [anon_sym_EQ_TILDE2] = ACTIONS(1790), - [anon_sym_BANG_TILDE2] = ACTIONS(1790), - [anon_sym_like2] = ACTIONS(1790), - [anon_sym_not_DASHlike2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_STAR_STAR2] = ACTIONS(1790), - [anon_sym_PLUS_PLUS2] = ACTIONS(1790), - [anon_sym_SLASH2] = ACTIONS(1792), - [anon_sym_mod2] = ACTIONS(1790), - [anon_sym_SLASH_SLASH2] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1792), - [anon_sym_bit_DASHshl2] = ACTIONS(1790), - [anon_sym_bit_DASHshr2] = ACTIONS(1790), - [anon_sym_bit_DASHand2] = ACTIONS(1790), - [anon_sym_bit_DASHxor2] = ACTIONS(1790), - [anon_sym_bit_DASHor2] = ACTIONS(1790), - [anon_sym_DOT_DOT2] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1794), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1790), - [aux_sym__immediate_decimal_token5] = ACTIONS(1796), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [sym__unquoted_pattern] = ACTIONS(1792), + [STATE(457)] = { + [sym_comment] = STATE(457), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_PLUS_EQ] = ACTIONS(1774), + [anon_sym_DASH_EQ] = ACTIONS(1774), + [anon_sym_STAR_EQ] = ACTIONS(1774), + [anon_sym_SLASH_EQ] = ACTIONS(1774), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(451)] = { - [sym_comment] = STATE(451), - [anon_sym_EQ] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(1697), - [anon_sym_DASH_EQ] = ACTIONS(1697), - [anon_sym_STAR_EQ] = ACTIONS(1697), - [anon_sym_SLASH_EQ] = ACTIONS(1697), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1697), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [STATE(458)] = { + [sym_comment] = STATE(458), + [ts_builtin_sym_end] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1780), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1782), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1782), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(452)] = { - [sym_cmd_identifier] = STATE(4519), - [sym__match_pattern_record_body] = STATE(5118), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(4401), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(4737), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(452), - [aux_sym__types_body_repeat1] = STATE(499), - [aux_sym__match_pattern_record_body_repeat1] = STATE(698), + [STATE(459)] = { + [sym_comment] = STATE(459), + [anon_sym_in] = ACTIONS(1784), + [sym__newline] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_err_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_GT_PIPE] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), + [anon_sym_RPAREN] = ACTIONS(1784), + [anon_sym_GT2] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1784), + [anon_sym_xor2] = ACTIONS(1784), + [anon_sym_or2] = ACTIONS(1784), + [anon_sym_not_DASHin2] = ACTIONS(1784), + [anon_sym_has2] = ACTIONS(1784), + [anon_sym_not_DASHhas2] = ACTIONS(1784), + [anon_sym_starts_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), + [anon_sym_ends_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), + [anon_sym_EQ_EQ2] = ACTIONS(1784), + [anon_sym_BANG_EQ2] = ACTIONS(1784), + [anon_sym_LT2] = ACTIONS(1786), + [anon_sym_LT_EQ2] = ACTIONS(1784), + [anon_sym_GT_EQ2] = ACTIONS(1784), + [anon_sym_EQ_TILDE2] = ACTIONS(1784), + [anon_sym_BANG_TILDE2] = ACTIONS(1784), + [anon_sym_like2] = ACTIONS(1784), + [anon_sym_not_DASHlike2] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1784), + [anon_sym_PLUS_PLUS2] = ACTIONS(1784), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1784), + [anon_sym_SLASH_SLASH2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_bit_DASHshl2] = ACTIONS(1784), + [anon_sym_bit_DASHshr2] = ACTIONS(1784), + [anon_sym_bit_DASHand2] = ACTIONS(1784), + [anon_sym_bit_DASHxor2] = ACTIONS(1784), + [anon_sym_bit_DASHor2] = ACTIONS(1784), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), + [aux_sym__immediate_decimal_token5] = ACTIONS(1790), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1784), + [anon_sym_out_GT_GT] = ACTIONS(1784), + [anon_sym_e_GT_GT] = ACTIONS(1784), + [anon_sym_o_GT_GT] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), + [sym__unquoted_pattern] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(460)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5236), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(460), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84155,210 +85116,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1792), [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(453)] = { - [sym_comment] = STATE(453), - [anon_sym_in] = ACTIONS(769), - [sym__newline] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_err_GT_PIPE] = ACTIONS(769), - [anon_sym_out_GT_PIPE] = ACTIONS(769), - [anon_sym_e_GT_PIPE] = ACTIONS(769), - [anon_sym_o_GT_PIPE] = ACTIONS(769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(769), - [anon_sym_xor2] = ACTIONS(769), - [anon_sym_or2] = ACTIONS(769), - [anon_sym_not_DASHin2] = ACTIONS(769), - [anon_sym_has2] = ACTIONS(769), - [anon_sym_not_DASHhas2] = ACTIONS(769), - [anon_sym_starts_DASHwith2] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), - [anon_sym_ends_DASHwith2] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), - [anon_sym_EQ_EQ2] = ACTIONS(769), - [anon_sym_BANG_EQ2] = ACTIONS(769), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(769), - [anon_sym_GT_EQ2] = ACTIONS(769), - [anon_sym_EQ_TILDE2] = ACTIONS(769), - [anon_sym_BANG_TILDE2] = ACTIONS(769), - [anon_sym_like2] = ACTIONS(769), - [anon_sym_not_DASHlike2] = ACTIONS(769), - [anon_sym_LPAREN2] = ACTIONS(769), - [anon_sym_STAR_STAR2] = ACTIONS(769), - [anon_sym_PLUS_PLUS2] = ACTIONS(769), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(769), - [anon_sym_SLASH_SLASH2] = ACTIONS(769), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(769), - [anon_sym_bit_DASHshr2] = ACTIONS(769), - [anon_sym_bit_DASHand2] = ACTIONS(769), - [anon_sym_bit_DASHxor2] = ACTIONS(769), - [anon_sym_bit_DASHor2] = ACTIONS(769), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(1802), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(769), - [anon_sym_out_GT_GT] = ACTIONS(769), - [anon_sym_e_GT_GT] = ACTIONS(769), - [anon_sym_o_GT_GT] = ACTIONS(769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), - [sym__unquoted_pattern] = ACTIONS(767), + [STATE(461)] = { + [sym__expr_parenthesized_immediate] = STATE(1324), + [sym__immediate_decimal] = STATE(1338), + [sym_val_variable] = STATE(1324), + [sym_comment] = STATE(461), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_in] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1647), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_STAR2] = ACTIONS(1647), + [anon_sym_and2] = ACTIONS(1645), + [anon_sym_xor2] = ACTIONS(1645), + [anon_sym_or2] = ACTIONS(1645), + [anon_sym_not_DASHin2] = ACTIONS(1645), + [anon_sym_has2] = ACTIONS(1645), + [anon_sym_not_DASHhas2] = ACTIONS(1645), + [anon_sym_starts_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), + [anon_sym_ends_DASHwith2] = ACTIONS(1645), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), + [anon_sym_EQ_EQ2] = ACTIONS(1645), + [anon_sym_BANG_EQ2] = ACTIONS(1645), + [anon_sym_LT2] = ACTIONS(1647), + [anon_sym_LT_EQ2] = ACTIONS(1645), + [anon_sym_GT_EQ2] = ACTIONS(1645), + [anon_sym_EQ_TILDE2] = ACTIONS(1645), + [anon_sym_BANG_TILDE2] = ACTIONS(1645), + [anon_sym_like2] = ACTIONS(1645), + [anon_sym_not_DASHlike2] = ACTIONS(1645), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1645), + [anon_sym_PLUS_PLUS2] = ACTIONS(1645), + [anon_sym_SLASH2] = ACTIONS(1647), + [anon_sym_mod2] = ACTIONS(1645), + [anon_sym_SLASH_SLASH2] = ACTIONS(1645), + [anon_sym_PLUS2] = ACTIONS(1647), + [anon_sym_bit_DASHshl2] = ACTIONS(1645), + [anon_sym_bit_DASHshr2] = ACTIONS(1645), + [anon_sym_bit_DASHand2] = ACTIONS(1645), + [anon_sym_bit_DASHxor2] = ACTIONS(1645), + [anon_sym_bit_DASHor2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token1] = ACTIONS(1728), + [aux_sym__immediate_decimal_token2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token3] = ACTIONS(1663), + [aux_sym__immediate_decimal_token4] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1647), + [anon_sym_out_GT] = ACTIONS(1647), + [anon_sym_e_GT] = ACTIONS(1647), + [anon_sym_o_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT] = ACTIONS(1647), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(454)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5334), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(454), - [aux_sym__types_body_repeat1] = STATE(514), - [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_finally] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1804), - [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), - [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(462)] = { + [sym__expr_parenthesized_immediate] = STATE(1311), + [sym__immediate_decimal] = STATE(1321), + [sym_val_variable] = STATE(1311), + [sym_comment] = STATE(462), + [ts_builtin_sym_end] = ACTIONS(1685), + [anon_sym_in] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_has2] = ACTIONS(1685), + [anon_sym_not_DASHhas2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_like2] = ACTIONS(1685), + [anon_sym_not_DASHlike2] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [aux_sym__immediate_decimal_token1] = ACTIONS(1728), + [aux_sym__immediate_decimal_token2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token3] = ACTIONS(1663), + [aux_sym__immediate_decimal_token4] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1778), }, - [STATE(455)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5095), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(455), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_record_body_repeat1] = STATE(721), + [STATE(463)] = { + [sym_cmd_identifier] = STATE(4489), + [sym__match_pattern_record_body] = STATE(5509), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(4465), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4872), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(463), + [aux_sym__types_body_repeat1] = STATE(496), + [aux_sym__match_pattern_record_body_repeat1] = STATE(701), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84380,360 +85341,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1766), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1794), [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), - }, - [STATE(456)] = { - [sym_comment] = STATE(456), - [anon_sym_if] = 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_RPAREN] = ACTIONS(1470), - [anon_sym_GT2] = ACTIONS(1468), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_EQ_GT] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1468), - [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(1468), - [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(1468), - [anon_sym_mod2] = ACTIONS(1470), - [anon_sym_SLASH_SLASH2] = ACTIONS(1470), - [anon_sym_PLUS2] = ACTIONS(1468), - [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(1468), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), - [anon_sym_COLON2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1468), - [anon_sym_err_GT] = ACTIONS(1468), - [anon_sym_out_GT] = ACTIONS(1468), - [anon_sym_e_GT] = ACTIONS(1468), - [anon_sym_o_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT] = ACTIONS(1468), - [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(3), - }, - [STATE(457)] = { - [sym__expr_parenthesized_immediate] = STATE(1282), - [sym__immediate_decimal] = STATE(1283), - [sym_val_variable] = STATE(1282), - [sym_comment] = STATE(457), - [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_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1679), - [anon_sym_DASH2] = ACTIONS(1679), - [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_LPAREN2] = ACTIONS(1687), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(1728), - [aux_sym__immediate_decimal_token2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [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), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(458)] = { - [sym_comment] = STATE(458), - [anon_sym_if] = 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(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_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(459)] = { - [sym__expr_parenthesized_immediate] = STATE(1284), - [sym__immediate_decimal] = STATE(1285), - [sym_val_variable] = STATE(1284), - [sym_comment] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [sym__newline] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_err_GT_PIPE] = ACTIONS(1659), - [anon_sym_out_GT_PIPE] = ACTIONS(1659), - [anon_sym_e_GT_PIPE] = ACTIONS(1659), - [anon_sym_o_GT_PIPE] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1659), - [anon_sym_xor2] = ACTIONS(1659), - [anon_sym_or2] = ACTIONS(1659), - [anon_sym_not_DASHin2] = ACTIONS(1659), - [anon_sym_has2] = ACTIONS(1659), - [anon_sym_not_DASHhas2] = ACTIONS(1659), - [anon_sym_starts_DASHwith2] = ACTIONS(1659), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1659), - [anon_sym_ends_DASHwith2] = ACTIONS(1659), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1659), - [anon_sym_EQ_EQ2] = ACTIONS(1659), - [anon_sym_BANG_EQ2] = ACTIONS(1659), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1659), - [anon_sym_GT_EQ2] = ACTIONS(1659), - [anon_sym_EQ_TILDE2] = ACTIONS(1659), - [anon_sym_BANG_TILDE2] = ACTIONS(1659), - [anon_sym_like2] = ACTIONS(1659), - [anon_sym_not_DASHlike2] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1659), - [anon_sym_PLUS_PLUS2] = ACTIONS(1659), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1659), - [anon_sym_SLASH_SLASH2] = ACTIONS(1659), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1659), - [anon_sym_bit_DASHshr2] = ACTIONS(1659), - [anon_sym_bit_DASHand2] = ACTIONS(1659), - [anon_sym_bit_DASHxor2] = ACTIONS(1659), - [anon_sym_bit_DASHor2] = ACTIONS(1659), - [aux_sym__immediate_decimal_token1] = ACTIONS(1728), - [aux_sym__immediate_decimal_token2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1659), - [anon_sym_out_GT_GT] = ACTIONS(1659), - [anon_sym_e_GT_GT] = ACTIONS(1659), - [anon_sym_o_GT_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), + [STATE(464)] = { + [sym__expr_parenthesized_immediate] = STATE(5075), + [sym_comment] = STATE(464), + [anon_sym_in] = ACTIONS(884), + [sym__newline] = ACTIONS(884), + [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_RPAREN] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(884), + [anon_sym_xor2] = ACTIONS(884), + [anon_sym_or2] = ACTIONS(884), + [anon_sym_not_DASHin2] = ACTIONS(884), + [anon_sym_has2] = ACTIONS(884), + [anon_sym_not_DASHhas2] = ACTIONS(884), + [anon_sym_starts_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), + [anon_sym_ends_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(884), + [anon_sym_like2] = ACTIONS(884), + [anon_sym_not_DASHlike2] = ACTIONS(884), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(884), + [anon_sym_PLUS_PLUS2] = ACTIONS(884), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(884), + [anon_sym_SLASH_SLASH2] = ACTIONS(884), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(884), + [anon_sym_bit_DASHshr2] = ACTIONS(884), + [anon_sym_bit_DASHand2] = ACTIONS(884), + [anon_sym_bit_DASHxor2] = ACTIONS(884), + [anon_sym_bit_DASHor2] = ACTIONS(884), + [anon_sym_DOT_DOT2] = ACTIONS(1798), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1800), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1800), + [sym_filesize_unit] = ACTIONS(1802), + [sym_duration_unit] = ACTIONS(1804), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [sym__unquoted_pattern] = ACTIONS(1806), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(460)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5110), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(460), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_record_body_repeat1] = STATE(721), + [STATE(465)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5136), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(465), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84755,41 +85491,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_RBRACE] = ACTIONS(1808), [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(461)] = { - [sym__expr_parenthesized_immediate] = STATE(1286), - [sym__immediate_decimal] = STATE(1287), - [sym_val_variable] = STATE(1286), - [sym_comment] = STATE(461), + [STATE(466)] = { + [sym__expr_parenthesized_immediate] = STATE(1363), + [sym__immediate_decimal] = STATE(1315), + [sym_val_variable] = STATE(1363), + [sym_comment] = STATE(466), [ts_builtin_sym_end] = ACTIONS(1669), [anon_sym_in] = ACTIONS(1669), [sym__newline] = ACTIONS(1669), @@ -84803,7 +85539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1655), [anon_sym_GT2] = ACTIONS(1671), [anon_sym_DASH2] = ACTIONS(1671), [anon_sym_STAR2] = ACTIONS(1671), @@ -84826,7 +85562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1669), [anon_sym_like2] = ACTIONS(1669), [anon_sym_not_DASHlike2] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1657), [anon_sym_STAR_STAR2] = ACTIONS(1669), [anon_sym_PLUS_PLUS2] = ACTIONS(1669), [anon_sym_SLASH2] = ACTIONS(1671), @@ -84840,8 +85576,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1669), [aux_sym__immediate_decimal_token1] = ACTIONS(1728), [aux_sym__immediate_decimal_token2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [aux_sym__immediate_decimal_token3] = ACTIONS(1663), + [aux_sym__immediate_decimal_token4] = ACTIONS(1663), [anon_sym_err_GT] = ACTIONS(1671), [anon_sym_out_GT] = ACTIONS(1671), [anon_sym_e_GT] = ACTIONS(1671), @@ -84860,180 +85596,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(462)] = { - [sym__expr_parenthesized_immediate] = STATE(1288), - [sym__immediate_decimal] = STATE(1289), - [sym_val_variable] = STATE(1288), - [sym_comment] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(1681), - [anon_sym_in] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1683), - [anon_sym_STAR2] = ACTIONS(1683), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_has2] = ACTIONS(1681), - [anon_sym_not_DASHhas2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1683), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_like2] = ACTIONS(1681), - [anon_sym_not_DASHlike2] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1683), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1683), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [aux_sym__immediate_decimal_token1] = ACTIONS(1728), - [aux_sym__immediate_decimal_token2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1683), - [anon_sym_out_GT] = ACTIONS(1683), - [anon_sym_e_GT] = ACTIONS(1683), - [anon_sym_o_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT] = ACTIONS(1683), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(463)] = { - [sym__expr_parenthesized_immediate] = STATE(1348), - [sym__immediate_decimal] = STATE(1349), - [sym_val_variable] = STATE(1348), - [sym_comment] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(1599), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [aux_sym__immediate_decimal_token1] = ACTIONS(1728), - [aux_sym__immediate_decimal_token2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(464)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5120), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(464), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_record_body_repeat1] = STATE(721), + [STATE(467)] = { + [sym_cmd_identifier] = STATE(4489), + [sym__match_pattern_record_body] = STATE(5313), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(4465), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4872), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(467), + [aux_sym__types_body_repeat1] = STATE(496), + [aux_sym__match_pattern_record_body_repeat1] = STATE(701), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -85055,60 +85641,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1766), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_RBRACE] = ACTIONS(1810), [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(465)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5458), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(465), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_record_body_repeat1] = STATE(721), + [STATE(468)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5350), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(468), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -85130,135 +85716,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(466)] = { - [sym_comment] = STATE(466), - [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_token5] = ACTIONS(1705), - [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(469)] = { + [sym_comment] = STATE(469), + [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(1699), + [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(467)] = { - [sym_cmd_identifier] = STATE(4519), - [sym__match_pattern_record_body] = STATE(5279), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(4401), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(4737), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(467), - [aux_sym__types_body_repeat1] = STATE(499), - [aux_sym__match_pattern_record_body_repeat1] = STATE(698), + [STATE(470)] = { + [sym_comment] = STATE(470), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_in] = ACTIONS(1547), + [sym__newline] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_err_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_GT_PIPE] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_EQ_GT] = ACTIONS(1547), + [anon_sym_STAR2] = ACTIONS(1545), + [anon_sym_and2] = ACTIONS(1547), + [anon_sym_xor2] = ACTIONS(1547), + [anon_sym_or2] = ACTIONS(1547), + [anon_sym_not_DASHin2] = ACTIONS(1547), + [anon_sym_has2] = ACTIONS(1547), + [anon_sym_not_DASHhas2] = ACTIONS(1547), + [anon_sym_starts_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1547), + [anon_sym_ends_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1547), + [anon_sym_EQ_EQ2] = ACTIONS(1547), + [anon_sym_BANG_EQ2] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ2] = ACTIONS(1547), + [anon_sym_GT_EQ2] = ACTIONS(1547), + [anon_sym_EQ_TILDE2] = ACTIONS(1547), + [anon_sym_BANG_TILDE2] = ACTIONS(1547), + [anon_sym_like2] = ACTIONS(1547), + [anon_sym_not_DASHlike2] = ACTIONS(1547), + [anon_sym_STAR_STAR2] = ACTIONS(1547), + [anon_sym_PLUS_PLUS2] = ACTIONS(1547), + [anon_sym_SLASH2] = ACTIONS(1545), + [anon_sym_mod2] = ACTIONS(1547), + [anon_sym_SLASH_SLASH2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1545), + [anon_sym_bit_DASHshl2] = ACTIONS(1547), + [anon_sym_bit_DASHshr2] = ACTIONS(1547), + [anon_sym_bit_DASHand2] = ACTIONS(1547), + [anon_sym_bit_DASHxor2] = ACTIONS(1547), + [anon_sym_bit_DASHor2] = ACTIONS(1547), + [anon_sym_DOT_DOT2] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [anon_sym_COLON2] = ACTIONS(1547), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [anon_sym_err_GT_GT] = ACTIONS(1547), + [anon_sym_out_GT_GT] = ACTIONS(1547), + [anon_sym_e_GT_GT] = ACTIONS(1547), + [anon_sym_o_GT_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(471)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5111), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(471), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -85280,60 +85941,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), [anon_sym_DASH2] = ACTIONS(175), [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(468)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_body] = STATE(5495), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(468), - [aux_sym__types_body_repeat1] = STATE(514), - [aux_sym_record_body_repeat1] = STATE(721), + [STATE(472)] = { + [sym_comment] = STATE(472), + [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(1816), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1818), + [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_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5125), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(473), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -85355,135 +86091,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1816), + [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), - }, - [STATE(469)] = { - [sym__expr_parenthesized_immediate] = STATE(5072), - [sym_comment] = STATE(469), - [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(847), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(847), - [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(847), - [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(1818), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(847), - [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(1820), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [sym_filesize_unit] = ACTIONS(1824), - [sym_duration_unit] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [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(1828), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(470)] = { - [sym_cmd_identifier] = STATE(4519), - [sym__match_pattern_record_body] = STATE(5323), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(4401), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(4737), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(470), - [aux_sym__types_body_repeat1] = STATE(499), - [aux_sym__match_pattern_record_body_repeat1] = STATE(698), + [STATE(474)] = { + [sym__expr_parenthesized_immediate] = STATE(1328), + [sym__immediate_decimal] = STATE(1349), + [sym_val_variable] = STATE(1328), + [sym_comment] = STATE(474), + [ts_builtin_sym_end] = ACTIONS(1681), + [anon_sym_in] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_STAR2] = ACTIONS(1683), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_has2] = ACTIONS(1681), + [anon_sym_not_DASHhas2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_like2] = ACTIONS(1681), + [anon_sym_not_DASHlike2] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1683), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1683), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [aux_sym__immediate_decimal_token1] = ACTIONS(1728), + [aux_sym__immediate_decimal_token2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token3] = ACTIONS(1663), + [aux_sym__immediate_decimal_token4] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1683), + [anon_sym_out_GT] = ACTIONS(1683), + [anon_sym_e_GT] = ACTIONS(1683), + [anon_sym_o_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT] = ACTIONS(1683), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(475)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5367), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(475), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -85505,186 +86241,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1830), + [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), - }, - [STATE(471)] = { - [sym__expr_parenthesized_immediate] = STATE(4972), - [sym_comment] = STATE(471), - [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(847), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(847), - [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(847), - [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(1818), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(847), - [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(1832), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1834), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1834), - [sym_filesize_unit] = ACTIONS(1836), - [sym_duration_unit] = ACTIONS(1838), - [anon_sym_err_GT] = ACTIONS(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [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(1840), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(472)] = { - [sym_comment] = STATE(472), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_in] = ACTIONS(1842), - [sym__newline] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_err_GT_PIPE] = ACTIONS(1842), - [anon_sym_out_GT_PIPE] = ACTIONS(1842), - [anon_sym_e_GT_PIPE] = ACTIONS(1842), - [anon_sym_o_GT_PIPE] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_GT2] = ACTIONS(1844), - [anon_sym_DASH2] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_EQ_GT] = ACTIONS(1842), - [anon_sym_STAR2] = ACTIONS(1844), - [anon_sym_and2] = ACTIONS(1842), - [anon_sym_xor2] = ACTIONS(1842), - [anon_sym_or2] = ACTIONS(1842), - [anon_sym_not_DASHin2] = ACTIONS(1842), - [anon_sym_has2] = ACTIONS(1842), - [anon_sym_not_DASHhas2] = ACTIONS(1842), - [anon_sym_starts_DASHwith2] = ACTIONS(1842), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1842), - [anon_sym_ends_DASHwith2] = ACTIONS(1842), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1842), - [anon_sym_EQ_EQ2] = ACTIONS(1842), - [anon_sym_BANG_EQ2] = ACTIONS(1842), - [anon_sym_LT2] = ACTIONS(1844), - [anon_sym_LT_EQ2] = ACTIONS(1842), - [anon_sym_GT_EQ2] = ACTIONS(1842), - [anon_sym_EQ_TILDE2] = ACTIONS(1842), - [anon_sym_BANG_TILDE2] = ACTIONS(1842), - [anon_sym_like2] = ACTIONS(1842), - [anon_sym_not_DASHlike2] = ACTIONS(1842), - [anon_sym_STAR_STAR2] = ACTIONS(1842), - [anon_sym_PLUS_PLUS2] = ACTIONS(1842), - [anon_sym_SLASH2] = ACTIONS(1844), - [anon_sym_mod2] = ACTIONS(1842), - [anon_sym_SLASH_SLASH2] = ACTIONS(1842), - [anon_sym_PLUS2] = ACTIONS(1844), - [anon_sym_bit_DASHshl2] = ACTIONS(1842), - [anon_sym_bit_DASHshr2] = ACTIONS(1842), - [anon_sym_bit_DASHand2] = ACTIONS(1842), - [anon_sym_bit_DASHxor2] = ACTIONS(1842), - [anon_sym_bit_DASHor2] = ACTIONS(1842), - [anon_sym_DOT_DOT2] = ACTIONS(1844), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1842), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1842), - [anon_sym_COLON2] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1844), - [anon_sym_out_GT] = ACTIONS(1844), - [anon_sym_e_GT] = ACTIONS(1844), - [anon_sym_o_GT] = ACTIONS(1844), - [anon_sym_err_PLUSout_GT] = ACTIONS(1844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1844), - [anon_sym_o_PLUSe_GT] = ACTIONS(1844), - [anon_sym_e_PLUSo_GT] = ACTIONS(1844), - [anon_sym_err_GT_GT] = ACTIONS(1842), - [anon_sym_out_GT_GT] = ACTIONS(1842), - [anon_sym_e_GT_GT] = ACTIONS(1842), - [anon_sym_o_GT_GT] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(473)] = { - [sym_comment] = STATE(473), + [STATE(476)] = { + [sym_comment] = STATE(476), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), @@ -85735,7 +86323,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_token5] = ACTIONS(1740), + [aux_sym__immediate_decimal_token1] = ACTIONS(1824), + [aux_sym__immediate_decimal_token5] = ACTIONS(1826), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -85757,104 +86346,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_in] = ACTIONS(769), - [sym__newline] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_err_GT_PIPE] = ACTIONS(769), - [anon_sym_out_GT_PIPE] = ACTIONS(769), - [anon_sym_e_GT_PIPE] = ACTIONS(769), - [anon_sym_o_GT_PIPE] = ACTIONS(769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(769), - [anon_sym_xor2] = ACTIONS(769), - [anon_sym_or2] = ACTIONS(769), - [anon_sym_not_DASHin2] = ACTIONS(769), - [anon_sym_has2] = ACTIONS(769), - [anon_sym_not_DASHhas2] = ACTIONS(769), - [anon_sym_starts_DASHwith2] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), - [anon_sym_ends_DASHwith2] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), - [anon_sym_EQ_EQ2] = ACTIONS(769), - [anon_sym_BANG_EQ2] = ACTIONS(769), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(769), - [anon_sym_GT_EQ2] = ACTIONS(769), - [anon_sym_EQ_TILDE2] = ACTIONS(769), - [anon_sym_BANG_TILDE2] = ACTIONS(769), - [anon_sym_like2] = ACTIONS(769), - [anon_sym_not_DASHlike2] = ACTIONS(769), - [anon_sym_LPAREN2] = ACTIONS(769), - [anon_sym_STAR_STAR2] = ACTIONS(769), - [anon_sym_PLUS_PLUS2] = ACTIONS(769), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(769), - [anon_sym_SLASH_SLASH2] = ACTIONS(769), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(769), - [anon_sym_bit_DASHshr2] = ACTIONS(769), - [anon_sym_bit_DASHand2] = ACTIONS(769), - [anon_sym_bit_DASHxor2] = ACTIONS(769), - [anon_sym_bit_DASHor2] = ACTIONS(769), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(769), - [anon_sym_out_GT_GT] = ACTIONS(769), - [anon_sym_e_GT_GT] = ACTIONS(769), - [anon_sym_o_GT_GT] = ACTIONS(769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), - [sym__unquoted_pattern] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(475)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(4344), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(4735), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(475), - [aux_sym__types_body_repeat1] = STATE(1499), - [aux_sym__match_pattern_record_body_repeat1] = STATE(722), - [aux_sym_record_body_repeat1] = STATE(719), + [STATE(477)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5283), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(477), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_record_body_repeat1] = STATE(716), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -85876,543 +86391,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1828), [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), - }, - [STATE(476)] = { - [sym_comment] = STATE(476), - [anon_sym_in] = ACTIONS(865), - [sym__newline] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_PIPE] = ACTIONS(865), - [anon_sym_err_GT_PIPE] = ACTIONS(865), - [anon_sym_out_GT_PIPE] = ACTIONS(865), - [anon_sym_e_GT_PIPE] = ACTIONS(865), - [anon_sym_o_GT_PIPE] = ACTIONS(865), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(865), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(865), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(865), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(865), - [anon_sym_xor2] = ACTIONS(865), - [anon_sym_or2] = ACTIONS(865), - [anon_sym_not_DASHin2] = ACTIONS(865), - [anon_sym_has2] = ACTIONS(865), - [anon_sym_not_DASHhas2] = ACTIONS(865), - [anon_sym_starts_DASHwith2] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(865), - [anon_sym_ends_DASHwith2] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(865), - [anon_sym_EQ_EQ2] = ACTIONS(865), - [anon_sym_BANG_EQ2] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(865), - [anon_sym_GT_EQ2] = ACTIONS(865), - [anon_sym_EQ_TILDE2] = ACTIONS(865), - [anon_sym_BANG_TILDE2] = ACTIONS(865), - [anon_sym_like2] = ACTIONS(865), - [anon_sym_not_DASHlike2] = ACTIONS(865), - [anon_sym_LPAREN2] = ACTIONS(865), - [anon_sym_STAR_STAR2] = ACTIONS(865), - [anon_sym_PLUS_PLUS2] = ACTIONS(865), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(865), - [anon_sym_SLASH_SLASH2] = ACTIONS(865), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(865), - [anon_sym_bit_DASHshr2] = ACTIONS(865), - [anon_sym_bit_DASHand2] = ACTIONS(865), - [anon_sym_bit_DASHxor2] = ACTIONS(865), - [anon_sym_bit_DASHor2] = ACTIONS(865), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), - [anon_sym_err_GT] = ACTIONS(863), - [anon_sym_out_GT] = ACTIONS(863), - [anon_sym_e_GT] = ACTIONS(863), - [anon_sym_o_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT] = ACTIONS(863), - [anon_sym_err_GT_GT] = ACTIONS(865), - [anon_sym_out_GT_GT] = ACTIONS(865), - [anon_sym_e_GT_GT] = ACTIONS(865), - [anon_sym_o_GT_GT] = ACTIONS(865), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(865), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(865), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(865), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(865), - [sym__unquoted_pattern] = ACTIONS(863), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(477)] = { - [sym_comment] = STATE(477), - [anon_sym_in] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_GT2] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_STAR2] = ACTIONS(1848), - [anon_sym_and2] = ACTIONS(1846), - [anon_sym_xor2] = ACTIONS(1846), - [anon_sym_or2] = ACTIONS(1846), - [anon_sym_not_DASHin2] = ACTIONS(1846), - [anon_sym_has2] = ACTIONS(1846), - [anon_sym_not_DASHhas2] = ACTIONS(1846), - [anon_sym_starts_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), - [anon_sym_ends_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), - [anon_sym_EQ_EQ2] = ACTIONS(1846), - [anon_sym_BANG_EQ2] = ACTIONS(1846), - [anon_sym_LT2] = ACTIONS(1848), - [anon_sym_LT_EQ2] = ACTIONS(1846), - [anon_sym_GT_EQ2] = ACTIONS(1846), - [anon_sym_EQ_TILDE2] = ACTIONS(1846), - [anon_sym_BANG_TILDE2] = ACTIONS(1846), - [anon_sym_like2] = ACTIONS(1846), - [anon_sym_not_DASHlike2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1846), - [anon_sym_STAR_STAR2] = ACTIONS(1846), - [anon_sym_PLUS_PLUS2] = ACTIONS(1846), - [anon_sym_SLASH2] = ACTIONS(1848), - [anon_sym_mod2] = ACTIONS(1846), - [anon_sym_SLASH_SLASH2] = ACTIONS(1846), - [anon_sym_PLUS2] = ACTIONS(1848), - [anon_sym_bit_DASHshl2] = ACTIONS(1846), - [anon_sym_bit_DASHshr2] = ACTIONS(1846), - [anon_sym_bit_DASHand2] = ACTIONS(1846), - [anon_sym_bit_DASHxor2] = ACTIONS(1846), - [anon_sym_bit_DASHor2] = ACTIONS(1846), - [anon_sym_DOT_DOT2] = ACTIONS(1848), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), - [aux_sym__immediate_decimal_token5] = ACTIONS(1850), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), - [sym__unquoted_pattern] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1764), }, [STATE(478)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_body] = STATE(5521), + [sym_record_entry] = STATE(4845), + [sym__record_key] = STATE(5246), [sym_comment] = STATE(478), - [anon_sym_if] = 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_RPAREN] = ACTIONS(1647), - [anon_sym_GT2] = 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), - [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_COLON2] = 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), + [aux_sym__types_body_repeat1] = STATE(497), + [aux_sym_record_body_repeat1] = STATE(716), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), + [anon_sym_DASH2] = ACTIONS(175), + [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(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), + [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(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [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(1764), }, [STATE(479)] = { + [sym__expr_parenthesized_immediate] = STATE(1297), + [sym__immediate_decimal] = STATE(1344), + [sym_val_variable] = STATE(1297), [sym_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_in] = ACTIONS(769), - [sym__newline] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_err_GT_PIPE] = ACTIONS(769), - [anon_sym_out_GT_PIPE] = ACTIONS(769), - [anon_sym_e_GT_PIPE] = ACTIONS(769), - [anon_sym_o_GT_PIPE] = ACTIONS(769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(769), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(769), - [anon_sym_xor2] = ACTIONS(769), - [anon_sym_or2] = ACTIONS(769), - [anon_sym_not_DASHin2] = ACTIONS(769), - [anon_sym_has2] = ACTIONS(769), - [anon_sym_not_DASHhas2] = ACTIONS(769), - [anon_sym_starts_DASHwith2] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), - [anon_sym_ends_DASHwith2] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), - [anon_sym_EQ_EQ2] = ACTIONS(769), - [anon_sym_BANG_EQ2] = ACTIONS(769), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(769), - [anon_sym_GT_EQ2] = ACTIONS(769), - [anon_sym_EQ_TILDE2] = ACTIONS(769), - [anon_sym_BANG_TILDE2] = ACTIONS(769), - [anon_sym_like2] = ACTIONS(769), - [anon_sym_not_DASHlike2] = ACTIONS(769), - [anon_sym_LPAREN2] = ACTIONS(769), - [anon_sym_STAR_STAR2] = ACTIONS(769), - [anon_sym_PLUS_PLUS2] = ACTIONS(769), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(769), - [anon_sym_SLASH_SLASH2] = ACTIONS(769), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(769), - [anon_sym_bit_DASHshr2] = ACTIONS(769), - [anon_sym_bit_DASHand2] = ACTIONS(769), - [anon_sym_bit_DASHxor2] = ACTIONS(769), - [anon_sym_bit_DASHor2] = ACTIONS(769), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [aux_sym__immediate_decimal_token5] = ACTIONS(1852), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(769), - [anon_sym_out_GT_GT] = ACTIONS(769), - [anon_sym_e_GT_GT] = ACTIONS(769), - [anon_sym_o_GT_GT] = ACTIONS(769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), - [sym__unquoted_pattern] = ACTIONS(767), + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1622), + [anon_sym_DASH2] = ACTIONS(1622), + [anon_sym_STAR2] = ACTIONS(1622), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1622), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_like2] = ACTIONS(1620), + [anon_sym_not_DASHlike2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1622), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1622), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token1] = ACTIONS(1728), + [aux_sym__immediate_decimal_token2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token3] = ACTIONS(1663), + [aux_sym__immediate_decimal_token4] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1622), + [anon_sym_out_GT] = ACTIONS(1622), + [anon_sym_e_GT] = ACTIONS(1622), + [anon_sym_o_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT] = ACTIONS(1622), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), [anon_sym_POUND] = ACTIONS(3), }, [STATE(480)] = { [sym_comment] = STATE(480), - [anon_sym_EQ] = ACTIONS(1854), - [anon_sym_PLUS_EQ] = ACTIONS(1856), - [anon_sym_DASH_EQ] = ACTIONS(1856), - [anon_sym_STAR_EQ] = ACTIONS(1856), - [anon_sym_SLASH_EQ] = ACTIONS(1856), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1856), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [anon_sym_if] = 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_RPAREN] = ACTIONS(1478), + [anon_sym_GT2] = ACTIONS(1476), + [anon_sym_DASH2] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_EQ_GT] = ACTIONS(1478), + [anon_sym_STAR2] = ACTIONS(1476), + [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(1476), + [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(1476), + [anon_sym_mod2] = ACTIONS(1478), + [anon_sym_SLASH_SLASH2] = ACTIONS(1478), + [anon_sym_PLUS2] = ACTIONS(1476), + [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(1476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), + [anon_sym_COLON2] = ACTIONS(1478), + [anon_sym_DOT2] = ACTIONS(1476), + [anon_sym_err_GT] = ACTIONS(1476), + [anon_sym_out_GT] = ACTIONS(1476), + [anon_sym_e_GT] = ACTIONS(1476), + [anon_sym_o_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT] = ACTIONS(1476), + [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(3), }, [STATE(481)] = { [sym_comment] = STATE(481), - [anon_sym_in] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_GT2] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_STAR2] = ACTIONS(1792), - [anon_sym_and2] = ACTIONS(1790), - [anon_sym_xor2] = ACTIONS(1790), - [anon_sym_or2] = ACTIONS(1790), - [anon_sym_not_DASHin2] = ACTIONS(1790), - [anon_sym_has2] = ACTIONS(1790), - [anon_sym_not_DASHhas2] = ACTIONS(1790), - [anon_sym_starts_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), - [anon_sym_ends_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), - [anon_sym_EQ_EQ2] = ACTIONS(1790), - [anon_sym_BANG_EQ2] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ2] = ACTIONS(1790), - [anon_sym_GT_EQ2] = ACTIONS(1790), - [anon_sym_EQ_TILDE2] = ACTIONS(1790), - [anon_sym_BANG_TILDE2] = ACTIONS(1790), - [anon_sym_like2] = ACTIONS(1790), - [anon_sym_not_DASHlike2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_STAR_STAR2] = ACTIONS(1790), - [anon_sym_PLUS_PLUS2] = ACTIONS(1790), - [anon_sym_SLASH2] = ACTIONS(1792), - [anon_sym_mod2] = ACTIONS(1790), - [anon_sym_SLASH_SLASH2] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1792), - [anon_sym_bit_DASHshl2] = ACTIONS(1790), - [anon_sym_bit_DASHshr2] = ACTIONS(1790), - [anon_sym_bit_DASHand2] = ACTIONS(1790), - [anon_sym_bit_DASHxor2] = ACTIONS(1790), - [anon_sym_bit_DASHor2] = ACTIONS(1790), - [anon_sym_DOT_DOT2] = ACTIONS(1792), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1790), - [aux_sym__immediate_decimal_token5] = ACTIONS(1796), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [sym__unquoted_pattern] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1832), + [sym__newline] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_err_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_GT_PIPE] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_GT2] = ACTIONS(1834), + [anon_sym_DASH2] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_STAR2] = ACTIONS(1834), + [anon_sym_and2] = ACTIONS(1832), + [anon_sym_xor2] = ACTIONS(1832), + [anon_sym_or2] = ACTIONS(1832), + [anon_sym_not_DASHin2] = ACTIONS(1832), + [anon_sym_has2] = ACTIONS(1832), + [anon_sym_not_DASHhas2] = ACTIONS(1832), + [anon_sym_starts_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), + [anon_sym_ends_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), + [anon_sym_EQ_EQ2] = ACTIONS(1832), + [anon_sym_BANG_EQ2] = ACTIONS(1832), + [anon_sym_LT2] = ACTIONS(1834), + [anon_sym_LT_EQ2] = ACTIONS(1832), + [anon_sym_GT_EQ2] = ACTIONS(1832), + [anon_sym_EQ_TILDE2] = ACTIONS(1832), + [anon_sym_BANG_TILDE2] = ACTIONS(1832), + [anon_sym_like2] = ACTIONS(1832), + [anon_sym_not_DASHlike2] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_STAR_STAR2] = ACTIONS(1832), + [anon_sym_PLUS_PLUS2] = ACTIONS(1832), + [anon_sym_SLASH2] = ACTIONS(1834), + [anon_sym_mod2] = ACTIONS(1832), + [anon_sym_SLASH_SLASH2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1834), + [anon_sym_bit_DASHshl2] = ACTIONS(1832), + [anon_sym_bit_DASHshr2] = ACTIONS(1832), + [anon_sym_bit_DASHand2] = ACTIONS(1832), + [anon_sym_bit_DASHxor2] = ACTIONS(1832), + [anon_sym_bit_DASHor2] = ACTIONS(1832), + [anon_sym_DOT_DOT2] = ACTIONS(1834), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1832), + [aux_sym__immediate_decimal_token5] = ACTIONS(1836), + [anon_sym_err_GT] = ACTIONS(1834), + [anon_sym_out_GT] = ACTIONS(1834), + [anon_sym_e_GT] = ACTIONS(1834), + [anon_sym_o_GT] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT] = ACTIONS(1834), + [anon_sym_err_GT_GT] = ACTIONS(1832), + [anon_sym_out_GT_GT] = ACTIONS(1832), + [anon_sym_e_GT_GT] = ACTIONS(1832), + [anon_sym_o_GT_GT] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), + [sym__unquoted_pattern] = ACTIONS(1834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(482)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_val_entry] = STATE(4778), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(4520), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4766), + [sym__record_key] = STATE(5246), [sym_comment] = STATE(482), - [aux_sym__types_body_repeat1] = STATE(2185), - [aux_sym_list_body_repeat1] = STATE(624), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [aux_sym__types_body_repeat1] = STATE(1498), + [aux_sym__match_pattern_record_body_repeat1] = STATE(735), + [aux_sym_record_body_repeat1] = STATE(706), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1766), + [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(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), + [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(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [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(1764), + }, + [STATE(483)] = { + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_val_entry] = STATE(4887), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(483), + [aux_sym__types_body_repeat1] = STATE(2189), + [aux_sym_list_body_repeat1] = STATE(532), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), [sym__newline] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1616), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), + [sym_val_date] = ACTIONS(1510), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -86423,448 +86868,600 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(483)] = { - [sym_comment] = STATE(483), - [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), - [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(484)] = { + [sym__expr_parenthesized_immediate] = STATE(5070), [sym_comment] = STATE(484), - [anon_sym_EQ] = ACTIONS(1858), - [anon_sym_PLUS_EQ] = ACTIONS(1860), - [anon_sym_DASH_EQ] = ACTIONS(1860), - [anon_sym_STAR_EQ] = ACTIONS(1860), - [anon_sym_SLASH_EQ] = ACTIONS(1860), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1860), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_in] = ACTIONS(884), + [sym__newline] = ACTIONS(884), + [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_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(884), + [anon_sym_xor2] = ACTIONS(884), + [anon_sym_or2] = ACTIONS(884), + [anon_sym_not_DASHin2] = ACTIONS(884), + [anon_sym_has2] = ACTIONS(884), + [anon_sym_not_DASHhas2] = ACTIONS(884), + [anon_sym_starts_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), + [anon_sym_ends_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(884), + [anon_sym_like2] = ACTIONS(884), + [anon_sym_not_DASHlike2] = ACTIONS(884), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(884), + [anon_sym_PLUS_PLUS2] = ACTIONS(884), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(884), + [anon_sym_SLASH_SLASH2] = ACTIONS(884), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(884), + [anon_sym_bit_DASHshr2] = ACTIONS(884), + [anon_sym_bit_DASHand2] = ACTIONS(884), + [anon_sym_bit_DASHxor2] = ACTIONS(884), + [anon_sym_bit_DASHor2] = ACTIONS(884), + [anon_sym_DOT_DOT2] = ACTIONS(1838), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1840), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1840), + [sym_filesize_unit] = ACTIONS(1842), + [sym_duration_unit] = ACTIONS(1844), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [sym__unquoted_pattern] = ACTIONS(1846), [anon_sym_POUND] = ACTIONS(3), }, [STATE(485)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(485), - [anon_sym_else] = ACTIONS(1862), - [anon_sym_catch] = ACTIONS(1862), - [anon_sym_finally] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1864), - [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_COLON] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1867), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1867), - [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(1867), - [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(1867), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1867), - [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(1867), - [anon_sym_out_GT] = ACTIONS(1867), - [anon_sym_e_GT] = ACTIONS(1867), - [anon_sym_o_GT] = ACTIONS(1867), - [anon_sym_err_PLUSout_GT] = ACTIONS(1867), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), - [anon_sym_o_PLUSe_GT] = ACTIONS(1867), - [anon_sym_e_PLUSo_GT] = ACTIONS(1867), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), + [anon_sym_in] = ACTIONS(777), + [sym__newline] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_err_GT_PIPE] = ACTIONS(777), + [anon_sym_out_GT_PIPE] = ACTIONS(777), + [anon_sym_e_GT_PIPE] = ACTIONS(777), + [anon_sym_o_GT_PIPE] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(777), + [anon_sym_xor2] = ACTIONS(777), + [anon_sym_or2] = ACTIONS(777), + [anon_sym_not_DASHin2] = ACTIONS(777), + [anon_sym_has2] = ACTIONS(777), + [anon_sym_not_DASHhas2] = ACTIONS(777), + [anon_sym_starts_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), + [anon_sym_ends_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), + [anon_sym_EQ_EQ2] = ACTIONS(777), + [anon_sym_BANG_EQ2] = ACTIONS(777), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(777), + [anon_sym_GT_EQ2] = ACTIONS(777), + [anon_sym_EQ_TILDE2] = ACTIONS(777), + [anon_sym_BANG_TILDE2] = ACTIONS(777), + [anon_sym_like2] = ACTIONS(777), + [anon_sym_not_DASHlike2] = ACTIONS(777), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_STAR_STAR2] = ACTIONS(777), + [anon_sym_PLUS_PLUS2] = ACTIONS(777), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(777), + [anon_sym_SLASH_SLASH2] = ACTIONS(777), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(777), + [anon_sym_bit_DASHshr2] = ACTIONS(777), + [anon_sym_bit_DASHand2] = ACTIONS(777), + [anon_sym_bit_DASHxor2] = ACTIONS(777), + [anon_sym_bit_DASHor2] = ACTIONS(777), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(777), + [anon_sym_out_GT_GT] = ACTIONS(777), + [anon_sym_e_GT_GT] = ACTIONS(777), + [anon_sym_o_GT_GT] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), + [sym__unquoted_pattern] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(3), }, [STATE(486)] = { [sym_comment] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_in] = ACTIONS(769), - [sym__newline] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_err_GT_PIPE] = ACTIONS(769), - [anon_sym_out_GT_PIPE] = ACTIONS(769), - [anon_sym_e_GT_PIPE] = ACTIONS(769), - [anon_sym_o_GT_PIPE] = ACTIONS(769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), - [anon_sym_GT2] = ACTIONS(767), - [anon_sym_DASH2] = ACTIONS(769), - [anon_sym_STAR2] = ACTIONS(767), - [anon_sym_and2] = ACTIONS(769), - [anon_sym_xor2] = ACTIONS(769), - [anon_sym_or2] = ACTIONS(769), - [anon_sym_not_DASHin2] = ACTIONS(769), - [anon_sym_has2] = ACTIONS(769), - [anon_sym_not_DASHhas2] = ACTIONS(769), - [anon_sym_starts_DASHwith2] = ACTIONS(769), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), - [anon_sym_ends_DASHwith2] = ACTIONS(769), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), - [anon_sym_EQ_EQ2] = ACTIONS(769), - [anon_sym_BANG_EQ2] = ACTIONS(769), - [anon_sym_LT2] = ACTIONS(767), - [anon_sym_LT_EQ2] = ACTIONS(769), - [anon_sym_GT_EQ2] = ACTIONS(769), - [anon_sym_EQ_TILDE2] = ACTIONS(769), - [anon_sym_BANG_TILDE2] = ACTIONS(769), - [anon_sym_like2] = ACTIONS(769), - [anon_sym_not_DASHlike2] = ACTIONS(769), - [anon_sym_LPAREN2] = ACTIONS(769), - [anon_sym_STAR_STAR2] = ACTIONS(769), - [anon_sym_PLUS_PLUS2] = ACTIONS(769), - [anon_sym_SLASH2] = ACTIONS(767), - [anon_sym_mod2] = ACTIONS(769), - [anon_sym_SLASH_SLASH2] = ACTIONS(769), - [anon_sym_PLUS2] = ACTIONS(767), - [anon_sym_bit_DASHshl2] = ACTIONS(769), - [anon_sym_bit_DASHshr2] = ACTIONS(769), - [anon_sym_bit_DASHand2] = ACTIONS(769), - [anon_sym_bit_DASHxor2] = ACTIONS(769), - [anon_sym_bit_DASHor2] = ACTIONS(769), - [anon_sym_DOT_DOT2] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(767), - [sym_duration_unit] = ACTIONS(769), - [anon_sym_err_GT] = ACTIONS(767), - [anon_sym_out_GT] = ACTIONS(767), - [anon_sym_e_GT] = ACTIONS(767), - [anon_sym_o_GT] = ACTIONS(767), - [anon_sym_err_PLUSout_GT] = ACTIONS(767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(767), - [anon_sym_o_PLUSe_GT] = ACTIONS(767), - [anon_sym_e_PLUSo_GT] = ACTIONS(767), - [anon_sym_err_GT_GT] = ACTIONS(769), - [anon_sym_out_GT_GT] = ACTIONS(769), - [anon_sym_e_GT_GT] = ACTIONS(769), - [anon_sym_o_GT_GT] = ACTIONS(769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), - [sym__unquoted_pattern] = ACTIONS(767), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(777), + [sym__newline] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_err_GT_PIPE] = ACTIONS(777), + [anon_sym_out_GT_PIPE] = ACTIONS(777), + [anon_sym_e_GT_PIPE] = ACTIONS(777), + [anon_sym_o_GT_PIPE] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(777), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(777), + [anon_sym_xor2] = ACTIONS(777), + [anon_sym_or2] = ACTIONS(777), + [anon_sym_not_DASHin2] = ACTIONS(777), + [anon_sym_has2] = ACTIONS(777), + [anon_sym_not_DASHhas2] = ACTIONS(777), + [anon_sym_starts_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), + [anon_sym_ends_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), + [anon_sym_EQ_EQ2] = ACTIONS(777), + [anon_sym_BANG_EQ2] = ACTIONS(777), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(777), + [anon_sym_GT_EQ2] = ACTIONS(777), + [anon_sym_EQ_TILDE2] = ACTIONS(777), + [anon_sym_BANG_TILDE2] = ACTIONS(777), + [anon_sym_like2] = ACTIONS(777), + [anon_sym_not_DASHlike2] = ACTIONS(777), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_STAR_STAR2] = ACTIONS(777), + [anon_sym_PLUS_PLUS2] = ACTIONS(777), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(777), + [anon_sym_SLASH_SLASH2] = ACTIONS(777), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(777), + [anon_sym_bit_DASHshr2] = ACTIONS(777), + [anon_sym_bit_DASHand2] = ACTIONS(777), + [anon_sym_bit_DASHxor2] = ACTIONS(777), + [anon_sym_bit_DASHor2] = ACTIONS(777), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1848), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(777), + [anon_sym_out_GT_GT] = ACTIONS(777), + [anon_sym_e_GT_GT] = ACTIONS(777), + [anon_sym_o_GT_GT] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), + [sym__unquoted_pattern] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(3), }, [STATE(487)] = { - [sym_cell_path] = STATE(969), - [sym_path] = STATE(715), [sym_comment] = STATE(487), - [aux_sym__where_predicate_lhs_repeat1] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1653), - [anon_sym_in] = ACTIONS(1653), - [sym__newline] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_err_GT_PIPE] = ACTIONS(1653), - [anon_sym_out_GT_PIPE] = ACTIONS(1653), - [anon_sym_e_GT_PIPE] = ACTIONS(1653), - [anon_sym_o_GT_PIPE] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), - [anon_sym_GT2] = ACTIONS(1655), - [anon_sym_DASH2] = 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_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), - [anon_sym_DOT_DOT2] = ACTIONS(1655), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1653), - [anon_sym_DOT2] = ACTIONS(1869), - [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_if] = 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_RPAREN] = ACTIONS(1675), + [anon_sym_GT2] = ACTIONS(1677), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_EQ_GT] = 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_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), + [anon_sym_DOT_DOT2] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_COLON2] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1677), + [anon_sym_out_GT] = ACTIONS(1677), + [anon_sym_e_GT] = ACTIONS(1677), + [anon_sym_o_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT] = ACTIONS(1677), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), [anon_sym_POUND] = ACTIONS(3), }, [STATE(488)] = { [sym_comment] = STATE(488), - [anon_sym_in] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_GT2] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_STAR2] = ACTIONS(1848), - [anon_sym_and2] = ACTIONS(1846), - [anon_sym_xor2] = ACTIONS(1846), - [anon_sym_or2] = ACTIONS(1846), - [anon_sym_not_DASHin2] = ACTIONS(1846), - [anon_sym_has2] = ACTIONS(1846), - [anon_sym_not_DASHhas2] = ACTIONS(1846), - [anon_sym_starts_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), - [anon_sym_ends_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), - [anon_sym_EQ_EQ2] = ACTIONS(1846), - [anon_sym_BANG_EQ2] = ACTIONS(1846), - [anon_sym_LT2] = ACTIONS(1848), - [anon_sym_LT_EQ2] = ACTIONS(1846), - [anon_sym_GT_EQ2] = ACTIONS(1846), - [anon_sym_EQ_TILDE2] = ACTIONS(1846), - [anon_sym_BANG_TILDE2] = ACTIONS(1846), - [anon_sym_like2] = ACTIONS(1846), - [anon_sym_not_DASHlike2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1846), - [anon_sym_STAR_STAR2] = ACTIONS(1846), - [anon_sym_PLUS_PLUS2] = ACTIONS(1846), - [anon_sym_SLASH2] = ACTIONS(1848), - [anon_sym_mod2] = ACTIONS(1846), - [anon_sym_SLASH_SLASH2] = ACTIONS(1846), - [anon_sym_PLUS2] = ACTIONS(1848), - [anon_sym_bit_DASHshl2] = ACTIONS(1846), - [anon_sym_bit_DASHshr2] = ACTIONS(1846), - [anon_sym_bit_DASHand2] = ACTIONS(1846), - [anon_sym_bit_DASHxor2] = ACTIONS(1846), - [anon_sym_bit_DASHor2] = ACTIONS(1846), - [anon_sym_DOT_DOT2] = ACTIONS(1848), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), - [sym__unquoted_pattern] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(868), + [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(866), + [anon_sym_DASH2] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_STAR2] = ACTIONS(866), + [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(866), + [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_LPAREN2] = ACTIONS(868), + [anon_sym_STAR_STAR2] = ACTIONS(868), + [anon_sym_PLUS_PLUS2] = ACTIONS(868), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(868), + [anon_sym_SLASH_SLASH2] = ACTIONS(868), + [anon_sym_PLUS2] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [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(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), + [sym__unquoted_pattern] = ACTIONS(866), [anon_sym_POUND] = ACTIONS(3), }, [STATE(489)] = { [sym_comment] = STATE(489), + [anon_sym_in] = ACTIONS(1784), + [sym__newline] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_err_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_GT_PIPE] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), + [anon_sym_RPAREN] = ACTIONS(1784), + [anon_sym_GT2] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1784), + [anon_sym_xor2] = ACTIONS(1784), + [anon_sym_or2] = ACTIONS(1784), + [anon_sym_not_DASHin2] = ACTIONS(1784), + [anon_sym_has2] = ACTIONS(1784), + [anon_sym_not_DASHhas2] = ACTIONS(1784), + [anon_sym_starts_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), + [anon_sym_ends_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), + [anon_sym_EQ_EQ2] = ACTIONS(1784), + [anon_sym_BANG_EQ2] = ACTIONS(1784), + [anon_sym_LT2] = ACTIONS(1786), + [anon_sym_LT_EQ2] = ACTIONS(1784), + [anon_sym_GT_EQ2] = ACTIONS(1784), + [anon_sym_EQ_TILDE2] = ACTIONS(1784), + [anon_sym_BANG_TILDE2] = ACTIONS(1784), + [anon_sym_like2] = ACTIONS(1784), + [anon_sym_not_DASHlike2] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1784), + [anon_sym_PLUS_PLUS2] = ACTIONS(1784), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1784), + [anon_sym_SLASH_SLASH2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_bit_DASHshl2] = ACTIONS(1784), + [anon_sym_bit_DASHshr2] = ACTIONS(1784), + [anon_sym_bit_DASHand2] = ACTIONS(1784), + [anon_sym_bit_DASHxor2] = ACTIONS(1784), + [anon_sym_bit_DASHor2] = ACTIONS(1784), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), + [aux_sym__immediate_decimal_token5] = ACTIONS(1790), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1784), + [anon_sym_out_GT_GT] = ACTIONS(1784), + [anon_sym_e_GT_GT] = ACTIONS(1784), + [anon_sym_o_GT_GT] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), + [sym__unquoted_pattern] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(490)] = { + [sym_comment] = STATE(490), + [anon_sym_EQ] = ACTIONS(1850), + [anon_sym_PLUS_EQ] = ACTIONS(1852), + [anon_sym_DASH_EQ] = ACTIONS(1852), + [anon_sym_STAR_EQ] = ACTIONS(1852), + [anon_sym_SLASH_EQ] = ACTIONS(1852), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(491)] = { + [sym_comment] = STATE(491), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(492)] = { + [sym_comment] = STATE(492), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), @@ -86915,6 +87512,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(1818), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -86936,227 +87534,1616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(490)] = { - [sym_comment] = STATE(490), - [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_LBRACE] = 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_QMARK2] = ACTIONS(1522), - [anon_sym_BANG] = 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(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), + [STATE(493)] = { + [sym_comment] = STATE(493), + [anon_sym_if] = 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_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_DOT_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1854), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1854), + [anon_sym_COLON2] = 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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(491)] = { - [sym_cell_path] = STATE(927), - [sym_path] = STATE(458), - [sym_comment] = STATE(491), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), - [anon_sym_in] = ACTIONS(1871), - [sym__newline] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1871), - [anon_sym_err_GT_PIPE] = ACTIONS(1871), - [anon_sym_out_GT_PIPE] = ACTIONS(1871), - [anon_sym_e_GT_PIPE] = ACTIONS(1871), - [anon_sym_o_GT_PIPE] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1871), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_GT2] = ACTIONS(1874), - [anon_sym_DASH2] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_EQ_GT] = ACTIONS(1871), - [anon_sym_STAR2] = ACTIONS(1874), - [anon_sym_and2] = ACTIONS(1871), - [anon_sym_xor2] = ACTIONS(1871), - [anon_sym_or2] = ACTIONS(1871), - [anon_sym_not_DASHin2] = ACTIONS(1871), - [anon_sym_has2] = ACTIONS(1871), - [anon_sym_not_DASHhas2] = ACTIONS(1871), - [anon_sym_starts_DASHwith2] = ACTIONS(1871), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1871), - [anon_sym_ends_DASHwith2] = ACTIONS(1871), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1871), - [anon_sym_EQ_EQ2] = ACTIONS(1871), - [anon_sym_BANG_EQ2] = ACTIONS(1871), - [anon_sym_LT2] = ACTIONS(1874), - [anon_sym_LT_EQ2] = ACTIONS(1871), - [anon_sym_GT_EQ2] = ACTIONS(1871), - [anon_sym_EQ_TILDE2] = ACTIONS(1871), - [anon_sym_BANG_TILDE2] = ACTIONS(1871), - [anon_sym_like2] = ACTIONS(1871), - [anon_sym_not_DASHlike2] = ACTIONS(1871), - [anon_sym_STAR_STAR2] = ACTIONS(1871), - [anon_sym_PLUS_PLUS2] = ACTIONS(1871), - [anon_sym_SLASH2] = ACTIONS(1874), - [anon_sym_mod2] = ACTIONS(1871), - [anon_sym_SLASH_SLASH2] = ACTIONS(1871), - [anon_sym_PLUS2] = ACTIONS(1874), - [anon_sym_bit_DASHshl2] = ACTIONS(1871), - [anon_sym_bit_DASHshr2] = ACTIONS(1871), - [anon_sym_bit_DASHand2] = ACTIONS(1871), - [anon_sym_bit_DASHxor2] = ACTIONS(1871), - [anon_sym_bit_DASHor2] = ACTIONS(1871), - [anon_sym_DOT2] = ACTIONS(1877), - [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(1871), - [anon_sym_out_GT_GT] = ACTIONS(1871), - [anon_sym_e_GT_GT] = ACTIONS(1871), - [anon_sym_o_GT_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1871), + [STATE(494)] = { + [sym_comment] = STATE(494), + [anon_sym_EQ] = ACTIONS(1858), + [anon_sym_PLUS_EQ] = ACTIONS(1860), + [anon_sym_DASH_EQ] = ACTIONS(1860), + [anon_sym_STAR_EQ] = ACTIONS(1860), + [anon_sym_SLASH_EQ] = ACTIONS(1860), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(492)] = { - [sym_comment] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_GT2] = ACTIONS(1504), - [anon_sym_DASH2] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_STAR2] = ACTIONS(1504), - [anon_sym_and2] = ACTIONS(1506), - [anon_sym_xor2] = ACTIONS(1506), - [anon_sym_or2] = ACTIONS(1506), - [anon_sym_not_DASHin2] = ACTIONS(1506), - [anon_sym_has2] = ACTIONS(1506), - [anon_sym_not_DASHhas2] = ACTIONS(1506), - [anon_sym_starts_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), - [anon_sym_ends_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), - [anon_sym_EQ_EQ2] = ACTIONS(1506), - [anon_sym_BANG_EQ2] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ2] = ACTIONS(1506), - [anon_sym_GT_EQ2] = ACTIONS(1506), - [anon_sym_EQ_TILDE2] = ACTIONS(1506), - [anon_sym_BANG_TILDE2] = ACTIONS(1506), - [anon_sym_like2] = ACTIONS(1506), - [anon_sym_not_DASHlike2] = ACTIONS(1506), - [anon_sym_STAR_STAR2] = ACTIONS(1506), - [anon_sym_PLUS_PLUS2] = ACTIONS(1506), - [anon_sym_SLASH2] = ACTIONS(1504), - [anon_sym_mod2] = ACTIONS(1506), - [anon_sym_SLASH_SLASH2] = ACTIONS(1506), - [anon_sym_PLUS2] = ACTIONS(1504), - [anon_sym_bit_DASHshl2] = ACTIONS(1506), - [anon_sym_bit_DASHshr2] = ACTIONS(1506), - [anon_sym_bit_DASHand2] = ACTIONS(1506), - [anon_sym_bit_DASHxor2] = ACTIONS(1506), - [anon_sym_bit_DASHor2] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_QMARK2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [STATE(495)] = { + [sym_comment] = STATE(495), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_PLUS_EQ] = ACTIONS(1864), + [anon_sym_DASH_EQ] = ACTIONS(1864), + [anon_sym_STAR_EQ] = ACTIONS(1864), + [anon_sym_SLASH_EQ] = ACTIONS(1864), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1864), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(493)] = { - [sym_comment] = STATE(493), + [STATE(496)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(4520), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4923), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(496), + [aux_sym__types_body_repeat1] = STATE(1498), + [aux_sym__match_pattern_record_body_repeat1] = STATE(735), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1766), + [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(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), + [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(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [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(1764), + }, + [STATE(497)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4775), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(497), + [aux_sym__types_body_repeat1] = STATE(1498), + [aux_sym_record_body_repeat1] = STATE(706), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [sym__newline] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), + [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(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), + [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(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [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(1764), + }, + [STATE(498)] = { + [sym_cell_path] = STATE(953), + [sym_path] = STATE(470), + [sym_comment] = STATE(498), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_EQ_GT] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1868), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_has2] = ACTIONS(1866), + [anon_sym_not_DASHhas2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1868), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_like2] = ACTIONS(1866), + [anon_sym_not_DASHlike2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1868), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1868), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1868), + [anon_sym_out_GT] = ACTIONS(1868), + [anon_sym_e_GT] = ACTIONS(1868), + [anon_sym_o_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT] = ACTIONS(1868), + [anon_sym_err_GT_GT] = ACTIONS(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(499)] = { + [sym_cell_path] = STATE(954), + [sym_path] = STATE(470), + [sym_comment] = STATE(499), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [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(1875), + [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(1875), + [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(1875), + [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(1875), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1875), + [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(1870), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(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(500)] = { + [sym_comment] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(501)] = { + [sym_comment] = STATE(501), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(777), + [sym__newline] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_err_GT_PIPE] = ACTIONS(777), + [anon_sym_out_GT_PIPE] = ACTIONS(777), + [anon_sym_e_GT_PIPE] = ACTIONS(777), + [anon_sym_o_GT_PIPE] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(777), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(777), + [anon_sym_xor2] = ACTIONS(777), + [anon_sym_or2] = ACTIONS(777), + [anon_sym_not_DASHin2] = ACTIONS(777), + [anon_sym_has2] = ACTIONS(777), + [anon_sym_not_DASHhas2] = ACTIONS(777), + [anon_sym_starts_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), + [anon_sym_ends_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), + [anon_sym_EQ_EQ2] = ACTIONS(777), + [anon_sym_BANG_EQ2] = ACTIONS(777), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(777), + [anon_sym_GT_EQ2] = ACTIONS(777), + [anon_sym_EQ_TILDE2] = ACTIONS(777), + [anon_sym_BANG_TILDE2] = ACTIONS(777), + [anon_sym_like2] = ACTIONS(777), + [anon_sym_not_DASHlike2] = ACTIONS(777), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_STAR_STAR2] = ACTIONS(777), + [anon_sym_PLUS_PLUS2] = ACTIONS(777), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(777), + [anon_sym_SLASH_SLASH2] = ACTIONS(777), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(777), + [anon_sym_bit_DASHshr2] = ACTIONS(777), + [anon_sym_bit_DASHand2] = ACTIONS(777), + [anon_sym_bit_DASHxor2] = ACTIONS(777), + [anon_sym_bit_DASHor2] = ACTIONS(777), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(777), + [anon_sym_out_GT_GT] = ACTIONS(777), + [anon_sym_e_GT_GT] = ACTIONS(777), + [anon_sym_o_GT_GT] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), + [sym__unquoted_pattern] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(502)] = { + [sym_comment] = STATE(502), + [ts_builtin_sym_end] = ACTIONS(868), + [anon_sym_in] = ACTIONS(868), + [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(866), + [anon_sym_DASH2] = ACTIONS(868), + [anon_sym_STAR2] = ACTIONS(866), + [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(866), + [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_LPAREN2] = ACTIONS(868), + [anon_sym_STAR_STAR2] = ACTIONS(868), + [anon_sym_PLUS_PLUS2] = ACTIONS(868), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(868), + [anon_sym_SLASH_SLASH2] = ACTIONS(868), + [anon_sym_PLUS2] = ACTIONS(866), + [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(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(866), + [sym_duration_unit] = ACTIONS(868), + [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(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), + [sym__unquoted_pattern] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(503)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(503), + [anon_sym_else] = ACTIONS(1878), + [anon_sym_catch] = ACTIONS(1878), + [anon_sym_finally] = ACTIONS(1878), + [anon_sym_in] = ACTIONS(1878), + [sym__newline] = ACTIONS(1880), + [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_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_GT2] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_STAR2] = ACTIONS(1883), + [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(1883), + [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(1883), + [anon_sym_mod2] = ACTIONS(1878), + [anon_sym_SLASH_SLASH2] = ACTIONS(1878), + [anon_sym_PLUS2] = ACTIONS(1883), + [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_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(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(504)] = { + [sym_comment] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1482), + [anon_sym_in] = ACTIONS(1482), + [sym__newline] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_err_GT_PIPE] = ACTIONS(1482), + [anon_sym_out_GT_PIPE] = ACTIONS(1482), + [anon_sym_e_GT_PIPE] = ACTIONS(1482), + [anon_sym_o_GT_PIPE] = ACTIONS(1482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), + [anon_sym_GT2] = ACTIONS(1480), + [anon_sym_DASH2] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_STAR2] = ACTIONS(1480), + [anon_sym_and2] = ACTIONS(1482), + [anon_sym_xor2] = ACTIONS(1482), + [anon_sym_or2] = ACTIONS(1482), + [anon_sym_not_DASHin2] = ACTIONS(1482), + [anon_sym_has2] = ACTIONS(1482), + [anon_sym_not_DASHhas2] = ACTIONS(1482), + [anon_sym_starts_DASHwith2] = ACTIONS(1482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1482), + [anon_sym_ends_DASHwith2] = ACTIONS(1482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1482), + [anon_sym_EQ_EQ2] = ACTIONS(1482), + [anon_sym_BANG_EQ2] = ACTIONS(1482), + [anon_sym_LT2] = ACTIONS(1480), + [anon_sym_LT_EQ2] = ACTIONS(1482), + [anon_sym_GT_EQ2] = ACTIONS(1482), + [anon_sym_EQ_TILDE2] = ACTIONS(1482), + [anon_sym_BANG_TILDE2] = ACTIONS(1482), + [anon_sym_like2] = ACTIONS(1482), + [anon_sym_not_DASHlike2] = ACTIONS(1482), + [anon_sym_STAR_STAR2] = ACTIONS(1482), + [anon_sym_PLUS_PLUS2] = ACTIONS(1482), + [anon_sym_SLASH2] = ACTIONS(1480), + [anon_sym_mod2] = ACTIONS(1482), + [anon_sym_SLASH_SLASH2] = ACTIONS(1482), + [anon_sym_PLUS2] = ACTIONS(1480), + [anon_sym_bit_DASHshl2] = ACTIONS(1482), + [anon_sym_bit_DASHshr2] = ACTIONS(1482), + [anon_sym_bit_DASHand2] = ACTIONS(1482), + [anon_sym_bit_DASHxor2] = ACTIONS(1482), + [anon_sym_bit_DASHor2] = ACTIONS(1482), + [anon_sym_DOT_DOT2] = ACTIONS(1480), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1482), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1482), + [anon_sym_QMARK2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DOT2] = ACTIONS(1480), + [anon_sym_err_GT] = ACTIONS(1480), + [anon_sym_out_GT] = ACTIONS(1480), + [anon_sym_e_GT] = ACTIONS(1480), + [anon_sym_o_GT] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT] = ACTIONS(1480), + [anon_sym_err_GT_GT] = ACTIONS(1482), + [anon_sym_out_GT_GT] = ACTIONS(1482), + [anon_sym_e_GT_GT] = ACTIONS(1482), + [anon_sym_o_GT_GT] = ACTIONS(1482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(505)] = { + [sym_comment] = STATE(505), + [ts_builtin_sym_end] = 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(1522), + [anon_sym_DASH2] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_STAR2] = ACTIONS(1522), + [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(1522), + [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(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [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(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_QMARK2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [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(3), + }, + [STATE(506)] = { + [sym_cell_path] = STATE(974), + [sym_path] = STATE(470), + [sym_comment] = STATE(506), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1885), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_RPAREN] = ACTIONS(1885), + [anon_sym_GT2] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_EQ_GT] = ACTIONS(1885), + [anon_sym_STAR2] = ACTIONS(1887), + [anon_sym_and2] = ACTIONS(1885), + [anon_sym_xor2] = ACTIONS(1885), + [anon_sym_or2] = ACTIONS(1885), + [anon_sym_not_DASHin2] = ACTIONS(1885), + [anon_sym_has2] = ACTIONS(1885), + [anon_sym_not_DASHhas2] = ACTIONS(1885), + [anon_sym_starts_DASHwith2] = ACTIONS(1885), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1885), + [anon_sym_ends_DASHwith2] = ACTIONS(1885), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1885), + [anon_sym_EQ_EQ2] = ACTIONS(1885), + [anon_sym_BANG_EQ2] = ACTIONS(1885), + [anon_sym_LT2] = ACTIONS(1887), + [anon_sym_LT_EQ2] = ACTIONS(1885), + [anon_sym_GT_EQ2] = ACTIONS(1885), + [anon_sym_EQ_TILDE2] = ACTIONS(1885), + [anon_sym_BANG_TILDE2] = ACTIONS(1885), + [anon_sym_like2] = ACTIONS(1885), + [anon_sym_not_DASHlike2] = ACTIONS(1885), + [anon_sym_STAR_STAR2] = ACTIONS(1885), + [anon_sym_PLUS_PLUS2] = ACTIONS(1885), + [anon_sym_SLASH2] = ACTIONS(1887), + [anon_sym_mod2] = ACTIONS(1885), + [anon_sym_SLASH_SLASH2] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_bit_DASHshl2] = ACTIONS(1885), + [anon_sym_bit_DASHshr2] = ACTIONS(1885), + [anon_sym_bit_DASHand2] = ACTIONS(1885), + [anon_sym_bit_DASHxor2] = ACTIONS(1885), + [anon_sym_bit_DASHor2] = ACTIONS(1885), + [anon_sym_DOT2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1887), + [anon_sym_out_GT] = ACTIONS(1887), + [anon_sym_e_GT] = ACTIONS(1887), + [anon_sym_o_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT] = ACTIONS(1887), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(507)] = { + [sym_cell_path] = STATE(772), + [sym_path] = STATE(470), + [sym_comment] = STATE(507), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1889), + [sym__newline] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_err_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_GT_PIPE] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_GT2] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_EQ_GT] = ACTIONS(1889), + [anon_sym_STAR2] = ACTIONS(1891), + [anon_sym_and2] = ACTIONS(1889), + [anon_sym_xor2] = ACTIONS(1889), + [anon_sym_or2] = ACTIONS(1889), + [anon_sym_not_DASHin2] = ACTIONS(1889), + [anon_sym_has2] = ACTIONS(1889), + [anon_sym_not_DASHhas2] = ACTIONS(1889), + [anon_sym_starts_DASHwith2] = ACTIONS(1889), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1889), + [anon_sym_ends_DASHwith2] = ACTIONS(1889), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1889), + [anon_sym_EQ_EQ2] = ACTIONS(1889), + [anon_sym_BANG_EQ2] = ACTIONS(1889), + [anon_sym_LT2] = ACTIONS(1891), + [anon_sym_LT_EQ2] = ACTIONS(1889), + [anon_sym_GT_EQ2] = ACTIONS(1889), + [anon_sym_EQ_TILDE2] = ACTIONS(1889), + [anon_sym_BANG_TILDE2] = ACTIONS(1889), + [anon_sym_like2] = ACTIONS(1889), + [anon_sym_not_DASHlike2] = ACTIONS(1889), + [anon_sym_STAR_STAR2] = ACTIONS(1889), + [anon_sym_PLUS_PLUS2] = ACTIONS(1889), + [anon_sym_SLASH2] = ACTIONS(1891), + [anon_sym_mod2] = ACTIONS(1889), + [anon_sym_SLASH_SLASH2] = ACTIONS(1889), + [anon_sym_PLUS2] = ACTIONS(1891), + [anon_sym_bit_DASHshl2] = ACTIONS(1889), + [anon_sym_bit_DASHshr2] = ACTIONS(1889), + [anon_sym_bit_DASHand2] = ACTIONS(1889), + [anon_sym_bit_DASHxor2] = ACTIONS(1889), + [anon_sym_bit_DASHor2] = ACTIONS(1889), + [anon_sym_DOT2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1889), + [anon_sym_out_GT_GT] = ACTIONS(1889), + [anon_sym_e_GT_GT] = ACTIONS(1889), + [anon_sym_o_GT_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(508)] = { + [sym_cell_path] = STATE(978), + [sym_path] = STATE(470), + [sym_comment] = STATE(508), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1893), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_GT2] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_EQ_GT] = ACTIONS(1893), + [anon_sym_STAR2] = ACTIONS(1895), + [anon_sym_and2] = ACTIONS(1893), + [anon_sym_xor2] = ACTIONS(1893), + [anon_sym_or2] = ACTIONS(1893), + [anon_sym_not_DASHin2] = ACTIONS(1893), + [anon_sym_has2] = ACTIONS(1893), + [anon_sym_not_DASHhas2] = ACTIONS(1893), + [anon_sym_starts_DASHwith2] = ACTIONS(1893), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1893), + [anon_sym_ends_DASHwith2] = ACTIONS(1893), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1893), + [anon_sym_EQ_EQ2] = ACTIONS(1893), + [anon_sym_BANG_EQ2] = ACTIONS(1893), + [anon_sym_LT2] = ACTIONS(1895), + [anon_sym_LT_EQ2] = ACTIONS(1893), + [anon_sym_GT_EQ2] = ACTIONS(1893), + [anon_sym_EQ_TILDE2] = ACTIONS(1893), + [anon_sym_BANG_TILDE2] = ACTIONS(1893), + [anon_sym_like2] = ACTIONS(1893), + [anon_sym_not_DASHlike2] = ACTIONS(1893), + [anon_sym_STAR_STAR2] = ACTIONS(1893), + [anon_sym_PLUS_PLUS2] = ACTIONS(1893), + [anon_sym_SLASH2] = ACTIONS(1895), + [anon_sym_mod2] = ACTIONS(1893), + [anon_sym_SLASH_SLASH2] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_bit_DASHshl2] = ACTIONS(1893), + [anon_sym_bit_DASHshr2] = ACTIONS(1893), + [anon_sym_bit_DASHand2] = ACTIONS(1893), + [anon_sym_bit_DASHxor2] = ACTIONS(1893), + [anon_sym_bit_DASHor2] = ACTIONS(1893), + [anon_sym_DOT2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(509)] = { + [sym_comment] = STATE(509), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [sym__newline] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_err_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_GT_PIPE] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_GT2] = ACTIONS(1899), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_EQ_GT] = ACTIONS(1897), + [anon_sym_STAR2] = ACTIONS(1899), + [anon_sym_and2] = ACTIONS(1897), + [anon_sym_xor2] = ACTIONS(1897), + [anon_sym_or2] = ACTIONS(1897), + [anon_sym_not_DASHin2] = ACTIONS(1897), + [anon_sym_has2] = ACTIONS(1897), + [anon_sym_not_DASHhas2] = ACTIONS(1897), + [anon_sym_starts_DASHwith2] = ACTIONS(1897), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1897), + [anon_sym_ends_DASHwith2] = ACTIONS(1897), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1897), + [anon_sym_EQ_EQ2] = ACTIONS(1897), + [anon_sym_BANG_EQ2] = ACTIONS(1897), + [anon_sym_LT2] = ACTIONS(1899), + [anon_sym_LT_EQ2] = ACTIONS(1897), + [anon_sym_GT_EQ2] = ACTIONS(1897), + [anon_sym_EQ_TILDE2] = ACTIONS(1897), + [anon_sym_BANG_TILDE2] = ACTIONS(1897), + [anon_sym_like2] = ACTIONS(1897), + [anon_sym_not_DASHlike2] = ACTIONS(1897), + [anon_sym_STAR_STAR2] = ACTIONS(1897), + [anon_sym_PLUS_PLUS2] = ACTIONS(1897), + [anon_sym_SLASH2] = ACTIONS(1899), + [anon_sym_mod2] = ACTIONS(1897), + [anon_sym_SLASH_SLASH2] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(1899), + [anon_sym_bit_DASHshl2] = ACTIONS(1897), + [anon_sym_bit_DASHshr2] = ACTIONS(1897), + [anon_sym_bit_DASHand2] = ACTIONS(1897), + [anon_sym_bit_DASHxor2] = ACTIONS(1897), + [anon_sym_bit_DASHor2] = ACTIONS(1897), + [anon_sym_DOT_DOT2] = ACTIONS(1899), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1897), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1899), + [anon_sym_out_GT] = ACTIONS(1899), + [anon_sym_e_GT] = ACTIONS(1899), + [anon_sym_o_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT] = ACTIONS(1899), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(510)] = { + [sym_cell_path] = STATE(783), + [sym_path] = STATE(470), + [sym_comment] = STATE(510), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1901), + [sym__newline] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_err_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_GT_PIPE] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), + [anon_sym_RPAREN] = ACTIONS(1901), + [anon_sym_GT2] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(1901), + [anon_sym_STAR2] = ACTIONS(1903), + [anon_sym_and2] = ACTIONS(1901), + [anon_sym_xor2] = ACTIONS(1901), + [anon_sym_or2] = ACTIONS(1901), + [anon_sym_not_DASHin2] = ACTIONS(1901), + [anon_sym_has2] = ACTIONS(1901), + [anon_sym_not_DASHhas2] = ACTIONS(1901), + [anon_sym_starts_DASHwith2] = ACTIONS(1901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1901), + [anon_sym_ends_DASHwith2] = ACTIONS(1901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1901), + [anon_sym_EQ_EQ2] = ACTIONS(1901), + [anon_sym_BANG_EQ2] = ACTIONS(1901), + [anon_sym_LT2] = ACTIONS(1903), + [anon_sym_LT_EQ2] = ACTIONS(1901), + [anon_sym_GT_EQ2] = ACTIONS(1901), + [anon_sym_EQ_TILDE2] = ACTIONS(1901), + [anon_sym_BANG_TILDE2] = ACTIONS(1901), + [anon_sym_like2] = ACTIONS(1901), + [anon_sym_not_DASHlike2] = ACTIONS(1901), + [anon_sym_STAR_STAR2] = ACTIONS(1901), + [anon_sym_PLUS_PLUS2] = ACTIONS(1901), + [anon_sym_SLASH2] = ACTIONS(1903), + [anon_sym_mod2] = ACTIONS(1901), + [anon_sym_SLASH_SLASH2] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1903), + [anon_sym_bit_DASHshl2] = ACTIONS(1901), + [anon_sym_bit_DASHshr2] = ACTIONS(1901), + [anon_sym_bit_DASHand2] = ACTIONS(1901), + [anon_sym_bit_DASHxor2] = ACTIONS(1901), + [anon_sym_bit_DASHor2] = ACTIONS(1901), + [anon_sym_DOT2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1903), + [anon_sym_out_GT] = ACTIONS(1903), + [anon_sym_e_GT] = ACTIONS(1903), + [anon_sym_o_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT] = ACTIONS(1903), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(511)] = { + [sym_comment] = STATE(511), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_in] = ACTIONS(1905), + [sym__newline] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_err_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_GT_PIPE] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(1905), + [anon_sym_GT2] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_EQ_GT] = ACTIONS(1905), + [anon_sym_STAR2] = ACTIONS(1907), + [anon_sym_and2] = ACTIONS(1905), + [anon_sym_xor2] = ACTIONS(1905), + [anon_sym_or2] = ACTIONS(1905), + [anon_sym_not_DASHin2] = ACTIONS(1905), + [anon_sym_has2] = ACTIONS(1905), + [anon_sym_not_DASHhas2] = ACTIONS(1905), + [anon_sym_starts_DASHwith2] = ACTIONS(1905), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1905), + [anon_sym_ends_DASHwith2] = ACTIONS(1905), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1905), + [anon_sym_EQ_EQ2] = ACTIONS(1905), + [anon_sym_BANG_EQ2] = ACTIONS(1905), + [anon_sym_LT2] = ACTIONS(1907), + [anon_sym_LT_EQ2] = ACTIONS(1905), + [anon_sym_GT_EQ2] = ACTIONS(1905), + [anon_sym_EQ_TILDE2] = ACTIONS(1905), + [anon_sym_BANG_TILDE2] = ACTIONS(1905), + [anon_sym_like2] = ACTIONS(1905), + [anon_sym_not_DASHlike2] = ACTIONS(1905), + [anon_sym_STAR_STAR2] = ACTIONS(1905), + [anon_sym_PLUS_PLUS2] = ACTIONS(1905), + [anon_sym_SLASH2] = ACTIONS(1907), + [anon_sym_mod2] = ACTIONS(1905), + [anon_sym_SLASH_SLASH2] = ACTIONS(1905), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_bit_DASHshl2] = ACTIONS(1905), + [anon_sym_bit_DASHshr2] = ACTIONS(1905), + [anon_sym_bit_DASHand2] = ACTIONS(1905), + [anon_sym_bit_DASHxor2] = ACTIONS(1905), + [anon_sym_bit_DASHor2] = ACTIONS(1905), + [anon_sym_DOT_DOT2] = ACTIONS(1907), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1905), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1905), + [anon_sym_err_GT] = ACTIONS(1907), + [anon_sym_out_GT] = ACTIONS(1907), + [anon_sym_e_GT] = ACTIONS(1907), + [anon_sym_o_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT] = ACTIONS(1907), + [anon_sym_err_GT_GT] = ACTIONS(1905), + [anon_sym_out_GT_GT] = ACTIONS(1905), + [anon_sym_e_GT_GT] = ACTIONS(1905), + [anon_sym_o_GT_GT] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(512)] = { + [sym_comment] = STATE(512), + [ts_builtin_sym_end] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1784), + [sym__newline] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_err_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_GT_PIPE] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), + [anon_sym_GT2] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1784), + [anon_sym_xor2] = ACTIONS(1784), + [anon_sym_or2] = ACTIONS(1784), + [anon_sym_not_DASHin2] = ACTIONS(1784), + [anon_sym_has2] = ACTIONS(1784), + [anon_sym_not_DASHhas2] = ACTIONS(1784), + [anon_sym_starts_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), + [anon_sym_ends_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), + [anon_sym_EQ_EQ2] = ACTIONS(1784), + [anon_sym_BANG_EQ2] = ACTIONS(1784), + [anon_sym_LT2] = ACTIONS(1786), + [anon_sym_LT_EQ2] = ACTIONS(1784), + [anon_sym_GT_EQ2] = ACTIONS(1784), + [anon_sym_EQ_TILDE2] = ACTIONS(1784), + [anon_sym_BANG_TILDE2] = ACTIONS(1784), + [anon_sym_like2] = ACTIONS(1784), + [anon_sym_not_DASHlike2] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1784), + [anon_sym_PLUS_PLUS2] = ACTIONS(1784), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1784), + [anon_sym_SLASH_SLASH2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_bit_DASHshl2] = ACTIONS(1784), + [anon_sym_bit_DASHshr2] = ACTIONS(1784), + [anon_sym_bit_DASHand2] = ACTIONS(1784), + [anon_sym_bit_DASHxor2] = ACTIONS(1784), + [anon_sym_bit_DASHor2] = ACTIONS(1784), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), + [aux_sym__immediate_decimal_token5] = ACTIONS(1911), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1784), + [anon_sym_out_GT_GT] = ACTIONS(1784), + [anon_sym_e_GT_GT] = ACTIONS(1784), + [anon_sym_o_GT_GT] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), + [sym__unquoted_pattern] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(513)] = { + [sym_cell_path] = STATE(959), + [sym_path] = STATE(703), + [sym_comment] = STATE(513), + [aux_sym__where_predicate_lhs_repeat1] = STATE(669), + [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_GT2] = ACTIONS(1677), + [anon_sym_DASH2] = 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_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), + [anon_sym_DOT_DOT2] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_DOT2] = ACTIONS(1913), + [anon_sym_err_GT] = ACTIONS(1677), + [anon_sym_out_GT] = ACTIONS(1677), + [anon_sym_e_GT] = ACTIONS(1677), + [anon_sym_o_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT] = ACTIONS(1677), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(514)] = { + [sym__path_suffix] = STATE(726), + [sym_comment] = STATE(514), + [ts_builtin_sym_end] = 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(1448), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [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(1448), + [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(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [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(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [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(3), + }, + [STATE(515)] = { + [sym_comment] = STATE(515), [anon_sym_in] = ACTIONS(1730), [sym__newline] = ACTIONS(1730), [anon_sym_SEMI] = ACTIONS(1730), @@ -87228,8 +89215,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(494)] = { - [sym_comment] = STATE(494), + [STATE(516)] = { + [sym_comment] = STATE(516), + [anon_sym_in] = ACTIONS(1832), + [sym__newline] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_err_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_GT_PIPE] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_GT2] = ACTIONS(1834), + [anon_sym_DASH2] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_STAR2] = ACTIONS(1834), + [anon_sym_and2] = ACTIONS(1832), + [anon_sym_xor2] = ACTIONS(1832), + [anon_sym_or2] = ACTIONS(1832), + [anon_sym_not_DASHin2] = ACTIONS(1832), + [anon_sym_has2] = ACTIONS(1832), + [anon_sym_not_DASHhas2] = ACTIONS(1832), + [anon_sym_starts_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), + [anon_sym_ends_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), + [anon_sym_EQ_EQ2] = ACTIONS(1832), + [anon_sym_BANG_EQ2] = ACTIONS(1832), + [anon_sym_LT2] = ACTIONS(1834), + [anon_sym_LT_EQ2] = ACTIONS(1832), + [anon_sym_GT_EQ2] = ACTIONS(1832), + [anon_sym_EQ_TILDE2] = ACTIONS(1832), + [anon_sym_BANG_TILDE2] = ACTIONS(1832), + [anon_sym_like2] = ACTIONS(1832), + [anon_sym_not_DASHlike2] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_STAR_STAR2] = ACTIONS(1832), + [anon_sym_PLUS_PLUS2] = ACTIONS(1832), + [anon_sym_SLASH2] = ACTIONS(1834), + [anon_sym_mod2] = ACTIONS(1832), + [anon_sym_SLASH_SLASH2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1834), + [anon_sym_bit_DASHshl2] = ACTIONS(1832), + [anon_sym_bit_DASHshr2] = ACTIONS(1832), + [anon_sym_bit_DASHand2] = ACTIONS(1832), + [anon_sym_bit_DASHxor2] = ACTIONS(1832), + [anon_sym_bit_DASHor2] = ACTIONS(1832), + [anon_sym_DOT_DOT2] = ACTIONS(1834), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1832), + [anon_sym_err_GT] = ACTIONS(1834), + [anon_sym_out_GT] = ACTIONS(1834), + [anon_sym_e_GT] = ACTIONS(1834), + [anon_sym_o_GT] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT] = ACTIONS(1834), + [anon_sym_err_GT_GT] = ACTIONS(1832), + [anon_sym_out_GT_GT] = ACTIONS(1832), + [anon_sym_e_GT_GT] = ACTIONS(1832), + [anon_sym_o_GT_GT] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), + [sym__unquoted_pattern] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(517)] = { + [sym_comment] = STATE(517), + [anon_sym_in] = ACTIONS(1919), + [sym__newline] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_err_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_GT_PIPE] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_GT2] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_STAR2] = ACTIONS(1921), + [anon_sym_and2] = ACTIONS(1919), + [anon_sym_xor2] = ACTIONS(1919), + [anon_sym_or2] = ACTIONS(1919), + [anon_sym_not_DASHin2] = ACTIONS(1919), + [anon_sym_has2] = ACTIONS(1919), + [anon_sym_not_DASHhas2] = ACTIONS(1919), + [anon_sym_starts_DASHwith2] = ACTIONS(1919), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1919), + [anon_sym_ends_DASHwith2] = ACTIONS(1919), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1919), + [anon_sym_EQ_EQ2] = ACTIONS(1919), + [anon_sym_BANG_EQ2] = ACTIONS(1919), + [anon_sym_LT2] = ACTIONS(1921), + [anon_sym_LT_EQ2] = ACTIONS(1919), + [anon_sym_GT_EQ2] = ACTIONS(1919), + [anon_sym_EQ_TILDE2] = ACTIONS(1919), + [anon_sym_BANG_TILDE2] = ACTIONS(1919), + [anon_sym_like2] = ACTIONS(1919), + [anon_sym_not_DASHlike2] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1919), + [anon_sym_STAR_STAR2] = ACTIONS(1919), + [anon_sym_PLUS_PLUS2] = ACTIONS(1919), + [anon_sym_SLASH2] = ACTIONS(1921), + [anon_sym_mod2] = ACTIONS(1919), + [anon_sym_SLASH_SLASH2] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1921), + [anon_sym_bit_DASHshl2] = ACTIONS(1919), + [anon_sym_bit_DASHshr2] = ACTIONS(1919), + [anon_sym_bit_DASHand2] = ACTIONS(1919), + [anon_sym_bit_DASHxor2] = ACTIONS(1919), + [anon_sym_bit_DASHor2] = ACTIONS(1919), + [anon_sym_DOT_DOT2] = ACTIONS(1921), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1919), + [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(1919), + [anon_sym_out_GT_GT] = ACTIONS(1919), + [anon_sym_e_GT_GT] = ACTIONS(1919), + [anon_sym_o_GT_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), + [sym__unquoted_pattern] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(518)] = { + [sym_comment] = STATE(518), + [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_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_EQ_GT] = ACTIONS(1582), + [anon_sym_STAR2] = ACTIONS(1580), + [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(1580), + [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_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1582), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1580), + [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_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [anon_sym_COLON2] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [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(519)] = { + [sym_comment] = STATE(519), + [ts_builtin_sym_end] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_GT2] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1530), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1530), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_like2] = ACTIONS(1532), + [anon_sym_not_DASHlike2] = ACTIONS(1532), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1530), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT_DOT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), + [anon_sym_QMARK2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(520)] = { + [sym_cell_path] = STATE(948), + [sym_path] = STATE(703), + [sym_comment] = STATE(520), + [aux_sym__where_predicate_lhs_repeat1] = STATE(669), + [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(1691), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1691), + [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(1691), + [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(1691), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1691), + [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(1691), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1689), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1689), + [anon_sym_DOT2] = ACTIONS(1913), + [anon_sym_err_GT] = ACTIONS(1691), + [anon_sym_out_GT] = ACTIONS(1691), + [anon_sym_e_GT] = ACTIONS(1691), + [anon_sym_o_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT] = ACTIONS(1691), + [anon_sym_err_GT_GT] = ACTIONS(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(521)] = { + [sym_comment] = STATE(521), [ts_builtin_sym_end] = ACTIONS(1730), [anon_sym_in] = ACTIONS(1730), [sym__newline] = ACTIONS(1730), @@ -87280,8 +89632,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1732), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1730), [anon_sym_DOT_DOT_LT2] = ACTIONS(1730), - [aux_sym__immediate_decimal_token1] = ACTIONS(1879), - [aux_sym__immediate_decimal_token5] = ACTIONS(1881), + [aux_sym__immediate_decimal_token1] = ACTIONS(1923), + [aux_sym__immediate_decimal_token5] = ACTIONS(1925), [anon_sym_err_GT] = ACTIONS(1732), [anon_sym_out_GT] = ACTIONS(1732), [anon_sym_e_GT] = ACTIONS(1732), @@ -87301,1031 +89653,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(495)] = { - [sym_cell_path] = STATE(914), - [sym_path] = STATE(458), - [sym_comment] = STATE(495), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), - [anon_sym_in] = ACTIONS(1883), - [sym__newline] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_PIPE] = ACTIONS(1883), - [anon_sym_err_GT_PIPE] = ACTIONS(1883), - [anon_sym_out_GT_PIPE] = ACTIONS(1883), - [anon_sym_e_GT_PIPE] = ACTIONS(1883), - [anon_sym_o_GT_PIPE] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1883), - [anon_sym_RPAREN] = ACTIONS(1883), - [anon_sym_GT2] = ACTIONS(1885), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_EQ_GT] = ACTIONS(1883), - [anon_sym_STAR2] = ACTIONS(1885), - [anon_sym_and2] = ACTIONS(1883), - [anon_sym_xor2] = ACTIONS(1883), - [anon_sym_or2] = ACTIONS(1883), - [anon_sym_not_DASHin2] = ACTIONS(1883), - [anon_sym_has2] = ACTIONS(1883), - [anon_sym_not_DASHhas2] = ACTIONS(1883), - [anon_sym_starts_DASHwith2] = ACTIONS(1883), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1883), - [anon_sym_ends_DASHwith2] = ACTIONS(1883), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1883), - [anon_sym_EQ_EQ2] = ACTIONS(1883), - [anon_sym_BANG_EQ2] = ACTIONS(1883), - [anon_sym_LT2] = ACTIONS(1885), - [anon_sym_LT_EQ2] = ACTIONS(1883), - [anon_sym_GT_EQ2] = ACTIONS(1883), - [anon_sym_EQ_TILDE2] = ACTIONS(1883), - [anon_sym_BANG_TILDE2] = ACTIONS(1883), - [anon_sym_like2] = ACTIONS(1883), - [anon_sym_not_DASHlike2] = ACTIONS(1883), - [anon_sym_STAR_STAR2] = ACTIONS(1883), - [anon_sym_PLUS_PLUS2] = ACTIONS(1883), - [anon_sym_SLASH2] = ACTIONS(1885), - [anon_sym_mod2] = ACTIONS(1883), - [anon_sym_SLASH_SLASH2] = ACTIONS(1883), - [anon_sym_PLUS2] = ACTIONS(1885), - [anon_sym_bit_DASHshl2] = ACTIONS(1883), - [anon_sym_bit_DASHshr2] = ACTIONS(1883), - [anon_sym_bit_DASHand2] = ACTIONS(1883), - [anon_sym_bit_DASHxor2] = ACTIONS(1883), - [anon_sym_bit_DASHor2] = ACTIONS(1883), - [anon_sym_DOT2] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1885), - [anon_sym_out_GT] = ACTIONS(1885), - [anon_sym_e_GT] = ACTIONS(1885), - [anon_sym_o_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT] = ACTIONS(1885), - [anon_sym_err_GT_GT] = ACTIONS(1883), - [anon_sym_out_GT_GT] = ACTIONS(1883), - [anon_sym_e_GT_GT] = ACTIONS(1883), - [anon_sym_o_GT_GT] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(496)] = { - [sym_cell_path] = STATE(967), - [sym_path] = STATE(458), - [sym_comment] = STATE(496), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), - [anon_sym_in] = ACTIONS(1887), - [sym__newline] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_err_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_GT_PIPE] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_GT2] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1887), - [anon_sym_STAR2] = ACTIONS(1889), - [anon_sym_and2] = ACTIONS(1887), - [anon_sym_xor2] = ACTIONS(1887), - [anon_sym_or2] = ACTIONS(1887), - [anon_sym_not_DASHin2] = ACTIONS(1887), - [anon_sym_has2] = ACTIONS(1887), - [anon_sym_not_DASHhas2] = ACTIONS(1887), - [anon_sym_starts_DASHwith2] = ACTIONS(1887), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1887), - [anon_sym_ends_DASHwith2] = ACTIONS(1887), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1887), - [anon_sym_EQ_EQ2] = ACTIONS(1887), - [anon_sym_BANG_EQ2] = ACTIONS(1887), - [anon_sym_LT2] = ACTIONS(1889), - [anon_sym_LT_EQ2] = ACTIONS(1887), - [anon_sym_GT_EQ2] = ACTIONS(1887), - [anon_sym_EQ_TILDE2] = ACTIONS(1887), - [anon_sym_BANG_TILDE2] = ACTIONS(1887), - [anon_sym_like2] = ACTIONS(1887), - [anon_sym_not_DASHlike2] = ACTIONS(1887), - [anon_sym_STAR_STAR2] = ACTIONS(1887), - [anon_sym_PLUS_PLUS2] = ACTIONS(1887), - [anon_sym_SLASH2] = ACTIONS(1889), - [anon_sym_mod2] = ACTIONS(1887), - [anon_sym_SLASH_SLASH2] = ACTIONS(1887), - [anon_sym_PLUS2] = ACTIONS(1889), - [anon_sym_bit_DASHshl2] = ACTIONS(1887), - [anon_sym_bit_DASHshr2] = ACTIONS(1887), - [anon_sym_bit_DASHand2] = ACTIONS(1887), - [anon_sym_bit_DASHxor2] = ACTIONS(1887), - [anon_sym_bit_DASHor2] = ACTIONS(1887), - [anon_sym_DOT2] = ACTIONS(1877), - [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(1887), - [anon_sym_out_GT_GT] = ACTIONS(1887), - [anon_sym_e_GT_GT] = ACTIONS(1887), - [anon_sym_o_GT_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(497)] = { - [sym_cell_path] = STATE(790), - [sym_path] = STATE(458), - [sym_comment] = STATE(497), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), - [anon_sym_in] = ACTIONS(1891), - [sym__newline] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_err_GT_PIPE] = ACTIONS(1891), - [anon_sym_out_GT_PIPE] = ACTIONS(1891), - [anon_sym_e_GT_PIPE] = ACTIONS(1891), - [anon_sym_o_GT_PIPE] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_GT2] = ACTIONS(1893), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_EQ_GT] = ACTIONS(1891), - [anon_sym_STAR2] = ACTIONS(1893), - [anon_sym_and2] = ACTIONS(1891), - [anon_sym_xor2] = ACTIONS(1891), - [anon_sym_or2] = ACTIONS(1891), - [anon_sym_not_DASHin2] = ACTIONS(1891), - [anon_sym_has2] = ACTIONS(1891), - [anon_sym_not_DASHhas2] = ACTIONS(1891), - [anon_sym_starts_DASHwith2] = ACTIONS(1891), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1891), - [anon_sym_ends_DASHwith2] = ACTIONS(1891), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1891), - [anon_sym_EQ_EQ2] = ACTIONS(1891), - [anon_sym_BANG_EQ2] = ACTIONS(1891), - [anon_sym_LT2] = ACTIONS(1893), - [anon_sym_LT_EQ2] = ACTIONS(1891), - [anon_sym_GT_EQ2] = ACTIONS(1891), - [anon_sym_EQ_TILDE2] = ACTIONS(1891), - [anon_sym_BANG_TILDE2] = ACTIONS(1891), - [anon_sym_like2] = ACTIONS(1891), - [anon_sym_not_DASHlike2] = ACTIONS(1891), - [anon_sym_STAR_STAR2] = ACTIONS(1891), - [anon_sym_PLUS_PLUS2] = ACTIONS(1891), - [anon_sym_SLASH2] = ACTIONS(1893), - [anon_sym_mod2] = ACTIONS(1891), - [anon_sym_SLASH_SLASH2] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1893), - [anon_sym_bit_DASHshl2] = ACTIONS(1891), - [anon_sym_bit_DASHshr2] = ACTIONS(1891), - [anon_sym_bit_DASHand2] = ACTIONS(1891), - [anon_sym_bit_DASHxor2] = ACTIONS(1891), - [anon_sym_bit_DASHor2] = ACTIONS(1891), - [anon_sym_DOT2] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1893), - [anon_sym_out_GT] = ACTIONS(1893), - [anon_sym_e_GT] = ACTIONS(1893), - [anon_sym_o_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT] = ACTIONS(1893), - [anon_sym_err_GT_GT] = ACTIONS(1891), - [anon_sym_out_GT_GT] = ACTIONS(1891), - [anon_sym_e_GT_GT] = ACTIONS(1891), - [anon_sym_o_GT_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(498)] = { - [sym_comment] = STATE(498), - [anon_sym_in] = ACTIONS(1895), - [sym__newline] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_err_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_GT_PIPE] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), - [anon_sym_RPAREN] = ACTIONS(1895), - [anon_sym_GT2] = ACTIONS(1897), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_STAR2] = ACTIONS(1897), - [anon_sym_and2] = ACTIONS(1895), - [anon_sym_xor2] = ACTIONS(1895), - [anon_sym_or2] = ACTIONS(1895), - [anon_sym_not_DASHin2] = ACTIONS(1895), - [anon_sym_has2] = ACTIONS(1895), - [anon_sym_not_DASHhas2] = ACTIONS(1895), - [anon_sym_starts_DASHwith2] = ACTIONS(1895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1895), - [anon_sym_ends_DASHwith2] = ACTIONS(1895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1895), - [anon_sym_EQ_EQ2] = ACTIONS(1895), - [anon_sym_BANG_EQ2] = ACTIONS(1895), - [anon_sym_LT2] = ACTIONS(1897), - [anon_sym_LT_EQ2] = ACTIONS(1895), - [anon_sym_GT_EQ2] = ACTIONS(1895), - [anon_sym_EQ_TILDE2] = ACTIONS(1895), - [anon_sym_BANG_TILDE2] = ACTIONS(1895), - [anon_sym_like2] = ACTIONS(1895), - [anon_sym_not_DASHlike2] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1895), - [anon_sym_STAR_STAR2] = ACTIONS(1895), - [anon_sym_PLUS_PLUS2] = ACTIONS(1895), - [anon_sym_SLASH2] = ACTIONS(1897), - [anon_sym_mod2] = ACTIONS(1895), - [anon_sym_SLASH_SLASH2] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1897), - [anon_sym_bit_DASHshl2] = ACTIONS(1895), - [anon_sym_bit_DASHshr2] = ACTIONS(1895), - [anon_sym_bit_DASHand2] = ACTIONS(1895), - [anon_sym_bit_DASHxor2] = ACTIONS(1895), - [anon_sym_bit_DASHor2] = ACTIONS(1895), - [anon_sym_DOT_DOT2] = ACTIONS(1897), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1895), - [anon_sym_err_GT] = ACTIONS(1897), - [anon_sym_out_GT] = ACTIONS(1897), - [anon_sym_e_GT] = ACTIONS(1897), - [anon_sym_o_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT] = ACTIONS(1897), - [anon_sym_err_GT_GT] = ACTIONS(1895), - [anon_sym_out_GT_GT] = ACTIONS(1895), - [anon_sym_e_GT_GT] = ACTIONS(1895), - [anon_sym_o_GT_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), - [sym__unquoted_pattern] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(499)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(4344), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(4699), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(499), - [aux_sym__types_body_repeat1] = STATE(1499), - [aux_sym__match_pattern_record_body_repeat1] = STATE(722), - [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_finally] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), - [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [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(1778), - }, - [STATE(500)] = { - [sym_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_GT2] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_STAR2] = ACTIONS(1792), - [anon_sym_and2] = ACTIONS(1790), - [anon_sym_xor2] = ACTIONS(1790), - [anon_sym_or2] = ACTIONS(1790), - [anon_sym_not_DASHin2] = ACTIONS(1790), - [anon_sym_has2] = ACTIONS(1790), - [anon_sym_not_DASHhas2] = ACTIONS(1790), - [anon_sym_starts_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), - [anon_sym_ends_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), - [anon_sym_EQ_EQ2] = ACTIONS(1790), - [anon_sym_BANG_EQ2] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ2] = ACTIONS(1790), - [anon_sym_GT_EQ2] = ACTIONS(1790), - [anon_sym_EQ_TILDE2] = ACTIONS(1790), - [anon_sym_BANG_TILDE2] = ACTIONS(1790), - [anon_sym_like2] = ACTIONS(1790), - [anon_sym_not_DASHlike2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_STAR_STAR2] = ACTIONS(1790), - [anon_sym_PLUS_PLUS2] = ACTIONS(1790), - [anon_sym_SLASH2] = ACTIONS(1792), - [anon_sym_mod2] = ACTIONS(1790), - [anon_sym_SLASH_SLASH2] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1792), - [anon_sym_bit_DASHshl2] = ACTIONS(1790), - [anon_sym_bit_DASHshr2] = ACTIONS(1790), - [anon_sym_bit_DASHand2] = ACTIONS(1790), - [anon_sym_bit_DASHxor2] = ACTIONS(1790), - [anon_sym_bit_DASHor2] = ACTIONS(1790), - [anon_sym_DOT_DOT2] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1790), - [aux_sym__immediate_decimal_token5] = ACTIONS(1901), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [sym__unquoted_pattern] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(501)] = { - [sym_comment] = STATE(501), - [anon_sym_in] = ACTIONS(1580), - [sym__newline] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_err_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_GT_PIPE] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_GT2] = ACTIONS(1578), - [anon_sym_DASH2] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_EQ_GT] = ACTIONS(1580), - [anon_sym_STAR2] = ACTIONS(1578), - [anon_sym_and2] = ACTIONS(1580), - [anon_sym_xor2] = ACTIONS(1580), - [anon_sym_or2] = ACTIONS(1580), - [anon_sym_not_DASHin2] = ACTIONS(1580), - [anon_sym_has2] = ACTIONS(1580), - [anon_sym_not_DASHhas2] = ACTIONS(1580), - [anon_sym_starts_DASHwith2] = ACTIONS(1580), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), - [anon_sym_ends_DASHwith2] = ACTIONS(1580), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), - [anon_sym_EQ_EQ2] = ACTIONS(1580), - [anon_sym_BANG_EQ2] = ACTIONS(1580), - [anon_sym_LT2] = ACTIONS(1578), - [anon_sym_LT_EQ2] = ACTIONS(1580), - [anon_sym_GT_EQ2] = ACTIONS(1580), - [anon_sym_EQ_TILDE2] = ACTIONS(1580), - [anon_sym_BANG_TILDE2] = ACTIONS(1580), - [anon_sym_like2] = ACTIONS(1580), - [anon_sym_not_DASHlike2] = ACTIONS(1580), - [anon_sym_STAR_STAR2] = ACTIONS(1580), - [anon_sym_PLUS_PLUS2] = ACTIONS(1580), - [anon_sym_SLASH2] = ACTIONS(1578), - [anon_sym_mod2] = ACTIONS(1580), - [anon_sym_SLASH_SLASH2] = ACTIONS(1580), - [anon_sym_PLUS2] = ACTIONS(1578), - [anon_sym_bit_DASHshl2] = ACTIONS(1580), - [anon_sym_bit_DASHshr2] = ACTIONS(1580), - [anon_sym_bit_DASHand2] = ACTIONS(1580), - [anon_sym_bit_DASHxor2] = ACTIONS(1580), - [anon_sym_bit_DASHor2] = ACTIONS(1580), - [anon_sym_DOT_DOT2] = ACTIONS(1578), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1580), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1580), - [anon_sym_COLON2] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1578), - [anon_sym_out_GT] = ACTIONS(1578), - [anon_sym_e_GT] = ACTIONS(1578), - [anon_sym_o_GT] = ACTIONS(1578), - [anon_sym_err_PLUSout_GT] = ACTIONS(1578), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1578), - [anon_sym_o_PLUSe_GT] = ACTIONS(1578), - [anon_sym_e_PLUSo_GT] = ACTIONS(1578), - [anon_sym_err_GT_GT] = ACTIONS(1580), - [anon_sym_out_GT_GT] = ACTIONS(1580), - [anon_sym_e_GT_GT] = ACTIONS(1580), - [anon_sym_o_GT_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(502)] = { - [sym_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1510), - [anon_sym_in] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_GT2] = ACTIONS(1508), - [anon_sym_DASH2] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_STAR2] = ACTIONS(1508), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_has2] = ACTIONS(1510), - [anon_sym_not_DASHhas2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_like2] = ACTIONS(1510), - [anon_sym_not_DASHlike2] = ACTIONS(1510), - [anon_sym_STAR_STAR2] = ACTIONS(1510), - [anon_sym_PLUS_PLUS2] = ACTIONS(1510), - [anon_sym_SLASH2] = ACTIONS(1508), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), - [anon_sym_PLUS2] = ACTIONS(1508), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), - [anon_sym_DOT_DOT2] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), - [anon_sym_QMARK2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DOT2] = ACTIONS(1508), - [anon_sym_err_GT] = ACTIONS(1508), - [anon_sym_out_GT] = ACTIONS(1508), - [anon_sym_e_GT] = ACTIONS(1508), - [anon_sym_o_GT] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT] = ACTIONS(1508), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(503)] = { - [sym_comment] = STATE(503), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_in] = ACTIONS(1903), - [sym__newline] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_err_GT_PIPE] = ACTIONS(1903), - [anon_sym_out_GT_PIPE] = ACTIONS(1903), - [anon_sym_e_GT_PIPE] = ACTIONS(1903), - [anon_sym_o_GT_PIPE] = ACTIONS(1903), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), - [anon_sym_RPAREN] = ACTIONS(1903), - [anon_sym_GT2] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_STAR2] = ACTIONS(1905), - [anon_sym_and2] = ACTIONS(1903), - [anon_sym_xor2] = ACTIONS(1903), - [anon_sym_or2] = ACTIONS(1903), - [anon_sym_not_DASHin2] = ACTIONS(1903), - [anon_sym_has2] = ACTIONS(1903), - [anon_sym_not_DASHhas2] = ACTIONS(1903), - [anon_sym_starts_DASHwith2] = ACTIONS(1903), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1903), - [anon_sym_ends_DASHwith2] = ACTIONS(1903), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1903), - [anon_sym_EQ_EQ2] = ACTIONS(1903), - [anon_sym_BANG_EQ2] = ACTIONS(1903), - [anon_sym_LT2] = ACTIONS(1905), - [anon_sym_LT_EQ2] = ACTIONS(1903), - [anon_sym_GT_EQ2] = ACTIONS(1903), - [anon_sym_EQ_TILDE2] = ACTIONS(1903), - [anon_sym_BANG_TILDE2] = ACTIONS(1903), - [anon_sym_like2] = ACTIONS(1903), - [anon_sym_not_DASHlike2] = ACTIONS(1903), - [anon_sym_STAR_STAR2] = ACTIONS(1903), - [anon_sym_PLUS_PLUS2] = ACTIONS(1903), - [anon_sym_SLASH2] = ACTIONS(1905), - [anon_sym_mod2] = ACTIONS(1903), - [anon_sym_SLASH_SLASH2] = ACTIONS(1903), - [anon_sym_PLUS2] = ACTIONS(1905), - [anon_sym_bit_DASHshl2] = ACTIONS(1903), - [anon_sym_bit_DASHshr2] = ACTIONS(1903), - [anon_sym_bit_DASHand2] = ACTIONS(1903), - [anon_sym_bit_DASHxor2] = ACTIONS(1903), - [anon_sym_bit_DASHor2] = ACTIONS(1903), - [anon_sym_DOT_DOT2] = ACTIONS(1905), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1903), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1903), - [anon_sym_err_GT] = ACTIONS(1905), - [anon_sym_out_GT] = ACTIONS(1905), - [anon_sym_e_GT] = ACTIONS(1905), - [anon_sym_o_GT] = ACTIONS(1905), - [anon_sym_err_PLUSout_GT] = ACTIONS(1905), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), - [anon_sym_o_PLUSe_GT] = ACTIONS(1905), - [anon_sym_e_PLUSo_GT] = ACTIONS(1905), - [anon_sym_err_GT_GT] = ACTIONS(1903), - [anon_sym_out_GT_GT] = ACTIONS(1903), - [anon_sym_e_GT_GT] = ACTIONS(1903), - [anon_sym_o_GT_GT] = ACTIONS(1903), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(504)] = { - [sym_cell_path] = STATE(968), - [sym_path] = STATE(715), - [sym_comment] = STATE(504), - [aux_sym__where_predicate_lhs_repeat1] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_in] = ACTIONS(1456), - [sym__newline] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_err_GT_PIPE] = ACTIONS(1456), - [anon_sym_out_GT_PIPE] = ACTIONS(1456), - [anon_sym_e_GT_PIPE] = ACTIONS(1456), - [anon_sym_o_GT_PIPE] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1456), - [anon_sym_GT2] = ACTIONS(1454), - [anon_sym_DASH2] = ACTIONS(1456), - [anon_sym_STAR2] = ACTIONS(1454), - [anon_sym_and2] = ACTIONS(1456), - [anon_sym_xor2] = ACTIONS(1456), - [anon_sym_or2] = ACTIONS(1456), - [anon_sym_not_DASHin2] = ACTIONS(1456), - [anon_sym_has2] = ACTIONS(1456), - [anon_sym_not_DASHhas2] = ACTIONS(1456), - [anon_sym_starts_DASHwith2] = ACTIONS(1456), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1456), - [anon_sym_ends_DASHwith2] = ACTIONS(1456), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1456), - [anon_sym_EQ_EQ2] = ACTIONS(1456), - [anon_sym_BANG_EQ2] = ACTIONS(1456), - [anon_sym_LT2] = ACTIONS(1454), - [anon_sym_LT_EQ2] = ACTIONS(1456), - [anon_sym_GT_EQ2] = ACTIONS(1456), - [anon_sym_EQ_TILDE2] = ACTIONS(1456), - [anon_sym_BANG_TILDE2] = ACTIONS(1456), - [anon_sym_like2] = ACTIONS(1456), - [anon_sym_not_DASHlike2] = ACTIONS(1456), - [anon_sym_STAR_STAR2] = ACTIONS(1456), - [anon_sym_PLUS_PLUS2] = ACTIONS(1456), - [anon_sym_SLASH2] = ACTIONS(1454), - [anon_sym_mod2] = ACTIONS(1456), - [anon_sym_SLASH_SLASH2] = ACTIONS(1456), - [anon_sym_PLUS2] = ACTIONS(1454), - [anon_sym_bit_DASHshl2] = ACTIONS(1456), - [anon_sym_bit_DASHshr2] = ACTIONS(1456), - [anon_sym_bit_DASHand2] = ACTIONS(1456), - [anon_sym_bit_DASHxor2] = ACTIONS(1456), - [anon_sym_bit_DASHor2] = ACTIONS(1456), - [anon_sym_DOT_DOT2] = ACTIONS(1454), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1456), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1456), - [anon_sym_DOT2] = ACTIONS(1869), - [anon_sym_err_GT] = ACTIONS(1454), - [anon_sym_out_GT] = ACTIONS(1454), - [anon_sym_e_GT] = ACTIONS(1454), - [anon_sym_o_GT] = ACTIONS(1454), - [anon_sym_err_PLUSout_GT] = ACTIONS(1454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), - [anon_sym_o_PLUSe_GT] = ACTIONS(1454), - [anon_sym_e_PLUSo_GT] = ACTIONS(1454), - [anon_sym_err_GT_GT] = ACTIONS(1456), - [anon_sym_out_GT_GT] = ACTIONS(1456), - [anon_sym_e_GT_GT] = ACTIONS(1456), - [anon_sym_o_GT_GT] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(505)] = { - [sym_cell_path] = STATE(918), - [sym_path] = STATE(458), - [sym_comment] = STATE(505), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), - [anon_sym_in] = ACTIONS(1907), - [sym__newline] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_err_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_GT_PIPE] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), - [anon_sym_RPAREN] = ACTIONS(1907), - [anon_sym_GT2] = ACTIONS(1909), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1907), - [anon_sym_STAR2] = ACTIONS(1909), - [anon_sym_and2] = ACTIONS(1907), - [anon_sym_xor2] = ACTIONS(1907), - [anon_sym_or2] = ACTIONS(1907), - [anon_sym_not_DASHin2] = ACTIONS(1907), - [anon_sym_has2] = ACTIONS(1907), - [anon_sym_not_DASHhas2] = ACTIONS(1907), - [anon_sym_starts_DASHwith2] = ACTIONS(1907), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1907), - [anon_sym_ends_DASHwith2] = ACTIONS(1907), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1907), - [anon_sym_EQ_EQ2] = ACTIONS(1907), - [anon_sym_BANG_EQ2] = ACTIONS(1907), - [anon_sym_LT2] = ACTIONS(1909), - [anon_sym_LT_EQ2] = ACTIONS(1907), - [anon_sym_GT_EQ2] = ACTIONS(1907), - [anon_sym_EQ_TILDE2] = ACTIONS(1907), - [anon_sym_BANG_TILDE2] = ACTIONS(1907), - [anon_sym_like2] = ACTIONS(1907), - [anon_sym_not_DASHlike2] = ACTIONS(1907), - [anon_sym_STAR_STAR2] = ACTIONS(1907), - [anon_sym_PLUS_PLUS2] = ACTIONS(1907), - [anon_sym_SLASH2] = ACTIONS(1909), - [anon_sym_mod2] = ACTIONS(1907), - [anon_sym_SLASH_SLASH2] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1909), - [anon_sym_bit_DASHshl2] = ACTIONS(1907), - [anon_sym_bit_DASHshr2] = ACTIONS(1907), - [anon_sym_bit_DASHand2] = ACTIONS(1907), - [anon_sym_bit_DASHxor2] = ACTIONS(1907), - [anon_sym_bit_DASHor2] = ACTIONS(1907), - [anon_sym_DOT2] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1909), - [anon_sym_out_GT] = ACTIONS(1909), - [anon_sym_e_GT] = ACTIONS(1909), - [anon_sym_o_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT] = ACTIONS(1909), - [anon_sym_err_GT_GT] = ACTIONS(1907), - [anon_sym_out_GT_GT] = ACTIONS(1907), - [anon_sym_e_GT_GT] = ACTIONS(1907), - [anon_sym_o_GT_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(506)] = { - [sym_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_in] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_GT2] = ACTIONS(1528), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_STAR2] = ACTIONS(1528), - [anon_sym_and2] = ACTIONS(1530), - [anon_sym_xor2] = ACTIONS(1530), - [anon_sym_or2] = ACTIONS(1530), - [anon_sym_not_DASHin2] = ACTIONS(1530), - [anon_sym_has2] = ACTIONS(1530), - [anon_sym_not_DASHhas2] = ACTIONS(1530), - [anon_sym_starts_DASHwith2] = ACTIONS(1530), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1530), - [anon_sym_ends_DASHwith2] = ACTIONS(1530), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1530), - [anon_sym_EQ_EQ2] = ACTIONS(1530), - [anon_sym_BANG_EQ2] = ACTIONS(1530), - [anon_sym_LT2] = ACTIONS(1528), - [anon_sym_LT_EQ2] = ACTIONS(1530), - [anon_sym_GT_EQ2] = ACTIONS(1530), - [anon_sym_EQ_TILDE2] = ACTIONS(1530), - [anon_sym_BANG_TILDE2] = ACTIONS(1530), - [anon_sym_like2] = ACTIONS(1530), - [anon_sym_not_DASHlike2] = ACTIONS(1530), - [anon_sym_STAR_STAR2] = ACTIONS(1530), - [anon_sym_PLUS_PLUS2] = ACTIONS(1530), - [anon_sym_SLASH2] = ACTIONS(1528), - [anon_sym_mod2] = ACTIONS(1530), - [anon_sym_SLASH_SLASH2] = ACTIONS(1530), - [anon_sym_PLUS2] = ACTIONS(1528), - [anon_sym_bit_DASHshl2] = ACTIONS(1530), - [anon_sym_bit_DASHshr2] = ACTIONS(1530), - [anon_sym_bit_DASHand2] = ACTIONS(1530), - [anon_sym_bit_DASHxor2] = ACTIONS(1530), - [anon_sym_bit_DASHor2] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [anon_sym_QMARK2] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_DOT2] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [STATE(522)] = { + [sym_comment] = STATE(522), + [ts_builtin_sym_end] = ACTIONS(1518), + [anon_sym_in] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_err_GT_PIPE] = ACTIONS(1518), + [anon_sym_out_GT_PIPE] = ACTIONS(1518), + [anon_sym_e_GT_PIPE] = ACTIONS(1518), + [anon_sym_o_GT_PIPE] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1518), + [anon_sym_GT2] = ACTIONS(1516), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_STAR2] = ACTIONS(1516), + [anon_sym_and2] = ACTIONS(1518), + [anon_sym_xor2] = ACTIONS(1518), + [anon_sym_or2] = ACTIONS(1518), + [anon_sym_not_DASHin2] = ACTIONS(1518), + [anon_sym_has2] = ACTIONS(1518), + [anon_sym_not_DASHhas2] = ACTIONS(1518), + [anon_sym_starts_DASHwith2] = ACTIONS(1518), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1518), + [anon_sym_ends_DASHwith2] = ACTIONS(1518), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1518), + [anon_sym_EQ_EQ2] = ACTIONS(1518), + [anon_sym_BANG_EQ2] = ACTIONS(1518), + [anon_sym_LT2] = ACTIONS(1516), + [anon_sym_LT_EQ2] = ACTIONS(1518), + [anon_sym_GT_EQ2] = ACTIONS(1518), + [anon_sym_EQ_TILDE2] = ACTIONS(1518), + [anon_sym_BANG_TILDE2] = ACTIONS(1518), + [anon_sym_like2] = ACTIONS(1518), + [anon_sym_not_DASHlike2] = ACTIONS(1518), + [anon_sym_STAR_STAR2] = ACTIONS(1518), + [anon_sym_PLUS_PLUS2] = ACTIONS(1518), + [anon_sym_SLASH2] = ACTIONS(1516), + [anon_sym_mod2] = ACTIONS(1518), + [anon_sym_SLASH_SLASH2] = ACTIONS(1518), + [anon_sym_PLUS2] = ACTIONS(1516), + [anon_sym_bit_DASHshl2] = ACTIONS(1518), + [anon_sym_bit_DASHshr2] = ACTIONS(1518), + [anon_sym_bit_DASHand2] = ACTIONS(1518), + [anon_sym_bit_DASHxor2] = ACTIONS(1518), + [anon_sym_bit_DASHor2] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1518), + [anon_sym_QMARK2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_DOT2] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1516), + [anon_sym_out_GT] = ACTIONS(1516), + [anon_sym_e_GT] = ACTIONS(1516), + [anon_sym_o_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT] = ACTIONS(1516), + [anon_sym_err_GT_GT] = ACTIONS(1518), + [anon_sym_out_GT_GT] = ACTIONS(1518), + [anon_sym_e_GT_GT] = ACTIONS(1518), + [anon_sym_o_GT_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(507)] = { - [sym_cell_path] = STATE(799), - [sym_path] = STATE(458), - [sym_comment] = STATE(507), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), - [anon_sym_in] = ACTIONS(1911), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_RPAREN] = ACTIONS(1911), - [anon_sym_GT2] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_EQ_GT] = ACTIONS(1911), - [anon_sym_STAR2] = ACTIONS(1913), - [anon_sym_and2] = ACTIONS(1911), - [anon_sym_xor2] = ACTIONS(1911), - [anon_sym_or2] = ACTIONS(1911), - [anon_sym_not_DASHin2] = ACTIONS(1911), - [anon_sym_has2] = ACTIONS(1911), - [anon_sym_not_DASHhas2] = ACTIONS(1911), - [anon_sym_starts_DASHwith2] = ACTIONS(1911), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1911), - [anon_sym_ends_DASHwith2] = ACTIONS(1911), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1911), - [anon_sym_EQ_EQ2] = ACTIONS(1911), - [anon_sym_BANG_EQ2] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LT_EQ2] = ACTIONS(1911), - [anon_sym_GT_EQ2] = ACTIONS(1911), - [anon_sym_EQ_TILDE2] = ACTIONS(1911), - [anon_sym_BANG_TILDE2] = ACTIONS(1911), - [anon_sym_like2] = ACTIONS(1911), - [anon_sym_not_DASHlike2] = ACTIONS(1911), - [anon_sym_STAR_STAR2] = ACTIONS(1911), - [anon_sym_PLUS_PLUS2] = ACTIONS(1911), - [anon_sym_SLASH2] = ACTIONS(1913), - [anon_sym_mod2] = ACTIONS(1911), - [anon_sym_SLASH_SLASH2] = ACTIONS(1911), - [anon_sym_PLUS2] = ACTIONS(1913), - [anon_sym_bit_DASHshl2] = ACTIONS(1911), - [anon_sym_bit_DASHshr2] = ACTIONS(1911), - [anon_sym_bit_DASHand2] = ACTIONS(1911), - [anon_sym_bit_DASHxor2] = ACTIONS(1911), - [anon_sym_bit_DASHor2] = ACTIONS(1911), - [anon_sym_DOT2] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1913), - [anon_sym_out_GT] = ACTIONS(1913), - [anon_sym_e_GT] = ACTIONS(1913), - [anon_sym_o_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT] = ACTIONS(1913), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), + [STATE(523)] = { + [sym_comment] = STATE(523), + [ts_builtin_sym_end] = 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(1468), + [anon_sym_DASH2] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_STAR2] = ACTIONS(1468), + [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(1468), + [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(1468), + [anon_sym_mod2] = ACTIONS(1470), + [anon_sym_SLASH_SLASH2] = ACTIONS(1470), + [anon_sym_PLUS2] = ACTIONS(1468), + [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(1468), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), + [anon_sym_QMARK2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DOT2] = ACTIONS(1468), + [anon_sym_err_GT] = ACTIONS(1468), + [anon_sym_out_GT] = ACTIONS(1468), + [anon_sym_e_GT] = ACTIONS(1468), + [anon_sym_o_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT] = ACTIONS(1468), + [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(3), }, - [STATE(508)] = { - [sym_comment] = STATE(508), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_in] = ACTIONS(1915), - [sym__newline] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_err_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_GT_PIPE] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_GT2] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1915), - [anon_sym_STAR2] = ACTIONS(1917), - [anon_sym_and2] = ACTIONS(1915), - [anon_sym_xor2] = ACTIONS(1915), - [anon_sym_or2] = ACTIONS(1915), - [anon_sym_not_DASHin2] = ACTIONS(1915), - [anon_sym_has2] = ACTIONS(1915), - [anon_sym_not_DASHhas2] = ACTIONS(1915), - [anon_sym_starts_DASHwith2] = ACTIONS(1915), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1915), - [anon_sym_ends_DASHwith2] = ACTIONS(1915), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1915), - [anon_sym_EQ_EQ2] = ACTIONS(1915), - [anon_sym_BANG_EQ2] = ACTIONS(1915), - [anon_sym_LT2] = ACTIONS(1917), - [anon_sym_LT_EQ2] = ACTIONS(1915), - [anon_sym_GT_EQ2] = ACTIONS(1915), - [anon_sym_EQ_TILDE2] = ACTIONS(1915), - [anon_sym_BANG_TILDE2] = ACTIONS(1915), - [anon_sym_like2] = ACTIONS(1915), - [anon_sym_not_DASHlike2] = ACTIONS(1915), - [anon_sym_STAR_STAR2] = ACTIONS(1915), - [anon_sym_PLUS_PLUS2] = ACTIONS(1915), - [anon_sym_SLASH2] = ACTIONS(1917), - [anon_sym_mod2] = ACTIONS(1915), - [anon_sym_SLASH_SLASH2] = ACTIONS(1915), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_bit_DASHshl2] = ACTIONS(1915), - [anon_sym_bit_DASHshr2] = ACTIONS(1915), - [anon_sym_bit_DASHand2] = ACTIONS(1915), - [anon_sym_bit_DASHxor2] = ACTIONS(1915), - [anon_sym_bit_DASHor2] = ACTIONS(1915), - [anon_sym_DOT_DOT2] = ACTIONS(1917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1915), - [anon_sym_err_GT] = ACTIONS(1917), - [anon_sym_out_GT] = ACTIONS(1917), - [anon_sym_e_GT] = ACTIONS(1917), - [anon_sym_o_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT] = ACTIONS(1917), - [anon_sym_err_GT_GT] = ACTIONS(1915), - [anon_sym_out_GT_GT] = ACTIONS(1915), - [anon_sym_e_GT_GT] = ACTIONS(1915), - [anon_sym_o_GT_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), + [STATE(524)] = { + [sym_comment] = STATE(524), + [ts_builtin_sym_end] = 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(1472), + [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_STAR2] = ACTIONS(1472), + [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(1472), + [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(1472), + [anon_sym_mod2] = ACTIONS(1474), + [anon_sym_SLASH_SLASH2] = ACTIONS(1474), + [anon_sym_PLUS2] = ACTIONS(1472), + [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(1472), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), + [anon_sym_QMARK2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DOT2] = ACTIONS(1472), + [anon_sym_err_GT] = ACTIONS(1472), + [anon_sym_out_GT] = ACTIONS(1472), + [anon_sym_e_GT] = ACTIONS(1472), + [anon_sym_o_GT] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT] = ACTIONS(1472), + [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(3), }, - [STATE(509)] = { - [sym__path_suffix] = STATE(692), - [sym_comment] = STATE(509), + [STATE(525)] = { + [sym_cell_path] = STATE(926), + [sym_path] = STATE(703), + [sym_comment] = STATE(525), + [aux_sym__where_predicate_lhs_repeat1] = STATE(669), [ts_builtin_sym_end] = ACTIONS(1444), [anon_sym_in] = ACTIONS(1444), [sym__newline] = ACTIONS(1444), @@ -88375,9 +89926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1442), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), - [anon_sym_QMARK2] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_DOT2] = ACTIONS(1913), [anon_sym_err_GT] = ACTIONS(1442), [anon_sym_out_GT] = ACTIONS(1442), [anon_sym_e_GT] = ACTIONS(1442), @@ -88396,13601 +89945,12457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(510)] = { - [sym_comment] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(865), - [anon_sym_in] = ACTIONS(865), - [sym__newline] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_PIPE] = ACTIONS(865), - [anon_sym_err_GT_PIPE] = ACTIONS(865), - [anon_sym_out_GT_PIPE] = ACTIONS(865), - [anon_sym_e_GT_PIPE] = ACTIONS(865), - [anon_sym_o_GT_PIPE] = ACTIONS(865), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(865), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(865), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(865), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(865), - [anon_sym_GT2] = ACTIONS(863), - [anon_sym_DASH2] = ACTIONS(865), - [anon_sym_STAR2] = ACTIONS(863), - [anon_sym_and2] = ACTIONS(865), - [anon_sym_xor2] = ACTIONS(865), - [anon_sym_or2] = ACTIONS(865), - [anon_sym_not_DASHin2] = ACTIONS(865), - [anon_sym_has2] = ACTIONS(865), - [anon_sym_not_DASHhas2] = ACTIONS(865), - [anon_sym_starts_DASHwith2] = ACTIONS(865), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(865), - [anon_sym_ends_DASHwith2] = ACTIONS(865), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(865), - [anon_sym_EQ_EQ2] = ACTIONS(865), - [anon_sym_BANG_EQ2] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(863), - [anon_sym_LT_EQ2] = ACTIONS(865), - [anon_sym_GT_EQ2] = ACTIONS(865), - [anon_sym_EQ_TILDE2] = ACTIONS(865), - [anon_sym_BANG_TILDE2] = ACTIONS(865), - [anon_sym_like2] = ACTIONS(865), - [anon_sym_not_DASHlike2] = ACTIONS(865), - [anon_sym_LPAREN2] = ACTIONS(865), - [anon_sym_STAR_STAR2] = ACTIONS(865), - [anon_sym_PLUS_PLUS2] = ACTIONS(865), - [anon_sym_SLASH2] = ACTIONS(863), - [anon_sym_mod2] = ACTIONS(865), - [anon_sym_SLASH_SLASH2] = ACTIONS(865), - [anon_sym_PLUS2] = ACTIONS(863), - [anon_sym_bit_DASHshl2] = ACTIONS(865), - [anon_sym_bit_DASHshr2] = ACTIONS(865), - [anon_sym_bit_DASHand2] = ACTIONS(865), - [anon_sym_bit_DASHxor2] = ACTIONS(865), - [anon_sym_bit_DASHor2] = ACTIONS(865), - [anon_sym_DOT_DOT2] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(865), - [sym_filesize_unit] = ACTIONS(863), - [sym_duration_unit] = ACTIONS(865), - [anon_sym_err_GT] = ACTIONS(863), - [anon_sym_out_GT] = ACTIONS(863), - [anon_sym_e_GT] = ACTIONS(863), - [anon_sym_o_GT] = ACTIONS(863), - [anon_sym_err_PLUSout_GT] = ACTIONS(863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(863), - [anon_sym_o_PLUSe_GT] = ACTIONS(863), - [anon_sym_e_PLUSo_GT] = ACTIONS(863), - [anon_sym_err_GT_GT] = ACTIONS(865), - [anon_sym_out_GT_GT] = ACTIONS(865), - [anon_sym_e_GT_GT] = ACTIONS(865), - [anon_sym_o_GT_GT] = ACTIONS(865), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(865), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(865), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(865), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(865), - [sym__unquoted_pattern] = ACTIONS(863), + [STATE(526)] = { + [sym_comment] = STATE(526), + [anon_sym_EQ] = ACTIONS(1927), + [anon_sym_PLUS_EQ] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1929), + [anon_sym_STAR_EQ] = ACTIONS(1929), + [anon_sym_SLASH_EQ] = ACTIONS(1929), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1929), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(511)] = { - [sym_cell_path] = STATE(937), - [sym_path] = STATE(715), - [sym_comment] = STATE(511), - [aux_sym__where_predicate_lhs_repeat1] = STATE(526), - [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(1869), - [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), + [STATE(527)] = { + [aux_sym__repeat_newline] = STATE(623), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1213), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(761), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(527), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(512)] = { - [sym_comment] = STATE(512), - [ts_builtin_sym_end] = 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(1512), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1512), - [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(1512), - [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(1512), - [anon_sym_mod2] = ACTIONS(1514), - [anon_sym_SLASH_SLASH2] = ACTIONS(1514), - [anon_sym_PLUS2] = ACTIONS(1512), - [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(1512), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), - [anon_sym_QMARK2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_DOT2] = ACTIONS(1512), - [anon_sym_err_GT] = ACTIONS(1512), - [anon_sym_out_GT] = ACTIONS(1512), - [anon_sym_e_GT] = ACTIONS(1512), - [anon_sym_o_GT] = ACTIONS(1512), - [anon_sym_err_PLUSout_GT] = ACTIONS(1512), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), - [anon_sym_o_PLUSe_GT] = ACTIONS(1512), - [anon_sym_e_PLUSo_GT] = ACTIONS(1512), - [anon_sym_err_GT_GT] = ACTIONS(1514), - [anon_sym_out_GT_GT] = ACTIONS(1514), - [anon_sym_e_GT_GT] = ACTIONS(1514), - [anon_sym_o_GT_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(513)] = { - [sym_comment] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1502), - [sym__newline] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_err_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_GT_PIPE] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1502), - [anon_sym_xor2] = ACTIONS(1502), - [anon_sym_or2] = ACTIONS(1502), - [anon_sym_not_DASHin2] = ACTIONS(1502), - [anon_sym_has2] = ACTIONS(1502), - [anon_sym_not_DASHhas2] = ACTIONS(1502), - [anon_sym_starts_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), - [anon_sym_ends_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), - [anon_sym_EQ_EQ2] = ACTIONS(1502), - [anon_sym_BANG_EQ2] = ACTIONS(1502), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1502), - [anon_sym_GT_EQ2] = ACTIONS(1502), - [anon_sym_EQ_TILDE2] = ACTIONS(1502), - [anon_sym_BANG_TILDE2] = ACTIONS(1502), - [anon_sym_like2] = ACTIONS(1502), - [anon_sym_not_DASHlike2] = ACTIONS(1502), - [anon_sym_STAR_STAR2] = ACTIONS(1502), - [anon_sym_PLUS_PLUS2] = ACTIONS(1502), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1502), - [anon_sym_SLASH_SLASH2] = ACTIONS(1502), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1502), - [anon_sym_bit_DASHshr2] = ACTIONS(1502), - [anon_sym_bit_DASHand2] = ACTIONS(1502), - [anon_sym_bit_DASHxor2] = ACTIONS(1502), - [anon_sym_bit_DASHor2] = ACTIONS(1502), - [anon_sym_DOT_DOT2] = ACTIONS(1500), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), - [anon_sym_QMARK2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DOT2] = ACTIONS(1500), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1502), - [anon_sym_out_GT_GT] = ACTIONS(1502), - [anon_sym_e_GT_GT] = ACTIONS(1502), - [anon_sym_o_GT_GT] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(514)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(4816), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(514), - [aux_sym__types_body_repeat1] = STATE(1499), - [aux_sym_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_finally] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [sym__newline] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), - [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), - [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [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(1778), - }, - [STATE(515)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1547), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(744), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(515), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [STATE(528)] = { + [sym_comment] = STATE(528), + [anon_sym_in] = ACTIONS(1953), + [sym__newline] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_err_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_GT_PIPE] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1953), + [anon_sym_GT2] = ACTIONS(1955), + [anon_sym_DASH2] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_STAR2] = ACTIONS(1955), + [anon_sym_and2] = ACTIONS(1953), + [anon_sym_xor2] = ACTIONS(1953), + [anon_sym_or2] = ACTIONS(1953), + [anon_sym_not_DASHin2] = ACTIONS(1953), + [anon_sym_has2] = ACTIONS(1953), + [anon_sym_not_DASHhas2] = ACTIONS(1953), + [anon_sym_starts_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), + [anon_sym_ends_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), + [anon_sym_EQ_EQ2] = ACTIONS(1953), + [anon_sym_BANG_EQ2] = ACTIONS(1953), + [anon_sym_LT2] = ACTIONS(1955), + [anon_sym_LT_EQ2] = ACTIONS(1953), + [anon_sym_GT_EQ2] = ACTIONS(1953), + [anon_sym_EQ_TILDE2] = ACTIONS(1953), + [anon_sym_BANG_TILDE2] = ACTIONS(1953), + [anon_sym_like2] = ACTIONS(1953), + [anon_sym_not_DASHlike2] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1957), + [anon_sym_STAR_STAR2] = ACTIONS(1953), + [anon_sym_PLUS_PLUS2] = ACTIONS(1953), + [anon_sym_SLASH2] = ACTIONS(1955), + [anon_sym_mod2] = ACTIONS(1953), + [anon_sym_SLASH_SLASH2] = ACTIONS(1953), + [anon_sym_PLUS2] = ACTIONS(1955), + [anon_sym_bit_DASHshl2] = ACTIONS(1953), + [anon_sym_bit_DASHshr2] = ACTIONS(1953), + [anon_sym_bit_DASHand2] = ACTIONS(1953), + [anon_sym_bit_DASHxor2] = ACTIONS(1953), + [anon_sym_bit_DASHor2] = ACTIONS(1953), + [anon_sym_DOT_DOT2] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1961), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1961), + [anon_sym_err_GT] = ACTIONS(1955), + [anon_sym_out_GT] = ACTIONS(1955), + [anon_sym_e_GT] = ACTIONS(1955), + [anon_sym_o_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT] = ACTIONS(1955), + [anon_sym_err_GT_GT] = ACTIONS(1953), + [anon_sym_out_GT_GT] = ACTIONS(1953), + [anon_sym_e_GT_GT] = ACTIONS(1953), + [anon_sym_o_GT_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), + [sym__unquoted_pattern] = ACTIONS(1963), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(516)] = { - [aux_sym__repeat_newline] = STATE(534), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1153), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(869), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(516), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(529)] = { + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1230), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(529), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(517)] = { - [aux_sym__repeat_newline] = STATE(535), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1235), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(871), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(517), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [STATE(530)] = { + [sym_comment] = STATE(530), + [anon_sym_else] = ACTIONS(1965), + [anon_sym_catch] = ACTIONS(1965), + [anon_sym_finally] = ACTIONS(1965), + [anon_sym_in] = ACTIONS(1965), + [sym__newline] = ACTIONS(1965), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_err_GT_PIPE] = ACTIONS(1965), + [anon_sym_out_GT_PIPE] = ACTIONS(1965), + [anon_sym_e_GT_PIPE] = ACTIONS(1965), + [anon_sym_o_GT_PIPE] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1965), + [anon_sym_RPAREN] = ACTIONS(1965), + [anon_sym_GT2] = ACTIONS(1967), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1965), + [anon_sym_STAR2] = ACTIONS(1967), + [anon_sym_and2] = ACTIONS(1965), + [anon_sym_xor2] = ACTIONS(1965), + [anon_sym_or2] = ACTIONS(1965), + [anon_sym_not_DASHin2] = ACTIONS(1965), + [anon_sym_has2] = ACTIONS(1965), + [anon_sym_not_DASHhas2] = ACTIONS(1965), + [anon_sym_starts_DASHwith2] = ACTIONS(1965), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1965), + [anon_sym_ends_DASHwith2] = ACTIONS(1965), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1965), + [anon_sym_EQ_EQ2] = ACTIONS(1965), + [anon_sym_BANG_EQ2] = ACTIONS(1965), + [anon_sym_LT2] = ACTIONS(1967), + [anon_sym_LT_EQ2] = ACTIONS(1965), + [anon_sym_GT_EQ2] = ACTIONS(1965), + [anon_sym_EQ_TILDE2] = ACTIONS(1965), + [anon_sym_BANG_TILDE2] = ACTIONS(1965), + [anon_sym_like2] = ACTIONS(1965), + [anon_sym_not_DASHlike2] = ACTIONS(1965), + [anon_sym_STAR_STAR2] = ACTIONS(1965), + [anon_sym_PLUS_PLUS2] = ACTIONS(1965), + [anon_sym_SLASH2] = ACTIONS(1967), + [anon_sym_mod2] = ACTIONS(1965), + [anon_sym_SLASH_SLASH2] = ACTIONS(1965), + [anon_sym_PLUS2] = ACTIONS(1967), + [anon_sym_bit_DASHshl2] = ACTIONS(1965), + [anon_sym_bit_DASHshr2] = ACTIONS(1965), + [anon_sym_bit_DASHand2] = ACTIONS(1965), + [anon_sym_bit_DASHxor2] = ACTIONS(1965), + [anon_sym_bit_DASHor2] = ACTIONS(1965), + [anon_sym_err_GT] = ACTIONS(1967), + [anon_sym_out_GT] = ACTIONS(1967), + [anon_sym_e_GT] = ACTIONS(1967), + [anon_sym_o_GT] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT] = ACTIONS(1967), + [anon_sym_err_GT_GT] = ACTIONS(1965), + [anon_sym_out_GT_GT] = ACTIONS(1965), + [anon_sym_e_GT_GT] = ACTIONS(1965), + [anon_sym_o_GT_GT] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1965), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(518)] = { - [aux_sym__repeat_newline] = STATE(536), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1216), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(874), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(518), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(531)] = { + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1233), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(994), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(531), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(519)] = { - [aux_sym__repeat_newline] = STATE(537), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1079), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(875), - [sym__unquoted_with_expr] = STATE(1082), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(519), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [STATE(532)] = { + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_val_entry] = STATE(4756), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(532), + [aux_sym_list_body_repeat1] = STATE(534), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(520)] = { - [aux_sym__repeat_newline] = STATE(538), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1179), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(876), - [sym__unquoted_with_expr] = STATE(1095), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(520), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(533)] = { + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1280), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1140), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(533), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(521)] = { - [aux_sym__repeat_newline] = STATE(539), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1191), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(877), - [sym__unquoted_with_expr] = STATE(1098), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(521), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(534)] = { + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_val_entry] = STATE(4950), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), + [sym_comment] = STATE(534), + [aux_sym_list_body_repeat1] = STATE(534), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [anon_sym_null] = ACTIONS(1972), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_DOT_DOT] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1996), + [anon_sym_DOT_DOT_LT] = ACTIONS(1996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(2002), + [aux_sym__val_number_decimal_token2] = ACTIONS(2005), + [aux_sym__val_number_decimal_token3] = ACTIONS(2008), + [aux_sym__val_number_decimal_token4] = ACTIONS(2008), + [aux_sym__val_number_token1] = ACTIONS(2011), + [aux_sym__val_number_token2] = ACTIONS(2011), + [aux_sym__val_number_token3] = ACTIONS(2011), + [anon_sym_0b] = ACTIONS(2014), + [anon_sym_0o] = ACTIONS(2017), + [anon_sym_0x] = ACTIONS(2017), + [sym_val_date] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2023), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2038), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2044), }, - [STATE(522)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1197), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(880), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(522), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(535)] = { + [aux_sym__repeat_newline] = STATE(683), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1184), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(899), + [sym__unquoted_with_expr] = STATE(1043), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(535), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(523)] = { - [aux_sym__repeat_newline] = STATE(541), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1217), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(882), - [sym__unquoted_with_expr] = STATE(1114), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(523), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(536)] = { + [aux_sym__repeat_newline] = STATE(686), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1192), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(904), + [sym__unquoted_with_expr] = STATE(1046), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(536), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(524)] = { - [sym_comment] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_GT2] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_STAR2] = ACTIONS(1792), - [anon_sym_and2] = ACTIONS(1790), - [anon_sym_xor2] = ACTIONS(1790), - [anon_sym_or2] = ACTIONS(1790), - [anon_sym_not_DASHin2] = ACTIONS(1790), - [anon_sym_has2] = ACTIONS(1790), - [anon_sym_not_DASHhas2] = ACTIONS(1790), - [anon_sym_starts_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), - [anon_sym_ends_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), - [anon_sym_EQ_EQ2] = ACTIONS(1790), - [anon_sym_BANG_EQ2] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ2] = ACTIONS(1790), - [anon_sym_GT_EQ2] = ACTIONS(1790), - [anon_sym_EQ_TILDE2] = ACTIONS(1790), - [anon_sym_BANG_TILDE2] = ACTIONS(1790), - [anon_sym_like2] = ACTIONS(1790), - [anon_sym_not_DASHlike2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_STAR_STAR2] = ACTIONS(1790), - [anon_sym_PLUS_PLUS2] = ACTIONS(1790), - [anon_sym_SLASH2] = ACTIONS(1792), - [anon_sym_mod2] = ACTIONS(1790), - [anon_sym_SLASH_SLASH2] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1792), - [anon_sym_bit_DASHshl2] = ACTIONS(1790), - [anon_sym_bit_DASHshr2] = ACTIONS(1790), - [anon_sym_bit_DASHand2] = ACTIONS(1790), - [anon_sym_bit_DASHxor2] = ACTIONS(1790), - [anon_sym_bit_DASHor2] = ACTIONS(1790), - [anon_sym_DOT_DOT2] = ACTIONS(1792), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1790), - [aux_sym__immediate_decimal_token5] = ACTIONS(1901), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [sym__unquoted_pattern] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(525)] = { - [sym_path] = STATE(715), - [sym_comment] = STATE(525), - [aux_sym__where_predicate_lhs_repeat1] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1534), - [anon_sym_in] = ACTIONS(1534), - [sym__newline] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_err_GT_PIPE] = ACTIONS(1534), - [anon_sym_out_GT_PIPE] = ACTIONS(1534), - [anon_sym_e_GT_PIPE] = ACTIONS(1534), - [anon_sym_o_GT_PIPE] = ACTIONS(1534), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1534), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1534), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1534), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1534), - [anon_sym_GT2] = ACTIONS(1532), - [anon_sym_DASH2] = ACTIONS(1534), - [anon_sym_STAR2] = ACTIONS(1532), - [anon_sym_and2] = ACTIONS(1534), - [anon_sym_xor2] = ACTIONS(1534), - [anon_sym_or2] = ACTIONS(1534), - [anon_sym_not_DASHin2] = ACTIONS(1534), - [anon_sym_has2] = ACTIONS(1534), - [anon_sym_not_DASHhas2] = ACTIONS(1534), - [anon_sym_starts_DASHwith2] = ACTIONS(1534), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1534), - [anon_sym_ends_DASHwith2] = ACTIONS(1534), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1534), - [anon_sym_EQ_EQ2] = ACTIONS(1534), - [anon_sym_BANG_EQ2] = ACTIONS(1534), - [anon_sym_LT2] = ACTIONS(1532), - [anon_sym_LT_EQ2] = ACTIONS(1534), - [anon_sym_GT_EQ2] = ACTIONS(1534), - [anon_sym_EQ_TILDE2] = ACTIONS(1534), - [anon_sym_BANG_TILDE2] = ACTIONS(1534), - [anon_sym_like2] = ACTIONS(1534), - [anon_sym_not_DASHlike2] = ACTIONS(1534), - [anon_sym_STAR_STAR2] = ACTIONS(1534), - [anon_sym_PLUS_PLUS2] = ACTIONS(1534), - [anon_sym_SLASH2] = ACTIONS(1532), - [anon_sym_mod2] = ACTIONS(1534), - [anon_sym_SLASH_SLASH2] = ACTIONS(1534), - [anon_sym_PLUS2] = ACTIONS(1532), - [anon_sym_bit_DASHshl2] = ACTIONS(1534), - [anon_sym_bit_DASHshr2] = ACTIONS(1534), - [anon_sym_bit_DASHand2] = ACTIONS(1534), - [anon_sym_bit_DASHxor2] = ACTIONS(1534), - [anon_sym_bit_DASHor2] = ACTIONS(1534), - [anon_sym_DOT_DOT2] = ACTIONS(1532), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1534), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1534), - [anon_sym_DOT2] = ACTIONS(1963), - [anon_sym_err_GT] = ACTIONS(1532), - [anon_sym_out_GT] = ACTIONS(1532), - [anon_sym_e_GT] = ACTIONS(1532), - [anon_sym_o_GT] = ACTIONS(1532), - [anon_sym_err_PLUSout_GT] = ACTIONS(1532), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), - [anon_sym_o_PLUSe_GT] = ACTIONS(1532), - [anon_sym_e_PLUSo_GT] = ACTIONS(1532), - [anon_sym_err_GT_GT] = ACTIONS(1534), - [anon_sym_out_GT_GT] = ACTIONS(1534), - [anon_sym_e_GT_GT] = ACTIONS(1534), - [anon_sym_o_GT_GT] = ACTIONS(1534), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1534), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1534), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1534), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(526)] = { - [sym_path] = STATE(715), - [sym_comment] = STATE(526), - [aux_sym__where_predicate_lhs_repeat1] = STATE(525), - [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(1869), - [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(527)] = { - [sym_comment] = STATE(527), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_catch] = ACTIONS(1966), - [anon_sym_finally] = ACTIONS(1966), - [anon_sym_in] = ACTIONS(1966), - [sym__newline] = ACTIONS(1966), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_err_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_GT_PIPE] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), - [anon_sym_COLON] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1966), - [anon_sym_GT2] = ACTIONS(1968), - [anon_sym_DASH2] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_STAR2] = ACTIONS(1968), - [anon_sym_and2] = ACTIONS(1966), - [anon_sym_xor2] = ACTIONS(1966), - [anon_sym_or2] = ACTIONS(1966), - [anon_sym_not_DASHin2] = ACTIONS(1966), - [anon_sym_has2] = ACTIONS(1966), - [anon_sym_not_DASHhas2] = ACTIONS(1966), - [anon_sym_starts_DASHwith2] = ACTIONS(1966), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1966), - [anon_sym_ends_DASHwith2] = ACTIONS(1966), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1966), - [anon_sym_EQ_EQ2] = ACTIONS(1966), - [anon_sym_BANG_EQ2] = ACTIONS(1966), - [anon_sym_LT2] = ACTIONS(1968), - [anon_sym_LT_EQ2] = ACTIONS(1966), - [anon_sym_GT_EQ2] = ACTIONS(1966), - [anon_sym_EQ_TILDE2] = ACTIONS(1966), - [anon_sym_BANG_TILDE2] = ACTIONS(1966), - [anon_sym_like2] = ACTIONS(1966), - [anon_sym_not_DASHlike2] = ACTIONS(1966), - [anon_sym_STAR_STAR2] = ACTIONS(1966), - [anon_sym_PLUS_PLUS2] = ACTIONS(1966), - [anon_sym_SLASH2] = ACTIONS(1968), - [anon_sym_mod2] = ACTIONS(1966), - [anon_sym_SLASH_SLASH2] = ACTIONS(1966), - [anon_sym_PLUS2] = ACTIONS(1968), - [anon_sym_bit_DASHshl2] = ACTIONS(1966), - [anon_sym_bit_DASHshr2] = ACTIONS(1966), - [anon_sym_bit_DASHand2] = ACTIONS(1966), - [anon_sym_bit_DASHxor2] = ACTIONS(1966), - [anon_sym_bit_DASHor2] = ACTIONS(1966), - [anon_sym_err_GT] = ACTIONS(1968), - [anon_sym_out_GT] = ACTIONS(1968), - [anon_sym_e_GT] = ACTIONS(1968), - [anon_sym_o_GT] = ACTIONS(1968), - [anon_sym_err_PLUSout_GT] = ACTIONS(1968), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), - [anon_sym_o_PLUSe_GT] = ACTIONS(1968), - [anon_sym_e_PLUSo_GT] = ACTIONS(1968), - [anon_sym_err_GT_GT] = ACTIONS(1966), - [anon_sym_out_GT_GT] = ACTIONS(1966), - [anon_sym_e_GT_GT] = ACTIONS(1966), - [anon_sym_o_GT_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(528)] = { - [sym_comment] = STATE(528), - [ts_builtin_sym_end] = 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_COLON] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1460), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1460), - [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(1460), - [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(1460), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1460), - [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(1460), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), - [anon_sym_QMARK2] = ACTIONS(1970), - [anon_sym_DOT2] = ACTIONS(1460), - [anon_sym_err_GT] = ACTIONS(1460), - [anon_sym_out_GT] = ACTIONS(1460), - [anon_sym_e_GT] = ACTIONS(1460), - [anon_sym_o_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT] = ACTIONS(1460), - [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(3), - }, - [STATE(529)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1273), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(740), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(529), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(537)] = { + [aux_sym__repeat_newline] = STATE(687), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1194), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(906), + [sym__unquoted_with_expr] = STATE(1047), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(537), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(530)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1151), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(741), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(530), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(538)] = { + [aux_sym__repeat_newline] = STATE(689), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1196), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(909), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(538), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(531)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1188), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(742), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(539)] = { + [aux_sym__repeat_newline] = STATE(556), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2061), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(899), + [sym__unquoted_with_expr] = STATE(1043), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(539), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(532)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1237), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(744), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(532), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(540)] = { + [aux_sym__repeat_newline] = STATE(557), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2062), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(904), + [sym__unquoted_with_expr] = STATE(1046), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(540), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(533)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1269), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(745), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(533), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(541)] = { + [aux_sym__repeat_newline] = STATE(558), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2063), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(906), + [sym__unquoted_with_expr] = STATE(1047), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(541), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(534)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1146), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(733), + [STATE(542)] = { + [aux_sym__repeat_newline] = STATE(559), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2065), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(909), [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(542), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1210), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(748), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(535), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(543)] = { + [aux_sym__repeat_newline] = STATE(560), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2067), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(913), + [sym__unquoted_with_expr] = STATE(1051), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(543), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1218), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(749), + [STATE(544)] = { + [aux_sym__repeat_newline] = STATE(561), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2068), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(915), [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(536), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1057), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(750), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(537), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1250), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(752), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1260), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(753), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(539), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1267), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(754), - [sym__unquoted_with_expr] = STATE(1070), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(540), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(544), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(541)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1215), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(755), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(541), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(545)] = { + [aux_sym__repeat_newline] = STATE(562), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2069), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(897), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(545), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(542)] = { - [aux_sym__repeat_newline] = STATE(559), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1148), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(756), - [sym__unquoted_with_expr] = STATE(1077), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(542), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(546)] = { + [aux_sym__repeat_newline] = STATE(563), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2070), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(902), + [sym__unquoted_with_expr] = STATE(1058), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(546), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(543)] = { - [aux_sym__repeat_newline] = STATE(560), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1152), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(757), - [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(543), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(547)] = { + [aux_sym__repeat_newline] = STATE(564), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1059), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(911), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(547), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(544)] = { - [aux_sym__repeat_newline] = STATE(561), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1156), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(759), - [sym__unquoted_with_expr] = STATE(1083), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(544), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(548)] = { + [aux_sym__repeat_newline] = STATE(565), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2072), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1061), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(548), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(545)] = { - [aux_sym__repeat_newline] = STATE(562), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1174), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(760), - [sym__unquoted_with_expr] = STATE(1094), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(545), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(549)] = { + [aux_sym__repeat_newline] = STATE(566), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2073), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(549), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(546)] = { - [aux_sym__repeat_newline] = STATE(563), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1186), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(762), - [sym__unquoted_with_expr] = STATE(1096), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(546), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(550)] = { + [aux_sym__repeat_newline] = STATE(567), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2074), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1065), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(550), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(547)] = { - [aux_sym__repeat_newline] = STATE(564), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1190), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(763), - [sym__unquoted_with_expr] = STATE(1097), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(547), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(551)] = { + [aux_sym__repeat_newline] = STATE(568), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2075), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(551), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(548)] = { - [aux_sym__repeat_newline] = STATE(565), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1242), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(987), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(548), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(552)] = { + [aux_sym__repeat_newline] = STATE(691), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1199), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(913), + [sym__unquoted_with_expr] = STATE(1051), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(552), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(549)] = { - [aux_sym__repeat_newline] = STATE(579), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1198), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(789), - [sym__unquoted_with_expr] = STATE(1139), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(549), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(553)] = { + [aux_sym__repeat_newline] = STATE(692), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1152), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(915), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(553), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(550)] = { - [aux_sym__repeat_newline] = STATE(606), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1009), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1011), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(550), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(554)] = { + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1240), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(554), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(551)] = { - [aux_sym__repeat_newline] = STATE(607), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1158), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [STATE(555)] = { + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1248), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(551), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [sym__unquoted_with_expr] = STATE(999), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(555), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(552)] = { - [aux_sym__repeat_newline] = STATE(621), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(552), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(556)] = { + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2094), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(556), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(553)] = { - [aux_sym__repeat_newline] = STATE(622), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1192), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(553), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(557)] = { + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2096), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(755), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(557), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(623), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1208), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1025), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(554), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [STATE(558)] = { + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2098), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(756), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(558), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(555)] = { - [sym_comment] = STATE(555), - [anon_sym_in] = ACTIONS(1972), - [sym__newline] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_err_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_GT_PIPE] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_GT2] = ACTIONS(1974), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_STAR2] = ACTIONS(1974), - [anon_sym_and2] = ACTIONS(1972), - [anon_sym_xor2] = ACTIONS(1972), - [anon_sym_or2] = ACTIONS(1972), - [anon_sym_not_DASHin2] = ACTIONS(1972), - [anon_sym_has2] = ACTIONS(1972), - [anon_sym_not_DASHhas2] = ACTIONS(1972), - [anon_sym_starts_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), - [anon_sym_ends_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), - [anon_sym_EQ_EQ2] = ACTIONS(1972), - [anon_sym_BANG_EQ2] = ACTIONS(1972), - [anon_sym_LT2] = ACTIONS(1974), - [anon_sym_LT_EQ2] = ACTIONS(1972), - [anon_sym_GT_EQ2] = ACTIONS(1972), - [anon_sym_EQ_TILDE2] = ACTIONS(1972), - [anon_sym_BANG_TILDE2] = ACTIONS(1972), - [anon_sym_like2] = ACTIONS(1972), - [anon_sym_not_DASHlike2] = ACTIONS(1972), - [anon_sym_LPAREN2] = ACTIONS(1976), - [anon_sym_STAR_STAR2] = ACTIONS(1972), - [anon_sym_PLUS_PLUS2] = ACTIONS(1972), - [anon_sym_SLASH2] = ACTIONS(1974), - [anon_sym_mod2] = ACTIONS(1972), - [anon_sym_SLASH_SLASH2] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1974), - [anon_sym_bit_DASHshl2] = ACTIONS(1972), - [anon_sym_bit_DASHshr2] = ACTIONS(1972), - [anon_sym_bit_DASHand2] = ACTIONS(1972), - [anon_sym_bit_DASHxor2] = ACTIONS(1972), - [anon_sym_bit_DASHor2] = ACTIONS(1972), - [anon_sym_DOT_DOT2] = ACTIONS(1978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1980), - [anon_sym_err_GT] = ACTIONS(1974), - [anon_sym_out_GT] = ACTIONS(1974), - [anon_sym_e_GT] = ACTIONS(1974), - [anon_sym_o_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT] = ACTIONS(1974), - [anon_sym_err_GT_GT] = ACTIONS(1972), - [anon_sym_out_GT_GT] = ACTIONS(1972), - [anon_sym_e_GT_GT] = ACTIONS(1972), - [anon_sym_o_GT_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), - [sym__unquoted_pattern] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(556)] = { - [sym_comment] = STATE(556), - [anon_sym_in] = ACTIONS(1982), - [sym__newline] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_err_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_GT_PIPE] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_GT2] = ACTIONS(1984), - [anon_sym_DASH2] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_STAR2] = ACTIONS(1984), - [anon_sym_and2] = ACTIONS(1982), - [anon_sym_xor2] = ACTIONS(1982), - [anon_sym_or2] = ACTIONS(1982), - [anon_sym_not_DASHin2] = ACTIONS(1982), - [anon_sym_has2] = ACTIONS(1982), - [anon_sym_not_DASHhas2] = ACTIONS(1982), - [anon_sym_starts_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), - [anon_sym_ends_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), - [anon_sym_EQ_EQ2] = ACTIONS(1982), - [anon_sym_BANG_EQ2] = ACTIONS(1982), - [anon_sym_LT2] = ACTIONS(1984), - [anon_sym_LT_EQ2] = ACTIONS(1982), - [anon_sym_GT_EQ2] = ACTIONS(1982), - [anon_sym_EQ_TILDE2] = ACTIONS(1982), - [anon_sym_BANG_TILDE2] = ACTIONS(1982), - [anon_sym_like2] = ACTIONS(1982), - [anon_sym_not_DASHlike2] = ACTIONS(1982), - [anon_sym_LPAREN2] = ACTIONS(1986), - [anon_sym_STAR_STAR2] = ACTIONS(1982), - [anon_sym_PLUS_PLUS2] = ACTIONS(1982), - [anon_sym_SLASH2] = ACTIONS(1984), - [anon_sym_mod2] = ACTIONS(1982), - [anon_sym_SLASH_SLASH2] = ACTIONS(1982), - [anon_sym_PLUS2] = ACTIONS(1984), - [anon_sym_bit_DASHshl2] = ACTIONS(1982), - [anon_sym_bit_DASHshr2] = ACTIONS(1982), - [anon_sym_bit_DASHand2] = ACTIONS(1982), - [anon_sym_bit_DASHxor2] = ACTIONS(1982), - [anon_sym_bit_DASHor2] = ACTIONS(1982), - [anon_sym_DOT_DOT2] = ACTIONS(1988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1990), - [anon_sym_err_GT] = ACTIONS(1984), - [anon_sym_out_GT] = ACTIONS(1984), - [anon_sym_e_GT] = ACTIONS(1984), - [anon_sym_o_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT] = ACTIONS(1984), - [anon_sym_err_GT_GT] = ACTIONS(1982), - [anon_sym_out_GT_GT] = ACTIONS(1982), - [anon_sym_e_GT_GT] = ACTIONS(1982), - [anon_sym_o_GT_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), - [sym__unquoted_pattern] = ACTIONS(1992), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(557)] = { - [sym_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_GT2] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1846), - [anon_sym_STAR2] = ACTIONS(1848), - [anon_sym_and2] = ACTIONS(1846), - [anon_sym_xor2] = ACTIONS(1846), - [anon_sym_or2] = ACTIONS(1846), - [anon_sym_not_DASHin2] = ACTIONS(1846), - [anon_sym_has2] = ACTIONS(1846), - [anon_sym_not_DASHhas2] = ACTIONS(1846), - [anon_sym_starts_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), - [anon_sym_ends_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), - [anon_sym_EQ_EQ2] = ACTIONS(1846), - [anon_sym_BANG_EQ2] = ACTIONS(1846), - [anon_sym_LT2] = ACTIONS(1848), - [anon_sym_LT_EQ2] = ACTIONS(1846), - [anon_sym_GT_EQ2] = ACTIONS(1846), - [anon_sym_EQ_TILDE2] = ACTIONS(1846), - [anon_sym_BANG_TILDE2] = ACTIONS(1846), - [anon_sym_like2] = ACTIONS(1846), - [anon_sym_not_DASHlike2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1846), - [anon_sym_STAR_STAR2] = ACTIONS(1846), - [anon_sym_PLUS_PLUS2] = ACTIONS(1846), - [anon_sym_SLASH2] = ACTIONS(1848), - [anon_sym_mod2] = ACTIONS(1846), - [anon_sym_SLASH_SLASH2] = ACTIONS(1846), - [anon_sym_PLUS2] = ACTIONS(1848), - [anon_sym_bit_DASHshl2] = ACTIONS(1846), - [anon_sym_bit_DASHshr2] = ACTIONS(1846), - [anon_sym_bit_DASHand2] = ACTIONS(1846), - [anon_sym_bit_DASHxor2] = ACTIONS(1846), - [anon_sym_bit_DASHor2] = ACTIONS(1846), - [anon_sym_DOT_DOT2] = ACTIONS(1848), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), - [aux_sym__immediate_decimal_token5] = ACTIONS(1994), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), - [sym__unquoted_pattern] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(558)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_val_entry] = STATE(4824), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(558), - [aux_sym_list_body_repeat1] = STATE(676), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), - }, [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1145), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(886), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2100), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(757), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(559), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1163), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(887), - [sym__unquoted_with_expr] = STATE(1086), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2102), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(766), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(560), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1168), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(888), - [sym__unquoted_with_expr] = STATE(1088), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2104), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(767), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(561), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1173), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(889), - [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2106), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(562), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1178), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(890), - [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2109), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1128), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(563), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1183), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(891), - [sym__unquoted_with_expr] = STATE(1099), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1130), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(989), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(564), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1201), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(905), - [sym__unquoted_with_expr] = STATE(1101), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2111), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1138), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(565), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(580), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2034), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2115), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1140), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(566), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(581), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2036), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1002), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(793), + [sym__unquoted_with_expr] = STATE(1146), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(567), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(582), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2037), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2125), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(794), + [sym__unquoted_with_expr] = STATE(1040), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(568), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(569)] = { [aux_sym__repeat_newline] = STATE(583), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2039), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1053), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(569), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(570)] = { [aux_sym__repeat_newline] = STATE(584), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2041), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(867), - [sym__unquoted_with_expr] = STATE(1035), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2129), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(570), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(571)] = { [aux_sym__repeat_newline] = STATE(585), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2042), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(869), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(748), + [sym__unquoted_with_expr] = STATE(1151), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(571), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(572)] = { [aux_sym__repeat_newline] = STATE(586), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2044), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(871), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2131), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1079), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(572), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(573)] = { [aux_sym__repeat_newline] = STATE(587), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2045), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(874), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2136), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(573), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(574)] = { [aux_sym__repeat_newline] = STATE(588), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1079), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(875), - [sym__unquoted_with_expr] = STATE(1082), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2137), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(890), + [sym__unquoted_with_expr] = STATE(1085), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(574), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(575)] = { - [aux_sym__repeat_newline] = STATE(681), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2046), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(876), - [sym__unquoted_with_expr] = STATE(1095), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(589), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2138), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(894), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(575), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(576)] = { [aux_sym__repeat_newline] = STATE(590), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2047), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(877), - [sym__unquoted_with_expr] = STATE(1098), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2140), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(896), + [sym__unquoted_with_expr] = STATE(1121), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(576), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(577)] = { [aux_sym__repeat_newline] = STATE(591), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2048), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(880), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(993), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(905), + [sym__unquoted_with_expr] = STATE(1005), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(577), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(578)] = { [aux_sym__repeat_newline] = STATE(592), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2049), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(882), - [sym__unquoted_with_expr] = STATE(1114), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2142), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(922), + [sym__unquoted_with_expr] = STATE(1041), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(578), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(579)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1206), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(906), - [sym__unquoted_with_expr] = STATE(1104), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(593), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2145), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(759), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(579), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(580)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2054), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(740), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(594), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2148), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(761), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(580), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(581)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2154), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(741), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(595), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2150), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(581), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2058), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(742), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(603), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1203), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(897), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(582), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2060), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(744), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2050), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1149), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(583), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(584)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2062), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(745), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2052), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(584), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), [sym__expr_binary_expression_parenthesized] = STATE(2064), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(733), - [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(994), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(585), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(586)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2066), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(748), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2079), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(586), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(587)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2068), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(749), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2087), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(999), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(587), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1057), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(750), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2090), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(588), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(533), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1243), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(867), - [sym__unquoted_with_expr] = STATE(1035), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2092), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(825), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(589), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2072), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(753), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2108), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(590), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2074), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(754), - [sym__unquoted_with_expr] = STATE(1070), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1008), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(827), + [sym__unquoted_with_expr] = STATE(1010), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(591), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2076), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(755), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2133), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(592), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(608), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2078), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(756), - [sym__unquoted_with_expr] = STATE(1077), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2135), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(593), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(609), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2079), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(757), - [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(844), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(594), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(610), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2080), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(759), - [sym__unquoted_with_expr] = STATE(1083), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(2021), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(850), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(595), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(611), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2081), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(760), - [sym__unquoted_with_expr] = STATE(1094), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1271), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(596), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(597)] = { - [aux_sym__repeat_newline] = STATE(612), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2082), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(762), - [sym__unquoted_with_expr] = STATE(1096), - [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(597), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [ts_builtin_sym_end] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1784), + [sym__newline] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_err_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_GT_PIPE] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), + [anon_sym_GT2] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1784), + [anon_sym_xor2] = ACTIONS(1784), + [anon_sym_or2] = ACTIONS(1784), + [anon_sym_not_DASHin2] = ACTIONS(1784), + [anon_sym_has2] = ACTIONS(1784), + [anon_sym_not_DASHhas2] = ACTIONS(1784), + [anon_sym_starts_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), + [anon_sym_ends_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), + [anon_sym_EQ_EQ2] = ACTIONS(1784), + [anon_sym_BANG_EQ2] = ACTIONS(1784), + [anon_sym_LT2] = ACTIONS(1786), + [anon_sym_LT_EQ2] = ACTIONS(1784), + [anon_sym_GT_EQ2] = ACTIONS(1784), + [anon_sym_EQ_TILDE2] = ACTIONS(1784), + [anon_sym_BANG_TILDE2] = ACTIONS(1784), + [anon_sym_like2] = ACTIONS(1784), + [anon_sym_not_DASHlike2] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1784), + [anon_sym_PLUS_PLUS2] = ACTIONS(1784), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1784), + [anon_sym_SLASH_SLASH2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_bit_DASHshl2] = ACTIONS(1784), + [anon_sym_bit_DASHshr2] = ACTIONS(1784), + [anon_sym_bit_DASHand2] = ACTIONS(1784), + [anon_sym_bit_DASHxor2] = ACTIONS(1784), + [anon_sym_bit_DASHor2] = ACTIONS(1784), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), + [aux_sym__immediate_decimal_token5] = ACTIONS(1911), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1784), + [anon_sym_out_GT_GT] = ACTIONS(1784), + [anon_sym_e_GT_GT] = ACTIONS(1784), + [anon_sym_o_GT_GT] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), + [sym__unquoted_pattern] = ACTIONS(1786), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(613), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2084), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(763), - [sym__unquoted_with_expr] = STATE(1097), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(685), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1206), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(902), + [sym__unquoted_with_expr] = STATE(1058), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(598), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(614), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2086), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(987), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(688), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1059), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(911), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(599), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(615), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2088), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(789), - [sym__unquoted_with_expr] = STATE(1139), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(681), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1208), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1061), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(600), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(616), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1009), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1011), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1274), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(825), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(602)] = { - [aux_sym__repeat_newline] = STATE(617), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2089), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1278), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(602), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(618), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2090), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1267), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(603), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(619), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2091), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1008), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym__unquoted_with_expr] = STATE(1010), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(604), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(620), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2092), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1025), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(533), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1210), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(605), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1106), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(907), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(663), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1211), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1065), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(607)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1276), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(908), - [sym__unquoted_with_expr] = STATE(1110), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(664), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1212), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(607), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2107), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(886), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1156), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2109), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(887), - [sym__unquoted_with_expr] = STATE(1086), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1158), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(609), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2111), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(888), - [sym__unquoted_with_expr] = STATE(1088), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(624), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1591), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(899), + [sym__unquoted_with_expr] = STATE(1043), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(610), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(889), - [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(625), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1592), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(904), + [sym__unquoted_with_expr] = STATE(1046), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(611), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2116), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(890), - [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(693), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1593), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(906), + [sym__unquoted_with_expr] = STATE(1047), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(612), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2118), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(891), - [sym__unquoted_with_expr] = STATE(1099), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(626), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1594), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(909), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(613), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2121), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(905), - [sym__unquoted_with_expr] = STATE(1101), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(627), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1595), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(913), + [sym__unquoted_with_expr] = STATE(1051), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(614), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(615)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(906), - [sym__unquoted_with_expr] = STATE(1104), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(628), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1596), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(915), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(615), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1106), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(907), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(629), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1597), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(897), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(616), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2125), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(908), - [sym__unquoted_with_expr] = STATE(1110), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(630), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1598), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(902), + [sym__unquoted_with_expr] = STATE(1058), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(617), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(618)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(909), - [sym__unquoted_with_expr] = STATE(1112), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(631), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1059), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(911), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(618), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(910), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(632), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1599), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1061), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(619), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2132), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(734), - [sym__unquoted_with_expr] = STATE(1117), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(633), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1600), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(620), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1221), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(909), - [sym__unquoted_with_expr] = STATE(1112), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(634), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1601), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1065), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(621), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1226), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(910), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(635), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1602), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1231), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(734), - [sym__unquoted_with_expr] = STATE(1117), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1160), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(844), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(624)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_val_entry] = STATE(4893), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1603), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(624), - [aux_sym_list_body_repeat1] = STATE(676), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(625)] = { - [aux_sym__repeat_newline] = STATE(638), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1664), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1605), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(755), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(625), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(639), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1667), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1002), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1609), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(757), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(627)] = { - [aux_sym__repeat_newline] = STATE(640), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1668), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1611), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(766), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(627), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(515), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1669), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1613), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(767), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(629)] = { - [aux_sym__repeat_newline] = STATE(641), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1672), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(867), - [sym__unquoted_with_expr] = STATE(1035), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1615), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(629), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(630)] = { - [aux_sym__repeat_newline] = STATE(642), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1673), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(869), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1617), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1128), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(630), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(643), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1675), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(871), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1130), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(989), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(631), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(632)] = { - [aux_sym__repeat_newline] = STATE(644), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1678), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(874), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1619), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1138), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(632), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(633)] = { - [aux_sym__repeat_newline] = STATE(645), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1079), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(875), - [sym__unquoted_with_expr] = STATE(1082), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1621), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1140), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(633), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(634)] = { - [aux_sym__repeat_newline] = STATE(646), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1683), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(876), - [sym__unquoted_with_expr] = STATE(1095), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1623), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(793), + [sym__unquoted_with_expr] = STATE(1146), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(634), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(647), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1686), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(877), - [sym__unquoted_with_expr] = STATE(1098), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1625), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(794), + [sym__unquoted_with_expr] = STATE(1040), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(635), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(648), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1531), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(880), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(650), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1627), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1053), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(636), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(649), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1532), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(882), - [sym__unquoted_with_expr] = STATE(1114), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(651), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1628), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(637), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1541), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(740), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(652), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1542), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(748), + [sym__unquoted_with_expr] = STATE(1151), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(638), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1543), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(741), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(653), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1629), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1079), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(639), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1545), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(742), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(654), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1705), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(640), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1549), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(745), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(655), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1631), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(890), + [sym__unquoted_with_expr] = STATE(1085), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(641), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(642)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1551), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(733), - [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(656), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1632), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(894), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(642), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1553), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(748), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(657), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1633), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(896), + [sym__unquoted_with_expr] = STATE(1121), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(643), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1555), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(749), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(658), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(993), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(905), + [sym__unquoted_with_expr] = STATE(1005), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(644), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(645)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1057), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(750), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(659), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1634), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(922), + [sym__unquoted_with_expr] = STATE(1041), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(645), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1557), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(752), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(660), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1636), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(759), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(646), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1559), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(753), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(661), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1637), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(761), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(647), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1561), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(754), - [sym__unquoted_with_expr] = STATE(1070), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(662), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1638), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(648), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(649)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1563), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(755), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1162), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(850), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(649), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(663), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1566), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(756), - [sym__unquoted_with_expr] = STATE(1077), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1652), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1149), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(650), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(664), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1568), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(757), - [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1654), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(651), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(665), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1569), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(759), - [sym__unquoted_with_expr] = STATE(1083), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1656), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(994), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(652), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(666), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1570), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(760), - [sym__unquoted_with_expr] = STATE(1094), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1658), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(653), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(667), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1571), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(762), - [sym__unquoted_with_expr] = STATE(1096), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1660), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(999), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(654), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(668), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1572), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(763), - [sym__unquoted_with_expr] = STATE(1097), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1662), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(655), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(669), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1574), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(987), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1664), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(825), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(656), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(657)] = { - [aux_sym__repeat_newline] = STATE(670), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1575), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(789), - [sym__unquoted_with_expr] = STATE(1139), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1666), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(657), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(671), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1009), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1011), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1008), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(827), + [sym__unquoted_with_expr] = STATE(1010), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(658), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(659)] = { - [aux_sym__repeat_newline] = STATE(672), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1577), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1668), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(659), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(673), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1578), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1670), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(660), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(674), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1579), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1672), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(844), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(661), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(675), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1580), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1025), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1674), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(850), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(662), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1593), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(886), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1283), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(793), + [sym__unquoted_with_expr] = STATE(1146), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(663), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(664)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1595), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(887), - [sym__unquoted_with_expr] = STATE(1086), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1266), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(794), + [sym__unquoted_with_expr] = STATE(1040), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(664), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1597), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(888), - [sym__unquoted_with_expr] = STATE(1088), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(676), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1189), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1053), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(665), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1599), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(889), - [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(529), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1229), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(666), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(667)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1601), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(890), - [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_parenthesized] = STATE(4246), + [sym__spread_parenthesized] = STATE(5089), + [sym_val_range] = STATE(5051), + [sym__val_range] = STATE(4908), + [sym__value] = STATE(5051), + [sym_val_nothing] = STATE(4772), + [sym_val_bool] = STATE(4617), + [sym__spread_variable] = STATE(4948), + [sym_val_variable] = STATE(4025), + [sym_val_cellpath] = STATE(4772), + [sym_val_number] = STATE(4772), + [sym__val_number_decimal] = STATE(3714), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4772), + [sym_val_filesize] = STATE(4772), + [sym_val_binary] = STATE(4772), + [sym_val_string] = STATE(4772), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_interpolated] = STATE(4772), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4844), + [sym_val_list] = STATE(4772), + [sym__spread_list] = STATE(5089), + [sym_val_entry] = STATE(4893), + [sym_val_record] = STATE(4772), + [sym_val_table] = STATE(4772), + [sym_val_closure] = STATE(4772), + [sym__unquoted_in_list] = STATE(4360), + [sym__unquoted_in_list_with_expr] = STATE(5051), + [sym__unquoted_anonymous_prefix] = STATE(4908), [sym_comment] = STATE(667), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_list_body_repeat1] = STATE(534), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(668)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1603), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(891), - [sym__unquoted_with_expr] = STATE(1099), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_path] = STATE(703), [sym_comment] = STATE(668), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym__where_predicate_lhs_repeat1] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_GT2] = ACTIONS(1536), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_STAR2] = ACTIONS(1536), + [anon_sym_and2] = ACTIONS(1538), + [anon_sym_xor2] = ACTIONS(1538), + [anon_sym_or2] = ACTIONS(1538), + [anon_sym_not_DASHin2] = ACTIONS(1538), + [anon_sym_has2] = ACTIONS(1538), + [anon_sym_not_DASHhas2] = ACTIONS(1538), + [anon_sym_starts_DASHwith2] = ACTIONS(1538), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1538), + [anon_sym_ends_DASHwith2] = ACTIONS(1538), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1538), + [anon_sym_EQ_EQ2] = ACTIONS(1538), + [anon_sym_BANG_EQ2] = ACTIONS(1538), + [anon_sym_LT2] = ACTIONS(1536), + [anon_sym_LT_EQ2] = ACTIONS(1538), + [anon_sym_GT_EQ2] = ACTIONS(1538), + [anon_sym_EQ_TILDE2] = ACTIONS(1538), + [anon_sym_BANG_TILDE2] = ACTIONS(1538), + [anon_sym_like2] = ACTIONS(1538), + [anon_sym_not_DASHlike2] = ACTIONS(1538), + [anon_sym_STAR_STAR2] = ACTIONS(1538), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1536), + [anon_sym_mod2] = ACTIONS(1538), + [anon_sym_SLASH_SLASH2] = ACTIONS(1538), + [anon_sym_PLUS2] = ACTIONS(1536), + [anon_sym_bit_DASHshl2] = ACTIONS(1538), + [anon_sym_bit_DASHshr2] = ACTIONS(1538), + [anon_sym_bit_DASHand2] = ACTIONS(1538), + [anon_sym_bit_DASHxor2] = ACTIONS(1538), + [anon_sym_bit_DASHor2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [anon_sym_DOT2] = ACTIONS(2083), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(669)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1605), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(905), - [sym__unquoted_with_expr] = STATE(1101), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_path] = STATE(703), [sym_comment] = STATE(669), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym__where_predicate_lhs_repeat1] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_has2] = ACTIONS(1528), + [anon_sym_not_DASHhas2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_like2] = ACTIONS(1528), + [anon_sym_not_DASHlike2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1528), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_DOT2] = ACTIONS(1913), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1607), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(906), - [sym__unquoted_with_expr] = STATE(1104), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(531), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1284), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(748), + [sym__unquoted_with_expr] = STATE(1151), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(670), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(671)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1106), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(907), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(554), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1181), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1079), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(671), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(672)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1609), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(908), - [sym__unquoted_with_expr] = STATE(1110), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(555), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1197), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(672), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(673)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1611), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(909), - [sym__unquoted_with_expr] = STATE(1112), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(596), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1217), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(890), + [sym__unquoted_with_expr] = STATE(1085), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(673), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(674)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1613), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(910), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(601), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1234), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(894), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(674), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(675)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1615), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(734), - [sym__unquoted_with_expr] = STATE(1117), - [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(675), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [sym__newline] = ACTIONS(1929), + [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_COLON] = 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_QMARK2] = ACTIONS(2086), + [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(676)] = { + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1227), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1149), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(676), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(676)] = { - [sym_expr_parenthesized] = STATE(4280), - [sym__spread_parenthesized] = STATE(4959), - [sym_val_range] = STATE(4961), - [sym__val_range] = STATE(4729), - [sym__value] = STATE(4961), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4431), - [sym__spread_variable] = STATE(4968), - [sym_val_variable] = STATE(4050), - [sym_val_cellpath] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(3653), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4846), - [sym__inter_double_quotes] = STATE(4847), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4959), - [sym_val_entry] = STATE(5015), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__unquoted_in_list] = STATE(4479), - [sym__unquoted_in_list_with_expr] = STATE(4961), - [sym__unquoted_anonymous_prefix] = STATE(4729), - [sym_comment] = STATE(676), - [aux_sym_list_body_repeat1] = STATE(676), - [anon_sym_true] = ACTIONS(2014), - [anon_sym_false] = ACTIONS(2014), - [anon_sym_null] = ACTIONS(2017), - [aux_sym_cmd_identifier_token3] = ACTIONS(2020), - [aux_sym_cmd_identifier_token4] = ACTIONS(2020), - [aux_sym_cmd_identifier_token5] = ACTIONS(2020), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2038), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2041), - [anon_sym_DOT_DOT_LT] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2047), - [aux_sym__val_number_decimal_token2] = ACTIONS(2050), - [aux_sym__val_number_decimal_token3] = ACTIONS(2053), - [aux_sym__val_number_decimal_token4] = ACTIONS(2053), - [aux_sym__val_number_token1] = ACTIONS(2056), - [aux_sym__val_number_token2] = ACTIONS(2056), - [aux_sym__val_number_token3] = ACTIONS(2056), - [anon_sym_0b] = ACTIONS(2059), - [anon_sym_0o] = ACTIONS(2062), - [anon_sym_0x] = ACTIONS(2062), - [sym_val_date] = ACTIONS(2065), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_BQUOTE] = ACTIONS(2074), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2077), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2083), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2089), - }, [STATE(677)] = { - [aux_sym__repeat_newline] = STATE(529), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1144), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(602), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1246), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(896), + [sym__unquoted_with_expr] = STATE(1121), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(677), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(678)] = { - [aux_sym__repeat_newline] = STATE(530), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1187), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1002), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(604), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(993), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(905), + [sym__unquoted_with_expr] = STATE(1005), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(678), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(679)] = { - [aux_sym__repeat_newline] = STATE(531), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1162), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(608), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1177), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(922), + [sym__unquoted_with_expr] = STATE(1041), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(679), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(680)] = { - [aux_sym__repeat_newline] = STATE(532), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(1265), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(609), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1191), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(759), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(680), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(681)] = { - [aux_sym__repeat_newline] = STATE(2241), - [sym_expr_unary] = STATE(1246), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1246), - [sym__expr_binary_expression_parenthesized] = STATE(2070), - [sym_expr_parenthesized] = STATE(858), - [sym_val_range] = STATE(1246), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(1246), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(752), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1277), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1138), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(681), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [sym__newline] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(682)] = { + [aux_sym__repeat_newline] = STATE(649), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1226), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(682), - [ts_builtin_sym_end] = 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_COLON] = ACTIONS(1470), - [anon_sym_GT2] = ACTIONS(1468), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1468), - [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(1468), - [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(1468), - [anon_sym_mod2] = ACTIONS(1470), - [anon_sym_SLASH_SLASH2] = ACTIONS(1470), - [anon_sym_PLUS2] = ACTIONS(1468), - [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(1468), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1468), - [anon_sym_err_GT] = ACTIONS(1468), - [anon_sym_out_GT] = ACTIONS(1468), - [anon_sym_e_GT] = ACTIONS(1468), - [anon_sym_o_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT] = ACTIONS(1468), - [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_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(683)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1235), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(683), - [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(1818), - [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_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(684)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(684), - [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(1818), - [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(1832), + [anon_sym_in] = ACTIONS(1832), + [sym__newline] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_err_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_GT_PIPE] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), + [anon_sym_GT2] = ACTIONS(1834), + [anon_sym_DASH2] = ACTIONS(1832), + [anon_sym_STAR2] = ACTIONS(1834), + [anon_sym_and2] = ACTIONS(1832), + [anon_sym_xor2] = ACTIONS(1832), + [anon_sym_or2] = ACTIONS(1832), + [anon_sym_not_DASHin2] = ACTIONS(1832), + [anon_sym_has2] = ACTIONS(1832), + [anon_sym_not_DASHhas2] = ACTIONS(1832), + [anon_sym_starts_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), + [anon_sym_ends_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), + [anon_sym_EQ_EQ2] = ACTIONS(1832), + [anon_sym_BANG_EQ2] = ACTIONS(1832), + [anon_sym_LT2] = ACTIONS(1834), + [anon_sym_LT_EQ2] = ACTIONS(1832), + [anon_sym_GT_EQ2] = ACTIONS(1832), + [anon_sym_EQ_TILDE2] = ACTIONS(1832), + [anon_sym_BANG_TILDE2] = ACTIONS(1832), + [anon_sym_like2] = ACTIONS(1832), + [anon_sym_not_DASHlike2] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_STAR_STAR2] = ACTIONS(1832), + [anon_sym_PLUS_PLUS2] = ACTIONS(1832), + [anon_sym_SLASH2] = ACTIONS(1834), + [anon_sym_mod2] = ACTIONS(1832), + [anon_sym_SLASH_SLASH2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1834), + [anon_sym_bit_DASHshl2] = ACTIONS(1832), + [anon_sym_bit_DASHshr2] = ACTIONS(1832), + [anon_sym_bit_DASHand2] = ACTIONS(1832), + [anon_sym_bit_DASHxor2] = ACTIONS(1832), + [anon_sym_bit_DASHor2] = ACTIONS(1832), + [anon_sym_DOT_DOT2] = ACTIONS(1834), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1832), + [aux_sym__immediate_decimal_token5] = ACTIONS(2088), + [anon_sym_err_GT] = ACTIONS(1834), + [anon_sym_out_GT] = ACTIONS(1834), + [anon_sym_e_GT] = ACTIONS(1834), + [anon_sym_o_GT] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT] = ACTIONS(1834), + [anon_sym_err_GT_GT] = ACTIONS(1832), + [anon_sym_out_GT_GT] = ACTIONS(1832), + [anon_sym_e_GT_GT] = ACTIONS(1832), + [anon_sym_o_GT_GT] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), + [sym__unquoted_pattern] = ACTIONS(1834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(685)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1269), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1128), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(685), - [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(1818), - [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_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(686)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1239), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(755), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(686), - [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(1818), - [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_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(687)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1243), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(756), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(687), - [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(1818), - [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_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(688)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1130), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(989), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(688), - [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(1818), - [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_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(689)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1247), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(757), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(689), - [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(1818), - [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_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(690)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(690), - [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(1818), - [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(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_LPAREN2] = ACTIONS(2094), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_DOT_DOT2] = ACTIONS(2096), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2098), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), + [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, [STATE(691)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1250), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(766), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(691), - [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(1818), - [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_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(692)] = { + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1252), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(767), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(1553), - [anon_sym_in] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_COLON] = ACTIONS(1553), - [anon_sym_GT2] = ACTIONS(1551), - [anon_sym_DASH2] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1551), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_has2] = ACTIONS(1553), - [anon_sym_not_DASHhas2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1551), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_like2] = ACTIONS(1553), - [anon_sym_not_DASHlike2] = ACTIONS(1553), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1553), - [anon_sym_SLASH2] = ACTIONS(1551), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1551), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT_DOT2] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1553), - [anon_sym_DOT2] = ACTIONS(1551), - [anon_sym_err_GT] = ACTIONS(1551), - [anon_sym_out_GT] = ACTIONS(1551), - [anon_sym_e_GT] = ACTIONS(1551), - [anon_sym_o_GT] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT] = ACTIONS(1551), - [anon_sym_err_GT_GT] = ACTIONS(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(693)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(2223), + [sym_expr_unary] = STATE(1183), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1183), + [sym__expr_binary_expression_parenthesized] = STATE(1607), + [sym_expr_parenthesized] = STATE(898), + [sym_val_range] = STATE(1183), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(1183), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(756), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(693), - [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(1818), - [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_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [sym__newline] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(694)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(694), - [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(1818), - [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(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_LPAREN2] = ACTIONS(1796), + [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(695)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(695), - [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(1818), - [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(1953), + [anon_sym_in] = ACTIONS(1953), + [sym__newline] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_err_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_GT_PIPE] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), + [anon_sym_GT2] = ACTIONS(1955), + [anon_sym_DASH2] = ACTIONS(1953), + [anon_sym_STAR2] = ACTIONS(1955), + [anon_sym_and2] = ACTIONS(1953), + [anon_sym_xor2] = ACTIONS(1953), + [anon_sym_or2] = ACTIONS(1953), + [anon_sym_not_DASHin2] = ACTIONS(1953), + [anon_sym_has2] = ACTIONS(1953), + [anon_sym_not_DASHhas2] = ACTIONS(1953), + [anon_sym_starts_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), + [anon_sym_ends_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), + [anon_sym_EQ_EQ2] = ACTIONS(1953), + [anon_sym_BANG_EQ2] = ACTIONS(1953), + [anon_sym_LT2] = ACTIONS(1955), + [anon_sym_LT_EQ2] = ACTIONS(1953), + [anon_sym_GT_EQ2] = ACTIONS(1953), + [anon_sym_EQ_TILDE2] = ACTIONS(1953), + [anon_sym_BANG_TILDE2] = ACTIONS(1953), + [anon_sym_like2] = ACTIONS(1953), + [anon_sym_not_DASHlike2] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1957), + [anon_sym_STAR_STAR2] = ACTIONS(1953), + [anon_sym_PLUS_PLUS2] = ACTIONS(1953), + [anon_sym_SLASH2] = ACTIONS(1955), + [anon_sym_mod2] = ACTIONS(1953), + [anon_sym_SLASH_SLASH2] = ACTIONS(1953), + [anon_sym_PLUS2] = ACTIONS(1955), + [anon_sym_bit_DASHshl2] = ACTIONS(1953), + [anon_sym_bit_DASHshr2] = ACTIONS(1953), + [anon_sym_bit_DASHand2] = ACTIONS(1953), + [anon_sym_bit_DASHxor2] = ACTIONS(1953), + [anon_sym_bit_DASHor2] = ACTIONS(1953), + [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(1955), + [anon_sym_out_GT] = ACTIONS(1955), + [anon_sym_e_GT] = ACTIONS(1955), + [anon_sym_o_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT] = ACTIONS(1955), + [anon_sym_err_GT_GT] = ACTIONS(1953), + [anon_sym_out_GT_GT] = ACTIONS(1953), + [anon_sym_e_GT_GT] = ACTIONS(1953), + [anon_sym_o_GT_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), + [sym__unquoted_pattern] = ACTIONS(1963), [anon_sym_POUND] = ACTIONS(3), }, [STATE(696)] = { [sym_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_GT2] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1846), - [anon_sym_STAR2] = ACTIONS(1848), - [anon_sym_and2] = ACTIONS(1846), - [anon_sym_xor2] = ACTIONS(1846), - [anon_sym_or2] = ACTIONS(1846), - [anon_sym_not_DASHin2] = ACTIONS(1846), - [anon_sym_has2] = ACTIONS(1846), - [anon_sym_not_DASHhas2] = ACTIONS(1846), - [anon_sym_starts_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), - [anon_sym_ends_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), - [anon_sym_EQ_EQ2] = ACTIONS(1846), - [anon_sym_BANG_EQ2] = ACTIONS(1846), - [anon_sym_LT2] = ACTIONS(1848), - [anon_sym_LT_EQ2] = ACTIONS(1846), - [anon_sym_GT_EQ2] = ACTIONS(1846), - [anon_sym_EQ_TILDE2] = ACTIONS(1846), - [anon_sym_BANG_TILDE2] = ACTIONS(1846), - [anon_sym_like2] = ACTIONS(1846), - [anon_sym_not_DASHlike2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1846), - [anon_sym_STAR_STAR2] = ACTIONS(1846), - [anon_sym_PLUS_PLUS2] = ACTIONS(1846), - [anon_sym_SLASH2] = ACTIONS(1848), - [anon_sym_mod2] = ACTIONS(1846), - [anon_sym_SLASH_SLASH2] = ACTIONS(1846), - [anon_sym_PLUS2] = ACTIONS(1848), - [anon_sym_bit_DASHshl2] = ACTIONS(1846), - [anon_sym_bit_DASHshr2] = ACTIONS(1846), - [anon_sym_bit_DASHand2] = ACTIONS(1846), - [anon_sym_bit_DASHxor2] = ACTIONS(1846), - [anon_sym_bit_DASHor2] = ACTIONS(1846), - [anon_sym_DOT_DOT2] = ACTIONS(1848), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), - [sym__unquoted_pattern] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(2108), + [sym__newline] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_err_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_GT_PIPE] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_GT2] = ACTIONS(2110), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_STAR2] = ACTIONS(2110), + [anon_sym_and2] = ACTIONS(2108), + [anon_sym_xor2] = ACTIONS(2108), + [anon_sym_or2] = ACTIONS(2108), + [anon_sym_not_DASHin2] = ACTIONS(2108), + [anon_sym_has2] = ACTIONS(2108), + [anon_sym_not_DASHhas2] = ACTIONS(2108), + [anon_sym_starts_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), + [anon_sym_ends_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), + [anon_sym_EQ_EQ2] = ACTIONS(2108), + [anon_sym_BANG_EQ2] = ACTIONS(2108), + [anon_sym_LT2] = ACTIONS(2110), + [anon_sym_LT_EQ2] = ACTIONS(2108), + [anon_sym_GT_EQ2] = ACTIONS(2108), + [anon_sym_EQ_TILDE2] = ACTIONS(2108), + [anon_sym_BANG_TILDE2] = ACTIONS(2108), + [anon_sym_like2] = ACTIONS(2108), + [anon_sym_not_DASHlike2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2108), + [anon_sym_PLUS_PLUS2] = ACTIONS(2108), + [anon_sym_SLASH2] = ACTIONS(2110), + [anon_sym_mod2] = ACTIONS(2108), + [anon_sym_SLASH_SLASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_bit_DASHshl2] = ACTIONS(2108), + [anon_sym_bit_DASHshr2] = ACTIONS(2108), + [anon_sym_bit_DASHand2] = ACTIONS(2108), + [anon_sym_bit_DASHxor2] = ACTIONS(2108), + [anon_sym_bit_DASHor2] = ACTIONS(2108), + [anon_sym_DOT_DOT2] = ACTIONS(2112), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2114), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2114), + [anon_sym_err_GT] = ACTIONS(2110), + [anon_sym_out_GT] = ACTIONS(2110), + [anon_sym_e_GT] = ACTIONS(2110), + [anon_sym_o_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT] = ACTIONS(2110), + [anon_sym_err_GT_GT] = ACTIONS(2108), + [anon_sym_out_GT_GT] = ACTIONS(2108), + [anon_sym_e_GT_GT] = ACTIONS(2108), + [anon_sym_o_GT_GT] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), [anon_sym_POUND] = ACTIONS(3), }, [STATE(697)] = { - [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(697), - [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(1818), - [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_if] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [sym__newline] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_err_GT_PIPE] = ACTIONS(2116), + [anon_sym_out_GT_PIPE] = ACTIONS(2116), + [anon_sym_e_GT_PIPE] = ACTIONS(2116), + [anon_sym_o_GT_PIPE] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2116), + [anon_sym_RPAREN] = ACTIONS(2116), + [anon_sym_GT2] = ACTIONS(2118), + [anon_sym_DASH2] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_RBRACE] = ACTIONS(2116), + [anon_sym_EQ_GT] = ACTIONS(2116), + [anon_sym_STAR2] = ACTIONS(2118), + [anon_sym_and2] = ACTIONS(2116), + [anon_sym_xor2] = ACTIONS(2116), + [anon_sym_or2] = ACTIONS(2116), + [anon_sym_not_DASHin2] = ACTIONS(2116), + [anon_sym_has2] = ACTIONS(2116), + [anon_sym_not_DASHhas2] = ACTIONS(2116), + [anon_sym_starts_DASHwith2] = ACTIONS(2116), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2116), + [anon_sym_ends_DASHwith2] = ACTIONS(2116), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2116), + [anon_sym_EQ_EQ2] = ACTIONS(2116), + [anon_sym_BANG_EQ2] = ACTIONS(2116), + [anon_sym_LT2] = ACTIONS(2118), + [anon_sym_LT_EQ2] = ACTIONS(2116), + [anon_sym_GT_EQ2] = ACTIONS(2116), + [anon_sym_EQ_TILDE2] = ACTIONS(2116), + [anon_sym_BANG_TILDE2] = ACTIONS(2116), + [anon_sym_like2] = ACTIONS(2116), + [anon_sym_not_DASHlike2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2116), + [anon_sym_STAR_STAR2] = ACTIONS(2116), + [anon_sym_PLUS_PLUS2] = ACTIONS(2116), + [anon_sym_SLASH2] = ACTIONS(2118), + [anon_sym_mod2] = ACTIONS(2116), + [anon_sym_SLASH_SLASH2] = ACTIONS(2116), + [anon_sym_PLUS2] = ACTIONS(2118), + [anon_sym_bit_DASHshl2] = ACTIONS(2116), + [anon_sym_bit_DASHshr2] = ACTIONS(2116), + [anon_sym_bit_DASHand2] = ACTIONS(2116), + [anon_sym_bit_DASHxor2] = ACTIONS(2116), + [anon_sym_bit_DASHor2] = ACTIONS(2116), + [anon_sym_err_GT] = ACTIONS(2118), + [anon_sym_out_GT] = ACTIONS(2118), + [anon_sym_e_GT] = ACTIONS(2118), + [anon_sym_o_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT] = ACTIONS(2118), + [anon_sym_err_GT_GT] = ACTIONS(2116), + [anon_sym_out_GT_GT] = ACTIONS(2116), + [anon_sym_e_GT_GT] = ACTIONS(2116), + [anon_sym_o_GT_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2116), [anon_sym_POUND] = ACTIONS(3), }, [STATE(698)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(4345), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(4814), - [sym__record_key] = STATE(5156), [sym_comment] = STATE(698), - [aux_sym__match_pattern_record_body_repeat1] = STATE(723), - [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_finally] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1760), - [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), - [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_DOT_DOT2] = ACTIONS(2120), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2122), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2122), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(699)] = { [sym_comment] = STATE(699), @@ -102042,8 +102447,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1730), [anon_sym_bit_DASHxor2] = ACTIONS(1730), [anon_sym_bit_DASHor2] = ACTIONS(1730), - [aux_sym__immediate_decimal_token1] = ACTIONS(2096), - [aux_sym__immediate_decimal_token5] = ACTIONS(2098), + [aux_sym__immediate_decimal_token1] = ACTIONS(2124), + [aux_sym__immediate_decimal_token5] = ACTIONS(2126), [anon_sym_err_GT] = ACTIONS(1732), [anon_sym_out_GT] = ACTIONS(1732), [anon_sym_e_GT] = ACTIONS(1732), @@ -102065,575 +102470,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(700)] = { [sym_comment] = STATE(700), - [anon_sym_in] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_GT2] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_STAR2] = ACTIONS(1792), - [anon_sym_and2] = ACTIONS(1790), - [anon_sym_xor2] = ACTIONS(1790), - [anon_sym_or2] = ACTIONS(1790), - [anon_sym_not_DASHin2] = ACTIONS(1790), - [anon_sym_has2] = ACTIONS(1790), - [anon_sym_not_DASHhas2] = ACTIONS(1790), - [anon_sym_starts_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), - [anon_sym_ends_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), - [anon_sym_EQ_EQ2] = ACTIONS(1790), - [anon_sym_BANG_EQ2] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ2] = ACTIONS(1790), - [anon_sym_GT_EQ2] = ACTIONS(1790), - [anon_sym_EQ_TILDE2] = ACTIONS(1790), - [anon_sym_BANG_TILDE2] = ACTIONS(1790), - [anon_sym_like2] = ACTIONS(1790), - [anon_sym_not_DASHlike2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_STAR_STAR2] = ACTIONS(1790), - [anon_sym_PLUS_PLUS2] = ACTIONS(1790), - [anon_sym_SLASH2] = ACTIONS(1792), - [anon_sym_mod2] = ACTIONS(1790), - [anon_sym_SLASH_SLASH2] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1792), - [anon_sym_bit_DASHshl2] = ACTIONS(1790), - [anon_sym_bit_DASHshr2] = ACTIONS(1790), - [anon_sym_bit_DASHand2] = ACTIONS(1790), - [anon_sym_bit_DASHxor2] = ACTIONS(1790), - [anon_sym_bit_DASHor2] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(2100), - [aux_sym__immediate_decimal_token5] = ACTIONS(2102), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [sym__unquoted_pattern] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1784), + [sym__newline] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_err_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_GT_PIPE] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), + [anon_sym_RPAREN] = ACTIONS(1784), + [anon_sym_GT2] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1784), + [anon_sym_xor2] = ACTIONS(1784), + [anon_sym_or2] = ACTIONS(1784), + [anon_sym_not_DASHin2] = ACTIONS(1784), + [anon_sym_has2] = ACTIONS(1784), + [anon_sym_not_DASHhas2] = ACTIONS(1784), + [anon_sym_starts_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), + [anon_sym_ends_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), + [anon_sym_EQ_EQ2] = ACTIONS(1784), + [anon_sym_BANG_EQ2] = ACTIONS(1784), + [anon_sym_LT2] = ACTIONS(1786), + [anon_sym_LT_EQ2] = ACTIONS(1784), + [anon_sym_GT_EQ2] = ACTIONS(1784), + [anon_sym_EQ_TILDE2] = ACTIONS(1784), + [anon_sym_BANG_TILDE2] = ACTIONS(1784), + [anon_sym_like2] = ACTIONS(1784), + [anon_sym_not_DASHlike2] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1784), + [anon_sym_PLUS_PLUS2] = ACTIONS(1784), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1784), + [anon_sym_SLASH_SLASH2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_bit_DASHshl2] = ACTIONS(1784), + [anon_sym_bit_DASHshr2] = ACTIONS(1784), + [anon_sym_bit_DASHand2] = ACTIONS(1784), + [anon_sym_bit_DASHxor2] = ACTIONS(1784), + [anon_sym_bit_DASHor2] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(2128), + [aux_sym__immediate_decimal_token5] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1784), + [anon_sym_out_GT_GT] = ACTIONS(1784), + [anon_sym_e_GT_GT] = ACTIONS(1784), + [anon_sym_o_GT_GT] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), + [sym__unquoted_pattern] = ACTIONS(1786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(701)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(4585), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4704), + [sym__record_key] = STATE(5246), [sym_comment] = STATE(701), - [anon_sym_in] = ACTIONS(2104), - [sym__newline] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_err_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_GT_PIPE] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_GT2] = ACTIONS(2106), - [anon_sym_DASH2] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_STAR2] = ACTIONS(2106), - [anon_sym_and2] = ACTIONS(2104), - [anon_sym_xor2] = ACTIONS(2104), - [anon_sym_or2] = ACTIONS(2104), - [anon_sym_not_DASHin2] = ACTIONS(2104), - [anon_sym_has2] = ACTIONS(2104), - [anon_sym_not_DASHhas2] = ACTIONS(2104), - [anon_sym_starts_DASHwith2] = ACTIONS(2104), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), - [anon_sym_ends_DASHwith2] = ACTIONS(2104), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), - [anon_sym_EQ_EQ2] = ACTIONS(2104), - [anon_sym_BANG_EQ2] = ACTIONS(2104), - [anon_sym_LT2] = ACTIONS(2106), - [anon_sym_LT_EQ2] = ACTIONS(2104), - [anon_sym_GT_EQ2] = ACTIONS(2104), - [anon_sym_EQ_TILDE2] = ACTIONS(2104), - [anon_sym_BANG_TILDE2] = ACTIONS(2104), - [anon_sym_like2] = ACTIONS(2104), - [anon_sym_not_DASHlike2] = ACTIONS(2104), - [anon_sym_STAR_STAR2] = ACTIONS(2104), - [anon_sym_PLUS_PLUS2] = ACTIONS(2104), - [anon_sym_SLASH2] = ACTIONS(2106), - [anon_sym_mod2] = ACTIONS(2104), - [anon_sym_SLASH_SLASH2] = ACTIONS(2104), - [anon_sym_PLUS2] = ACTIONS(2106), - [anon_sym_bit_DASHshl2] = ACTIONS(2104), - [anon_sym_bit_DASHshr2] = ACTIONS(2104), - [anon_sym_bit_DASHand2] = ACTIONS(2104), - [anon_sym_bit_DASHxor2] = ACTIONS(2104), - [anon_sym_bit_DASHor2] = ACTIONS(2104), - [anon_sym_DOT_DOT2] = ACTIONS(2108), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2110), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2110), - [anon_sym_err_GT] = ACTIONS(2106), - [anon_sym_out_GT] = ACTIONS(2106), - [anon_sym_e_GT] = ACTIONS(2106), - [anon_sym_o_GT] = ACTIONS(2106), - [anon_sym_err_PLUSout_GT] = ACTIONS(2106), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), - [anon_sym_o_PLUSe_GT] = ACTIONS(2106), - [anon_sym_e_PLUSo_GT] = ACTIONS(2106), - [anon_sym_err_GT_GT] = ACTIONS(2104), - [anon_sym_out_GT_GT] = ACTIONS(2104), - [anon_sym_e_GT_GT] = ACTIONS(2104), - [anon_sym_o_GT_GT] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [aux_sym__match_pattern_record_body_repeat1] = STATE(736), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1766), + [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(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), + [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(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [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(1764), }, [STATE(702)] = { + [aux_sym__repeat_newline] = STATE(892), + [aux_sym__pipe_separator] = STATE(721), [sym_comment] = STATE(702), - [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_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_DOT_DOT2] = ACTIONS(2116), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), - [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), + [anon_sym_export] = ACTIONS(2132), + [anon_sym_alias] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_mut] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [aux_sym_cmd_identifier_token1] = ACTIONS(2132), + [anon_sym_def] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_export_DASHenv] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_finally] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [anon_sym_null] = ACTIONS(2134), + [aux_sym_cmd_identifier_token3] = ACTIONS(2134), + [aux_sym_cmd_identifier_token4] = ACTIONS(2134), + [aux_sym_cmd_identifier_token5] = ACTIONS(2134), + [sym__newline] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_err_GT_PIPE] = ACTIONS(2138), + [anon_sym_out_GT_PIPE] = ACTIONS(2138), + [anon_sym_e_GT_PIPE] = ACTIONS(2138), + [anon_sym_o_GT_PIPE] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_DOT_DOT] = ACTIONS(2132), + [anon_sym_where] = ACTIONS(2134), + [aux_sym_expr_unary_token1] = ACTIONS(2134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2134), + [anon_sym_DOT_DOT_LT] = ACTIONS(2134), + [aux_sym__val_number_decimal_token1] = ACTIONS(2132), + [aux_sym__val_number_decimal_token2] = ACTIONS(2134), + [aux_sym__val_number_decimal_token3] = ACTIONS(2134), + [aux_sym__val_number_decimal_token4] = ACTIONS(2134), + [aux_sym__val_number_token1] = ACTIONS(2134), + [aux_sym__val_number_token2] = ACTIONS(2134), + [aux_sym__val_number_token3] = ACTIONS(2134), + [anon_sym_0b] = ACTIONS(2132), + [anon_sym_0o] = ACTIONS(2132), + [anon_sym_0x] = ACTIONS(2132), + [sym_val_date] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_BQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2134), }, [STATE(703)] = { [sym_comment] = STATE(703), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2124), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2126), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2126), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [ts_builtin_sym_end] = ACTIONS(1547), + [anon_sym_in] = ACTIONS(1547), + [sym__newline] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_err_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_GT_PIPE] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), + [anon_sym_COLON] = ACTIONS(1547), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_STAR2] = ACTIONS(1545), + [anon_sym_and2] = ACTIONS(1547), + [anon_sym_xor2] = ACTIONS(1547), + [anon_sym_or2] = ACTIONS(1547), + [anon_sym_not_DASHin2] = ACTIONS(1547), + [anon_sym_has2] = ACTIONS(1547), + [anon_sym_not_DASHhas2] = ACTIONS(1547), + [anon_sym_starts_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1547), + [anon_sym_ends_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1547), + [anon_sym_EQ_EQ2] = ACTIONS(1547), + [anon_sym_BANG_EQ2] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ2] = ACTIONS(1547), + [anon_sym_GT_EQ2] = ACTIONS(1547), + [anon_sym_EQ_TILDE2] = ACTIONS(1547), + [anon_sym_BANG_TILDE2] = ACTIONS(1547), + [anon_sym_like2] = ACTIONS(1547), + [anon_sym_not_DASHlike2] = ACTIONS(1547), + [anon_sym_STAR_STAR2] = ACTIONS(1547), + [anon_sym_PLUS_PLUS2] = ACTIONS(1547), + [anon_sym_SLASH2] = ACTIONS(1545), + [anon_sym_mod2] = ACTIONS(1547), + [anon_sym_SLASH_SLASH2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1545), + [anon_sym_bit_DASHshl2] = ACTIONS(1547), + [anon_sym_bit_DASHshr2] = ACTIONS(1547), + [anon_sym_bit_DASHand2] = ACTIONS(1547), + [anon_sym_bit_DASHxor2] = ACTIONS(1547), + [anon_sym_bit_DASHor2] = ACTIONS(1547), + [anon_sym_DOT_DOT2] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [anon_sym_err_GT_GT] = ACTIONS(1547), + [anon_sym_out_GT_GT] = ACTIONS(1547), + [anon_sym_e_GT_GT] = ACTIONS(1547), + [anon_sym_o_GT_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(704)] = { + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(704), - [anon_sym_in] = ACTIONS(1982), - [sym__newline] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_err_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_GT_PIPE] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_GT2] = ACTIONS(1984), - [anon_sym_DASH2] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_STAR2] = ACTIONS(1984), - [anon_sym_and2] = ACTIONS(1982), - [anon_sym_xor2] = ACTIONS(1982), - [anon_sym_or2] = ACTIONS(1982), - [anon_sym_not_DASHin2] = ACTIONS(1982), - [anon_sym_has2] = ACTIONS(1982), - [anon_sym_not_DASHhas2] = ACTIONS(1982), - [anon_sym_starts_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), - [anon_sym_ends_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), - [anon_sym_EQ_EQ2] = ACTIONS(1982), - [anon_sym_BANG_EQ2] = ACTIONS(1982), - [anon_sym_LT2] = ACTIONS(1984), - [anon_sym_LT_EQ2] = ACTIONS(1982), - [anon_sym_GT_EQ2] = ACTIONS(1982), - [anon_sym_EQ_TILDE2] = ACTIONS(1982), - [anon_sym_BANG_TILDE2] = ACTIONS(1982), - [anon_sym_like2] = ACTIONS(1982), - [anon_sym_not_DASHlike2] = ACTIONS(1982), - [anon_sym_STAR_STAR2] = ACTIONS(1982), - [anon_sym_PLUS_PLUS2] = ACTIONS(1982), - [anon_sym_SLASH2] = ACTIONS(1984), - [anon_sym_mod2] = ACTIONS(1982), - [anon_sym_SLASH_SLASH2] = ACTIONS(1982), - [anon_sym_PLUS2] = ACTIONS(1984), - [anon_sym_bit_DASHshl2] = ACTIONS(1982), - [anon_sym_bit_DASHshr2] = ACTIONS(1982), - [anon_sym_bit_DASHand2] = ACTIONS(1982), - [anon_sym_bit_DASHxor2] = ACTIONS(1982), - [anon_sym_bit_DASHor2] = ACTIONS(1982), - [anon_sym_DOT_DOT2] = ACTIONS(2128), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2130), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2130), - [anon_sym_err_GT] = ACTIONS(1984), - [anon_sym_out_GT] = ACTIONS(1984), - [anon_sym_e_GT] = ACTIONS(1984), - [anon_sym_o_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT] = ACTIONS(1984), - [anon_sym_err_GT_GT] = ACTIONS(1982), - [anon_sym_out_GT_GT] = ACTIONS(1982), - [anon_sym_e_GT_GT] = ACTIONS(1982), - [anon_sym_o_GT_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), + [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_LPAREN2] = ACTIONS(1796), + [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(705)] = { + [sym__expr_parenthesized_immediate] = STATE(5511), [sym_comment] = STATE(705), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1699), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(706)] = { - [sym_comment] = STATE(706), - [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_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_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_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [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(707)] = { - [sym__expr_parenthesized_immediate] = STATE(5483), - [sym_comment] = STATE(707), - [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_LPAREN2] = ACTIONS(1818), - [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(708)] = { - [sym__expr_parenthesized_immediate] = STATE(5483), - [sym_comment] = STATE(708), [anon_sym_in] = ACTIONS(2140), [sym__newline] = ACTIONS(2140), [anon_sym_SEMI] = ACTIONS(2140), @@ -102672,7 +102864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2140), [anon_sym_like2] = ACTIONS(2140), [anon_sym_not_DASHlike2] = ACTIONS(2140), - [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_LPAREN2] = ACTIONS(1796), [anon_sym_STAR_STAR2] = ACTIONS(2140), [anon_sym_PLUS_PLUS2] = ACTIONS(2140), [anon_sym_SLASH2] = ACTIONS(2142), @@ -102702,738 +102894,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2140), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(709)] = { - [sym__expr_parenthesized_immediate] = STATE(5483), - [sym_comment] = STATE(709), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_EQ_GT] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1818), - [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(710)] = { - [sym_comment] = STATE(710), - [anon_sym_if] = 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_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_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_COLON2] = 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_POUND] = ACTIONS(3), - }, - [STATE(711)] = { - [sym_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(1972), - [anon_sym_in] = ACTIONS(1972), - [sym__newline] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_err_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_GT_PIPE] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), - [anon_sym_GT2] = ACTIONS(1974), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_STAR2] = ACTIONS(1974), - [anon_sym_and2] = ACTIONS(1972), - [anon_sym_xor2] = ACTIONS(1972), - [anon_sym_or2] = ACTIONS(1972), - [anon_sym_not_DASHin2] = ACTIONS(1972), - [anon_sym_has2] = ACTIONS(1972), - [anon_sym_not_DASHhas2] = ACTIONS(1972), - [anon_sym_starts_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), - [anon_sym_ends_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), - [anon_sym_EQ_EQ2] = ACTIONS(1972), - [anon_sym_BANG_EQ2] = ACTIONS(1972), - [anon_sym_LT2] = ACTIONS(1974), - [anon_sym_LT_EQ2] = ACTIONS(1972), - [anon_sym_GT_EQ2] = ACTIONS(1972), - [anon_sym_EQ_TILDE2] = ACTIONS(1972), - [anon_sym_BANG_TILDE2] = ACTIONS(1972), - [anon_sym_like2] = ACTIONS(1972), - [anon_sym_not_DASHlike2] = ACTIONS(1972), - [anon_sym_LPAREN2] = ACTIONS(1976), - [anon_sym_STAR_STAR2] = ACTIONS(1972), - [anon_sym_PLUS_PLUS2] = ACTIONS(1972), - [anon_sym_SLASH2] = ACTIONS(1974), - [anon_sym_mod2] = ACTIONS(1972), - [anon_sym_SLASH_SLASH2] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1974), - [anon_sym_bit_DASHshl2] = ACTIONS(1972), - [anon_sym_bit_DASHshr2] = ACTIONS(1972), - [anon_sym_bit_DASHand2] = ACTIONS(1972), - [anon_sym_bit_DASHxor2] = ACTIONS(1972), - [anon_sym_bit_DASHor2] = ACTIONS(1972), - [anon_sym_DOT_DOT2] = ACTIONS(2152), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2154), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2154), - [anon_sym_err_GT] = ACTIONS(1974), - [anon_sym_out_GT] = ACTIONS(1974), - [anon_sym_e_GT] = ACTIONS(1974), - [anon_sym_o_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT] = ACTIONS(1974), - [anon_sym_err_GT_GT] = ACTIONS(1972), - [anon_sym_out_GT_GT] = ACTIONS(1972), - [anon_sym_e_GT_GT] = ACTIONS(1972), - [anon_sym_o_GT_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), - [sym__unquoted_pattern] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(712)] = { - [sym_comment] = STATE(712), - [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(847), - [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(847), - [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(847), - [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(847), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(847), - [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(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [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(713)] = { - [sym_comment] = STATE(713), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2156), - [sym__newline] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(2156), - [anon_sym_err_GT_PIPE] = ACTIONS(2156), - [anon_sym_out_GT_PIPE] = ACTIONS(2156), - [anon_sym_e_GT_PIPE] = ACTIONS(2156), - [anon_sym_o_GT_PIPE] = ACTIONS(2156), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2156), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2156), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2156), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2156), - [anon_sym_RPAREN] = ACTIONS(2156), - [anon_sym_GT2] = ACTIONS(2158), - [anon_sym_DASH2] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_EQ_GT] = ACTIONS(2156), - [anon_sym_STAR2] = ACTIONS(2158), - [anon_sym_and2] = ACTIONS(2156), - [anon_sym_xor2] = ACTIONS(2156), - [anon_sym_or2] = ACTIONS(2156), - [anon_sym_not_DASHin2] = ACTIONS(2156), - [anon_sym_has2] = ACTIONS(2156), - [anon_sym_not_DASHhas2] = ACTIONS(2156), - [anon_sym_starts_DASHwith2] = ACTIONS(2156), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2156), - [anon_sym_ends_DASHwith2] = ACTIONS(2156), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2156), - [anon_sym_EQ_EQ2] = ACTIONS(2156), - [anon_sym_BANG_EQ2] = ACTIONS(2156), - [anon_sym_LT2] = ACTIONS(2158), - [anon_sym_LT_EQ2] = ACTIONS(2156), - [anon_sym_GT_EQ2] = ACTIONS(2156), - [anon_sym_EQ_TILDE2] = ACTIONS(2156), - [anon_sym_BANG_TILDE2] = ACTIONS(2156), - [anon_sym_like2] = ACTIONS(2156), - [anon_sym_not_DASHlike2] = ACTIONS(2156), - [anon_sym_LPAREN2] = ACTIONS(2156), - [anon_sym_STAR_STAR2] = ACTIONS(2156), - [anon_sym_PLUS_PLUS2] = ACTIONS(2156), - [anon_sym_SLASH2] = ACTIONS(2158), - [anon_sym_mod2] = ACTIONS(2156), - [anon_sym_SLASH_SLASH2] = ACTIONS(2156), - [anon_sym_PLUS2] = ACTIONS(2158), - [anon_sym_bit_DASHshl2] = ACTIONS(2156), - [anon_sym_bit_DASHshr2] = ACTIONS(2156), - [anon_sym_bit_DASHand2] = ACTIONS(2156), - [anon_sym_bit_DASHxor2] = ACTIONS(2156), - [anon_sym_bit_DASHor2] = ACTIONS(2156), - [anon_sym_err_GT] = ACTIONS(2158), - [anon_sym_out_GT] = ACTIONS(2158), - [anon_sym_e_GT] = ACTIONS(2158), - [anon_sym_o_GT] = ACTIONS(2158), - [anon_sym_err_PLUSout_GT] = ACTIONS(2158), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2158), - [anon_sym_o_PLUSe_GT] = ACTIONS(2158), - [anon_sym_e_PLUSo_GT] = ACTIONS(2158), - [anon_sym_err_GT_GT] = ACTIONS(2156), - [anon_sym_out_GT_GT] = ACTIONS(2156), - [anon_sym_e_GT_GT] = ACTIONS(2156), - [anon_sym_o_GT_GT] = ACTIONS(2156), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2156), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2156), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2156), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(714)] = { - [sym_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(1982), - [anon_sym_in] = ACTIONS(1982), - [sym__newline] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_err_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_GT_PIPE] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), - [anon_sym_GT2] = ACTIONS(1984), - [anon_sym_DASH2] = ACTIONS(1982), - [anon_sym_STAR2] = ACTIONS(1984), - [anon_sym_and2] = ACTIONS(1982), - [anon_sym_xor2] = ACTIONS(1982), - [anon_sym_or2] = ACTIONS(1982), - [anon_sym_not_DASHin2] = ACTIONS(1982), - [anon_sym_has2] = ACTIONS(1982), - [anon_sym_not_DASHhas2] = ACTIONS(1982), - [anon_sym_starts_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), - [anon_sym_ends_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), - [anon_sym_EQ_EQ2] = ACTIONS(1982), - [anon_sym_BANG_EQ2] = ACTIONS(1982), - [anon_sym_LT2] = ACTIONS(1984), - [anon_sym_LT_EQ2] = ACTIONS(1982), - [anon_sym_GT_EQ2] = ACTIONS(1982), - [anon_sym_EQ_TILDE2] = ACTIONS(1982), - [anon_sym_BANG_TILDE2] = ACTIONS(1982), - [anon_sym_like2] = ACTIONS(1982), - [anon_sym_not_DASHlike2] = ACTIONS(1982), - [anon_sym_LPAREN2] = ACTIONS(1986), - [anon_sym_STAR_STAR2] = ACTIONS(1982), - [anon_sym_PLUS_PLUS2] = ACTIONS(1982), - [anon_sym_SLASH2] = ACTIONS(1984), - [anon_sym_mod2] = ACTIONS(1982), - [anon_sym_SLASH_SLASH2] = ACTIONS(1982), - [anon_sym_PLUS2] = ACTIONS(1984), - [anon_sym_bit_DASHshl2] = ACTIONS(1982), - [anon_sym_bit_DASHshr2] = ACTIONS(1982), - [anon_sym_bit_DASHand2] = ACTIONS(1982), - [anon_sym_bit_DASHxor2] = ACTIONS(1982), - [anon_sym_bit_DASHor2] = ACTIONS(1982), - [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(1984), - [anon_sym_out_GT] = ACTIONS(1984), - [anon_sym_e_GT] = ACTIONS(1984), - [anon_sym_o_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT] = ACTIONS(1984), - [anon_sym_err_GT_GT] = ACTIONS(1982), - [anon_sym_out_GT_GT] = ACTIONS(1982), - [anon_sym_e_GT_GT] = ACTIONS(1982), - [anon_sym_o_GT_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), - [sym__unquoted_pattern] = ACTIONS(1992), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(715)] = { - [sym_comment] = STATE(715), - [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_COLON] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = 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_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(716)] = { - [sym_comment] = STATE(716), - [anon_sym_if] = 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_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_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_LBRACK2] = ACTIONS(2168), - [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(717)] = { - [sym_comment] = STATE(717), - [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_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_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_DOT_DOT2] = ACTIONS(2174), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2176), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2176), - [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(718)] = { - [sym_comment] = STATE(718), - [anon_sym_in] = ACTIONS(1972), - [sym__newline] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_err_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_GT_PIPE] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_GT2] = ACTIONS(1974), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_STAR2] = ACTIONS(1974), - [anon_sym_and2] = ACTIONS(1972), - [anon_sym_xor2] = ACTIONS(1972), - [anon_sym_or2] = ACTIONS(1972), - [anon_sym_not_DASHin2] = ACTIONS(1972), - [anon_sym_has2] = ACTIONS(1972), - [anon_sym_not_DASHhas2] = ACTIONS(1972), - [anon_sym_starts_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), - [anon_sym_ends_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), - [anon_sym_EQ_EQ2] = ACTIONS(1972), - [anon_sym_BANG_EQ2] = ACTIONS(1972), - [anon_sym_LT2] = ACTIONS(1974), - [anon_sym_LT_EQ2] = ACTIONS(1972), - [anon_sym_GT_EQ2] = ACTIONS(1972), - [anon_sym_EQ_TILDE2] = ACTIONS(1972), - [anon_sym_BANG_TILDE2] = ACTIONS(1972), - [anon_sym_like2] = ACTIONS(1972), - [anon_sym_not_DASHlike2] = ACTIONS(1972), - [anon_sym_STAR_STAR2] = ACTIONS(1972), - [anon_sym_PLUS_PLUS2] = ACTIONS(1972), - [anon_sym_SLASH2] = ACTIONS(1974), - [anon_sym_mod2] = ACTIONS(1972), - [anon_sym_SLASH_SLASH2] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1974), - [anon_sym_bit_DASHshl2] = ACTIONS(1972), - [anon_sym_bit_DASHshr2] = ACTIONS(1972), - [anon_sym_bit_DASHand2] = ACTIONS(1972), - [anon_sym_bit_DASHxor2] = ACTIONS(1972), - [anon_sym_bit_DASHor2] = ACTIONS(1972), - [anon_sym_DOT_DOT2] = ACTIONS(2178), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2180), - [anon_sym_err_GT] = ACTIONS(1974), - [anon_sym_out_GT] = ACTIONS(1974), - [anon_sym_e_GT] = ACTIONS(1974), - [anon_sym_o_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT] = ACTIONS(1974), - [anon_sym_err_GT_GT] = ACTIONS(1972), - [anon_sym_out_GT_GT] = ACTIONS(1972), - [anon_sym_e_GT_GT] = ACTIONS(1972), - [anon_sym_o_GT_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(719)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(4892), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(719), - [aux_sym_record_body_repeat1] = STATE(725), + [STATE(706)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4901), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(706), + [aux_sym_record_body_repeat1] = STATE(707), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -103455,462 +102937,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [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(1778), + [sym_raw_string_begin] = ACTIONS(1764), }, - [STATE(720)] = { - [sym_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(1895), - [anon_sym_in] = ACTIONS(1895), - [sym__newline] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_err_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_GT_PIPE] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), - [anon_sym_GT2] = ACTIONS(1897), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_STAR2] = ACTIONS(1897), - [anon_sym_and2] = ACTIONS(1895), - [anon_sym_xor2] = ACTIONS(1895), - [anon_sym_or2] = ACTIONS(1895), - [anon_sym_not_DASHin2] = ACTIONS(1895), - [anon_sym_has2] = ACTIONS(1895), - [anon_sym_not_DASHhas2] = ACTIONS(1895), - [anon_sym_starts_DASHwith2] = ACTIONS(1895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1895), - [anon_sym_ends_DASHwith2] = ACTIONS(1895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1895), - [anon_sym_EQ_EQ2] = ACTIONS(1895), - [anon_sym_BANG_EQ2] = ACTIONS(1895), - [anon_sym_LT2] = ACTIONS(1897), - [anon_sym_LT_EQ2] = ACTIONS(1895), - [anon_sym_GT_EQ2] = ACTIONS(1895), - [anon_sym_EQ_TILDE2] = ACTIONS(1895), - [anon_sym_BANG_TILDE2] = ACTIONS(1895), - [anon_sym_like2] = ACTIONS(1895), - [anon_sym_not_DASHlike2] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1895), - [anon_sym_STAR_STAR2] = ACTIONS(1895), - [anon_sym_PLUS_PLUS2] = ACTIONS(1895), - [anon_sym_SLASH2] = ACTIONS(1897), - [anon_sym_mod2] = ACTIONS(1895), - [anon_sym_SLASH_SLASH2] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1897), - [anon_sym_bit_DASHshl2] = ACTIONS(1895), - [anon_sym_bit_DASHshr2] = ACTIONS(1895), - [anon_sym_bit_DASHand2] = ACTIONS(1895), - [anon_sym_bit_DASHxor2] = ACTIONS(1895), - [anon_sym_bit_DASHor2] = ACTIONS(1895), - [anon_sym_DOT_DOT2] = ACTIONS(1897), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1895), - [anon_sym_err_GT] = ACTIONS(1897), - [anon_sym_out_GT] = ACTIONS(1897), - [anon_sym_e_GT] = ACTIONS(1897), - [anon_sym_o_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT] = ACTIONS(1897), - [anon_sym_err_GT_GT] = ACTIONS(1895), - [anon_sym_out_GT_GT] = ACTIONS(1895), - [anon_sym_e_GT_GT] = ACTIONS(1895), - [anon_sym_o_GT_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), - [sym__unquoted_pattern] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(3), + [STATE(707)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(5094), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(707), + [aux_sym_record_body_repeat1] = STATE(707), + [anon_sym_export] = ACTIONS(2144), + [anon_sym_alias] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [aux_sym_cmd_identifier_token1] = ACTIONS(2150), + [anon_sym_def] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_export_DASHenv] = ACTIONS(2147), + [anon_sym_extern] = ACTIONS(2147), + [anon_sym_module] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_catch] = ACTIONS(2147), + [anon_sym_finally] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [anon_sym_null] = ACTIONS(2153), + [aux_sym_cmd_identifier_token3] = ACTIONS(2156), + [aux_sym_cmd_identifier_token4] = ACTIONS(2156), + [aux_sym_cmd_identifier_token5] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_DOLLAR] = ACTIONS(2162), + [anon_sym_DASH2] = ACTIONS(2165), + [anon_sym_PLUS2] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2168), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2171), + [aux_sym__val_number_decimal_token1] = ACTIONS(2174), + [aux_sym__val_number_decimal_token2] = ACTIONS(2177), + [aux_sym__val_number_decimal_token3] = ACTIONS(2180), + [aux_sym__val_number_decimal_token4] = ACTIONS(2180), + [aux_sym__val_number_token1] = ACTIONS(2183), + [aux_sym__val_number_token2] = ACTIONS(2183), + [aux_sym__val_number_token3] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2186), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2195), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2198), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2204), }, - [STATE(721)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(4820), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(721), - [aux_sym_record_body_repeat1] = STATE(725), - [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_finally] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1762), - [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), - [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(708)] = { + [sym__expr_parenthesized_immediate] = STATE(5511), + [sym_comment] = STATE(708), + [anon_sym_in] = ACTIONS(2207), + [sym__newline] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_err_GT_PIPE] = ACTIONS(2207), + [anon_sym_out_GT_PIPE] = ACTIONS(2207), + [anon_sym_e_GT_PIPE] = ACTIONS(2207), + [anon_sym_o_GT_PIPE] = ACTIONS(2207), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2207), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2207), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2207), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2207), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_GT2] = ACTIONS(2209), + [anon_sym_DASH2] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_EQ_GT] = ACTIONS(2207), + [anon_sym_STAR2] = ACTIONS(2209), + [anon_sym_and2] = ACTIONS(2207), + [anon_sym_xor2] = ACTIONS(2207), + [anon_sym_or2] = ACTIONS(2207), + [anon_sym_not_DASHin2] = ACTIONS(2207), + [anon_sym_has2] = ACTIONS(2207), + [anon_sym_not_DASHhas2] = ACTIONS(2207), + [anon_sym_starts_DASHwith2] = ACTIONS(2207), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2207), + [anon_sym_ends_DASHwith2] = ACTIONS(2207), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2207), + [anon_sym_EQ_EQ2] = ACTIONS(2207), + [anon_sym_BANG_EQ2] = ACTIONS(2207), + [anon_sym_LT2] = ACTIONS(2209), + [anon_sym_LT_EQ2] = ACTIONS(2207), + [anon_sym_GT_EQ2] = ACTIONS(2207), + [anon_sym_EQ_TILDE2] = ACTIONS(2207), + [anon_sym_BANG_TILDE2] = ACTIONS(2207), + [anon_sym_like2] = ACTIONS(2207), + [anon_sym_not_DASHlike2] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2207), + [anon_sym_PLUS_PLUS2] = ACTIONS(2207), + [anon_sym_SLASH2] = ACTIONS(2209), + [anon_sym_mod2] = ACTIONS(2207), + [anon_sym_SLASH_SLASH2] = ACTIONS(2207), + [anon_sym_PLUS2] = ACTIONS(2209), + [anon_sym_bit_DASHshl2] = ACTIONS(2207), + [anon_sym_bit_DASHshr2] = ACTIONS(2207), + [anon_sym_bit_DASHand2] = ACTIONS(2207), + [anon_sym_bit_DASHxor2] = ACTIONS(2207), + [anon_sym_bit_DASHor2] = ACTIONS(2207), + [anon_sym_err_GT] = ACTIONS(2209), + [anon_sym_out_GT] = ACTIONS(2209), + [anon_sym_e_GT] = ACTIONS(2209), + [anon_sym_o_GT] = ACTIONS(2209), + [anon_sym_err_PLUSout_GT] = ACTIONS(2209), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2209), + [anon_sym_o_PLUSe_GT] = ACTIONS(2209), + [anon_sym_e_PLUSo_GT] = ACTIONS(2209), + [anon_sym_err_GT_GT] = ACTIONS(2207), + [anon_sym_out_GT_GT] = ACTIONS(2207), + [anon_sym_e_GT_GT] = ACTIONS(2207), + [anon_sym_o_GT_GT] = ACTIONS(2207), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2207), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2207), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2207), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1778), }, - [STATE(722)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(4629), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(4867), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(722), - [aux_sym__match_pattern_record_body_repeat1] = STATE(723), - [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_finally] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1760), - [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(1766), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), - [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(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(709)] = { + [sym_comment] = STATE(709), + [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_BANG] = ACTIONS(2211), + [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), - [sym_raw_string_begin] = ACTIONS(1778), }, - [STATE(723)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(4873), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(5053), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(723), - [aux_sym__match_pattern_record_body_repeat1] = STATE(723), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_alias] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [aux_sym_cmd_identifier_token1] = ACTIONS(2188), - [anon_sym_def] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_export_DASHenv] = ACTIONS(2185), - [anon_sym_extern] = ACTIONS(2185), - [anon_sym_module] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_else] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2185), - [anon_sym_catch] = ACTIONS(2185), - [anon_sym_finally] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [anon_sym_null] = ACTIONS(2191), - [aux_sym_cmd_identifier_token3] = ACTIONS(2194), - [aux_sym_cmd_identifier_token4] = ACTIONS(2194), - [aux_sym_cmd_identifier_token5] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2203), - [anon_sym_PLUS2] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2209), - [aux_sym__val_number_decimal_token1] = ACTIONS(2212), + [STATE(710)] = { + [aux_sym__repeat_newline] = STATE(3611), + [aux_sym__pipe_separator] = STATE(721), + [sym_comment] = STATE(710), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_alias] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_mut] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [aux_sym_cmd_identifier_token1] = ACTIONS(2213), + [anon_sym_def] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_export_DASHenv] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_finally] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_in] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [anon_sym_null] = ACTIONS(2215), + [aux_sym_cmd_identifier_token3] = ACTIONS(2215), + [aux_sym_cmd_identifier_token4] = ACTIONS(2215), + [aux_sym_cmd_identifier_token5] = ACTIONS(2215), + [sym__newline] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_err_GT_PIPE] = ACTIONS(2138), + [anon_sym_out_GT_PIPE] = ACTIONS(2138), + [anon_sym_e_GT_PIPE] = ACTIONS(2138), + [anon_sym_o_GT_PIPE] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_DASH2] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_where] = ACTIONS(2215), + [aux_sym_expr_unary_token1] = ACTIONS(2215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2215), + [anon_sym_DOT_DOT_LT] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2213), [aux_sym__val_number_decimal_token2] = ACTIONS(2215), - [aux_sym__val_number_decimal_token3] = ACTIONS(2218), - [aux_sym__val_number_decimal_token4] = ACTIONS(2218), - [aux_sym__val_number_token1] = ACTIONS(2221), - [aux_sym__val_number_token2] = ACTIONS(2221), - [aux_sym__val_number_token3] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2224), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_BQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2236), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2239), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2242), + [aux_sym__val_number_decimal_token3] = ACTIONS(2215), + [aux_sym__val_number_decimal_token4] = ACTIONS(2215), + [aux_sym__val_number_token1] = ACTIONS(2215), + [aux_sym__val_number_token2] = ACTIONS(2215), + [aux_sym__val_number_token3] = ACTIONS(2215), + [anon_sym_0b] = ACTIONS(2213), + [anon_sym_0o] = ACTIONS(2213), + [anon_sym_0x] = ACTIONS(2213), + [sym_val_date] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_BQUOTE] = ACTIONS(2215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2215), }, - [STATE(724)] = { - [sym_comment] = STATE(724), - [anon_sym_in] = ACTIONS(2132), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2134), - [anon_sym_DASH2] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [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_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_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(2247), - [anon_sym_out_GT] = ACTIONS(2247), - [anon_sym_e_GT] = ACTIONS(2247), - [anon_sym_o_GT] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT] = ACTIONS(2247), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), + [STATE(711)] = { + [sym_comment] = STATE(711), + [ts_builtin_sym_end] = ACTIONS(1919), + [anon_sym_in] = ACTIONS(1919), + [sym__newline] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_err_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_GT_PIPE] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), + [anon_sym_GT2] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_STAR2] = ACTIONS(1921), + [anon_sym_and2] = ACTIONS(1919), + [anon_sym_xor2] = ACTIONS(1919), + [anon_sym_or2] = ACTIONS(1919), + [anon_sym_not_DASHin2] = ACTIONS(1919), + [anon_sym_has2] = ACTIONS(1919), + [anon_sym_not_DASHhas2] = ACTIONS(1919), + [anon_sym_starts_DASHwith2] = ACTIONS(1919), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1919), + [anon_sym_ends_DASHwith2] = ACTIONS(1919), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1919), + [anon_sym_EQ_EQ2] = ACTIONS(1919), + [anon_sym_BANG_EQ2] = ACTIONS(1919), + [anon_sym_LT2] = ACTIONS(1921), + [anon_sym_LT_EQ2] = ACTIONS(1919), + [anon_sym_GT_EQ2] = ACTIONS(1919), + [anon_sym_EQ_TILDE2] = ACTIONS(1919), + [anon_sym_BANG_TILDE2] = ACTIONS(1919), + [anon_sym_like2] = ACTIONS(1919), + [anon_sym_not_DASHlike2] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1919), + [anon_sym_STAR_STAR2] = ACTIONS(1919), + [anon_sym_PLUS_PLUS2] = ACTIONS(1919), + [anon_sym_SLASH2] = ACTIONS(1921), + [anon_sym_mod2] = ACTIONS(1919), + [anon_sym_SLASH_SLASH2] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1921), + [anon_sym_bit_DASHshl2] = ACTIONS(1919), + [anon_sym_bit_DASHshr2] = ACTIONS(1919), + [anon_sym_bit_DASHand2] = ACTIONS(1919), + [anon_sym_bit_DASHxor2] = ACTIONS(1919), + [anon_sym_bit_DASHor2] = ACTIONS(1919), + [anon_sym_DOT_DOT2] = ACTIONS(1921), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1919), + [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(1919), + [anon_sym_out_GT_GT] = ACTIONS(1919), + [anon_sym_e_GT_GT] = ACTIONS(1919), + [anon_sym_o_GT_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), + [sym__unquoted_pattern] = ACTIONS(1921), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(725)] = { - [sym_cmd_identifier] = STATE(4519), - [sym_expr_parenthesized] = STATE(5494), - [sym__spread_parenthesized] = STATE(5018), - [sym__spread_variable] = STATE(5020), - [sym_val_variable] = STATE(5494), - [sym_val_number] = STATE(5494), - [sym__val_number_decimal] = STATE(1998), - [sym__val_number] = STATE(710), - [sym_val_string] = STATE(5494), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(5494), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym__spread_record] = STATE(5018), - [sym_record_entry] = STATE(5067), - [sym__record_key] = STATE(5156), - [sym_comment] = STATE(725), - [aux_sym_record_body_repeat1] = STATE(725), - [anon_sym_export] = ACTIONS(2249), - [anon_sym_alias] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_mut] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [aux_sym_cmd_identifier_token1] = ACTIONS(2255), - [anon_sym_def] = ACTIONS(2252), - [anon_sym_use] = ACTIONS(2252), - [anon_sym_export_DASHenv] = ACTIONS(2252), - [anon_sym_extern] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_loop] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_catch] = ACTIONS(2252), - [anon_sym_finally] = ACTIONS(2252), - [anon_sym_match] = ACTIONS(2252), - [anon_sym_in] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(2258), - [anon_sym_false] = ACTIONS(2258), - [anon_sym_null] = ACTIONS(2258), - [aux_sym_cmd_identifier_token3] = ACTIONS(2261), - [aux_sym_cmd_identifier_token4] = ACTIONS(2261), - [aux_sym_cmd_identifier_token5] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_DASH2] = ACTIONS(2270), - [anon_sym_PLUS2] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2276), - [aux_sym__val_number_decimal_token1] = ACTIONS(2279), - [aux_sym__val_number_decimal_token2] = ACTIONS(2282), - [aux_sym__val_number_decimal_token3] = ACTIONS(2285), - [aux_sym__val_number_decimal_token4] = ACTIONS(2285), - [aux_sym__val_number_token1] = ACTIONS(2288), - [aux_sym__val_number_token2] = ACTIONS(2288), - [aux_sym__val_number_token3] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_BQUOTE] = ACTIONS(2297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2300), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2306), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2309), - }, - [STATE(726)] = { - [sym_comment] = STATE(726), + [STATE(712)] = { + [sym_comment] = STATE(712), [ts_builtin_sym_end] = ACTIONS(1730), [anon_sym_in] = ACTIONS(1730), [sym__newline] = ACTIONS(1730), @@ -103980,437 +103391,2139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1732), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(713)] = { + [sym__expr_parenthesized_immediate] = STATE(5511), + [sym_comment] = STATE(713), + [anon_sym_in] = ACTIONS(2219), + [sym__newline] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_err_GT_PIPE] = ACTIONS(2219), + [anon_sym_out_GT_PIPE] = ACTIONS(2219), + [anon_sym_e_GT_PIPE] = ACTIONS(2219), + [anon_sym_o_GT_PIPE] = ACTIONS(2219), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2219), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2219), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2219), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2219), + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_GT2] = ACTIONS(2221), + [anon_sym_DASH2] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_EQ_GT] = ACTIONS(2219), + [anon_sym_STAR2] = ACTIONS(2221), + [anon_sym_and2] = ACTIONS(2219), + [anon_sym_xor2] = ACTIONS(2219), + [anon_sym_or2] = ACTIONS(2219), + [anon_sym_not_DASHin2] = ACTIONS(2219), + [anon_sym_has2] = ACTIONS(2219), + [anon_sym_not_DASHhas2] = ACTIONS(2219), + [anon_sym_starts_DASHwith2] = ACTIONS(2219), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2219), + [anon_sym_ends_DASHwith2] = ACTIONS(2219), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2219), + [anon_sym_EQ_EQ2] = ACTIONS(2219), + [anon_sym_BANG_EQ2] = ACTIONS(2219), + [anon_sym_LT2] = ACTIONS(2221), + [anon_sym_LT_EQ2] = ACTIONS(2219), + [anon_sym_GT_EQ2] = ACTIONS(2219), + [anon_sym_EQ_TILDE2] = ACTIONS(2219), + [anon_sym_BANG_TILDE2] = ACTIONS(2219), + [anon_sym_like2] = ACTIONS(2219), + [anon_sym_not_DASHlike2] = ACTIONS(2219), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2219), + [anon_sym_PLUS_PLUS2] = ACTIONS(2219), + [anon_sym_SLASH2] = ACTIONS(2221), + [anon_sym_mod2] = ACTIONS(2219), + [anon_sym_SLASH_SLASH2] = ACTIONS(2219), + [anon_sym_PLUS2] = ACTIONS(2221), + [anon_sym_bit_DASHshl2] = ACTIONS(2219), + [anon_sym_bit_DASHshr2] = ACTIONS(2219), + [anon_sym_bit_DASHand2] = ACTIONS(2219), + [anon_sym_bit_DASHxor2] = ACTIONS(2219), + [anon_sym_bit_DASHor2] = ACTIONS(2219), + [anon_sym_err_GT] = ACTIONS(2221), + [anon_sym_out_GT] = ACTIONS(2221), + [anon_sym_e_GT] = ACTIONS(2221), + [anon_sym_o_GT] = ACTIONS(2221), + [anon_sym_err_PLUSout_GT] = ACTIONS(2221), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2221), + [anon_sym_o_PLUSe_GT] = ACTIONS(2221), + [anon_sym_e_PLUSo_GT] = ACTIONS(2221), + [anon_sym_err_GT_GT] = ACTIONS(2219), + [anon_sym_out_GT_GT] = ACTIONS(2219), + [anon_sym_e_GT_GT] = ACTIONS(2219), + [anon_sym_o_GT_GT] = ACTIONS(2219), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2219), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2219), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2219), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2219), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(714)] = { + [sym__expr_parenthesized_immediate] = STATE(5511), + [sym_comment] = STATE(714), + [anon_sym_in] = ACTIONS(2223), + [sym__newline] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_err_GT_PIPE] = ACTIONS(2223), + [anon_sym_out_GT_PIPE] = ACTIONS(2223), + [anon_sym_e_GT_PIPE] = ACTIONS(2223), + [anon_sym_o_GT_PIPE] = ACTIONS(2223), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2223), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2223), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2223), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2223), + [anon_sym_RPAREN] = ACTIONS(2223), + [anon_sym_GT2] = ACTIONS(2225), + [anon_sym_DASH2] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_EQ_GT] = ACTIONS(2223), + [anon_sym_STAR2] = ACTIONS(2225), + [anon_sym_and2] = ACTIONS(2223), + [anon_sym_xor2] = ACTIONS(2223), + [anon_sym_or2] = ACTIONS(2223), + [anon_sym_not_DASHin2] = ACTIONS(2223), + [anon_sym_has2] = ACTIONS(2223), + [anon_sym_not_DASHhas2] = ACTIONS(2223), + [anon_sym_starts_DASHwith2] = ACTIONS(2223), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2223), + [anon_sym_ends_DASHwith2] = ACTIONS(2223), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2223), + [anon_sym_EQ_EQ2] = ACTIONS(2223), + [anon_sym_BANG_EQ2] = ACTIONS(2223), + [anon_sym_LT2] = ACTIONS(2225), + [anon_sym_LT_EQ2] = ACTIONS(2223), + [anon_sym_GT_EQ2] = ACTIONS(2223), + [anon_sym_EQ_TILDE2] = ACTIONS(2223), + [anon_sym_BANG_TILDE2] = ACTIONS(2223), + [anon_sym_like2] = ACTIONS(2223), + [anon_sym_not_DASHlike2] = ACTIONS(2223), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2223), + [anon_sym_PLUS_PLUS2] = ACTIONS(2223), + [anon_sym_SLASH2] = ACTIONS(2225), + [anon_sym_mod2] = ACTIONS(2223), + [anon_sym_SLASH_SLASH2] = ACTIONS(2223), + [anon_sym_PLUS2] = ACTIONS(2225), + [anon_sym_bit_DASHshl2] = ACTIONS(2223), + [anon_sym_bit_DASHshr2] = ACTIONS(2223), + [anon_sym_bit_DASHand2] = ACTIONS(2223), + [anon_sym_bit_DASHxor2] = ACTIONS(2223), + [anon_sym_bit_DASHor2] = ACTIONS(2223), + [anon_sym_err_GT] = ACTIONS(2225), + [anon_sym_out_GT] = ACTIONS(2225), + [anon_sym_e_GT] = ACTIONS(2225), + [anon_sym_o_GT] = ACTIONS(2225), + [anon_sym_err_PLUSout_GT] = ACTIONS(2225), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2225), + [anon_sym_o_PLUSe_GT] = ACTIONS(2225), + [anon_sym_e_PLUSo_GT] = ACTIONS(2225), + [anon_sym_err_GT_GT] = ACTIONS(2223), + [anon_sym_out_GT_GT] = ACTIONS(2223), + [anon_sym_e_GT_GT] = ACTIONS(2223), + [anon_sym_o_GT_GT] = ACTIONS(2223), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2223), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2223), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2223), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2223), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(715)] = { + [sym_comment] = STATE(715), + [ts_builtin_sym_end] = 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_COLON] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [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(1512), + [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(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [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(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_DOT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(716)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(5476), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4786), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(716), + [aux_sym_record_body_repeat1] = STATE(707), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1748), + [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(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), + [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(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [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(1764), + }, + [STATE(717)] = { + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(717), + [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_LPAREN2] = ACTIONS(1796), + [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(718)] = { + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(718), + [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_LPAREN2] = ACTIONS(1796), + [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(719)] = { + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(719), + [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_LPAREN2] = ACTIONS(1796), + [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(720)] = { + [sym_comment] = STATE(720), + [anon_sym_in] = ACTIONS(2227), + [sym__newline] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_err_GT_PIPE] = ACTIONS(2227), + [anon_sym_out_GT_PIPE] = ACTIONS(2227), + [anon_sym_e_GT_PIPE] = ACTIONS(2227), + [anon_sym_o_GT_PIPE] = ACTIONS(2227), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2227), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2227), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2227), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2227), + [anon_sym_RPAREN] = ACTIONS(2227), + [anon_sym_GT2] = ACTIONS(2229), + [anon_sym_DASH2] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_STAR2] = ACTIONS(2229), + [anon_sym_and2] = ACTIONS(2227), + [anon_sym_xor2] = ACTIONS(2227), + [anon_sym_or2] = ACTIONS(2227), + [anon_sym_not_DASHin2] = ACTIONS(2227), + [anon_sym_has2] = ACTIONS(2227), + [anon_sym_not_DASHhas2] = ACTIONS(2227), + [anon_sym_starts_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), + [anon_sym_ends_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), + [anon_sym_EQ_EQ2] = ACTIONS(2227), + [anon_sym_BANG_EQ2] = ACTIONS(2227), + [anon_sym_LT2] = ACTIONS(2229), + [anon_sym_LT_EQ2] = ACTIONS(2227), + [anon_sym_GT_EQ2] = ACTIONS(2227), + [anon_sym_EQ_TILDE2] = ACTIONS(2227), + [anon_sym_BANG_TILDE2] = ACTIONS(2227), + [anon_sym_like2] = ACTIONS(2227), + [anon_sym_not_DASHlike2] = ACTIONS(2227), + [anon_sym_STAR_STAR2] = ACTIONS(2227), + [anon_sym_PLUS_PLUS2] = ACTIONS(2227), + [anon_sym_SLASH2] = ACTIONS(2229), + [anon_sym_mod2] = ACTIONS(2227), + [anon_sym_SLASH_SLASH2] = ACTIONS(2227), + [anon_sym_PLUS2] = ACTIONS(2229), + [anon_sym_bit_DASHshl2] = ACTIONS(2227), + [anon_sym_bit_DASHshr2] = ACTIONS(2227), + [anon_sym_bit_DASHand2] = ACTIONS(2227), + [anon_sym_bit_DASHxor2] = ACTIONS(2227), + [anon_sym_bit_DASHor2] = ACTIONS(2227), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(2229), + [anon_sym_out_GT] = ACTIONS(2229), + [anon_sym_e_GT] = ACTIONS(2229), + [anon_sym_o_GT] = ACTIONS(2229), + [anon_sym_err_PLUSout_GT] = ACTIONS(2229), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), + [anon_sym_o_PLUSe_GT] = ACTIONS(2229), + [anon_sym_e_PLUSo_GT] = ACTIONS(2229), + [anon_sym_err_GT_GT] = ACTIONS(2227), + [anon_sym_out_GT_GT] = ACTIONS(2227), + [anon_sym_e_GT_GT] = ACTIONS(2227), + [anon_sym_o_GT_GT] = ACTIONS(2227), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2227), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2227), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2227), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2227), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(721)] = { + [aux_sym__repeat_newline] = STATE(3611), + [aux_sym__pipe_separator] = STATE(721), + [sym_comment] = STATE(721), + [anon_sym_export] = ACTIONS(2231), + [anon_sym_alias] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_mut] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [aux_sym_cmd_identifier_token1] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_export_DASHenv] = ACTIONS(2233), + [anon_sym_extern] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_loop] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_catch] = ACTIONS(2233), + [anon_sym_finally] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_null] = ACTIONS(2233), + [aux_sym_cmd_identifier_token3] = ACTIONS(2233), + [aux_sym_cmd_identifier_token4] = ACTIONS(2233), + [aux_sym_cmd_identifier_token5] = ACTIONS(2233), + [sym__newline] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_err_GT_PIPE] = ACTIONS(2238), + [anon_sym_out_GT_PIPE] = ACTIONS(2238), + [anon_sym_e_GT_PIPE] = ACTIONS(2238), + [anon_sym_o_GT_PIPE] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_DASH2] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_DOT_DOT] = ACTIONS(2231), + [anon_sym_where] = ACTIONS(2233), + [aux_sym_expr_unary_token1] = ACTIONS(2233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2233), + [anon_sym_DOT_DOT_LT] = ACTIONS(2233), + [aux_sym__val_number_decimal_token1] = ACTIONS(2231), + [aux_sym__val_number_decimal_token2] = ACTIONS(2233), + [aux_sym__val_number_decimal_token3] = ACTIONS(2233), + [aux_sym__val_number_decimal_token4] = ACTIONS(2233), + [aux_sym__val_number_token1] = ACTIONS(2233), + [aux_sym__val_number_token2] = ACTIONS(2233), + [aux_sym__val_number_token3] = ACTIONS(2233), + [anon_sym_0b] = ACTIONS(2231), + [anon_sym_0o] = ACTIONS(2231), + [anon_sym_0x] = ACTIONS(2231), + [sym_val_date] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_BQUOTE] = ACTIONS(2233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_CARET] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2233), + }, + [STATE(722)] = { + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(722), + [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_LPAREN2] = ACTIONS(1796), + [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(723)] = { + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(723), + [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_LPAREN2] = ACTIONS(1796), + [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(724)] = { + [sym_comment] = STATE(724), + [anon_sym_in] = ACTIONS(2241), + [sym__newline] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_err_GT_PIPE] = ACTIONS(2241), + [anon_sym_out_GT_PIPE] = ACTIONS(2241), + [anon_sym_e_GT_PIPE] = ACTIONS(2241), + [anon_sym_o_GT_PIPE] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), + [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_GT2] = ACTIONS(2243), + [anon_sym_DASH2] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_STAR2] = ACTIONS(2243), + [anon_sym_and2] = ACTIONS(2241), + [anon_sym_xor2] = ACTIONS(2241), + [anon_sym_or2] = ACTIONS(2241), + [anon_sym_not_DASHin2] = ACTIONS(2241), + [anon_sym_has2] = ACTIONS(2241), + [anon_sym_not_DASHhas2] = ACTIONS(2241), + [anon_sym_starts_DASHwith2] = ACTIONS(2241), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2241), + [anon_sym_ends_DASHwith2] = ACTIONS(2241), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2241), + [anon_sym_EQ_EQ2] = ACTIONS(2241), + [anon_sym_BANG_EQ2] = ACTIONS(2241), + [anon_sym_LT2] = ACTIONS(2243), + [anon_sym_LT_EQ2] = ACTIONS(2241), + [anon_sym_GT_EQ2] = ACTIONS(2241), + [anon_sym_EQ_TILDE2] = ACTIONS(2241), + [anon_sym_BANG_TILDE2] = ACTIONS(2241), + [anon_sym_like2] = ACTIONS(2241), + [anon_sym_not_DASHlike2] = ACTIONS(2241), + [anon_sym_STAR_STAR2] = ACTIONS(2241), + [anon_sym_PLUS_PLUS2] = ACTIONS(2241), + [anon_sym_SLASH2] = ACTIONS(2243), + [anon_sym_mod2] = ACTIONS(2241), + [anon_sym_SLASH_SLASH2] = ACTIONS(2241), + [anon_sym_PLUS2] = ACTIONS(2243), + [anon_sym_bit_DASHshl2] = ACTIONS(2241), + [anon_sym_bit_DASHshr2] = ACTIONS(2241), + [anon_sym_bit_DASHand2] = ACTIONS(2241), + [anon_sym_bit_DASHxor2] = ACTIONS(2241), + [anon_sym_bit_DASHor2] = ACTIONS(2241), + [anon_sym_DOT_DOT2] = ACTIONS(2245), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2247), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2243), + [anon_sym_out_GT] = ACTIONS(2243), + [anon_sym_e_GT] = ACTIONS(2243), + [anon_sym_o_GT] = ACTIONS(2243), + [anon_sym_err_PLUSout_GT] = ACTIONS(2243), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2243), + [anon_sym_o_PLUSe_GT] = ACTIONS(2243), + [anon_sym_e_PLUSo_GT] = ACTIONS(2243), + [anon_sym_err_GT_GT] = ACTIONS(2241), + [anon_sym_out_GT_GT] = ACTIONS(2241), + [anon_sym_e_GT_GT] = ACTIONS(2241), + [anon_sym_o_GT_GT] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(725)] = { + [sym_comment] = STATE(725), + [anon_sym_in] = ACTIONS(2249), + [sym__newline] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_err_GT_PIPE] = ACTIONS(2249), + [anon_sym_out_GT_PIPE] = ACTIONS(2249), + [anon_sym_e_GT_PIPE] = ACTIONS(2249), + [anon_sym_o_GT_PIPE] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_GT2] = ACTIONS(2251), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2251), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_has2] = ACTIONS(2249), + [anon_sym_not_DASHhas2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2251), + [anon_sym_LT_EQ2] = ACTIONS(2249), + [anon_sym_GT_EQ2] = ACTIONS(2249), + [anon_sym_EQ_TILDE2] = ACTIONS(2249), + [anon_sym_BANG_TILDE2] = ACTIONS(2249), + [anon_sym_like2] = ACTIONS(2249), + [anon_sym_not_DASHlike2] = ACTIONS(2249), + [anon_sym_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2251), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2251), + [anon_sym_bit_DASHshl2] = ACTIONS(2249), + [anon_sym_bit_DASHshr2] = ACTIONS(2249), + [anon_sym_bit_DASHand2] = ACTIONS(2249), + [anon_sym_bit_DASHxor2] = ACTIONS(2249), + [anon_sym_bit_DASHor2] = ACTIONS(2249), + [anon_sym_DOT_DOT2] = ACTIONS(2253), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2255), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2255), + [anon_sym_err_GT] = ACTIONS(2251), + [anon_sym_out_GT] = ACTIONS(2251), + [anon_sym_e_GT] = ACTIONS(2251), + [anon_sym_o_GT] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT] = ACTIONS(2251), + [anon_sym_err_GT_GT] = ACTIONS(2249), + [anon_sym_out_GT_GT] = ACTIONS(2249), + [anon_sym_e_GT_GT] = ACTIONS(2249), + [anon_sym_o_GT_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(726)] = { + [sym_comment] = STATE(726), + [ts_builtin_sym_end] = 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_COLON] = ACTIONS(1478), + [anon_sym_GT2] = ACTIONS(1476), + [anon_sym_DASH2] = ACTIONS(1478), + [anon_sym_STAR2] = ACTIONS(1476), + [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(1476), + [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(1476), + [anon_sym_mod2] = ACTIONS(1478), + [anon_sym_SLASH_SLASH2] = ACTIONS(1478), + [anon_sym_PLUS2] = ACTIONS(1476), + [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(1476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), + [anon_sym_DOT2] = ACTIONS(1476), + [anon_sym_err_GT] = ACTIONS(1476), + [anon_sym_out_GT] = ACTIONS(1476), + [anon_sym_e_GT] = ACTIONS(1476), + [anon_sym_o_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT] = ACTIONS(1476), + [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(3), + }, [STATE(727)] = { - [aux_sym__repeat_newline] = STATE(857), - [aux_sym__pipe_separator] = STATE(730), [sym_comment] = STATE(727), - [anon_sym_export] = ACTIONS(2312), - [anon_sym_alias] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_mut] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [aux_sym_cmd_identifier_token1] = ACTIONS(2312), - [anon_sym_def] = ACTIONS(2314), - [anon_sym_use] = ACTIONS(2314), - [anon_sym_export_DASHenv] = ACTIONS(2314), - [anon_sym_extern] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_loop] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_else] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_catch] = ACTIONS(2314), - [anon_sym_finally] = ACTIONS(2314), - [anon_sym_match] = ACTIONS(2314), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_true] = ACTIONS(2314), - [anon_sym_false] = ACTIONS(2314), - [anon_sym_null] = ACTIONS(2314), - [aux_sym_cmd_identifier_token3] = ACTIONS(2314), - [aux_sym_cmd_identifier_token4] = ACTIONS(2314), - [aux_sym_cmd_identifier_token5] = ACTIONS(2314), - [sym__newline] = ACTIONS(2316), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_err_GT_PIPE] = ACTIONS(2318), - [anon_sym_out_GT_PIPE] = ACTIONS(2318), - [anon_sym_e_GT_PIPE] = ACTIONS(2318), - [anon_sym_o_GT_PIPE] = ACTIONS(2318), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2318), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2318), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2318), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_DOLLAR] = ACTIONS(2312), - [anon_sym_DASH2] = ACTIONS(2312), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_DOT_DOT] = ACTIONS(2312), - [anon_sym_where] = ACTIONS(2314), - [aux_sym_expr_unary_token1] = ACTIONS(2314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2314), - [anon_sym_DOT_DOT_LT] = ACTIONS(2314), - [aux_sym__val_number_decimal_token1] = ACTIONS(2312), - [aux_sym__val_number_decimal_token2] = ACTIONS(2314), - [aux_sym__val_number_decimal_token3] = ACTIONS(2314), - [aux_sym__val_number_decimal_token4] = ACTIONS(2314), - [aux_sym__val_number_token1] = ACTIONS(2314), - [aux_sym__val_number_token2] = ACTIONS(2314), - [aux_sym__val_number_token3] = ACTIONS(2314), - [anon_sym_0b] = ACTIONS(2312), - [anon_sym_0o] = ACTIONS(2312), - [anon_sym_0x] = ACTIONS(2312), - [sym_val_date] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_BQUOTE] = ACTIONS(2314), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2314), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2257), + [sym__newline] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_err_GT_PIPE] = ACTIONS(2257), + [anon_sym_out_GT_PIPE] = ACTIONS(2257), + [anon_sym_e_GT_PIPE] = ACTIONS(2257), + [anon_sym_o_GT_PIPE] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_GT2] = ACTIONS(2259), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2259), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_has2] = ACTIONS(2257), + [anon_sym_not_DASHhas2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2259), + [anon_sym_LT_EQ2] = ACTIONS(2257), + [anon_sym_GT_EQ2] = ACTIONS(2257), + [anon_sym_EQ_TILDE2] = ACTIONS(2257), + [anon_sym_BANG_TILDE2] = ACTIONS(2257), + [anon_sym_like2] = ACTIONS(2257), + [anon_sym_not_DASHlike2] = ACTIONS(2257), + [anon_sym_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2259), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2259), + [anon_sym_bit_DASHshl2] = ACTIONS(2257), + [anon_sym_bit_DASHshr2] = ACTIONS(2257), + [anon_sym_bit_DASHand2] = ACTIONS(2257), + [anon_sym_bit_DASHxor2] = ACTIONS(2257), + [anon_sym_bit_DASHor2] = ACTIONS(2257), + [anon_sym_DOT_DOT2] = ACTIONS(2261), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2263), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2259), + [anon_sym_out_GT] = ACTIONS(2259), + [anon_sym_e_GT] = ACTIONS(2259), + [anon_sym_o_GT] = ACTIONS(2259), + [anon_sym_err_PLUSout_GT] = ACTIONS(2259), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2259), + [anon_sym_o_PLUSe_GT] = ACTIONS(2259), + [anon_sym_e_PLUSo_GT] = ACTIONS(2259), + [anon_sym_err_GT_GT] = ACTIONS(2257), + [anon_sym_out_GT_GT] = ACTIONS(2257), + [anon_sym_e_GT_GT] = ACTIONS(2257), + [anon_sym_o_GT_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(728)] = { - [aux_sym__repeat_newline] = STATE(3592), - [aux_sym__pipe_separator] = STATE(730), [sym_comment] = STATE(728), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_alias] = ACTIONS(2322), - [anon_sym_let] = ACTIONS(2322), - [anon_sym_mut] = ACTIONS(2322), - [anon_sym_const] = ACTIONS(2322), - [aux_sym_cmd_identifier_token1] = ACTIONS(2320), - [anon_sym_def] = ACTIONS(2322), - [anon_sym_use] = ACTIONS(2322), - [anon_sym_export_DASHenv] = ACTIONS(2322), - [anon_sym_extern] = ACTIONS(2322), - [anon_sym_module] = ACTIONS(2322), - [anon_sym_for] = ACTIONS(2322), - [anon_sym_loop] = ACTIONS(2322), - [anon_sym_while] = ACTIONS(2322), - [anon_sym_if] = ACTIONS(2322), - [anon_sym_else] = ACTIONS(2322), - [anon_sym_try] = ACTIONS(2322), - [anon_sym_catch] = ACTIONS(2322), - [anon_sym_finally] = ACTIONS(2322), - [anon_sym_match] = ACTIONS(2322), - [anon_sym_in] = ACTIONS(2320), - [anon_sym_true] = ACTIONS(2322), - [anon_sym_false] = ACTIONS(2322), - [anon_sym_null] = ACTIONS(2322), - [aux_sym_cmd_identifier_token3] = ACTIONS(2322), - [aux_sym_cmd_identifier_token4] = ACTIONS(2322), - [aux_sym_cmd_identifier_token5] = ACTIONS(2322), - [sym__newline] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_err_GT_PIPE] = ACTIONS(2318), - [anon_sym_out_GT_PIPE] = ACTIONS(2318), - [anon_sym_e_GT_PIPE] = ACTIONS(2318), - [anon_sym_o_GT_PIPE] = ACTIONS(2318), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2318), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2318), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2318), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_DASH2] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2320), - [anon_sym_where] = ACTIONS(2322), - [aux_sym_expr_unary_token1] = ACTIONS(2322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2322), - [anon_sym_DOT_DOT_LT] = ACTIONS(2322), - [aux_sym__val_number_decimal_token1] = ACTIONS(2320), - [aux_sym__val_number_decimal_token2] = ACTIONS(2322), - [aux_sym__val_number_decimal_token3] = ACTIONS(2322), - [aux_sym__val_number_decimal_token4] = ACTIONS(2322), - [aux_sym__val_number_token1] = ACTIONS(2322), - [aux_sym__val_number_token2] = ACTIONS(2322), - [aux_sym__val_number_token3] = ACTIONS(2322), - [anon_sym_0b] = ACTIONS(2320), - [anon_sym_0o] = ACTIONS(2320), - [anon_sym_0x] = ACTIONS(2320), - [sym_val_date] = ACTIONS(2322), - [anon_sym_DQUOTE] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2322), - [anon_sym_BQUOTE] = ACTIONS(2322), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2322), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2322), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2322), + [anon_sym_in] = ACTIONS(1953), + [sym__newline] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_err_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_GT_PIPE] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1953), + [anon_sym_GT2] = ACTIONS(1955), + [anon_sym_DASH2] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_STAR2] = ACTIONS(1955), + [anon_sym_and2] = ACTIONS(1953), + [anon_sym_xor2] = ACTIONS(1953), + [anon_sym_or2] = ACTIONS(1953), + [anon_sym_not_DASHin2] = ACTIONS(1953), + [anon_sym_has2] = ACTIONS(1953), + [anon_sym_not_DASHhas2] = ACTIONS(1953), + [anon_sym_starts_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), + [anon_sym_ends_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), + [anon_sym_EQ_EQ2] = ACTIONS(1953), + [anon_sym_BANG_EQ2] = ACTIONS(1953), + [anon_sym_LT2] = ACTIONS(1955), + [anon_sym_LT_EQ2] = ACTIONS(1953), + [anon_sym_GT_EQ2] = ACTIONS(1953), + [anon_sym_EQ_TILDE2] = ACTIONS(1953), + [anon_sym_BANG_TILDE2] = ACTIONS(1953), + [anon_sym_like2] = ACTIONS(1953), + [anon_sym_not_DASHlike2] = ACTIONS(1953), + [anon_sym_STAR_STAR2] = ACTIONS(1953), + [anon_sym_PLUS_PLUS2] = ACTIONS(1953), + [anon_sym_SLASH2] = ACTIONS(1955), + [anon_sym_mod2] = ACTIONS(1953), + [anon_sym_SLASH_SLASH2] = ACTIONS(1953), + [anon_sym_PLUS2] = ACTIONS(1955), + [anon_sym_bit_DASHshl2] = ACTIONS(1953), + [anon_sym_bit_DASHshr2] = ACTIONS(1953), + [anon_sym_bit_DASHand2] = ACTIONS(1953), + [anon_sym_bit_DASHxor2] = ACTIONS(1953), + [anon_sym_bit_DASHor2] = ACTIONS(1953), + [anon_sym_DOT_DOT2] = ACTIONS(2265), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2267), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2267), + [anon_sym_err_GT] = ACTIONS(1955), + [anon_sym_out_GT] = ACTIONS(1955), + [anon_sym_e_GT] = ACTIONS(1955), + [anon_sym_o_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT] = ACTIONS(1955), + [anon_sym_err_GT_GT] = ACTIONS(1953), + [anon_sym_out_GT_GT] = ACTIONS(1953), + [anon_sym_e_GT_GT] = ACTIONS(1953), + [anon_sym_o_GT_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(729)] = { [sym_comment] = STATE(729), - [anon_sym_if] = ACTIONS(2326), - [anon_sym_in] = ACTIONS(2326), - [sym__newline] = ACTIONS(2326), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2326), - [anon_sym_err_GT_PIPE] = ACTIONS(2326), - [anon_sym_out_GT_PIPE] = ACTIONS(2326), - [anon_sym_e_GT_PIPE] = ACTIONS(2326), - [anon_sym_o_GT_PIPE] = ACTIONS(2326), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2326), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2326), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2326), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2326), - [anon_sym_RPAREN] = ACTIONS(2326), - [anon_sym_GT2] = ACTIONS(2328), - [anon_sym_DASH2] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_EQ_GT] = ACTIONS(2326), - [anon_sym_STAR2] = ACTIONS(2328), - [anon_sym_and2] = ACTIONS(2326), - [anon_sym_xor2] = ACTIONS(2326), - [anon_sym_or2] = ACTIONS(2326), - [anon_sym_not_DASHin2] = ACTIONS(2326), - [anon_sym_has2] = ACTIONS(2326), - [anon_sym_not_DASHhas2] = ACTIONS(2326), - [anon_sym_starts_DASHwith2] = ACTIONS(2326), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2326), - [anon_sym_ends_DASHwith2] = ACTIONS(2326), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2326), - [anon_sym_EQ_EQ2] = ACTIONS(2326), - [anon_sym_BANG_EQ2] = ACTIONS(2326), - [anon_sym_LT2] = ACTIONS(2328), - [anon_sym_LT_EQ2] = ACTIONS(2326), - [anon_sym_GT_EQ2] = ACTIONS(2326), - [anon_sym_EQ_TILDE2] = ACTIONS(2326), - [anon_sym_BANG_TILDE2] = ACTIONS(2326), - [anon_sym_like2] = ACTIONS(2326), - [anon_sym_not_DASHlike2] = ACTIONS(2326), - [anon_sym_LPAREN2] = ACTIONS(2326), - [anon_sym_STAR_STAR2] = ACTIONS(2326), - [anon_sym_PLUS_PLUS2] = ACTIONS(2326), - [anon_sym_SLASH2] = ACTIONS(2328), - [anon_sym_mod2] = ACTIONS(2326), - [anon_sym_SLASH_SLASH2] = ACTIONS(2326), - [anon_sym_PLUS2] = ACTIONS(2328), - [anon_sym_bit_DASHshl2] = ACTIONS(2326), - [anon_sym_bit_DASHshr2] = ACTIONS(2326), - [anon_sym_bit_DASHand2] = ACTIONS(2326), - [anon_sym_bit_DASHxor2] = ACTIONS(2326), - [anon_sym_bit_DASHor2] = ACTIONS(2326), - [anon_sym_err_GT] = ACTIONS(2328), - [anon_sym_out_GT] = ACTIONS(2328), - [anon_sym_e_GT] = ACTIONS(2328), - [anon_sym_o_GT] = ACTIONS(2328), - [anon_sym_err_PLUSout_GT] = ACTIONS(2328), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2328), - [anon_sym_o_PLUSe_GT] = ACTIONS(2328), - [anon_sym_e_PLUSo_GT] = ACTIONS(2328), - [anon_sym_err_GT_GT] = ACTIONS(2326), - [anon_sym_out_GT_GT] = ACTIONS(2326), - [anon_sym_e_GT_GT] = ACTIONS(2326), - [anon_sym_o_GT_GT] = ACTIONS(2326), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2326), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2326), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2326), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2326), + [ts_builtin_sym_end] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1832), + [sym__newline] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_err_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_GT_PIPE] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), + [anon_sym_GT2] = ACTIONS(1834), + [anon_sym_DASH2] = ACTIONS(1832), + [anon_sym_STAR2] = ACTIONS(1834), + [anon_sym_and2] = ACTIONS(1832), + [anon_sym_xor2] = ACTIONS(1832), + [anon_sym_or2] = ACTIONS(1832), + [anon_sym_not_DASHin2] = ACTIONS(1832), + [anon_sym_has2] = ACTIONS(1832), + [anon_sym_not_DASHhas2] = ACTIONS(1832), + [anon_sym_starts_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), + [anon_sym_ends_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), + [anon_sym_EQ_EQ2] = ACTIONS(1832), + [anon_sym_BANG_EQ2] = ACTIONS(1832), + [anon_sym_LT2] = ACTIONS(1834), + [anon_sym_LT_EQ2] = ACTIONS(1832), + [anon_sym_GT_EQ2] = ACTIONS(1832), + [anon_sym_EQ_TILDE2] = ACTIONS(1832), + [anon_sym_BANG_TILDE2] = ACTIONS(1832), + [anon_sym_like2] = ACTIONS(1832), + [anon_sym_not_DASHlike2] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_STAR_STAR2] = ACTIONS(1832), + [anon_sym_PLUS_PLUS2] = ACTIONS(1832), + [anon_sym_SLASH2] = ACTIONS(1834), + [anon_sym_mod2] = ACTIONS(1832), + [anon_sym_SLASH_SLASH2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1834), + [anon_sym_bit_DASHshl2] = ACTIONS(1832), + [anon_sym_bit_DASHshr2] = ACTIONS(1832), + [anon_sym_bit_DASHand2] = ACTIONS(1832), + [anon_sym_bit_DASHxor2] = ACTIONS(1832), + [anon_sym_bit_DASHor2] = ACTIONS(1832), + [anon_sym_DOT_DOT2] = ACTIONS(1834), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1832), + [anon_sym_err_GT] = ACTIONS(1834), + [anon_sym_out_GT] = ACTIONS(1834), + [anon_sym_e_GT] = ACTIONS(1834), + [anon_sym_o_GT] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT] = ACTIONS(1834), + [anon_sym_err_GT_GT] = ACTIONS(1832), + [anon_sym_out_GT_GT] = ACTIONS(1832), + [anon_sym_e_GT_GT] = ACTIONS(1832), + [anon_sym_o_GT_GT] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), + [sym__unquoted_pattern] = ACTIONS(1834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(730)] = { - [aux_sym__repeat_newline] = STATE(3592), - [aux_sym__pipe_separator] = STATE(730), [sym_comment] = STATE(730), - [anon_sym_export] = ACTIONS(2330), - [anon_sym_alias] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_mut] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [aux_sym_cmd_identifier_token1] = ACTIONS(2330), - [anon_sym_def] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_export_DASHenv] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2330), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_null] = ACTIONS(2332), - [aux_sym_cmd_identifier_token3] = ACTIONS(2332), - [aux_sym_cmd_identifier_token4] = ACTIONS(2332), - [aux_sym_cmd_identifier_token5] = ACTIONS(2332), - [sym__newline] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2330), - [anon_sym_DASH2] = ACTIONS(2330), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_DOT_DOT] = ACTIONS(2330), - [anon_sym_where] = ACTIONS(2332), - [aux_sym_expr_unary_token1] = ACTIONS(2332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [aux_sym__val_number_decimal_token1] = ACTIONS(2330), - [aux_sym__val_number_decimal_token2] = ACTIONS(2332), - [aux_sym__val_number_decimal_token3] = ACTIONS(2332), - [aux_sym__val_number_decimal_token4] = ACTIONS(2332), - [aux_sym__val_number_token1] = ACTIONS(2332), - [aux_sym__val_number_token2] = ACTIONS(2332), - [aux_sym__val_number_token3] = ACTIONS(2332), - [anon_sym_0b] = ACTIONS(2330), - [anon_sym_0o] = ACTIONS(2330), - [anon_sym_0x] = ACTIONS(2330), - [sym_val_date] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_BQUOTE] = ACTIONS(2332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1714), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(731)] = { + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(731), - [ts_builtin_sym_end] = 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_GT2] = ACTIONS(1460), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1460), - [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(1460), - [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(1460), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1460), - [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(1460), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(2340), - [anon_sym_DOT2] = ACTIONS(1460), - [anon_sym_err_GT] = ACTIONS(1460), - [anon_sym_out_GT] = ACTIONS(1460), - [anon_sym_e_GT] = ACTIONS(1460), - [anon_sym_o_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT] = ACTIONS(1460), - [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_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_LPAREN2] = ACTIONS(1796), + [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(732)] = { - [sym__expr_parenthesized_immediate] = STATE(5483), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(732), - [anon_sym_in] = ACTIONS(2342), - [sym__newline] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_err_GT_PIPE] = ACTIONS(2342), - [anon_sym_out_GT_PIPE] = ACTIONS(2342), - [anon_sym_e_GT_PIPE] = ACTIONS(2342), - [anon_sym_o_GT_PIPE] = ACTIONS(2342), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2342), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2342), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2342), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2342), - [anon_sym_RPAREN] = ACTIONS(2342), - [anon_sym_GT2] = ACTIONS(2344), - [anon_sym_DASH2] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_EQ_GT] = ACTIONS(2342), - [anon_sym_STAR2] = ACTIONS(2344), - [anon_sym_and2] = ACTIONS(2342), - [anon_sym_xor2] = ACTIONS(2342), - [anon_sym_or2] = ACTIONS(2342), - [anon_sym_not_DASHin2] = ACTIONS(2342), - [anon_sym_has2] = ACTIONS(2342), - [anon_sym_not_DASHhas2] = ACTIONS(2342), - [anon_sym_starts_DASHwith2] = ACTIONS(2342), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2342), - [anon_sym_ends_DASHwith2] = ACTIONS(2342), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2342), - [anon_sym_EQ_EQ2] = ACTIONS(2342), - [anon_sym_BANG_EQ2] = ACTIONS(2342), - [anon_sym_LT2] = ACTIONS(2344), - [anon_sym_LT_EQ2] = ACTIONS(2342), - [anon_sym_GT_EQ2] = ACTIONS(2342), - [anon_sym_EQ_TILDE2] = ACTIONS(2342), - [anon_sym_BANG_TILDE2] = ACTIONS(2342), - [anon_sym_like2] = ACTIONS(2342), - [anon_sym_not_DASHlike2] = ACTIONS(2342), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2342), - [anon_sym_PLUS_PLUS2] = ACTIONS(2342), - [anon_sym_SLASH2] = ACTIONS(2344), - [anon_sym_mod2] = ACTIONS(2342), - [anon_sym_SLASH_SLASH2] = ACTIONS(2342), - [anon_sym_PLUS2] = ACTIONS(2344), - [anon_sym_bit_DASHshl2] = ACTIONS(2342), - [anon_sym_bit_DASHshr2] = ACTIONS(2342), - [anon_sym_bit_DASHand2] = ACTIONS(2342), - [anon_sym_bit_DASHxor2] = ACTIONS(2342), - [anon_sym_bit_DASHor2] = ACTIONS(2342), - [anon_sym_err_GT] = ACTIONS(2344), - [anon_sym_out_GT] = ACTIONS(2344), - [anon_sym_e_GT] = ACTIONS(2344), - [anon_sym_o_GT] = ACTIONS(2344), - [anon_sym_err_PLUSout_GT] = ACTIONS(2344), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2344), - [anon_sym_o_PLUSe_GT] = ACTIONS(2344), - [anon_sym_e_PLUSo_GT] = ACTIONS(2344), - [anon_sym_err_GT_GT] = ACTIONS(2342), - [anon_sym_out_GT_GT] = ACTIONS(2342), - [anon_sym_e_GT_GT] = ACTIONS(2342), - [anon_sym_o_GT_GT] = ACTIONS(2342), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2342), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2342), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2342), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2342), + [anon_sym_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_LPAREN2] = ACTIONS(1796), + [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(733)] = { - [aux_sym__repeat_newline] = STATE(1042), - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(733), - [anon_sym_in] = ACTIONS(2346), + [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_LPAREN2] = ACTIONS(1796), + [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(734)] = { + [sym_comment] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_LPAREN2] = ACTIONS(2094), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_DOT_DOT2] = ACTIONS(2269), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2271), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2271), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), + [sym__unquoted_pattern] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(735)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(4640), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4719), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(735), + [aux_sym__match_pattern_record_body_repeat1] = STATE(736), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1766), + [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(1752), + [aux_sym__val_number_decimal_token2] = ACTIONS(1754), + [aux_sym__val_number_decimal_token3] = ACTIONS(1756), + [aux_sym__val_number_decimal_token4] = ACTIONS(1756), + [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(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [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(1764), + }, + [STATE(736)] = { + [sym_cmd_identifier] = STATE(4489), + [sym_expr_parenthesized] = STATE(5476), + [sym__spread_parenthesized] = STATE(4966), + [sym__spread_variable] = STATE(4967), + [sym_val_variable] = STATE(4728), + [sym_val_number] = STATE(5476), + [sym__val_number_decimal] = STATE(1991), + [sym__val_number] = STATE(744), + [sym_val_string] = STATE(5476), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(5476), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym__spread_record] = STATE(4966), + [sym_record_entry] = STATE(4995), + [sym__record_key] = STATE(5246), + [sym_comment] = STATE(736), + [aux_sym__match_pattern_record_body_repeat1] = STATE(736), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_alias] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_mut] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [aux_sym_cmd_identifier_token1] = ACTIONS(2279), + [anon_sym_def] = ACTIONS(2276), + [anon_sym_use] = ACTIONS(2276), + [anon_sym_export_DASHenv] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_loop] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_catch] = ACTIONS(2276), + [anon_sym_finally] = ACTIONS(2276), + [anon_sym_match] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(2282), + [anon_sym_false] = ACTIONS(2282), + [anon_sym_null] = ACTIONS(2282), + [aux_sym_cmd_identifier_token3] = ACTIONS(2285), + [aux_sym_cmd_identifier_token4] = ACTIONS(2285), + [aux_sym_cmd_identifier_token5] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2294), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2300), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2306), + [aux_sym__val_number_decimal_token3] = ACTIONS(2309), + [aux_sym__val_number_decimal_token4] = ACTIONS(2309), + [aux_sym__val_number_token1] = ACTIONS(2312), + [aux_sym__val_number_token2] = ACTIONS(2312), + [aux_sym__val_number_token3] = ACTIONS(2312), + [anon_sym_DQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_BQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2327), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2333), + }, + [STATE(737)] = { + [sym_comment] = STATE(737), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_in] = ACTIONS(2336), + [sym__newline] = ACTIONS(2336), + [anon_sym_SEMI] = ACTIONS(2336), + [anon_sym_PIPE] = ACTIONS(2336), + [anon_sym_err_GT_PIPE] = ACTIONS(2336), + [anon_sym_out_GT_PIPE] = ACTIONS(2336), + [anon_sym_e_GT_PIPE] = ACTIONS(2336), + [anon_sym_o_GT_PIPE] = ACTIONS(2336), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2336), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2336), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2336), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2336), + [anon_sym_RPAREN] = ACTIONS(2336), + [anon_sym_GT2] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2336), + [anon_sym_LBRACE] = ACTIONS(2336), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_EQ_GT] = ACTIONS(2336), + [anon_sym_STAR2] = ACTIONS(2338), + [anon_sym_and2] = ACTIONS(2336), + [anon_sym_xor2] = ACTIONS(2336), + [anon_sym_or2] = ACTIONS(2336), + [anon_sym_not_DASHin2] = ACTIONS(2336), + [anon_sym_has2] = ACTIONS(2336), + [anon_sym_not_DASHhas2] = ACTIONS(2336), + [anon_sym_starts_DASHwith2] = ACTIONS(2336), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2336), + [anon_sym_ends_DASHwith2] = ACTIONS(2336), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2336), + [anon_sym_EQ_EQ2] = ACTIONS(2336), + [anon_sym_BANG_EQ2] = ACTIONS(2336), + [anon_sym_LT2] = ACTIONS(2338), + [anon_sym_LT_EQ2] = ACTIONS(2336), + [anon_sym_GT_EQ2] = ACTIONS(2336), + [anon_sym_EQ_TILDE2] = ACTIONS(2336), + [anon_sym_BANG_TILDE2] = ACTIONS(2336), + [anon_sym_like2] = ACTIONS(2336), + [anon_sym_not_DASHlike2] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(2336), + [anon_sym_STAR_STAR2] = ACTIONS(2336), + [anon_sym_PLUS_PLUS2] = ACTIONS(2336), + [anon_sym_SLASH2] = ACTIONS(2338), + [anon_sym_mod2] = ACTIONS(2336), + [anon_sym_SLASH_SLASH2] = ACTIONS(2336), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_bit_DASHshl2] = ACTIONS(2336), + [anon_sym_bit_DASHshr2] = ACTIONS(2336), + [anon_sym_bit_DASHand2] = ACTIONS(2336), + [anon_sym_bit_DASHxor2] = ACTIONS(2336), + [anon_sym_bit_DASHor2] = ACTIONS(2336), + [anon_sym_err_GT] = ACTIONS(2338), + [anon_sym_out_GT] = ACTIONS(2338), + [anon_sym_e_GT] = ACTIONS(2338), + [anon_sym_o_GT] = ACTIONS(2338), + [anon_sym_err_PLUSout_GT] = ACTIONS(2338), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2338), + [anon_sym_o_PLUSe_GT] = ACTIONS(2338), + [anon_sym_e_PLUSo_GT] = ACTIONS(2338), + [anon_sym_err_GT_GT] = ACTIONS(2336), + [anon_sym_out_GT_GT] = ACTIONS(2336), + [anon_sym_e_GT_GT] = ACTIONS(2336), + [anon_sym_o_GT_GT] = ACTIONS(2336), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2336), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2336), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2336), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2336), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(738)] = { + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(738), + [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_LPAREN2] = ACTIONS(1796), + [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(739)] = { + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(739), + [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_LPAREN2] = ACTIONS(1796), + [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(740)] = { + [sym_comment] = STATE(740), + [anon_sym_if] = ACTIONS(884), + [anon_sym_in] = ACTIONS(884), + [sym__newline] = ACTIONS(884), + [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_RPAREN] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(884), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(884), + [anon_sym_xor2] = ACTIONS(884), + [anon_sym_or2] = ACTIONS(884), + [anon_sym_not_DASHin2] = ACTIONS(884), + [anon_sym_has2] = ACTIONS(884), + [anon_sym_not_DASHhas2] = ACTIONS(884), + [anon_sym_starts_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), + [anon_sym_ends_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(884), + [anon_sym_like2] = ACTIONS(884), + [anon_sym_not_DASHlike2] = ACTIONS(884), + [anon_sym_STAR_STAR2] = ACTIONS(884), + [anon_sym_PLUS_PLUS2] = ACTIONS(884), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(884), + [anon_sym_SLASH_SLASH2] = ACTIONS(884), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(884), + [anon_sym_bit_DASHshr2] = ACTIONS(884), + [anon_sym_bit_DASHand2] = ACTIONS(884), + [anon_sym_bit_DASHxor2] = ACTIONS(884), + [anon_sym_bit_DASHor2] = ACTIONS(884), + [anon_sym_COLON2] = ACTIONS(884), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(741)] = { + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(741), + [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_LPAREN2] = ACTIONS(1796), + [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(742)] = { + [sym_comment] = STATE(742), + [anon_sym_if] = ACTIONS(2340), + [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_RBRACE] = ACTIONS(2340), + [anon_sym_EQ_GT] = 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_LBRACK2] = ACTIONS(2344), + [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(743)] = { + [sym_comment] = STATE(743), + [anon_sym_in] = ACTIONS(2227), [sym__newline] = ACTIONS(2346), [anon_sym_SEMI] = ACTIONS(2346), [anon_sym_PIPE] = ACTIONS(2346), @@ -104423,41 +105536,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2346), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2346), [anon_sym_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2229), + [anon_sym_DASH2] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2229), + [anon_sym_and2] = ACTIONS(2227), + [anon_sym_xor2] = ACTIONS(2227), + [anon_sym_or2] = ACTIONS(2227), + [anon_sym_not_DASHin2] = ACTIONS(2227), + [anon_sym_has2] = ACTIONS(2227), + [anon_sym_not_DASHhas2] = ACTIONS(2227), + [anon_sym_starts_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), + [anon_sym_ends_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), + [anon_sym_EQ_EQ2] = ACTIONS(2227), + [anon_sym_BANG_EQ2] = ACTIONS(2227), + [anon_sym_LT2] = ACTIONS(2229), + [anon_sym_LT_EQ2] = ACTIONS(2227), + [anon_sym_GT_EQ2] = ACTIONS(2227), + [anon_sym_EQ_TILDE2] = ACTIONS(2227), + [anon_sym_BANG_TILDE2] = ACTIONS(2227), + [anon_sym_like2] = ACTIONS(2227), + [anon_sym_not_DASHlike2] = ACTIONS(2227), + [anon_sym_STAR_STAR2] = ACTIONS(2227), + [anon_sym_PLUS_PLUS2] = ACTIONS(2227), + [anon_sym_SLASH2] = ACTIONS(2229), + [anon_sym_mod2] = ACTIONS(2227), + [anon_sym_SLASH_SLASH2] = ACTIONS(2227), + [anon_sym_PLUS2] = ACTIONS(2229), + [anon_sym_bit_DASHshl2] = ACTIONS(2227), + [anon_sym_bit_DASHshr2] = ACTIONS(2227), + [anon_sym_bit_DASHand2] = ACTIONS(2227), + [anon_sym_bit_DASHxor2] = ACTIONS(2227), + [anon_sym_bit_DASHor2] = ACTIONS(2227), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), [anon_sym_err_GT] = ACTIONS(2348), [anon_sym_out_GT] = ACTIONS(2348), [anon_sym_e_GT] = ACTIONS(2348), @@ -104476,10 +105592,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(734)] = { - [aux_sym__repeat_newline] = STATE(986), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(734), + [STATE(744)] = { + [sym_comment] = STATE(744), + [anon_sym_if] = ACTIONS(2350), [anon_sym_in] = ACTIONS(2350), [sym__newline] = ACTIONS(2350), [anon_sym_SEMI] = ACTIONS(2350), @@ -104496,6 +105611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(2352), [anon_sym_DASH2] = ACTIONS(2350), [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_EQ_GT] = ACTIONS(2350), [anon_sym_STAR2] = ACTIONS(2352), [anon_sym_and2] = ACTIONS(2350), [anon_sym_xor2] = ACTIONS(2350), @@ -104516,7 +105633,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2350), [anon_sym_like2] = ACTIONS(2350), [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), [anon_sym_STAR_STAR2] = ACTIONS(2350), [anon_sym_PLUS_PLUS2] = ACTIONS(2350), [anon_sym_SLASH2] = ACTIONS(2352), @@ -104528,6 +105644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2350), [anon_sym_bit_DASHxor2] = ACTIONS(2350), [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_COLON2] = ACTIONS(2350), [anon_sym_err_GT] = ACTIONS(2352), [anon_sym_out_GT] = ACTIONS(2352), [anon_sym_e_GT] = ACTIONS(2352), @@ -104546,13088 +105663,12189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(735)] = { - [sym_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [sym__newline] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_err_GT_PIPE] = ACTIONS(1730), - [anon_sym_out_GT_PIPE] = ACTIONS(1730), - [anon_sym_e_GT_PIPE] = ACTIONS(1730), - [anon_sym_o_GT_PIPE] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), - [anon_sym_GT2] = ACTIONS(1732), - [anon_sym_DASH2] = ACTIONS(1730), - [anon_sym_STAR2] = ACTIONS(1732), - [anon_sym_and2] = ACTIONS(1730), - [anon_sym_xor2] = ACTIONS(1730), - [anon_sym_or2] = ACTIONS(1730), - [anon_sym_not_DASHin2] = ACTIONS(1730), - [anon_sym_has2] = ACTIONS(1730), - [anon_sym_not_DASHhas2] = ACTIONS(1730), - [anon_sym_starts_DASHwith2] = ACTIONS(1730), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), - [anon_sym_ends_DASHwith2] = ACTIONS(1730), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), - [anon_sym_EQ_EQ2] = ACTIONS(1730), - [anon_sym_BANG_EQ2] = ACTIONS(1730), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ2] = ACTIONS(1730), - [anon_sym_GT_EQ2] = ACTIONS(1730), - [anon_sym_EQ_TILDE2] = ACTIONS(1730), - [anon_sym_BANG_TILDE2] = ACTIONS(1730), - [anon_sym_like2] = ACTIONS(1730), - [anon_sym_not_DASHlike2] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1730), - [anon_sym_STAR_STAR2] = ACTIONS(1730), - [anon_sym_PLUS_PLUS2] = ACTIONS(1730), - [anon_sym_SLASH2] = ACTIONS(1732), - [anon_sym_mod2] = ACTIONS(1730), - [anon_sym_SLASH_SLASH2] = ACTIONS(1730), - [anon_sym_PLUS2] = ACTIONS(1732), - [anon_sym_bit_DASHshl2] = ACTIONS(1730), - [anon_sym_bit_DASHshr2] = ACTIONS(1730), - [anon_sym_bit_DASHand2] = ACTIONS(1730), - [anon_sym_bit_DASHxor2] = ACTIONS(1730), - [anon_sym_bit_DASHor2] = ACTIONS(1730), - [aux_sym__immediate_decimal_token1] = ACTIONS(2354), - [aux_sym__immediate_decimal_token5] = ACTIONS(2356), - [anon_sym_err_GT] = ACTIONS(1732), - [anon_sym_out_GT] = ACTIONS(1732), - [anon_sym_e_GT] = ACTIONS(1732), - [anon_sym_o_GT] = ACTIONS(1732), - [anon_sym_err_PLUSout_GT] = ACTIONS(1732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), - [anon_sym_o_PLUSe_GT] = ACTIONS(1732), - [anon_sym_e_PLUSo_GT] = ACTIONS(1732), - [anon_sym_err_GT_GT] = ACTIONS(1730), - [anon_sym_out_GT_GT] = ACTIONS(1730), - [anon_sym_e_GT_GT] = ACTIONS(1730), - [anon_sym_o_GT_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), - [sym__unquoted_pattern] = ACTIONS(1732), + [STATE(745)] = { + [sym_comment] = STATE(745), + [anon_sym_in] = ACTIONS(2354), + [sym__newline] = ACTIONS(2354), + [anon_sym_SEMI] = ACTIONS(2354), + [anon_sym_PIPE] = ACTIONS(2354), + [anon_sym_err_GT_PIPE] = ACTIONS(2354), + [anon_sym_out_GT_PIPE] = ACTIONS(2354), + [anon_sym_e_GT_PIPE] = ACTIONS(2354), + [anon_sym_o_GT_PIPE] = ACTIONS(2354), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2354), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2354), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2354), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2354), + [anon_sym_RPAREN] = ACTIONS(2354), + [anon_sym_GT2] = ACTIONS(2356), + [anon_sym_DASH2] = ACTIONS(2354), + [anon_sym_LBRACE] = ACTIONS(2354), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_EQ_GT] = ACTIONS(2354), + [anon_sym_STAR2] = ACTIONS(2356), + [anon_sym_and2] = ACTIONS(2354), + [anon_sym_xor2] = ACTIONS(2354), + [anon_sym_or2] = ACTIONS(2354), + [anon_sym_not_DASHin2] = ACTIONS(2354), + [anon_sym_has2] = ACTIONS(2354), + [anon_sym_not_DASHhas2] = ACTIONS(2354), + [anon_sym_starts_DASHwith2] = ACTIONS(2354), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2354), + [anon_sym_ends_DASHwith2] = ACTIONS(2354), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2354), + [anon_sym_EQ_EQ2] = ACTIONS(2354), + [anon_sym_BANG_EQ2] = ACTIONS(2354), + [anon_sym_LT2] = ACTIONS(2356), + [anon_sym_LT_EQ2] = ACTIONS(2354), + [anon_sym_GT_EQ2] = ACTIONS(2354), + [anon_sym_EQ_TILDE2] = ACTIONS(2354), + [anon_sym_BANG_TILDE2] = ACTIONS(2354), + [anon_sym_like2] = ACTIONS(2354), + [anon_sym_not_DASHlike2] = ACTIONS(2354), + [anon_sym_STAR_STAR2] = ACTIONS(2354), + [anon_sym_PLUS_PLUS2] = ACTIONS(2354), + [anon_sym_SLASH2] = ACTIONS(2356), + [anon_sym_mod2] = ACTIONS(2354), + [anon_sym_SLASH_SLASH2] = ACTIONS(2354), + [anon_sym_PLUS2] = ACTIONS(2356), + [anon_sym_bit_DASHshl2] = ACTIONS(2354), + [anon_sym_bit_DASHshr2] = ACTIONS(2354), + [anon_sym_bit_DASHand2] = ACTIONS(2354), + [anon_sym_bit_DASHxor2] = ACTIONS(2354), + [anon_sym_bit_DASHor2] = ACTIONS(2354), + [anon_sym_COLON2] = ACTIONS(2354), + [anon_sym_err_GT] = ACTIONS(2356), + [anon_sym_out_GT] = ACTIONS(2356), + [anon_sym_e_GT] = ACTIONS(2356), + [anon_sym_o_GT] = ACTIONS(2356), + [anon_sym_err_PLUSout_GT] = ACTIONS(2356), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2356), + [anon_sym_o_PLUSe_GT] = ACTIONS(2356), + [anon_sym_e_PLUSo_GT] = ACTIONS(2356), + [anon_sym_err_GT_GT] = ACTIONS(2354), + [anon_sym_out_GT_GT] = ACTIONS(2354), + [anon_sym_e_GT_GT] = ACTIONS(2354), + [anon_sym_o_GT_GT] = ACTIONS(2354), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2354), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2354), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2354), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2354), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(736)] = { - [sym_cell_path] = STATE(1298), - [sym_path] = STATE(715), - [sym_comment] = STATE(736), - [aux_sym__where_predicate_lhs_repeat1] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [sym__newline] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1871), - [anon_sym_err_GT_PIPE] = ACTIONS(1871), - [anon_sym_out_GT_PIPE] = ACTIONS(1871), - [anon_sym_e_GT_PIPE] = ACTIONS(1871), - [anon_sym_o_GT_PIPE] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1871), - [anon_sym_GT2] = ACTIONS(1874), - [anon_sym_DASH2] = ACTIONS(1871), - [anon_sym_STAR2] = ACTIONS(1874), - [anon_sym_and2] = ACTIONS(1871), - [anon_sym_xor2] = ACTIONS(1871), - [anon_sym_or2] = ACTIONS(1871), - [anon_sym_not_DASHin2] = ACTIONS(1871), - [anon_sym_has2] = ACTIONS(1871), - [anon_sym_not_DASHhas2] = ACTIONS(1871), - [anon_sym_starts_DASHwith2] = ACTIONS(1871), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1871), - [anon_sym_ends_DASHwith2] = ACTIONS(1871), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1871), - [anon_sym_EQ_EQ2] = ACTIONS(1871), - [anon_sym_BANG_EQ2] = ACTIONS(1871), - [anon_sym_LT2] = ACTIONS(1874), - [anon_sym_LT_EQ2] = ACTIONS(1871), - [anon_sym_GT_EQ2] = ACTIONS(1871), - [anon_sym_EQ_TILDE2] = ACTIONS(1871), - [anon_sym_BANG_TILDE2] = ACTIONS(1871), - [anon_sym_like2] = ACTIONS(1871), - [anon_sym_not_DASHlike2] = ACTIONS(1871), - [anon_sym_STAR_STAR2] = ACTIONS(1871), - [anon_sym_PLUS_PLUS2] = ACTIONS(1871), - [anon_sym_SLASH2] = ACTIONS(1874), - [anon_sym_mod2] = ACTIONS(1871), - [anon_sym_SLASH_SLASH2] = ACTIONS(1871), - [anon_sym_PLUS2] = ACTIONS(1874), - [anon_sym_bit_DASHshl2] = ACTIONS(1871), - [anon_sym_bit_DASHshr2] = ACTIONS(1871), - [anon_sym_bit_DASHand2] = ACTIONS(1871), - [anon_sym_bit_DASHxor2] = ACTIONS(1871), - [anon_sym_bit_DASHor2] = ACTIONS(1871), - [anon_sym_DOT2] = ACTIONS(2358), - [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(1871), - [anon_sym_out_GT_GT] = ACTIONS(1871), - [anon_sym_e_GT_GT] = ACTIONS(1871), - [anon_sym_o_GT_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1871), + [STATE(746)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2235), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(738), + [sym__unquoted_with_expr] = STATE(964), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(746), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(737)] = { - [sym_comment] = STATE(737), - [anon_sym_in] = ACTIONS(2132), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2134), - [anon_sym_DASH2] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2245), - [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_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_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_COLON2] = ACTIONS(1701), - [anon_sym_err_GT] = ACTIONS(2247), - [anon_sym_out_GT] = ACTIONS(2247), - [anon_sym_e_GT] = ACTIONS(2247), - [anon_sym_o_GT] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT] = ACTIONS(2247), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), + [STATE(747)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(965), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(741), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(747), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(738)] = { - [sym_comment] = STATE(738), - [anon_sym_in] = ACTIONS(2360), - [sym__newline] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_err_GT_PIPE] = ACTIONS(2360), - [anon_sym_out_GT_PIPE] = ACTIONS(2360), - [anon_sym_e_GT_PIPE] = ACTIONS(2360), - [anon_sym_o_GT_PIPE] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2360), - [anon_sym_RPAREN] = ACTIONS(2360), - [anon_sym_GT2] = ACTIONS(2362), - [anon_sym_DASH2] = ACTIONS(2360), - [anon_sym_LBRACE] = ACTIONS(2360), - [anon_sym_RBRACE] = ACTIONS(2360), - [anon_sym_STAR2] = ACTIONS(2362), - [anon_sym_and2] = ACTIONS(2360), - [anon_sym_xor2] = ACTIONS(2360), - [anon_sym_or2] = ACTIONS(2360), - [anon_sym_not_DASHin2] = ACTIONS(2360), - [anon_sym_has2] = ACTIONS(2360), - [anon_sym_not_DASHhas2] = ACTIONS(2360), - [anon_sym_starts_DASHwith2] = ACTIONS(2360), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2360), - [anon_sym_ends_DASHwith2] = ACTIONS(2360), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2360), - [anon_sym_EQ_EQ2] = ACTIONS(2360), - [anon_sym_BANG_EQ2] = ACTIONS(2360), - [anon_sym_LT2] = ACTIONS(2362), - [anon_sym_LT_EQ2] = ACTIONS(2360), - [anon_sym_GT_EQ2] = ACTIONS(2360), - [anon_sym_EQ_TILDE2] = ACTIONS(2360), - [anon_sym_BANG_TILDE2] = ACTIONS(2360), - [anon_sym_like2] = ACTIONS(2360), - [anon_sym_not_DASHlike2] = ACTIONS(2360), - [anon_sym_LPAREN2] = ACTIONS(2360), - [anon_sym_STAR_STAR2] = ACTIONS(2360), - [anon_sym_PLUS_PLUS2] = ACTIONS(2360), - [anon_sym_SLASH2] = ACTIONS(2362), - [anon_sym_mod2] = ACTIONS(2360), - [anon_sym_SLASH_SLASH2] = ACTIONS(2360), - [anon_sym_PLUS2] = ACTIONS(2362), - [anon_sym_bit_DASHshl2] = ACTIONS(2360), - [anon_sym_bit_DASHshr2] = ACTIONS(2360), - [anon_sym_bit_DASHand2] = ACTIONS(2360), - [anon_sym_bit_DASHxor2] = ACTIONS(2360), - [anon_sym_bit_DASHor2] = ACTIONS(2360), - [anon_sym_err_GT] = ACTIONS(2362), - [anon_sym_out_GT] = ACTIONS(2362), - [anon_sym_e_GT] = ACTIONS(2362), - [anon_sym_o_GT] = ACTIONS(2362), - [anon_sym_err_PLUSout_GT] = ACTIONS(2362), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2362), - [anon_sym_o_PLUSe_GT] = ACTIONS(2362), - [anon_sym_e_PLUSo_GT] = ACTIONS(2362), - [anon_sym_err_GT_GT] = ACTIONS(2360), - [anon_sym_out_GT_GT] = ACTIONS(2360), - [anon_sym_e_GT_GT] = ACTIONS(2360), - [anon_sym_o_GT_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2360), - [sym__unquoted_pattern] = ACTIONS(2362), + [STATE(748)] = { + [aux_sym__repeat_newline] = STATE(995), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(748), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(739)] = { - [sym_comment] = STATE(739), - [anon_sym_in] = ACTIONS(2364), - [sym__newline] = ACTIONS(2366), - [anon_sym_SEMI] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2369), - [anon_sym_err_GT_PIPE] = ACTIONS(2369), - [anon_sym_out_GT_PIPE] = ACTIONS(2369), - [anon_sym_e_GT_PIPE] = ACTIONS(2369), - [anon_sym_o_GT_PIPE] = ACTIONS(2369), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2369), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2369), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2369), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2369), - [anon_sym_RPAREN] = ACTIONS(2369), - [anon_sym_GT2] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_STAR2] = ACTIONS(2371), - [anon_sym_and2] = ACTIONS(2364), - [anon_sym_xor2] = ACTIONS(2364), - [anon_sym_or2] = ACTIONS(2364), - [anon_sym_not_DASHin2] = ACTIONS(2364), - [anon_sym_has2] = ACTIONS(2364), - [anon_sym_not_DASHhas2] = ACTIONS(2364), - [anon_sym_starts_DASHwith2] = ACTIONS(2364), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), - [anon_sym_ends_DASHwith2] = ACTIONS(2364), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), - [anon_sym_EQ_EQ2] = ACTIONS(2364), - [anon_sym_BANG_EQ2] = ACTIONS(2364), - [anon_sym_LT2] = ACTIONS(2371), - [anon_sym_LT_EQ2] = ACTIONS(2364), - [anon_sym_GT_EQ2] = ACTIONS(2364), - [anon_sym_EQ_TILDE2] = ACTIONS(2364), - [anon_sym_BANG_TILDE2] = ACTIONS(2364), - [anon_sym_like2] = ACTIONS(2364), - [anon_sym_not_DASHlike2] = ACTIONS(2364), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2371), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2371), - [anon_sym_bit_DASHshl2] = ACTIONS(2364), - [anon_sym_bit_DASHshr2] = ACTIONS(2364), - [anon_sym_bit_DASHand2] = ACTIONS(2364), - [anon_sym_bit_DASHxor2] = ACTIONS(2364), - [anon_sym_bit_DASHor2] = ACTIONS(2364), - [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(2373), - [anon_sym_out_GT] = ACTIONS(2373), - [anon_sym_e_GT] = ACTIONS(2373), - [anon_sym_o_GT] = ACTIONS(2373), - [anon_sym_err_PLUSout_GT] = ACTIONS(2373), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2373), - [anon_sym_o_PLUSe_GT] = ACTIONS(2373), - [anon_sym_e_PLUSo_GT] = ACTIONS(2373), - [anon_sym_err_GT_GT] = ACTIONS(2369), - [anon_sym_out_GT_GT] = ACTIONS(2369), - [anon_sym_e_GT_GT] = ACTIONS(2369), - [anon_sym_o_GT_GT] = ACTIONS(2369), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2369), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2369), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2369), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(740)] = { - [aux_sym__repeat_newline] = STATE(1030), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(740), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(741)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(741), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(742)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(742), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(743)] = { - [sym_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_GT2] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_STAR2] = ACTIONS(1792), - [anon_sym_and2] = ACTIONS(1790), - [anon_sym_xor2] = ACTIONS(1790), - [anon_sym_or2] = ACTIONS(1790), - [anon_sym_not_DASHin2] = ACTIONS(1790), - [anon_sym_has2] = ACTIONS(1790), - [anon_sym_not_DASHhas2] = ACTIONS(1790), - [anon_sym_starts_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), - [anon_sym_ends_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), - [anon_sym_EQ_EQ2] = ACTIONS(1790), - [anon_sym_BANG_EQ2] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ2] = ACTIONS(1790), - [anon_sym_GT_EQ2] = ACTIONS(1790), - [anon_sym_EQ_TILDE2] = ACTIONS(1790), - [anon_sym_BANG_TILDE2] = ACTIONS(1790), - [anon_sym_like2] = ACTIONS(1790), - [anon_sym_not_DASHlike2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_STAR_STAR2] = ACTIONS(1790), - [anon_sym_PLUS_PLUS2] = ACTIONS(1790), - [anon_sym_SLASH2] = ACTIONS(1792), - [anon_sym_mod2] = ACTIONS(1790), - [anon_sym_SLASH_SLASH2] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1792), - [anon_sym_bit_DASHshl2] = ACTIONS(1790), - [anon_sym_bit_DASHshr2] = ACTIONS(1790), - [anon_sym_bit_DASHand2] = ACTIONS(1790), - [anon_sym_bit_DASHxor2] = ACTIONS(1790), - [anon_sym_bit_DASHor2] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(2375), - [aux_sym__immediate_decimal_token5] = ACTIONS(2377), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [sym__unquoted_pattern] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(744)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(744), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(745)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(745), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(746)] = { - [sym_comment] = STATE(746), - [anon_sym_in] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_GT2] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_STAR2] = ACTIONS(1792), - [anon_sym_and2] = ACTIONS(1790), - [anon_sym_xor2] = ACTIONS(1790), - [anon_sym_or2] = ACTIONS(1790), - [anon_sym_not_DASHin2] = ACTIONS(1790), - [anon_sym_has2] = ACTIONS(1790), - [anon_sym_not_DASHhas2] = ACTIONS(1790), - [anon_sym_starts_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), - [anon_sym_ends_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), - [anon_sym_EQ_EQ2] = ACTIONS(1790), - [anon_sym_BANG_EQ2] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ2] = ACTIONS(1790), - [anon_sym_GT_EQ2] = ACTIONS(1790), - [anon_sym_EQ_TILDE2] = ACTIONS(1790), - [anon_sym_BANG_TILDE2] = ACTIONS(1790), - [anon_sym_like2] = ACTIONS(1790), - [anon_sym_not_DASHlike2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_STAR_STAR2] = ACTIONS(1790), - [anon_sym_PLUS_PLUS2] = ACTIONS(1790), - [anon_sym_SLASH2] = ACTIONS(1792), - [anon_sym_mod2] = ACTIONS(1790), - [anon_sym_SLASH_SLASH2] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1792), - [anon_sym_bit_DASHshl2] = ACTIONS(1790), - [anon_sym_bit_DASHshr2] = ACTIONS(1790), - [anon_sym_bit_DASHand2] = ACTIONS(1790), - [anon_sym_bit_DASHxor2] = ACTIONS(1790), - [anon_sym_bit_DASHor2] = ACTIONS(1790), - [aux_sym__immediate_decimal_token5] = ACTIONS(2102), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [sym__unquoted_pattern] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(747)] = { - [sym_comment] = STATE(747), - [anon_sym_in] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_GT2] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_STAR2] = ACTIONS(1848), - [anon_sym_and2] = ACTIONS(1846), - [anon_sym_xor2] = ACTIONS(1846), - [anon_sym_or2] = ACTIONS(1846), - [anon_sym_not_DASHin2] = ACTIONS(1846), - [anon_sym_has2] = ACTIONS(1846), - [anon_sym_not_DASHhas2] = ACTIONS(1846), - [anon_sym_starts_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), - [anon_sym_ends_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), - [anon_sym_EQ_EQ2] = ACTIONS(1846), - [anon_sym_BANG_EQ2] = ACTIONS(1846), - [anon_sym_LT2] = ACTIONS(1848), - [anon_sym_LT_EQ2] = ACTIONS(1846), - [anon_sym_GT_EQ2] = ACTIONS(1846), - [anon_sym_EQ_TILDE2] = ACTIONS(1846), - [anon_sym_BANG_TILDE2] = ACTIONS(1846), - [anon_sym_like2] = ACTIONS(1846), - [anon_sym_not_DASHlike2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1846), - [anon_sym_STAR_STAR2] = ACTIONS(1846), - [anon_sym_PLUS_PLUS2] = ACTIONS(1846), - [anon_sym_SLASH2] = ACTIONS(1848), - [anon_sym_mod2] = ACTIONS(1846), - [anon_sym_SLASH_SLASH2] = ACTIONS(1846), - [anon_sym_PLUS2] = ACTIONS(1848), - [anon_sym_bit_DASHshl2] = ACTIONS(1846), - [anon_sym_bit_DASHshr2] = ACTIONS(1846), - [anon_sym_bit_DASHand2] = ACTIONS(1846), - [anon_sym_bit_DASHxor2] = ACTIONS(1846), - [anon_sym_bit_DASHor2] = ACTIONS(1846), - [aux_sym__immediate_decimal_token5] = ACTIONS(2379), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), - [sym__unquoted_pattern] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(748)] = { - [aux_sym__repeat_newline] = STATE(1043), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(748), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(749)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(749), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [STATE(749)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2229), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(749), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(750)] = { - [aux_sym__repeat_newline] = STATE(1046), - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_cell_path] = STATE(1301), + [sym_path] = STATE(703), [sym_comment] = STATE(750), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [aux_sym__where_predicate_lhs_repeat1] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1885), + [anon_sym_in] = ACTIONS(1885), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_GT2] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_STAR2] = ACTIONS(1887), + [anon_sym_and2] = ACTIONS(1885), + [anon_sym_xor2] = ACTIONS(1885), + [anon_sym_or2] = ACTIONS(1885), + [anon_sym_not_DASHin2] = ACTIONS(1885), + [anon_sym_has2] = ACTIONS(1885), + [anon_sym_not_DASHhas2] = ACTIONS(1885), + [anon_sym_starts_DASHwith2] = ACTIONS(1885), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1885), + [anon_sym_ends_DASHwith2] = ACTIONS(1885), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1885), + [anon_sym_EQ_EQ2] = ACTIONS(1885), + [anon_sym_BANG_EQ2] = ACTIONS(1885), + [anon_sym_LT2] = ACTIONS(1887), + [anon_sym_LT_EQ2] = ACTIONS(1885), + [anon_sym_GT_EQ2] = ACTIONS(1885), + [anon_sym_EQ_TILDE2] = ACTIONS(1885), + [anon_sym_BANG_TILDE2] = ACTIONS(1885), + [anon_sym_like2] = ACTIONS(1885), + [anon_sym_not_DASHlike2] = ACTIONS(1885), + [anon_sym_STAR_STAR2] = ACTIONS(1885), + [anon_sym_PLUS_PLUS2] = ACTIONS(1885), + [anon_sym_SLASH2] = ACTIONS(1887), + [anon_sym_mod2] = ACTIONS(1885), + [anon_sym_SLASH_SLASH2] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_bit_DASHshl2] = ACTIONS(1885), + [anon_sym_bit_DASHshr2] = ACTIONS(1885), + [anon_sym_bit_DASHand2] = ACTIONS(1885), + [anon_sym_bit_DASHxor2] = ACTIONS(1885), + [anon_sym_bit_DASHor2] = ACTIONS(1885), + [anon_sym_DOT2] = ACTIONS(2362), + [anon_sym_err_GT] = ACTIONS(1887), + [anon_sym_out_GT] = ACTIONS(1887), + [anon_sym_e_GT] = ACTIONS(1887), + [anon_sym_o_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT] = ACTIONS(1887), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), [anon_sym_POUND] = ACTIONS(3), }, [STATE(751)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2229), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2221), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(751), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(752)] = { - [aux_sym__repeat_newline] = STATE(1047), - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(998), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(752), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(753)] = { - [aux_sym__repeat_newline] = STATE(1048), - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2224), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(969), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(753), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(754)] = { - [aux_sym__repeat_newline] = STATE(1056), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(754), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(755)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(755), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(756)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(756), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(757)] = { - [aux_sym__repeat_newline] = STATE(1087), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(757), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(758)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2240), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(758), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(759)] = { - [aux_sym__repeat_newline] = STATE(1089), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(759), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(760)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(760), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(761)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), + [STATE(754)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), [sym__expr_binary_expression] = STATE(2230), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(947), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(761), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(722), + [sym__unquoted_with_expr] = STATE(970), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(754), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(762)] = { + [STATE(755)] = { + [aux_sym__repeat_newline] = STATE(1091), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(755), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(756)] = { + [aux_sym__repeat_newline] = STATE(1092), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(756), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(757)] = { [aux_sym__repeat_newline] = STATE(1093), - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(757), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(758)] = { + [sym_comment] = STATE(758), + [anon_sym_in] = ACTIONS(1784), + [sym__newline] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_err_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_GT_PIPE] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), + [anon_sym_RPAREN] = ACTIONS(1784), + [anon_sym_GT2] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1784), + [anon_sym_xor2] = ACTIONS(1784), + [anon_sym_or2] = ACTIONS(1784), + [anon_sym_not_DASHin2] = ACTIONS(1784), + [anon_sym_has2] = ACTIONS(1784), + [anon_sym_not_DASHhas2] = ACTIONS(1784), + [anon_sym_starts_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), + [anon_sym_ends_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), + [anon_sym_EQ_EQ2] = ACTIONS(1784), + [anon_sym_BANG_EQ2] = ACTIONS(1784), + [anon_sym_LT2] = ACTIONS(1786), + [anon_sym_LT_EQ2] = ACTIONS(1784), + [anon_sym_GT_EQ2] = ACTIONS(1784), + [anon_sym_EQ_TILDE2] = ACTIONS(1784), + [anon_sym_BANG_TILDE2] = ACTIONS(1784), + [anon_sym_like2] = ACTIONS(1784), + [anon_sym_not_DASHlike2] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1784), + [anon_sym_PLUS_PLUS2] = ACTIONS(1784), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1784), + [anon_sym_SLASH_SLASH2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_bit_DASHshl2] = ACTIONS(1784), + [anon_sym_bit_DASHshr2] = ACTIONS(1784), + [anon_sym_bit_DASHand2] = ACTIONS(1784), + [anon_sym_bit_DASHxor2] = ACTIONS(1784), + [anon_sym_bit_DASHor2] = ACTIONS(1784), + [aux_sym__immediate_decimal_token5] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1784), + [anon_sym_out_GT_GT] = ACTIONS(1784), + [anon_sym_e_GT_GT] = ACTIONS(1784), + [anon_sym_o_GT_GT] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), + [sym__unquoted_pattern] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(759)] = { + [aux_sym__repeat_newline] = STATE(1016), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(759), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(760)] = { + [sym_comment] = STATE(760), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [sym__newline] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_err_GT_PIPE] = ACTIONS(2368), + [anon_sym_out_GT_PIPE] = ACTIONS(2368), + [anon_sym_e_GT_PIPE] = ACTIONS(2368), + [anon_sym_o_GT_PIPE] = ACTIONS(2368), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2368), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2368), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2368), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2368), + [anon_sym_RPAREN] = ACTIONS(2368), + [anon_sym_GT2] = ACTIONS(2370), + [anon_sym_DASH2] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_EQ_GT] = ACTIONS(2368), + [anon_sym_STAR2] = ACTIONS(2370), + [anon_sym_and2] = ACTIONS(2368), + [anon_sym_xor2] = ACTIONS(2368), + [anon_sym_or2] = ACTIONS(2368), + [anon_sym_not_DASHin2] = ACTIONS(2368), + [anon_sym_has2] = ACTIONS(2368), + [anon_sym_not_DASHhas2] = ACTIONS(2368), + [anon_sym_starts_DASHwith2] = ACTIONS(2368), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2368), + [anon_sym_ends_DASHwith2] = ACTIONS(2368), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2368), + [anon_sym_EQ_EQ2] = ACTIONS(2368), + [anon_sym_BANG_EQ2] = ACTIONS(2368), + [anon_sym_LT2] = ACTIONS(2370), + [anon_sym_LT_EQ2] = ACTIONS(2368), + [anon_sym_GT_EQ2] = ACTIONS(2368), + [anon_sym_EQ_TILDE2] = ACTIONS(2368), + [anon_sym_BANG_TILDE2] = ACTIONS(2368), + [anon_sym_like2] = ACTIONS(2368), + [anon_sym_not_DASHlike2] = ACTIONS(2368), + [anon_sym_STAR_STAR2] = ACTIONS(2368), + [anon_sym_PLUS_PLUS2] = ACTIONS(2368), + [anon_sym_SLASH2] = ACTIONS(2370), + [anon_sym_mod2] = ACTIONS(2368), + [anon_sym_SLASH_SLASH2] = ACTIONS(2368), + [anon_sym_PLUS2] = ACTIONS(2370), + [anon_sym_bit_DASHshl2] = ACTIONS(2368), + [anon_sym_bit_DASHshr2] = ACTIONS(2368), + [anon_sym_bit_DASHand2] = ACTIONS(2368), + [anon_sym_bit_DASHxor2] = ACTIONS(2368), + [anon_sym_bit_DASHor2] = ACTIONS(2368), + [anon_sym_err_GT] = ACTIONS(2370), + [anon_sym_out_GT] = ACTIONS(2370), + [anon_sym_e_GT] = ACTIONS(2370), + [anon_sym_o_GT] = ACTIONS(2370), + [anon_sym_err_PLUSout_GT] = ACTIONS(2370), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2370), + [anon_sym_o_PLUSe_GT] = ACTIONS(2370), + [anon_sym_e_PLUSo_GT] = ACTIONS(2370), + [anon_sym_err_GT_GT] = ACTIONS(2368), + [anon_sym_out_GT_GT] = ACTIONS(2368), + [anon_sym_e_GT_GT] = ACTIONS(2368), + [anon_sym_o_GT_GT] = ACTIONS(2368), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2368), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2368), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2368), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(761)] = { + [aux_sym__repeat_newline] = STATE(1018), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(761), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(762)] = { [sym_comment] = STATE(762), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_in] = ACTIONS(2372), + [sym__newline] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2372), + [anon_sym_err_GT_PIPE] = ACTIONS(2372), + [anon_sym_out_GT_PIPE] = ACTIONS(2372), + [anon_sym_e_GT_PIPE] = ACTIONS(2372), + [anon_sym_o_GT_PIPE] = ACTIONS(2372), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2372), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2372), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2372), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2372), + [anon_sym_RPAREN] = ACTIONS(2372), + [anon_sym_GT2] = ACTIONS(2374), + [anon_sym_DASH2] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_EQ_GT] = ACTIONS(2372), + [anon_sym_STAR2] = ACTIONS(2374), + [anon_sym_and2] = ACTIONS(2372), + [anon_sym_xor2] = ACTIONS(2372), + [anon_sym_or2] = ACTIONS(2372), + [anon_sym_not_DASHin2] = ACTIONS(2372), + [anon_sym_has2] = ACTIONS(2372), + [anon_sym_not_DASHhas2] = ACTIONS(2372), + [anon_sym_starts_DASHwith2] = ACTIONS(2372), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2372), + [anon_sym_ends_DASHwith2] = ACTIONS(2372), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2372), + [anon_sym_EQ_EQ2] = ACTIONS(2372), + [anon_sym_BANG_EQ2] = ACTIONS(2372), + [anon_sym_LT2] = ACTIONS(2374), + [anon_sym_LT_EQ2] = ACTIONS(2372), + [anon_sym_GT_EQ2] = ACTIONS(2372), + [anon_sym_EQ_TILDE2] = ACTIONS(2372), + [anon_sym_BANG_TILDE2] = ACTIONS(2372), + [anon_sym_like2] = ACTIONS(2372), + [anon_sym_not_DASHlike2] = ACTIONS(2372), + [anon_sym_STAR_STAR2] = ACTIONS(2372), + [anon_sym_PLUS_PLUS2] = ACTIONS(2372), + [anon_sym_SLASH2] = ACTIONS(2374), + [anon_sym_mod2] = ACTIONS(2372), + [anon_sym_SLASH_SLASH2] = ACTIONS(2372), + [anon_sym_PLUS2] = ACTIONS(2374), + [anon_sym_bit_DASHshl2] = ACTIONS(2372), + [anon_sym_bit_DASHshr2] = ACTIONS(2372), + [anon_sym_bit_DASHand2] = ACTIONS(2372), + [anon_sym_bit_DASHxor2] = ACTIONS(2372), + [anon_sym_bit_DASHor2] = ACTIONS(2372), + [anon_sym_err_GT] = ACTIONS(2374), + [anon_sym_out_GT] = ACTIONS(2374), + [anon_sym_e_GT] = ACTIONS(2374), + [anon_sym_o_GT] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT] = ACTIONS(2374), + [anon_sym_err_GT_GT] = ACTIONS(2372), + [anon_sym_out_GT_GT] = ACTIONS(2372), + [anon_sym_e_GT_GT] = ACTIONS(2372), + [anon_sym_o_GT_GT] = ACTIONS(2372), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2372), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2372), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2372), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), }, [STATE(763)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(763), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(1832), + [sym__newline] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_err_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_GT_PIPE] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_GT2] = ACTIONS(1834), + [anon_sym_DASH2] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_STAR2] = ACTIONS(1834), + [anon_sym_and2] = ACTIONS(1832), + [anon_sym_xor2] = ACTIONS(1832), + [anon_sym_or2] = ACTIONS(1832), + [anon_sym_not_DASHin2] = ACTIONS(1832), + [anon_sym_has2] = ACTIONS(1832), + [anon_sym_not_DASHhas2] = ACTIONS(1832), + [anon_sym_starts_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), + [anon_sym_ends_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), + [anon_sym_EQ_EQ2] = ACTIONS(1832), + [anon_sym_BANG_EQ2] = ACTIONS(1832), + [anon_sym_LT2] = ACTIONS(1834), + [anon_sym_LT_EQ2] = ACTIONS(1832), + [anon_sym_GT_EQ2] = ACTIONS(1832), + [anon_sym_EQ_TILDE2] = ACTIONS(1832), + [anon_sym_BANG_TILDE2] = ACTIONS(1832), + [anon_sym_like2] = ACTIONS(1832), + [anon_sym_not_DASHlike2] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_STAR_STAR2] = ACTIONS(1832), + [anon_sym_PLUS_PLUS2] = ACTIONS(1832), + [anon_sym_SLASH2] = ACTIONS(1834), + [anon_sym_mod2] = ACTIONS(1832), + [anon_sym_SLASH_SLASH2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1834), + [anon_sym_bit_DASHshl2] = ACTIONS(1832), + [anon_sym_bit_DASHshr2] = ACTIONS(1832), + [anon_sym_bit_DASHand2] = ACTIONS(1832), + [anon_sym_bit_DASHxor2] = ACTIONS(1832), + [anon_sym_bit_DASHor2] = ACTIONS(1832), + [aux_sym__immediate_decimal_token5] = ACTIONS(2376), + [anon_sym_err_GT] = ACTIONS(1834), + [anon_sym_out_GT] = ACTIONS(1834), + [anon_sym_e_GT] = ACTIONS(1834), + [anon_sym_o_GT] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT] = ACTIONS(1834), + [anon_sym_err_GT_GT] = ACTIONS(1832), + [anon_sym_out_GT_GT] = ACTIONS(1832), + [anon_sym_e_GT_GT] = ACTIONS(1832), + [anon_sym_o_GT_GT] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), + [sym__unquoted_pattern] = ACTIONS(1834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(764)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2234), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(956), - [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(764), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2241), + [sym__newline] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_err_GT_PIPE] = ACTIONS(2241), + [anon_sym_out_GT_PIPE] = ACTIONS(2241), + [anon_sym_e_GT_PIPE] = ACTIONS(2241), + [anon_sym_o_GT_PIPE] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), + [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_GT2] = ACTIONS(2243), + [anon_sym_DASH2] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_EQ_GT] = ACTIONS(2241), + [anon_sym_STAR2] = ACTIONS(2243), + [anon_sym_and2] = ACTIONS(2241), + [anon_sym_xor2] = ACTIONS(2241), + [anon_sym_or2] = ACTIONS(2241), + [anon_sym_not_DASHin2] = ACTIONS(2241), + [anon_sym_has2] = ACTIONS(2241), + [anon_sym_not_DASHhas2] = ACTIONS(2241), + [anon_sym_starts_DASHwith2] = ACTIONS(2241), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2241), + [anon_sym_ends_DASHwith2] = ACTIONS(2241), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2241), + [anon_sym_EQ_EQ2] = ACTIONS(2241), + [anon_sym_BANG_EQ2] = ACTIONS(2241), + [anon_sym_LT2] = ACTIONS(2243), + [anon_sym_LT_EQ2] = ACTIONS(2241), + [anon_sym_GT_EQ2] = ACTIONS(2241), + [anon_sym_EQ_TILDE2] = ACTIONS(2241), + [anon_sym_BANG_TILDE2] = ACTIONS(2241), + [anon_sym_like2] = ACTIONS(2241), + [anon_sym_not_DASHlike2] = ACTIONS(2241), + [anon_sym_STAR_STAR2] = ACTIONS(2241), + [anon_sym_PLUS_PLUS2] = ACTIONS(2241), + [anon_sym_SLASH2] = ACTIONS(2243), + [anon_sym_mod2] = ACTIONS(2241), + [anon_sym_SLASH_SLASH2] = ACTIONS(2241), + [anon_sym_PLUS2] = ACTIONS(2243), + [anon_sym_bit_DASHshl2] = ACTIONS(2241), + [anon_sym_bit_DASHshr2] = ACTIONS(2241), + [anon_sym_bit_DASHand2] = ACTIONS(2241), + [anon_sym_bit_DASHxor2] = ACTIONS(2241), + [anon_sym_bit_DASHor2] = ACTIONS(2241), + [anon_sym_err_GT] = ACTIONS(2243), + [anon_sym_out_GT] = ACTIONS(2243), + [anon_sym_e_GT] = ACTIONS(2243), + [anon_sym_o_GT] = ACTIONS(2243), + [anon_sym_err_PLUSout_GT] = ACTIONS(2243), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2243), + [anon_sym_o_PLUSe_GT] = ACTIONS(2243), + [anon_sym_e_PLUSo_GT] = ACTIONS(2243), + [anon_sym_err_GT_GT] = ACTIONS(2241), + [anon_sym_out_GT_GT] = ACTIONS(2241), + [anon_sym_e_GT_GT] = ACTIONS(2241), + [anon_sym_o_GT_GT] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2241), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(765)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1704), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(980), - [sym__unquoted_with_expr] = STATE(1322), - [sym__unquoted_anonymous_prefix] = STATE(4844), [sym_comment] = STATE(765), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_in] = ACTIONS(2249), + [sym__newline] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_err_GT_PIPE] = ACTIONS(2249), + [anon_sym_out_GT_PIPE] = ACTIONS(2249), + [anon_sym_e_GT_PIPE] = ACTIONS(2249), + [anon_sym_o_GT_PIPE] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_GT2] = ACTIONS(2251), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_EQ_GT] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2251), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_has2] = ACTIONS(2249), + [anon_sym_not_DASHhas2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2251), + [anon_sym_LT_EQ2] = ACTIONS(2249), + [anon_sym_GT_EQ2] = ACTIONS(2249), + [anon_sym_EQ_TILDE2] = ACTIONS(2249), + [anon_sym_BANG_TILDE2] = ACTIONS(2249), + [anon_sym_like2] = ACTIONS(2249), + [anon_sym_not_DASHlike2] = ACTIONS(2249), + [anon_sym_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2251), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2251), + [anon_sym_bit_DASHshl2] = ACTIONS(2249), + [anon_sym_bit_DASHshr2] = ACTIONS(2249), + [anon_sym_bit_DASHand2] = ACTIONS(2249), + [anon_sym_bit_DASHxor2] = ACTIONS(2249), + [anon_sym_bit_DASHor2] = ACTIONS(2249), + [anon_sym_err_GT] = ACTIONS(2251), + [anon_sym_out_GT] = ACTIONS(2251), + [anon_sym_e_GT] = ACTIONS(2251), + [anon_sym_o_GT] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT] = ACTIONS(2251), + [anon_sym_err_GT_GT] = ACTIONS(2249), + [anon_sym_out_GT_GT] = ACTIONS(2249), + [anon_sym_e_GT_GT] = ACTIONS(2249), + [anon_sym_o_GT_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2249), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(766)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1705), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1037), - [sym__unquoted_with_expr] = STATE(1324), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [aux_sym__repeat_newline] = STATE(1094), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(766), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(767)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1706), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1053), - [sym__unquoted_with_expr] = STATE(1326), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [aux_sym__repeat_newline] = STATE(1095), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(767), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(768)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1707), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1058), - [sym__unquoted_with_expr] = STATE(1328), - [sym__unquoted_anonymous_prefix] = STATE(4844), [sym_comment] = STATE(768), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_in] = ACTIONS(2257), + [sym__newline] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_err_GT_PIPE] = ACTIONS(2257), + [anon_sym_out_GT_PIPE] = ACTIONS(2257), + [anon_sym_e_GT_PIPE] = ACTIONS(2257), + [anon_sym_o_GT_PIPE] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_GT2] = ACTIONS(2259), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2259), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_has2] = ACTIONS(2257), + [anon_sym_not_DASHhas2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2259), + [anon_sym_LT_EQ2] = ACTIONS(2257), + [anon_sym_GT_EQ2] = ACTIONS(2257), + [anon_sym_EQ_TILDE2] = ACTIONS(2257), + [anon_sym_BANG_TILDE2] = ACTIONS(2257), + [anon_sym_like2] = ACTIONS(2257), + [anon_sym_not_DASHlike2] = ACTIONS(2257), + [anon_sym_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2259), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2259), + [anon_sym_bit_DASHshl2] = ACTIONS(2257), + [anon_sym_bit_DASHshr2] = ACTIONS(2257), + [anon_sym_bit_DASHand2] = ACTIONS(2257), + [anon_sym_bit_DASHxor2] = ACTIONS(2257), + [anon_sym_bit_DASHor2] = ACTIONS(2257), + [anon_sym_err_GT] = ACTIONS(2259), + [anon_sym_out_GT] = ACTIONS(2259), + [anon_sym_e_GT] = ACTIONS(2259), + [anon_sym_o_GT] = ACTIONS(2259), + [anon_sym_err_PLUSout_GT] = ACTIONS(2259), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2259), + [anon_sym_o_PLUSe_GT] = ACTIONS(2259), + [anon_sym_e_PLUSo_GT] = ACTIONS(2259), + [anon_sym_err_GT_GT] = ACTIONS(2257), + [anon_sym_out_GT_GT] = ACTIONS(2257), + [anon_sym_e_GT_GT] = ACTIONS(2257), + [anon_sym_o_GT_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2257), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(769)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1708), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1075), - [sym__unquoted_with_expr] = STATE(1330), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [aux_sym__repeat_newline] = STATE(990), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(769), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(770)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1709), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1078), - [sym__unquoted_with_expr] = STATE(1332), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [aux_sym__repeat_newline] = STATE(1096), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(770), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(771)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1710), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(988), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [aux_sym__repeat_newline] = STATE(992), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(771), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(772)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1711), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1003), - [sym__unquoted_with_expr] = STATE(1336), - [sym__unquoted_anonymous_prefix] = STATE(4844), [sym_comment] = STATE(772), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_in] = ACTIONS(2378), + [sym__newline] = ACTIONS(2378), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_err_GT_PIPE] = ACTIONS(2378), + [anon_sym_out_GT_PIPE] = ACTIONS(2378), + [anon_sym_e_GT_PIPE] = ACTIONS(2378), + [anon_sym_o_GT_PIPE] = ACTIONS(2378), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2378), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2378), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2378), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2378), + [anon_sym_RPAREN] = ACTIONS(2378), + [anon_sym_GT2] = ACTIONS(2380), + [anon_sym_DASH2] = ACTIONS(2378), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_EQ_GT] = ACTIONS(2378), + [anon_sym_STAR2] = ACTIONS(2380), + [anon_sym_and2] = ACTIONS(2378), + [anon_sym_xor2] = ACTIONS(2378), + [anon_sym_or2] = ACTIONS(2378), + [anon_sym_not_DASHin2] = ACTIONS(2378), + [anon_sym_has2] = ACTIONS(2378), + [anon_sym_not_DASHhas2] = ACTIONS(2378), + [anon_sym_starts_DASHwith2] = ACTIONS(2378), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2378), + [anon_sym_ends_DASHwith2] = ACTIONS(2378), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2378), + [anon_sym_EQ_EQ2] = ACTIONS(2378), + [anon_sym_BANG_EQ2] = ACTIONS(2378), + [anon_sym_LT2] = ACTIONS(2380), + [anon_sym_LT_EQ2] = ACTIONS(2378), + [anon_sym_GT_EQ2] = ACTIONS(2378), + [anon_sym_EQ_TILDE2] = ACTIONS(2378), + [anon_sym_BANG_TILDE2] = ACTIONS(2378), + [anon_sym_like2] = ACTIONS(2378), + [anon_sym_not_DASHlike2] = ACTIONS(2378), + [anon_sym_STAR_STAR2] = ACTIONS(2378), + [anon_sym_PLUS_PLUS2] = ACTIONS(2378), + [anon_sym_SLASH2] = ACTIONS(2380), + [anon_sym_mod2] = ACTIONS(2378), + [anon_sym_SLASH_SLASH2] = ACTIONS(2378), + [anon_sym_PLUS2] = ACTIONS(2380), + [anon_sym_bit_DASHshl2] = ACTIONS(2378), + [anon_sym_bit_DASHshr2] = ACTIONS(2378), + [anon_sym_bit_DASHand2] = ACTIONS(2378), + [anon_sym_bit_DASHxor2] = ACTIONS(2378), + [anon_sym_bit_DASHor2] = ACTIONS(2378), + [anon_sym_err_GT] = ACTIONS(2380), + [anon_sym_out_GT] = ACTIONS(2380), + [anon_sym_e_GT] = ACTIONS(2380), + [anon_sym_o_GT] = ACTIONS(2380), + [anon_sym_err_PLUSout_GT] = ACTIONS(2380), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2380), + [anon_sym_o_PLUSe_GT] = ACTIONS(2380), + [anon_sym_e_PLUSo_GT] = ACTIONS(2380), + [anon_sym_err_GT_GT] = ACTIONS(2378), + [anon_sym_out_GT_GT] = ACTIONS(2378), + [anon_sym_e_GT_GT] = ACTIONS(2378), + [anon_sym_o_GT_GT] = ACTIONS(2378), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2378), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2378), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2378), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2378), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(773)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1337), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1007), - [sym__unquoted_with_expr] = STATE(1338), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [aux_sym__repeat_newline] = STATE(1097), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(773), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(774)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1712), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1340), - [sym__unquoted_anonymous_prefix] = STATE(4844), [sym_comment] = STATE(774), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [sym__newline] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_err_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_GT_PIPE] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_GT2] = ACTIONS(2110), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_EQ_GT] = ACTIONS(2108), + [anon_sym_STAR2] = ACTIONS(2110), + [anon_sym_and2] = ACTIONS(2108), + [anon_sym_xor2] = ACTIONS(2108), + [anon_sym_or2] = ACTIONS(2108), + [anon_sym_not_DASHin2] = ACTIONS(2108), + [anon_sym_has2] = ACTIONS(2108), + [anon_sym_not_DASHhas2] = ACTIONS(2108), + [anon_sym_starts_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), + [anon_sym_ends_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), + [anon_sym_EQ_EQ2] = ACTIONS(2108), + [anon_sym_BANG_EQ2] = ACTIONS(2108), + [anon_sym_LT2] = ACTIONS(2110), + [anon_sym_LT_EQ2] = ACTIONS(2108), + [anon_sym_GT_EQ2] = ACTIONS(2108), + [anon_sym_EQ_TILDE2] = ACTIONS(2108), + [anon_sym_BANG_TILDE2] = ACTIONS(2108), + [anon_sym_like2] = ACTIONS(2108), + [anon_sym_not_DASHlike2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2108), + [anon_sym_PLUS_PLUS2] = ACTIONS(2108), + [anon_sym_SLASH2] = ACTIONS(2110), + [anon_sym_mod2] = ACTIONS(2108), + [anon_sym_SLASH_SLASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_bit_DASHshl2] = ACTIONS(2108), + [anon_sym_bit_DASHshr2] = ACTIONS(2108), + [anon_sym_bit_DASHand2] = ACTIONS(2108), + [anon_sym_bit_DASHxor2] = ACTIONS(2108), + [anon_sym_bit_DASHor2] = ACTIONS(2108), + [anon_sym_err_GT] = ACTIONS(2110), + [anon_sym_out_GT] = ACTIONS(2110), + [anon_sym_e_GT] = ACTIONS(2110), + [anon_sym_o_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT] = ACTIONS(2110), + [anon_sym_err_GT_GT] = ACTIONS(2108), + [anon_sym_out_GT_GT] = ACTIONS(2108), + [anon_sym_e_GT_GT] = ACTIONS(2108), + [anon_sym_o_GT_GT] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(775)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1713), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1014), - [sym__unquoted_with_expr] = STATE(1342), - [sym__unquoted_anonymous_prefix] = STATE(4844), [sym_comment] = STATE(775), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_finally] = ACTIONS(2382), + [anon_sym_in] = ACTIONS(2382), + [sym__newline] = ACTIONS(2382), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_err_GT_PIPE] = ACTIONS(2382), + [anon_sym_out_GT_PIPE] = ACTIONS(2382), + [anon_sym_e_GT_PIPE] = ACTIONS(2382), + [anon_sym_o_GT_PIPE] = ACTIONS(2382), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2382), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2382), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2382), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2382), + [anon_sym_RPAREN] = ACTIONS(2382), + [anon_sym_GT2] = ACTIONS(2384), + [anon_sym_DASH2] = ACTIONS(2382), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_EQ_GT] = ACTIONS(2382), + [anon_sym_STAR2] = ACTIONS(2384), + [anon_sym_and2] = ACTIONS(2382), + [anon_sym_xor2] = ACTIONS(2382), + [anon_sym_or2] = ACTIONS(2382), + [anon_sym_not_DASHin2] = ACTIONS(2382), + [anon_sym_has2] = ACTIONS(2382), + [anon_sym_not_DASHhas2] = ACTIONS(2382), + [anon_sym_starts_DASHwith2] = ACTIONS(2382), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2382), + [anon_sym_ends_DASHwith2] = ACTIONS(2382), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2382), + [anon_sym_EQ_EQ2] = ACTIONS(2382), + [anon_sym_BANG_EQ2] = ACTIONS(2382), + [anon_sym_LT2] = ACTIONS(2384), + [anon_sym_LT_EQ2] = ACTIONS(2382), + [anon_sym_GT_EQ2] = ACTIONS(2382), + [anon_sym_EQ_TILDE2] = ACTIONS(2382), + [anon_sym_BANG_TILDE2] = ACTIONS(2382), + [anon_sym_like2] = ACTIONS(2382), + [anon_sym_not_DASHlike2] = ACTIONS(2382), + [anon_sym_STAR_STAR2] = ACTIONS(2382), + [anon_sym_PLUS_PLUS2] = ACTIONS(2382), + [anon_sym_SLASH2] = ACTIONS(2384), + [anon_sym_mod2] = ACTIONS(2382), + [anon_sym_SLASH_SLASH2] = ACTIONS(2382), + [anon_sym_PLUS2] = ACTIONS(2384), + [anon_sym_bit_DASHshl2] = ACTIONS(2382), + [anon_sym_bit_DASHshr2] = ACTIONS(2382), + [anon_sym_bit_DASHand2] = ACTIONS(2382), + [anon_sym_bit_DASHxor2] = ACTIONS(2382), + [anon_sym_bit_DASHor2] = ACTIONS(2382), + [anon_sym_err_GT] = ACTIONS(2384), + [anon_sym_out_GT] = ACTIONS(2384), + [anon_sym_e_GT] = ACTIONS(2384), + [anon_sym_o_GT] = ACTIONS(2384), + [anon_sym_err_PLUSout_GT] = ACTIONS(2384), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2384), + [anon_sym_o_PLUSe_GT] = ACTIONS(2384), + [anon_sym_e_PLUSo_GT] = ACTIONS(2384), + [anon_sym_err_GT_GT] = ACTIONS(2382), + [anon_sym_out_GT_GT] = ACTIONS(2382), + [anon_sym_e_GT_GT] = ACTIONS(2382), + [anon_sym_o_GT_GT] = ACTIONS(2382), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2382), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2382), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2382), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2382), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(776)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1715), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1138), - [sym__unquoted_with_expr] = STATE(1344), - [sym__unquoted_anonymous_prefix] = STATE(4844), [sym_comment] = STATE(776), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_finally] = ACTIONS(2386), + [anon_sym_in] = ACTIONS(2386), + [sym__newline] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2386), + [anon_sym_err_GT_PIPE] = ACTIONS(2386), + [anon_sym_out_GT_PIPE] = ACTIONS(2386), + [anon_sym_e_GT_PIPE] = ACTIONS(2386), + [anon_sym_o_GT_PIPE] = ACTIONS(2386), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2386), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2386), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2386), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2386), + [anon_sym_GT2] = ACTIONS(2388), + [anon_sym_DASH2] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_EQ_GT] = ACTIONS(2386), + [anon_sym_STAR2] = ACTIONS(2388), + [anon_sym_and2] = ACTIONS(2386), + [anon_sym_xor2] = ACTIONS(2386), + [anon_sym_or2] = ACTIONS(2386), + [anon_sym_not_DASHin2] = ACTIONS(2386), + [anon_sym_has2] = ACTIONS(2386), + [anon_sym_not_DASHhas2] = ACTIONS(2386), + [anon_sym_starts_DASHwith2] = ACTIONS(2386), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2386), + [anon_sym_ends_DASHwith2] = ACTIONS(2386), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2386), + [anon_sym_EQ_EQ2] = ACTIONS(2386), + [anon_sym_BANG_EQ2] = ACTIONS(2386), + [anon_sym_LT2] = ACTIONS(2388), + [anon_sym_LT_EQ2] = ACTIONS(2386), + [anon_sym_GT_EQ2] = ACTIONS(2386), + [anon_sym_EQ_TILDE2] = ACTIONS(2386), + [anon_sym_BANG_TILDE2] = ACTIONS(2386), + [anon_sym_like2] = ACTIONS(2386), + [anon_sym_not_DASHlike2] = ACTIONS(2386), + [anon_sym_STAR_STAR2] = ACTIONS(2386), + [anon_sym_PLUS_PLUS2] = ACTIONS(2386), + [anon_sym_SLASH2] = ACTIONS(2388), + [anon_sym_mod2] = ACTIONS(2386), + [anon_sym_SLASH_SLASH2] = ACTIONS(2386), + [anon_sym_PLUS2] = ACTIONS(2388), + [anon_sym_bit_DASHshl2] = ACTIONS(2386), + [anon_sym_bit_DASHshr2] = ACTIONS(2386), + [anon_sym_bit_DASHand2] = ACTIONS(2386), + [anon_sym_bit_DASHxor2] = ACTIONS(2386), + [anon_sym_bit_DASHor2] = ACTIONS(2386), + [anon_sym_err_GT] = ACTIONS(2388), + [anon_sym_out_GT] = ACTIONS(2388), + [anon_sym_e_GT] = ACTIONS(2388), + [anon_sym_o_GT] = ACTIONS(2388), + [anon_sym_err_PLUSout_GT] = ACTIONS(2388), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2388), + [anon_sym_o_PLUSe_GT] = ACTIONS(2388), + [anon_sym_e_PLUSo_GT] = ACTIONS(2388), + [anon_sym_err_GT_GT] = ACTIONS(2386), + [anon_sym_out_GT_GT] = ACTIONS(2386), + [anon_sym_e_GT_GT] = ACTIONS(2386), + [anon_sym_o_GT_GT] = ACTIONS(2386), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2386), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2386), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2386), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2386), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(777)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1716), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(1433), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1346), - [sym__unquoted_anonymous_prefix] = STATE(4844), [sym_comment] = STATE(777), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2391), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_LT] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [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(2401), - [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(2403), + [anon_sym_finally] = ACTIONS(2390), + [anon_sym_in] = ACTIONS(2390), + [sym__newline] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_err_GT_PIPE] = ACTIONS(2390), + [anon_sym_out_GT_PIPE] = ACTIONS(2390), + [anon_sym_e_GT_PIPE] = ACTIONS(2390), + [anon_sym_o_GT_PIPE] = ACTIONS(2390), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2390), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2390), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2390), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2390), + [anon_sym_RPAREN] = ACTIONS(2390), + [anon_sym_GT2] = ACTIONS(2392), + [anon_sym_DASH2] = ACTIONS(2390), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_EQ_GT] = ACTIONS(2390), + [anon_sym_STAR2] = ACTIONS(2392), + [anon_sym_and2] = ACTIONS(2390), + [anon_sym_xor2] = ACTIONS(2390), + [anon_sym_or2] = ACTIONS(2390), + [anon_sym_not_DASHin2] = ACTIONS(2390), + [anon_sym_has2] = ACTIONS(2390), + [anon_sym_not_DASHhas2] = ACTIONS(2390), + [anon_sym_starts_DASHwith2] = ACTIONS(2390), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2390), + [anon_sym_ends_DASHwith2] = ACTIONS(2390), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2390), + [anon_sym_EQ_EQ2] = ACTIONS(2390), + [anon_sym_BANG_EQ2] = ACTIONS(2390), + [anon_sym_LT2] = ACTIONS(2392), + [anon_sym_LT_EQ2] = ACTIONS(2390), + [anon_sym_GT_EQ2] = ACTIONS(2390), + [anon_sym_EQ_TILDE2] = ACTIONS(2390), + [anon_sym_BANG_TILDE2] = ACTIONS(2390), + [anon_sym_like2] = ACTIONS(2390), + [anon_sym_not_DASHlike2] = ACTIONS(2390), + [anon_sym_STAR_STAR2] = ACTIONS(2390), + [anon_sym_PLUS_PLUS2] = ACTIONS(2390), + [anon_sym_SLASH2] = ACTIONS(2392), + [anon_sym_mod2] = ACTIONS(2390), + [anon_sym_SLASH_SLASH2] = ACTIONS(2390), + [anon_sym_PLUS2] = ACTIONS(2392), + [anon_sym_bit_DASHshl2] = ACTIONS(2390), + [anon_sym_bit_DASHshr2] = ACTIONS(2390), + [anon_sym_bit_DASHand2] = ACTIONS(2390), + [anon_sym_bit_DASHxor2] = ACTIONS(2390), + [anon_sym_bit_DASHor2] = ACTIONS(2390), + [anon_sym_err_GT] = ACTIONS(2392), + [anon_sym_out_GT] = ACTIONS(2392), + [anon_sym_e_GT] = ACTIONS(2392), + [anon_sym_o_GT] = ACTIONS(2392), + [anon_sym_err_PLUSout_GT] = ACTIONS(2392), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2392), + [anon_sym_o_PLUSe_GT] = ACTIONS(2392), + [anon_sym_e_PLUSo_GT] = ACTIONS(2392), + [anon_sym_err_GT_GT] = ACTIONS(2390), + [anon_sym_out_GT_GT] = ACTIONS(2390), + [anon_sym_e_GT_GT] = ACTIONS(2390), + [anon_sym_o_GT_GT] = ACTIONS(2390), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2390), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2390), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2390), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2390), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(778)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2239), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(924), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_cell_path] = STATE(1345), + [sym_path] = STATE(703), [sym_comment] = STATE(778), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym__where_predicate_lhs_repeat1] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [sym__newline] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_err_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_GT_PIPE] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), + [anon_sym_GT2] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1889), + [anon_sym_STAR2] = ACTIONS(1891), + [anon_sym_and2] = ACTIONS(1889), + [anon_sym_xor2] = ACTIONS(1889), + [anon_sym_or2] = ACTIONS(1889), + [anon_sym_not_DASHin2] = ACTIONS(1889), + [anon_sym_has2] = ACTIONS(1889), + [anon_sym_not_DASHhas2] = ACTIONS(1889), + [anon_sym_starts_DASHwith2] = ACTIONS(1889), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1889), + [anon_sym_ends_DASHwith2] = ACTIONS(1889), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1889), + [anon_sym_EQ_EQ2] = ACTIONS(1889), + [anon_sym_BANG_EQ2] = ACTIONS(1889), + [anon_sym_LT2] = ACTIONS(1891), + [anon_sym_LT_EQ2] = ACTIONS(1889), + [anon_sym_GT_EQ2] = ACTIONS(1889), + [anon_sym_EQ_TILDE2] = ACTIONS(1889), + [anon_sym_BANG_TILDE2] = ACTIONS(1889), + [anon_sym_like2] = ACTIONS(1889), + [anon_sym_not_DASHlike2] = ACTIONS(1889), + [anon_sym_STAR_STAR2] = ACTIONS(1889), + [anon_sym_PLUS_PLUS2] = ACTIONS(1889), + [anon_sym_SLASH2] = ACTIONS(1891), + [anon_sym_mod2] = ACTIONS(1889), + [anon_sym_SLASH_SLASH2] = ACTIONS(1889), + [anon_sym_PLUS2] = ACTIONS(1891), + [anon_sym_bit_DASHshl2] = ACTIONS(1889), + [anon_sym_bit_DASHshr2] = ACTIONS(1889), + [anon_sym_bit_DASHand2] = ACTIONS(1889), + [anon_sym_bit_DASHxor2] = ACTIONS(1889), + [anon_sym_bit_DASHor2] = ACTIONS(1889), + [anon_sym_DOT2] = ACTIONS(2362), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1889), + [anon_sym_out_GT_GT] = ACTIONS(1889), + [anon_sym_e_GT_GT] = ACTIONS(1889), + [anon_sym_o_GT_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(779)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2210), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(943), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(1108), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(779), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(780)] = { + [aux_sym__repeat_newline] = STATE(1124), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(780), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_in] = ACTIONS(2405), - [sym__newline] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_PIPE] = ACTIONS(2405), - [anon_sym_err_GT_PIPE] = ACTIONS(2405), - [anon_sym_out_GT_PIPE] = ACTIONS(2405), - [anon_sym_e_GT_PIPE] = ACTIONS(2405), - [anon_sym_o_GT_PIPE] = ACTIONS(2405), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2405), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2405), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2405), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_GT2] = ACTIONS(2407), - [anon_sym_DASH2] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(2405), - [anon_sym_STAR2] = ACTIONS(2407), - [anon_sym_and2] = ACTIONS(2405), - [anon_sym_xor2] = ACTIONS(2405), - [anon_sym_or2] = ACTIONS(2405), - [anon_sym_not_DASHin2] = ACTIONS(2405), - [anon_sym_has2] = ACTIONS(2405), - [anon_sym_not_DASHhas2] = ACTIONS(2405), - [anon_sym_starts_DASHwith2] = ACTIONS(2405), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2405), - [anon_sym_ends_DASHwith2] = ACTIONS(2405), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2405), - [anon_sym_EQ_EQ2] = ACTIONS(2405), - [anon_sym_BANG_EQ2] = ACTIONS(2405), - [anon_sym_LT2] = ACTIONS(2407), - [anon_sym_LT_EQ2] = ACTIONS(2405), - [anon_sym_GT_EQ2] = ACTIONS(2405), - [anon_sym_EQ_TILDE2] = ACTIONS(2405), - [anon_sym_BANG_TILDE2] = ACTIONS(2405), - [anon_sym_like2] = ACTIONS(2405), - [anon_sym_not_DASHlike2] = ACTIONS(2405), - [anon_sym_STAR_STAR2] = ACTIONS(2405), - [anon_sym_PLUS_PLUS2] = ACTIONS(2405), - [anon_sym_SLASH2] = ACTIONS(2407), - [anon_sym_mod2] = ACTIONS(2405), - [anon_sym_SLASH_SLASH2] = ACTIONS(2405), - [anon_sym_PLUS2] = ACTIONS(2407), - [anon_sym_bit_DASHshl2] = ACTIONS(2405), - [anon_sym_bit_DASHshr2] = ACTIONS(2405), - [anon_sym_bit_DASHand2] = ACTIONS(2405), - [anon_sym_bit_DASHxor2] = ACTIONS(2405), - [anon_sym_bit_DASHor2] = ACTIONS(2405), - [anon_sym_err_GT] = ACTIONS(2407), - [anon_sym_out_GT] = ACTIONS(2407), - [anon_sym_e_GT] = ACTIONS(2407), - [anon_sym_o_GT] = ACTIONS(2407), - [anon_sym_err_PLUSout_GT] = ACTIONS(2407), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2407), - [anon_sym_o_PLUSe_GT] = ACTIONS(2407), - [anon_sym_e_PLUSo_GT] = ACTIONS(2407), - [anon_sym_err_GT_GT] = ACTIONS(2405), - [anon_sym_out_GT_GT] = ACTIONS(2405), - [anon_sym_e_GT_GT] = ACTIONS(2405), - [anon_sym_o_GT_GT] = ACTIONS(2405), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2405), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2405), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2405), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2405), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(781)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(921), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(1089), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(781), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(782)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(950), - [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(782), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(2394), + [anon_sym_in] = ACTIONS(2394), + [sym__newline] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_err_GT_PIPE] = ACTIONS(2394), + [anon_sym_out_GT_PIPE] = ACTIONS(2394), + [anon_sym_e_GT_PIPE] = ACTIONS(2394), + [anon_sym_o_GT_PIPE] = ACTIONS(2394), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2394), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2394), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2394), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2394), + [anon_sym_RPAREN] = ACTIONS(2394), + [anon_sym_GT2] = ACTIONS(2396), + [anon_sym_DASH2] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_EQ_GT] = ACTIONS(2394), + [anon_sym_STAR2] = ACTIONS(2396), + [anon_sym_and2] = ACTIONS(2394), + [anon_sym_xor2] = ACTIONS(2394), + [anon_sym_or2] = ACTIONS(2394), + [anon_sym_not_DASHin2] = ACTIONS(2394), + [anon_sym_has2] = ACTIONS(2394), + [anon_sym_not_DASHhas2] = ACTIONS(2394), + [anon_sym_starts_DASHwith2] = ACTIONS(2394), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2394), + [anon_sym_ends_DASHwith2] = ACTIONS(2394), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2394), + [anon_sym_EQ_EQ2] = ACTIONS(2394), + [anon_sym_BANG_EQ2] = ACTIONS(2394), + [anon_sym_LT2] = ACTIONS(2396), + [anon_sym_LT_EQ2] = ACTIONS(2394), + [anon_sym_GT_EQ2] = ACTIONS(2394), + [anon_sym_EQ_TILDE2] = ACTIONS(2394), + [anon_sym_BANG_TILDE2] = ACTIONS(2394), + [anon_sym_like2] = ACTIONS(2394), + [anon_sym_not_DASHlike2] = ACTIONS(2394), + [anon_sym_STAR_STAR2] = ACTIONS(2394), + [anon_sym_PLUS_PLUS2] = ACTIONS(2394), + [anon_sym_SLASH2] = ACTIONS(2396), + [anon_sym_mod2] = ACTIONS(2394), + [anon_sym_SLASH_SLASH2] = ACTIONS(2394), + [anon_sym_PLUS2] = ACTIONS(2396), + [anon_sym_bit_DASHshl2] = ACTIONS(2394), + [anon_sym_bit_DASHshr2] = ACTIONS(2394), + [anon_sym_bit_DASHand2] = ACTIONS(2394), + [anon_sym_bit_DASHxor2] = ACTIONS(2394), + [anon_sym_bit_DASHor2] = ACTIONS(2394), + [anon_sym_err_GT] = ACTIONS(2396), + [anon_sym_out_GT] = ACTIONS(2396), + [anon_sym_e_GT] = ACTIONS(2396), + [anon_sym_o_GT] = ACTIONS(2396), + [anon_sym_err_PLUSout_GT] = ACTIONS(2396), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2396), + [anon_sym_o_PLUSe_GT] = ACTIONS(2396), + [anon_sym_e_PLUSo_GT] = ACTIONS(2396), + [anon_sym_err_GT_GT] = ACTIONS(2394), + [anon_sym_out_GT_GT] = ACTIONS(2394), + [anon_sym_e_GT_GT] = ACTIONS(2394), + [anon_sym_o_GT_GT] = ACTIONS(2394), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2394), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2394), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2394), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2394), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(783)] = { [sym_comment] = STATE(783), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_in] = ACTIONS(2104), - [sym__newline] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_err_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_GT_PIPE] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_GT2] = ACTIONS(2106), - [anon_sym_DASH2] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_EQ_GT] = ACTIONS(2104), - [anon_sym_STAR2] = ACTIONS(2106), - [anon_sym_and2] = ACTIONS(2104), - [anon_sym_xor2] = ACTIONS(2104), - [anon_sym_or2] = ACTIONS(2104), - [anon_sym_not_DASHin2] = ACTIONS(2104), - [anon_sym_has2] = ACTIONS(2104), - [anon_sym_not_DASHhas2] = ACTIONS(2104), - [anon_sym_starts_DASHwith2] = ACTIONS(2104), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), - [anon_sym_ends_DASHwith2] = ACTIONS(2104), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), - [anon_sym_EQ_EQ2] = ACTIONS(2104), - [anon_sym_BANG_EQ2] = ACTIONS(2104), - [anon_sym_LT2] = ACTIONS(2106), - [anon_sym_LT_EQ2] = ACTIONS(2104), - [anon_sym_GT_EQ2] = ACTIONS(2104), - [anon_sym_EQ_TILDE2] = ACTIONS(2104), - [anon_sym_BANG_TILDE2] = ACTIONS(2104), - [anon_sym_like2] = ACTIONS(2104), - [anon_sym_not_DASHlike2] = ACTIONS(2104), - [anon_sym_STAR_STAR2] = ACTIONS(2104), - [anon_sym_PLUS_PLUS2] = ACTIONS(2104), - [anon_sym_SLASH2] = ACTIONS(2106), - [anon_sym_mod2] = ACTIONS(2104), - [anon_sym_SLASH_SLASH2] = ACTIONS(2104), - [anon_sym_PLUS2] = ACTIONS(2106), - [anon_sym_bit_DASHshl2] = ACTIONS(2104), - [anon_sym_bit_DASHshr2] = ACTIONS(2104), - [anon_sym_bit_DASHand2] = ACTIONS(2104), - [anon_sym_bit_DASHxor2] = ACTIONS(2104), - [anon_sym_bit_DASHor2] = ACTIONS(2104), - [anon_sym_err_GT] = ACTIONS(2106), - [anon_sym_out_GT] = ACTIONS(2106), - [anon_sym_e_GT] = ACTIONS(2106), - [anon_sym_o_GT] = ACTIONS(2106), - [anon_sym_err_PLUSout_GT] = ACTIONS(2106), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), - [anon_sym_o_PLUSe_GT] = ACTIONS(2106), - [anon_sym_e_PLUSo_GT] = ACTIONS(2106), - [anon_sym_err_GT_GT] = ACTIONS(2104), - [anon_sym_out_GT_GT] = ACTIONS(2104), - [anon_sym_e_GT_GT] = ACTIONS(2104), - [anon_sym_o_GT_GT] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_in] = ACTIONS(2398), + [sym__newline] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_err_GT_PIPE] = ACTIONS(2398), + [anon_sym_out_GT_PIPE] = ACTIONS(2398), + [anon_sym_e_GT_PIPE] = ACTIONS(2398), + [anon_sym_o_GT_PIPE] = ACTIONS(2398), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2398), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2398), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2398), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2398), + [anon_sym_RPAREN] = ACTIONS(2398), + [anon_sym_GT2] = ACTIONS(2400), + [anon_sym_DASH2] = ACTIONS(2398), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(2398), + [anon_sym_STAR2] = ACTIONS(2400), + [anon_sym_and2] = ACTIONS(2398), + [anon_sym_xor2] = ACTIONS(2398), + [anon_sym_or2] = ACTIONS(2398), + [anon_sym_not_DASHin2] = ACTIONS(2398), + [anon_sym_has2] = ACTIONS(2398), + [anon_sym_not_DASHhas2] = ACTIONS(2398), + [anon_sym_starts_DASHwith2] = ACTIONS(2398), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2398), + [anon_sym_ends_DASHwith2] = ACTIONS(2398), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2398), + [anon_sym_EQ_EQ2] = ACTIONS(2398), + [anon_sym_BANG_EQ2] = ACTIONS(2398), + [anon_sym_LT2] = ACTIONS(2400), + [anon_sym_LT_EQ2] = ACTIONS(2398), + [anon_sym_GT_EQ2] = ACTIONS(2398), + [anon_sym_EQ_TILDE2] = ACTIONS(2398), + [anon_sym_BANG_TILDE2] = ACTIONS(2398), + [anon_sym_like2] = ACTIONS(2398), + [anon_sym_not_DASHlike2] = ACTIONS(2398), + [anon_sym_STAR_STAR2] = ACTIONS(2398), + [anon_sym_PLUS_PLUS2] = ACTIONS(2398), + [anon_sym_SLASH2] = ACTIONS(2400), + [anon_sym_mod2] = ACTIONS(2398), + [anon_sym_SLASH_SLASH2] = ACTIONS(2398), + [anon_sym_PLUS2] = ACTIONS(2400), + [anon_sym_bit_DASHshl2] = ACTIONS(2398), + [anon_sym_bit_DASHshr2] = ACTIONS(2398), + [anon_sym_bit_DASHand2] = ACTIONS(2398), + [anon_sym_bit_DASHxor2] = ACTIONS(2398), + [anon_sym_bit_DASHor2] = ACTIONS(2398), + [anon_sym_err_GT] = ACTIONS(2400), + [anon_sym_out_GT] = ACTIONS(2400), + [anon_sym_e_GT] = ACTIONS(2400), + [anon_sym_o_GT] = ACTIONS(2400), + [anon_sym_err_PLUSout_GT] = ACTIONS(2400), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2400), + [anon_sym_o_PLUSe_GT] = ACTIONS(2400), + [anon_sym_e_PLUSo_GT] = ACTIONS(2400), + [anon_sym_err_GT_GT] = ACTIONS(2398), + [anon_sym_out_GT_GT] = ACTIONS(2398), + [anon_sym_e_GT_GT] = ACTIONS(2398), + [anon_sym_o_GT_GT] = ACTIONS(2398), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2398), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2398), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2398), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2398), [anon_sym_POUND] = ACTIONS(3), }, [STATE(784)] = { [sym_comment] = STATE(784), - [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_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_finally] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [sym__newline] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2402), + [anon_sym_err_GT_PIPE] = ACTIONS(2402), + [anon_sym_out_GT_PIPE] = ACTIONS(2402), + [anon_sym_e_GT_PIPE] = ACTIONS(2402), + [anon_sym_o_GT_PIPE] = ACTIONS(2402), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2402), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2402), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2402), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_GT2] = ACTIONS(2404), + [anon_sym_DASH2] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(2402), + [anon_sym_STAR2] = ACTIONS(2404), + [anon_sym_and2] = ACTIONS(2402), + [anon_sym_xor2] = ACTIONS(2402), + [anon_sym_or2] = ACTIONS(2402), + [anon_sym_not_DASHin2] = ACTIONS(2402), + [anon_sym_has2] = ACTIONS(2402), + [anon_sym_not_DASHhas2] = ACTIONS(2402), + [anon_sym_starts_DASHwith2] = ACTIONS(2402), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2402), + [anon_sym_ends_DASHwith2] = ACTIONS(2402), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2402), + [anon_sym_EQ_EQ2] = ACTIONS(2402), + [anon_sym_BANG_EQ2] = ACTIONS(2402), + [anon_sym_LT2] = ACTIONS(2404), + [anon_sym_LT_EQ2] = ACTIONS(2402), + [anon_sym_GT_EQ2] = ACTIONS(2402), + [anon_sym_EQ_TILDE2] = ACTIONS(2402), + [anon_sym_BANG_TILDE2] = ACTIONS(2402), + [anon_sym_like2] = ACTIONS(2402), + [anon_sym_not_DASHlike2] = ACTIONS(2402), + [anon_sym_STAR_STAR2] = ACTIONS(2402), + [anon_sym_PLUS_PLUS2] = ACTIONS(2402), + [anon_sym_SLASH2] = ACTIONS(2404), + [anon_sym_mod2] = ACTIONS(2402), + [anon_sym_SLASH_SLASH2] = ACTIONS(2402), + [anon_sym_PLUS2] = ACTIONS(2404), + [anon_sym_bit_DASHshl2] = ACTIONS(2402), + [anon_sym_bit_DASHshr2] = ACTIONS(2402), + [anon_sym_bit_DASHand2] = ACTIONS(2402), + [anon_sym_bit_DASHxor2] = ACTIONS(2402), + [anon_sym_bit_DASHor2] = ACTIONS(2402), + [anon_sym_err_GT] = ACTIONS(2404), + [anon_sym_out_GT] = ACTIONS(2404), + [anon_sym_e_GT] = ACTIONS(2404), + [anon_sym_o_GT] = ACTIONS(2404), + [anon_sym_err_PLUSout_GT] = ACTIONS(2404), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2404), + [anon_sym_o_PLUSe_GT] = ACTIONS(2404), + [anon_sym_e_PLUSo_GT] = ACTIONS(2404), + [anon_sym_err_GT_GT] = ACTIONS(2402), + [anon_sym_out_GT_GT] = ACTIONS(2402), + [anon_sym_e_GT_GT] = ACTIONS(2402), + [anon_sym_o_GT_GT] = ACTIONS(2402), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2402), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2402), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2402), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2402), [anon_sym_POUND] = ACTIONS(3), }, [STATE(785)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(955), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(691), - [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(785), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_in] = ACTIONS(2406), + [sym__newline] = ACTIONS(2406), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_err_GT_PIPE] = ACTIONS(2406), + [anon_sym_out_GT_PIPE] = ACTIONS(2406), + [anon_sym_e_GT_PIPE] = ACTIONS(2406), + [anon_sym_o_GT_PIPE] = ACTIONS(2406), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2406), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2406), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2406), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2406), + [anon_sym_RPAREN] = ACTIONS(2406), + [anon_sym_GT2] = ACTIONS(2408), + [anon_sym_DASH2] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_EQ_GT] = ACTIONS(2406), + [anon_sym_STAR2] = ACTIONS(2408), + [anon_sym_and2] = ACTIONS(2406), + [anon_sym_xor2] = ACTIONS(2406), + [anon_sym_or2] = ACTIONS(2406), + [anon_sym_not_DASHin2] = ACTIONS(2406), + [anon_sym_has2] = ACTIONS(2406), + [anon_sym_not_DASHhas2] = ACTIONS(2406), + [anon_sym_starts_DASHwith2] = ACTIONS(2406), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2406), + [anon_sym_ends_DASHwith2] = ACTIONS(2406), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2406), + [anon_sym_EQ_EQ2] = ACTIONS(2406), + [anon_sym_BANG_EQ2] = ACTIONS(2406), + [anon_sym_LT2] = ACTIONS(2408), + [anon_sym_LT_EQ2] = ACTIONS(2406), + [anon_sym_GT_EQ2] = ACTIONS(2406), + [anon_sym_EQ_TILDE2] = ACTIONS(2406), + [anon_sym_BANG_TILDE2] = ACTIONS(2406), + [anon_sym_like2] = ACTIONS(2406), + [anon_sym_not_DASHlike2] = ACTIONS(2406), + [anon_sym_STAR_STAR2] = ACTIONS(2406), + [anon_sym_PLUS_PLUS2] = ACTIONS(2406), + [anon_sym_SLASH2] = ACTIONS(2408), + [anon_sym_mod2] = ACTIONS(2406), + [anon_sym_SLASH_SLASH2] = ACTIONS(2406), + [anon_sym_PLUS2] = ACTIONS(2408), + [anon_sym_bit_DASHshl2] = ACTIONS(2406), + [anon_sym_bit_DASHshr2] = ACTIONS(2406), + [anon_sym_bit_DASHand2] = ACTIONS(2406), + [anon_sym_bit_DASHxor2] = ACTIONS(2406), + [anon_sym_bit_DASHor2] = ACTIONS(2406), + [anon_sym_err_GT] = ACTIONS(2408), + [anon_sym_out_GT] = ACTIONS(2408), + [anon_sym_e_GT] = ACTIONS(2408), + [anon_sym_o_GT] = ACTIONS(2408), + [anon_sym_err_PLUSout_GT] = ACTIONS(2408), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2408), + [anon_sym_o_PLUSe_GT] = ACTIONS(2408), + [anon_sym_e_PLUSo_GT] = ACTIONS(2408), + [anon_sym_err_GT_GT] = ACTIONS(2406), + [anon_sym_out_GT_GT] = ACTIONS(2406), + [anon_sym_e_GT_GT] = ACTIONS(2406), + [anon_sym_o_GT_GT] = ACTIONS(2406), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2406), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2406), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2406), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2406), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(786)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2225), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(693), - [sym__unquoted_with_expr] = STATE(948), - [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(786), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2410), + [sym__newline] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_err_GT_PIPE] = ACTIONS(2410), + [anon_sym_out_GT_PIPE] = ACTIONS(2410), + [anon_sym_e_GT_PIPE] = ACTIONS(2410), + [anon_sym_o_GT_PIPE] = ACTIONS(2410), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2410), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2410), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2410), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2410), + [anon_sym_RPAREN] = ACTIONS(2410), + [anon_sym_GT2] = ACTIONS(2412), + [anon_sym_DASH2] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_EQ_GT] = ACTIONS(2410), + [anon_sym_STAR2] = ACTIONS(2412), + [anon_sym_and2] = ACTIONS(2410), + [anon_sym_xor2] = ACTIONS(2410), + [anon_sym_or2] = ACTIONS(2410), + [anon_sym_not_DASHin2] = ACTIONS(2410), + [anon_sym_has2] = ACTIONS(2410), + [anon_sym_not_DASHhas2] = ACTIONS(2410), + [anon_sym_starts_DASHwith2] = ACTIONS(2410), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2410), + [anon_sym_ends_DASHwith2] = ACTIONS(2410), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2410), + [anon_sym_EQ_EQ2] = ACTIONS(2410), + [anon_sym_BANG_EQ2] = ACTIONS(2410), + [anon_sym_LT2] = ACTIONS(2412), + [anon_sym_LT_EQ2] = ACTIONS(2410), + [anon_sym_GT_EQ2] = ACTIONS(2410), + [anon_sym_EQ_TILDE2] = ACTIONS(2410), + [anon_sym_BANG_TILDE2] = ACTIONS(2410), + [anon_sym_like2] = ACTIONS(2410), + [anon_sym_not_DASHlike2] = ACTIONS(2410), + [anon_sym_STAR_STAR2] = ACTIONS(2410), + [anon_sym_PLUS_PLUS2] = ACTIONS(2410), + [anon_sym_SLASH2] = ACTIONS(2412), + [anon_sym_mod2] = ACTIONS(2410), + [anon_sym_SLASH_SLASH2] = ACTIONS(2410), + [anon_sym_PLUS2] = ACTIONS(2412), + [anon_sym_bit_DASHshl2] = ACTIONS(2410), + [anon_sym_bit_DASHshr2] = ACTIONS(2410), + [anon_sym_bit_DASHand2] = ACTIONS(2410), + [anon_sym_bit_DASHxor2] = ACTIONS(2410), + [anon_sym_bit_DASHor2] = ACTIONS(2410), + [anon_sym_err_GT] = ACTIONS(2412), + [anon_sym_out_GT] = ACTIONS(2412), + [anon_sym_e_GT] = ACTIONS(2412), + [anon_sym_o_GT] = ACTIONS(2412), + [anon_sym_err_PLUSout_GT] = ACTIONS(2412), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2412), + [anon_sym_o_PLUSe_GT] = ACTIONS(2412), + [anon_sym_e_PLUSo_GT] = ACTIONS(2412), + [anon_sym_err_GT_GT] = ACTIONS(2410), + [anon_sym_out_GT_GT] = ACTIONS(2410), + [anon_sym_e_GT_GT] = ACTIONS(2410), + [anon_sym_o_GT_GT] = ACTIONS(2410), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2410), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2410), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2410), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2410), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(787)] = { - [aux_sym__repeat_newline] = STATE(1102), - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(1131), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(787), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(788)] = { [sym_comment] = STATE(788), - [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_if] = ACTIONS(2414), + [anon_sym_in] = ACTIONS(2414), + [sym__newline] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_err_GT_PIPE] = ACTIONS(2414), + [anon_sym_out_GT_PIPE] = ACTIONS(2414), + [anon_sym_e_GT_PIPE] = ACTIONS(2414), + [anon_sym_o_GT_PIPE] = ACTIONS(2414), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2414), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2414), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2414), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2414), + [anon_sym_RPAREN] = ACTIONS(2414), + [anon_sym_GT2] = ACTIONS(2416), + [anon_sym_DASH2] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_EQ_GT] = ACTIONS(2414), + [anon_sym_STAR2] = ACTIONS(2416), + [anon_sym_and2] = ACTIONS(2414), + [anon_sym_xor2] = ACTIONS(2414), + [anon_sym_or2] = ACTIONS(2414), + [anon_sym_not_DASHin2] = ACTIONS(2414), + [anon_sym_has2] = ACTIONS(2414), + [anon_sym_not_DASHhas2] = ACTIONS(2414), + [anon_sym_starts_DASHwith2] = ACTIONS(2414), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2414), + [anon_sym_ends_DASHwith2] = ACTIONS(2414), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2414), + [anon_sym_EQ_EQ2] = ACTIONS(2414), + [anon_sym_BANG_EQ2] = ACTIONS(2414), + [anon_sym_LT2] = ACTIONS(2416), + [anon_sym_LT_EQ2] = ACTIONS(2414), + [anon_sym_GT_EQ2] = ACTIONS(2414), + [anon_sym_EQ_TILDE2] = ACTIONS(2414), + [anon_sym_BANG_TILDE2] = ACTIONS(2414), + [anon_sym_like2] = ACTIONS(2414), + [anon_sym_not_DASHlike2] = ACTIONS(2414), + [anon_sym_STAR_STAR2] = ACTIONS(2414), + [anon_sym_PLUS_PLUS2] = ACTIONS(2414), + [anon_sym_SLASH2] = ACTIONS(2416), + [anon_sym_mod2] = ACTIONS(2414), + [anon_sym_SLASH_SLASH2] = ACTIONS(2414), + [anon_sym_PLUS2] = ACTIONS(2416), + [anon_sym_bit_DASHshl2] = ACTIONS(2414), + [anon_sym_bit_DASHshr2] = ACTIONS(2414), + [anon_sym_bit_DASHand2] = ACTIONS(2414), + [anon_sym_bit_DASHxor2] = ACTIONS(2414), + [anon_sym_bit_DASHor2] = ACTIONS(2414), + [anon_sym_err_GT] = ACTIONS(2416), + [anon_sym_out_GT] = ACTIONS(2416), + [anon_sym_e_GT] = ACTIONS(2416), + [anon_sym_o_GT] = ACTIONS(2416), + [anon_sym_err_PLUSout_GT] = ACTIONS(2416), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2416), + [anon_sym_o_PLUSe_GT] = ACTIONS(2416), + [anon_sym_e_PLUSo_GT] = ACTIONS(2416), + [anon_sym_err_GT_GT] = ACTIONS(2414), + [anon_sym_out_GT_GT] = ACTIONS(2414), + [anon_sym_e_GT_GT] = ACTIONS(2414), + [anon_sym_o_GT_GT] = ACTIONS(2414), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2414), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2414), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2414), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2414), [anon_sym_POUND] = ACTIONS(3), }, [STATE(789)] = { - [aux_sym__repeat_newline] = STATE(1105), - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(1020), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(789), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(790)] = { [sym_comment] = STATE(790), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_in] = ACTIONS(2409), - [sym__newline] = ACTIONS(2409), - [anon_sym_SEMI] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(2409), - [anon_sym_err_GT_PIPE] = ACTIONS(2409), - [anon_sym_out_GT_PIPE] = ACTIONS(2409), - [anon_sym_e_GT_PIPE] = ACTIONS(2409), - [anon_sym_o_GT_PIPE] = ACTIONS(2409), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2409), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2409), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2409), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_GT2] = ACTIONS(2411), - [anon_sym_DASH2] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_EQ_GT] = ACTIONS(2409), - [anon_sym_STAR2] = ACTIONS(2411), - [anon_sym_and2] = ACTIONS(2409), - [anon_sym_xor2] = ACTIONS(2409), - [anon_sym_or2] = ACTIONS(2409), - [anon_sym_not_DASHin2] = ACTIONS(2409), - [anon_sym_has2] = ACTIONS(2409), - [anon_sym_not_DASHhas2] = ACTIONS(2409), - [anon_sym_starts_DASHwith2] = ACTIONS(2409), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2409), - [anon_sym_ends_DASHwith2] = ACTIONS(2409), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2409), - [anon_sym_EQ_EQ2] = ACTIONS(2409), - [anon_sym_BANG_EQ2] = ACTIONS(2409), - [anon_sym_LT2] = ACTIONS(2411), - [anon_sym_LT_EQ2] = ACTIONS(2409), - [anon_sym_GT_EQ2] = ACTIONS(2409), - [anon_sym_EQ_TILDE2] = ACTIONS(2409), - [anon_sym_BANG_TILDE2] = ACTIONS(2409), - [anon_sym_like2] = ACTIONS(2409), - [anon_sym_not_DASHlike2] = ACTIONS(2409), - [anon_sym_STAR_STAR2] = ACTIONS(2409), - [anon_sym_PLUS_PLUS2] = ACTIONS(2409), - [anon_sym_SLASH2] = ACTIONS(2411), - [anon_sym_mod2] = ACTIONS(2409), - [anon_sym_SLASH_SLASH2] = ACTIONS(2409), - [anon_sym_PLUS2] = ACTIONS(2411), - [anon_sym_bit_DASHshl2] = ACTIONS(2409), - [anon_sym_bit_DASHshr2] = ACTIONS(2409), - [anon_sym_bit_DASHand2] = ACTIONS(2409), - [anon_sym_bit_DASHxor2] = ACTIONS(2409), - [anon_sym_bit_DASHor2] = ACTIONS(2409), - [anon_sym_err_GT] = ACTIONS(2411), - [anon_sym_out_GT] = ACTIONS(2411), - [anon_sym_e_GT] = ACTIONS(2411), - [anon_sym_o_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT] = ACTIONS(2411), - [anon_sym_err_GT_GT] = ACTIONS(2409), - [anon_sym_out_GT_GT] = ACTIONS(2409), - [anon_sym_e_GT_GT] = ACTIONS(2409), - [anon_sym_o_GT_GT] = ACTIONS(2409), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2409), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2409), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2409), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2418), + [sym__newline] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_err_GT_PIPE] = ACTIONS(2418), + [anon_sym_out_GT_PIPE] = ACTIONS(2418), + [anon_sym_e_GT_PIPE] = ACTIONS(2418), + [anon_sym_o_GT_PIPE] = ACTIONS(2418), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_GT2] = ACTIONS(2420), + [anon_sym_DASH2] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(2418), + [anon_sym_STAR2] = ACTIONS(2420), + [anon_sym_and2] = ACTIONS(2418), + [anon_sym_xor2] = ACTIONS(2418), + [anon_sym_or2] = ACTIONS(2418), + [anon_sym_not_DASHin2] = ACTIONS(2418), + [anon_sym_has2] = ACTIONS(2418), + [anon_sym_not_DASHhas2] = ACTIONS(2418), + [anon_sym_starts_DASHwith2] = ACTIONS(2418), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), + [anon_sym_ends_DASHwith2] = ACTIONS(2418), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), + [anon_sym_EQ_EQ2] = ACTIONS(2418), + [anon_sym_BANG_EQ2] = ACTIONS(2418), + [anon_sym_LT2] = ACTIONS(2420), + [anon_sym_LT_EQ2] = ACTIONS(2418), + [anon_sym_GT_EQ2] = ACTIONS(2418), + [anon_sym_EQ_TILDE2] = ACTIONS(2418), + [anon_sym_BANG_TILDE2] = ACTIONS(2418), + [anon_sym_like2] = ACTIONS(2418), + [anon_sym_not_DASHlike2] = ACTIONS(2418), + [anon_sym_STAR_STAR2] = ACTIONS(2418), + [anon_sym_PLUS_PLUS2] = ACTIONS(2418), + [anon_sym_SLASH2] = ACTIONS(2420), + [anon_sym_mod2] = ACTIONS(2418), + [anon_sym_SLASH_SLASH2] = ACTIONS(2418), + [anon_sym_PLUS2] = ACTIONS(2420), + [anon_sym_bit_DASHshl2] = ACTIONS(2418), + [anon_sym_bit_DASHshr2] = ACTIONS(2418), + [anon_sym_bit_DASHand2] = ACTIONS(2418), + [anon_sym_bit_DASHxor2] = ACTIONS(2418), + [anon_sym_bit_DASHor2] = ACTIONS(2418), + [anon_sym_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(791)] = { + [aux_sym__repeat_newline] = STATE(1139), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(791), - [anon_sym_finally] = ACTIONS(2413), - [anon_sym_in] = ACTIONS(2413), - [sym__newline] = ACTIONS(2413), - [anon_sym_SEMI] = ACTIONS(2413), - [anon_sym_PIPE] = ACTIONS(2413), - [anon_sym_err_GT_PIPE] = ACTIONS(2413), - [anon_sym_out_GT_PIPE] = ACTIONS(2413), - [anon_sym_e_GT_PIPE] = ACTIONS(2413), - [anon_sym_o_GT_PIPE] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(2413), - [anon_sym_GT2] = ACTIONS(2415), - [anon_sym_DASH2] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_EQ_GT] = ACTIONS(2413), - [anon_sym_STAR2] = ACTIONS(2415), - [anon_sym_and2] = ACTIONS(2413), - [anon_sym_xor2] = ACTIONS(2413), - [anon_sym_or2] = ACTIONS(2413), - [anon_sym_not_DASHin2] = ACTIONS(2413), - [anon_sym_has2] = ACTIONS(2413), - [anon_sym_not_DASHhas2] = ACTIONS(2413), - [anon_sym_starts_DASHwith2] = ACTIONS(2413), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2413), - [anon_sym_ends_DASHwith2] = ACTIONS(2413), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2413), - [anon_sym_EQ_EQ2] = ACTIONS(2413), - [anon_sym_BANG_EQ2] = ACTIONS(2413), - [anon_sym_LT2] = ACTIONS(2415), - [anon_sym_LT_EQ2] = ACTIONS(2413), - [anon_sym_GT_EQ2] = ACTIONS(2413), - [anon_sym_EQ_TILDE2] = ACTIONS(2413), - [anon_sym_BANG_TILDE2] = ACTIONS(2413), - [anon_sym_like2] = ACTIONS(2413), - [anon_sym_not_DASHlike2] = ACTIONS(2413), - [anon_sym_STAR_STAR2] = ACTIONS(2413), - [anon_sym_PLUS_PLUS2] = ACTIONS(2413), - [anon_sym_SLASH2] = ACTIONS(2415), - [anon_sym_mod2] = ACTIONS(2413), - [anon_sym_SLASH_SLASH2] = ACTIONS(2413), - [anon_sym_PLUS2] = ACTIONS(2415), - [anon_sym_bit_DASHshl2] = ACTIONS(2413), - [anon_sym_bit_DASHshr2] = ACTIONS(2413), - [anon_sym_bit_DASHand2] = ACTIONS(2413), - [anon_sym_bit_DASHxor2] = ACTIONS(2413), - [anon_sym_bit_DASHor2] = ACTIONS(2413), - [anon_sym_err_GT] = ACTIONS(2415), - [anon_sym_out_GT] = ACTIONS(2415), - [anon_sym_e_GT] = ACTIONS(2415), - [anon_sym_o_GT] = ACTIONS(2415), - [anon_sym_err_PLUSout_GT] = ACTIONS(2415), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2415), - [anon_sym_o_PLUSe_GT] = ACTIONS(2415), - [anon_sym_e_PLUSo_GT] = ACTIONS(2415), - [anon_sym_err_GT_GT] = ACTIONS(2413), - [anon_sym_out_GT_GT] = ACTIONS(2413), - [anon_sym_e_GT_GT] = ACTIONS(2413), - [anon_sym_o_GT_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2413), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(792)] = { + [aux_sym__repeat_newline] = STATE(1143), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(792), - [anon_sym_finally] = 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_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(793)] = { + [aux_sym__repeat_newline] = STATE(1132), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(793), - [anon_sym_finally] = ACTIONS(2421), - [anon_sym_in] = ACTIONS(2421), - [sym__newline] = ACTIONS(2421), - [anon_sym_SEMI] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2421), - [anon_sym_err_GT_PIPE] = ACTIONS(2421), - [anon_sym_out_GT_PIPE] = ACTIONS(2421), - [anon_sym_e_GT_PIPE] = ACTIONS(2421), - [anon_sym_o_GT_PIPE] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2421), - [anon_sym_RPAREN] = ACTIONS(2421), - [anon_sym_GT2] = ACTIONS(2423), - [anon_sym_DASH2] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_EQ_GT] = ACTIONS(2421), - [anon_sym_STAR2] = ACTIONS(2423), - [anon_sym_and2] = ACTIONS(2421), - [anon_sym_xor2] = ACTIONS(2421), - [anon_sym_or2] = ACTIONS(2421), - [anon_sym_not_DASHin2] = ACTIONS(2421), - [anon_sym_has2] = ACTIONS(2421), - [anon_sym_not_DASHhas2] = ACTIONS(2421), - [anon_sym_starts_DASHwith2] = ACTIONS(2421), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2421), - [anon_sym_ends_DASHwith2] = ACTIONS(2421), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2421), - [anon_sym_EQ_EQ2] = ACTIONS(2421), - [anon_sym_BANG_EQ2] = ACTIONS(2421), - [anon_sym_LT2] = ACTIONS(2423), - [anon_sym_LT_EQ2] = ACTIONS(2421), - [anon_sym_GT_EQ2] = ACTIONS(2421), - [anon_sym_EQ_TILDE2] = ACTIONS(2421), - [anon_sym_BANG_TILDE2] = ACTIONS(2421), - [anon_sym_like2] = ACTIONS(2421), - [anon_sym_not_DASHlike2] = ACTIONS(2421), - [anon_sym_STAR_STAR2] = ACTIONS(2421), - [anon_sym_PLUS_PLUS2] = ACTIONS(2421), - [anon_sym_SLASH2] = ACTIONS(2423), - [anon_sym_mod2] = ACTIONS(2421), - [anon_sym_SLASH_SLASH2] = ACTIONS(2421), - [anon_sym_PLUS2] = ACTIONS(2423), - [anon_sym_bit_DASHshl2] = ACTIONS(2421), - [anon_sym_bit_DASHshr2] = ACTIONS(2421), - [anon_sym_bit_DASHand2] = ACTIONS(2421), - [anon_sym_bit_DASHxor2] = ACTIONS(2421), - [anon_sym_bit_DASHor2] = ACTIONS(2421), - [anon_sym_err_GT] = ACTIONS(2423), - [anon_sym_out_GT] = ACTIONS(2423), - [anon_sym_e_GT] = ACTIONS(2423), - [anon_sym_o_GT] = ACTIONS(2423), - [anon_sym_err_PLUSout_GT] = ACTIONS(2423), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2423), - [anon_sym_o_PLUSe_GT] = ACTIONS(2423), - [anon_sym_e_PLUSo_GT] = ACTIONS(2423), - [anon_sym_err_GT_GT] = ACTIONS(2421), - [anon_sym_out_GT_GT] = ACTIONS(2421), - [anon_sym_e_GT_GT] = ACTIONS(2421), - [anon_sym_o_GT_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2421), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(794)] = { + [aux_sym__repeat_newline] = STATE(1145), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(794), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_in] = ACTIONS(2425), - [sym__newline] = ACTIONS(2425), - [anon_sym_SEMI] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2425), - [anon_sym_err_GT_PIPE] = ACTIONS(2425), - [anon_sym_out_GT_PIPE] = ACTIONS(2425), - [anon_sym_e_GT_PIPE] = ACTIONS(2425), - [anon_sym_o_GT_PIPE] = ACTIONS(2425), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2425), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2425), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2425), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2425), - [anon_sym_RPAREN] = ACTIONS(2425), - [anon_sym_GT2] = ACTIONS(2427), - [anon_sym_DASH2] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_EQ_GT] = ACTIONS(2425), - [anon_sym_STAR2] = ACTIONS(2427), - [anon_sym_and2] = ACTIONS(2425), - [anon_sym_xor2] = ACTIONS(2425), - [anon_sym_or2] = ACTIONS(2425), - [anon_sym_not_DASHin2] = ACTIONS(2425), - [anon_sym_has2] = ACTIONS(2425), - [anon_sym_not_DASHhas2] = ACTIONS(2425), - [anon_sym_starts_DASHwith2] = ACTIONS(2425), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2425), - [anon_sym_ends_DASHwith2] = ACTIONS(2425), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2425), - [anon_sym_EQ_EQ2] = ACTIONS(2425), - [anon_sym_BANG_EQ2] = ACTIONS(2425), - [anon_sym_LT2] = ACTIONS(2427), - [anon_sym_LT_EQ2] = ACTIONS(2425), - [anon_sym_GT_EQ2] = ACTIONS(2425), - [anon_sym_EQ_TILDE2] = ACTIONS(2425), - [anon_sym_BANG_TILDE2] = ACTIONS(2425), - [anon_sym_like2] = ACTIONS(2425), - [anon_sym_not_DASHlike2] = ACTIONS(2425), - [anon_sym_STAR_STAR2] = ACTIONS(2425), - [anon_sym_PLUS_PLUS2] = ACTIONS(2425), - [anon_sym_SLASH2] = ACTIONS(2427), - [anon_sym_mod2] = ACTIONS(2425), - [anon_sym_SLASH_SLASH2] = ACTIONS(2425), - [anon_sym_PLUS2] = ACTIONS(2427), - [anon_sym_bit_DASHshl2] = ACTIONS(2425), - [anon_sym_bit_DASHshr2] = ACTIONS(2425), - [anon_sym_bit_DASHand2] = ACTIONS(2425), - [anon_sym_bit_DASHxor2] = ACTIONS(2425), - [anon_sym_bit_DASHor2] = ACTIONS(2425), - [anon_sym_err_GT] = ACTIONS(2427), - [anon_sym_out_GT] = ACTIONS(2427), - [anon_sym_e_GT] = ACTIONS(2427), - [anon_sym_o_GT] = ACTIONS(2427), - [anon_sym_err_PLUSout_GT] = ACTIONS(2427), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2427), - [anon_sym_o_PLUSe_GT] = ACTIONS(2427), - [anon_sym_e_PLUSo_GT] = ACTIONS(2427), - [anon_sym_err_GT_GT] = ACTIONS(2425), - [anon_sym_out_GT_GT] = ACTIONS(2425), - [anon_sym_e_GT_GT] = ACTIONS(2425), - [anon_sym_o_GT_GT] = ACTIONS(2425), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2425), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2425), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2425), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2425), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(795)] = { [sym_comment] = STATE(795), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_in] = ACTIONS(2429), - [sym__newline] = ACTIONS(2429), - [anon_sym_SEMI] = ACTIONS(2429), - [anon_sym_PIPE] = ACTIONS(2429), - [anon_sym_err_GT_PIPE] = ACTIONS(2429), - [anon_sym_out_GT_PIPE] = ACTIONS(2429), - [anon_sym_e_GT_PIPE] = ACTIONS(2429), - [anon_sym_o_GT_PIPE] = ACTIONS(2429), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2429), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2429), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2429), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2429), - [anon_sym_RPAREN] = ACTIONS(2429), - [anon_sym_GT2] = ACTIONS(2431), - [anon_sym_DASH2] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(2429), - [anon_sym_STAR2] = ACTIONS(2431), - [anon_sym_and2] = ACTIONS(2429), - [anon_sym_xor2] = ACTIONS(2429), - [anon_sym_or2] = ACTIONS(2429), - [anon_sym_not_DASHin2] = ACTIONS(2429), - [anon_sym_has2] = ACTIONS(2429), - [anon_sym_not_DASHhas2] = ACTIONS(2429), - [anon_sym_starts_DASHwith2] = ACTIONS(2429), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2429), - [anon_sym_ends_DASHwith2] = ACTIONS(2429), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2429), - [anon_sym_EQ_EQ2] = ACTIONS(2429), - [anon_sym_BANG_EQ2] = ACTIONS(2429), - [anon_sym_LT2] = ACTIONS(2431), - [anon_sym_LT_EQ2] = ACTIONS(2429), - [anon_sym_GT_EQ2] = ACTIONS(2429), - [anon_sym_EQ_TILDE2] = ACTIONS(2429), - [anon_sym_BANG_TILDE2] = ACTIONS(2429), - [anon_sym_like2] = ACTIONS(2429), - [anon_sym_not_DASHlike2] = ACTIONS(2429), - [anon_sym_STAR_STAR2] = ACTIONS(2429), - [anon_sym_PLUS_PLUS2] = ACTIONS(2429), - [anon_sym_SLASH2] = ACTIONS(2431), - [anon_sym_mod2] = ACTIONS(2429), - [anon_sym_SLASH_SLASH2] = ACTIONS(2429), - [anon_sym_PLUS2] = ACTIONS(2431), - [anon_sym_bit_DASHshl2] = ACTIONS(2429), - [anon_sym_bit_DASHshr2] = ACTIONS(2429), - [anon_sym_bit_DASHand2] = ACTIONS(2429), - [anon_sym_bit_DASHxor2] = ACTIONS(2429), - [anon_sym_bit_DASHor2] = ACTIONS(2429), - [anon_sym_err_GT] = ACTIONS(2431), - [anon_sym_out_GT] = ACTIONS(2431), - [anon_sym_e_GT] = ACTIONS(2431), - [anon_sym_o_GT] = ACTIONS(2431), - [anon_sym_err_PLUSout_GT] = ACTIONS(2431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2431), - [anon_sym_o_PLUSe_GT] = ACTIONS(2431), - [anon_sym_e_PLUSo_GT] = ACTIONS(2431), - [anon_sym_err_GT_GT] = ACTIONS(2429), - [anon_sym_out_GT_GT] = ACTIONS(2429), - [anon_sym_e_GT_GT] = ACTIONS(2429), - [anon_sym_o_GT_GT] = ACTIONS(2429), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2429), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2429), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2429), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2429), + [anon_sym_finally] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(2426), + [sym__newline] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_PIPE] = ACTIONS(2426), + [anon_sym_err_GT_PIPE] = ACTIONS(2426), + [anon_sym_out_GT_PIPE] = ACTIONS(2426), + [anon_sym_e_GT_PIPE] = ACTIONS(2426), + [anon_sym_o_GT_PIPE] = ACTIONS(2426), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2426), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2426), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2426), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2426), + [anon_sym_RPAREN] = ACTIONS(2426), + [anon_sym_GT2] = ACTIONS(2428), + [anon_sym_DASH2] = ACTIONS(2426), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_EQ_GT] = ACTIONS(2426), + [anon_sym_STAR2] = ACTIONS(2428), + [anon_sym_and2] = ACTIONS(2426), + [anon_sym_xor2] = ACTIONS(2426), + [anon_sym_or2] = ACTIONS(2426), + [anon_sym_not_DASHin2] = ACTIONS(2426), + [anon_sym_has2] = ACTIONS(2426), + [anon_sym_not_DASHhas2] = ACTIONS(2426), + [anon_sym_starts_DASHwith2] = ACTIONS(2426), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2426), + [anon_sym_ends_DASHwith2] = ACTIONS(2426), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2426), + [anon_sym_EQ_EQ2] = ACTIONS(2426), + [anon_sym_BANG_EQ2] = ACTIONS(2426), + [anon_sym_LT2] = ACTIONS(2428), + [anon_sym_LT_EQ2] = ACTIONS(2426), + [anon_sym_GT_EQ2] = ACTIONS(2426), + [anon_sym_EQ_TILDE2] = ACTIONS(2426), + [anon_sym_BANG_TILDE2] = ACTIONS(2426), + [anon_sym_like2] = ACTIONS(2426), + [anon_sym_not_DASHlike2] = ACTIONS(2426), + [anon_sym_STAR_STAR2] = ACTIONS(2426), + [anon_sym_PLUS_PLUS2] = ACTIONS(2426), + [anon_sym_SLASH2] = ACTIONS(2428), + [anon_sym_mod2] = ACTIONS(2426), + [anon_sym_SLASH_SLASH2] = ACTIONS(2426), + [anon_sym_PLUS2] = ACTIONS(2428), + [anon_sym_bit_DASHshl2] = ACTIONS(2426), + [anon_sym_bit_DASHshr2] = ACTIONS(2426), + [anon_sym_bit_DASHand2] = ACTIONS(2426), + [anon_sym_bit_DASHxor2] = ACTIONS(2426), + [anon_sym_bit_DASHor2] = ACTIONS(2426), + [anon_sym_err_GT] = ACTIONS(2428), + [anon_sym_out_GT] = ACTIONS(2428), + [anon_sym_e_GT] = ACTIONS(2428), + [anon_sym_o_GT] = ACTIONS(2428), + [anon_sym_err_PLUSout_GT] = ACTIONS(2428), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2428), + [anon_sym_o_PLUSe_GT] = ACTIONS(2428), + [anon_sym_e_PLUSo_GT] = ACTIONS(2428), + [anon_sym_err_GT_GT] = ACTIONS(2426), + [anon_sym_out_GT_GT] = ACTIONS(2426), + [anon_sym_e_GT_GT] = ACTIONS(2426), + [anon_sym_o_GT_GT] = ACTIONS(2426), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2426), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2426), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2426), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2426), [anon_sym_POUND] = ACTIONS(3), }, [STATE(796)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1713), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1009), + [sym__unquoted_with_expr] = STATE(1289), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(796), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_in] = ACTIONS(2433), - [sym__newline] = ACTIONS(2433), - [anon_sym_SEMI] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2433), - [anon_sym_err_GT_PIPE] = ACTIONS(2433), - [anon_sym_out_GT_PIPE] = ACTIONS(2433), - [anon_sym_e_GT_PIPE] = ACTIONS(2433), - [anon_sym_o_GT_PIPE] = ACTIONS(2433), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2433), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2433), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2433), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2433), - [anon_sym_RPAREN] = ACTIONS(2433), - [anon_sym_GT2] = ACTIONS(2435), - [anon_sym_DASH2] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_EQ_GT] = ACTIONS(2433), - [anon_sym_STAR2] = ACTIONS(2435), - [anon_sym_and2] = ACTIONS(2433), - [anon_sym_xor2] = ACTIONS(2433), - [anon_sym_or2] = ACTIONS(2433), - [anon_sym_not_DASHin2] = ACTIONS(2433), - [anon_sym_has2] = ACTIONS(2433), - [anon_sym_not_DASHhas2] = ACTIONS(2433), - [anon_sym_starts_DASHwith2] = ACTIONS(2433), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2433), - [anon_sym_ends_DASHwith2] = ACTIONS(2433), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2433), - [anon_sym_EQ_EQ2] = ACTIONS(2433), - [anon_sym_BANG_EQ2] = ACTIONS(2433), - [anon_sym_LT2] = ACTIONS(2435), - [anon_sym_LT_EQ2] = ACTIONS(2433), - [anon_sym_GT_EQ2] = ACTIONS(2433), - [anon_sym_EQ_TILDE2] = ACTIONS(2433), - [anon_sym_BANG_TILDE2] = ACTIONS(2433), - [anon_sym_like2] = ACTIONS(2433), - [anon_sym_not_DASHlike2] = ACTIONS(2433), - [anon_sym_STAR_STAR2] = ACTIONS(2433), - [anon_sym_PLUS_PLUS2] = ACTIONS(2433), - [anon_sym_SLASH2] = ACTIONS(2435), - [anon_sym_mod2] = ACTIONS(2433), - [anon_sym_SLASH_SLASH2] = ACTIONS(2433), - [anon_sym_PLUS2] = ACTIONS(2435), - [anon_sym_bit_DASHshl2] = ACTIONS(2433), - [anon_sym_bit_DASHshr2] = ACTIONS(2433), - [anon_sym_bit_DASHand2] = ACTIONS(2433), - [anon_sym_bit_DASHxor2] = ACTIONS(2433), - [anon_sym_bit_DASHor2] = ACTIONS(2433), - [anon_sym_err_GT] = ACTIONS(2435), - [anon_sym_out_GT] = ACTIONS(2435), - [anon_sym_e_GT] = ACTIONS(2435), - [anon_sym_o_GT] = ACTIONS(2435), - [anon_sym_err_PLUSout_GT] = ACTIONS(2435), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2435), - [anon_sym_o_PLUSe_GT] = ACTIONS(2435), - [anon_sym_e_PLUSo_GT] = ACTIONS(2435), - [anon_sym_err_GT_GT] = ACTIONS(2433), - [anon_sym_out_GT_GT] = ACTIONS(2433), - [anon_sym_e_GT_GT] = ACTIONS(2433), - [anon_sym_o_GT_GT] = ACTIONS(2433), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2433), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2433), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2433), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(797)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2227), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(942), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1714), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1066), + [sym__unquoted_with_expr] = STATE(1325), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(797), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(798)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1715), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1076), + [sym__unquoted_with_expr] = STATE(1317), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(798), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_in] = ACTIONS(2437), - [sym__newline] = ACTIONS(2437), - [anon_sym_SEMI] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_err_GT_PIPE] = ACTIONS(2437), - [anon_sym_out_GT_PIPE] = ACTIONS(2437), - [anon_sym_e_GT_PIPE] = ACTIONS(2437), - [anon_sym_o_GT_PIPE] = ACTIONS(2437), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2437), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2437), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2437), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_GT2] = ACTIONS(2439), - [anon_sym_DASH2] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2437), - [anon_sym_STAR2] = ACTIONS(2439), - [anon_sym_and2] = ACTIONS(2437), - [anon_sym_xor2] = ACTIONS(2437), - [anon_sym_or2] = ACTIONS(2437), - [anon_sym_not_DASHin2] = ACTIONS(2437), - [anon_sym_has2] = ACTIONS(2437), - [anon_sym_not_DASHhas2] = ACTIONS(2437), - [anon_sym_starts_DASHwith2] = ACTIONS(2437), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2437), - [anon_sym_ends_DASHwith2] = ACTIONS(2437), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2437), - [anon_sym_EQ_EQ2] = ACTIONS(2437), - [anon_sym_BANG_EQ2] = ACTIONS(2437), - [anon_sym_LT2] = ACTIONS(2439), - [anon_sym_LT_EQ2] = ACTIONS(2437), - [anon_sym_GT_EQ2] = ACTIONS(2437), - [anon_sym_EQ_TILDE2] = ACTIONS(2437), - [anon_sym_BANG_TILDE2] = ACTIONS(2437), - [anon_sym_like2] = ACTIONS(2437), - [anon_sym_not_DASHlike2] = ACTIONS(2437), - [anon_sym_STAR_STAR2] = ACTIONS(2437), - [anon_sym_PLUS_PLUS2] = ACTIONS(2437), - [anon_sym_SLASH2] = ACTIONS(2439), - [anon_sym_mod2] = ACTIONS(2437), - [anon_sym_SLASH_SLASH2] = ACTIONS(2437), - [anon_sym_PLUS2] = ACTIONS(2439), - [anon_sym_bit_DASHshl2] = ACTIONS(2437), - [anon_sym_bit_DASHshr2] = ACTIONS(2437), - [anon_sym_bit_DASHand2] = ACTIONS(2437), - [anon_sym_bit_DASHxor2] = ACTIONS(2437), - [anon_sym_bit_DASHor2] = ACTIONS(2437), - [anon_sym_err_GT] = ACTIONS(2439), - [anon_sym_out_GT] = ACTIONS(2439), - [anon_sym_e_GT] = ACTIONS(2439), - [anon_sym_o_GT] = ACTIONS(2439), - [anon_sym_err_PLUSout_GT] = ACTIONS(2439), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2439), - [anon_sym_o_PLUSe_GT] = ACTIONS(2439), - [anon_sym_e_PLUSo_GT] = ACTIONS(2439), - [anon_sym_err_GT_GT] = ACTIONS(2437), - [anon_sym_out_GT_GT] = ACTIONS(2437), - [anon_sym_e_GT_GT] = ACTIONS(2437), - [anon_sym_o_GT_GT] = ACTIONS(2437), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2437), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2437), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2437), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(799)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1716), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1081), + [sym__unquoted_with_expr] = STATE(1347), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(799), - [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_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(800)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1717), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1084), + [sym__unquoted_with_expr] = STATE(1320), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(800), - [anon_sym_finally] = 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_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(801)] = { [sym_comment] = STATE(801), - [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_if] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [sym__newline] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_err_GT_PIPE] = ACTIONS(2450), + [anon_sym_out_GT_PIPE] = ACTIONS(2450), + [anon_sym_e_GT_PIPE] = ACTIONS(2450), + [anon_sym_o_GT_PIPE] = ACTIONS(2450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2450), + [anon_sym_RPAREN] = ACTIONS(2450), + [anon_sym_GT2] = ACTIONS(2452), + [anon_sym_DASH2] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_EQ_GT] = ACTIONS(2450), + [anon_sym_STAR2] = ACTIONS(2452), + [anon_sym_and2] = ACTIONS(2450), + [anon_sym_xor2] = ACTIONS(2450), + [anon_sym_or2] = ACTIONS(2450), + [anon_sym_not_DASHin2] = ACTIONS(2450), + [anon_sym_has2] = ACTIONS(2450), + [anon_sym_not_DASHhas2] = ACTIONS(2450), + [anon_sym_starts_DASHwith2] = ACTIONS(2450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2450), + [anon_sym_ends_DASHwith2] = ACTIONS(2450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2450), + [anon_sym_EQ_EQ2] = ACTIONS(2450), + [anon_sym_BANG_EQ2] = ACTIONS(2450), + [anon_sym_LT2] = ACTIONS(2452), + [anon_sym_LT_EQ2] = ACTIONS(2450), + [anon_sym_GT_EQ2] = ACTIONS(2450), + [anon_sym_EQ_TILDE2] = ACTIONS(2450), + [anon_sym_BANG_TILDE2] = ACTIONS(2450), + [anon_sym_like2] = ACTIONS(2450), + [anon_sym_not_DASHlike2] = ACTIONS(2450), + [anon_sym_STAR_STAR2] = ACTIONS(2450), + [anon_sym_PLUS_PLUS2] = ACTIONS(2450), + [anon_sym_SLASH2] = ACTIONS(2452), + [anon_sym_mod2] = ACTIONS(2450), + [anon_sym_SLASH_SLASH2] = ACTIONS(2450), + [anon_sym_PLUS2] = ACTIONS(2452), + [anon_sym_bit_DASHshl2] = ACTIONS(2450), + [anon_sym_bit_DASHshr2] = ACTIONS(2450), + [anon_sym_bit_DASHand2] = ACTIONS(2450), + [anon_sym_bit_DASHxor2] = ACTIONS(2450), + [anon_sym_bit_DASHor2] = ACTIONS(2450), + [anon_sym_err_GT] = ACTIONS(2452), + [anon_sym_out_GT] = ACTIONS(2452), + [anon_sym_e_GT] = ACTIONS(2452), + [anon_sym_o_GT] = ACTIONS(2452), + [anon_sym_err_PLUSout_GT] = ACTIONS(2452), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2452), + [anon_sym_o_PLUSe_GT] = ACTIONS(2452), + [anon_sym_e_PLUSo_GT] = ACTIONS(2452), + [anon_sym_err_GT_GT] = ACTIONS(2450), + [anon_sym_out_GT_GT] = ACTIONS(2450), + [anon_sym_e_GT_GT] = ACTIONS(2450), + [anon_sym_o_GT_GT] = ACTIONS(2450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2450), [anon_sym_POUND] = ACTIONS(3), }, [STATE(802)] = { [sym_comment] = STATE(802), - [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_if] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [sym__newline] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2454), + [anon_sym_err_GT_PIPE] = ACTIONS(2454), + [anon_sym_out_GT_PIPE] = ACTIONS(2454), + [anon_sym_e_GT_PIPE] = ACTIONS(2454), + [anon_sym_o_GT_PIPE] = ACTIONS(2454), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2454), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2454), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2454), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_GT2] = ACTIONS(2456), + [anon_sym_DASH2] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(2454), + [anon_sym_STAR2] = ACTIONS(2456), + [anon_sym_and2] = ACTIONS(2454), + [anon_sym_xor2] = ACTIONS(2454), + [anon_sym_or2] = ACTIONS(2454), + [anon_sym_not_DASHin2] = ACTIONS(2454), + [anon_sym_has2] = ACTIONS(2454), + [anon_sym_not_DASHhas2] = ACTIONS(2454), + [anon_sym_starts_DASHwith2] = ACTIONS(2454), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2454), + [anon_sym_ends_DASHwith2] = ACTIONS(2454), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2454), + [anon_sym_EQ_EQ2] = ACTIONS(2454), + [anon_sym_BANG_EQ2] = ACTIONS(2454), + [anon_sym_LT2] = ACTIONS(2456), + [anon_sym_LT_EQ2] = ACTIONS(2454), + [anon_sym_GT_EQ2] = ACTIONS(2454), + [anon_sym_EQ_TILDE2] = ACTIONS(2454), + [anon_sym_BANG_TILDE2] = ACTIONS(2454), + [anon_sym_like2] = ACTIONS(2454), + [anon_sym_not_DASHlike2] = ACTIONS(2454), + [anon_sym_STAR_STAR2] = ACTIONS(2454), + [anon_sym_PLUS_PLUS2] = ACTIONS(2454), + [anon_sym_SLASH2] = ACTIONS(2456), + [anon_sym_mod2] = ACTIONS(2454), + [anon_sym_SLASH_SLASH2] = ACTIONS(2454), + [anon_sym_PLUS2] = ACTIONS(2456), + [anon_sym_bit_DASHshl2] = ACTIONS(2454), + [anon_sym_bit_DASHshr2] = ACTIONS(2454), + [anon_sym_bit_DASHand2] = ACTIONS(2454), + [anon_sym_bit_DASHxor2] = ACTIONS(2454), + [anon_sym_bit_DASHor2] = ACTIONS(2454), + [anon_sym_err_GT] = ACTIONS(2456), + [anon_sym_out_GT] = ACTIONS(2456), + [anon_sym_e_GT] = ACTIONS(2456), + [anon_sym_o_GT] = ACTIONS(2456), + [anon_sym_err_PLUSout_GT] = ACTIONS(2456), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2456), + [anon_sym_o_PLUSe_GT] = ACTIONS(2456), + [anon_sym_e_PLUSo_GT] = ACTIONS(2456), + [anon_sym_err_GT_GT] = ACTIONS(2454), + [anon_sym_out_GT_GT] = ACTIONS(2454), + [anon_sym_e_GT_GT] = ACTIONS(2454), + [anon_sym_o_GT_GT] = ACTIONS(2454), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2454), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2454), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2454), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2454), [anon_sym_POUND] = ACTIONS(3), }, [STATE(803)] = { [sym_comment] = STATE(803), - [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_if] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_EQ_GT] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(804)] = { [sym_comment] = STATE(804), - [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_if] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [sym__newline] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_err_GT_PIPE] = ACTIONS(2462), + [anon_sym_out_GT_PIPE] = ACTIONS(2462), + [anon_sym_e_GT_PIPE] = ACTIONS(2462), + [anon_sym_o_GT_PIPE] = ACTIONS(2462), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2462), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2462), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2462), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_GT2] = ACTIONS(2464), + [anon_sym_DASH2] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_EQ_GT] = ACTIONS(2462), + [anon_sym_STAR2] = ACTIONS(2464), + [anon_sym_and2] = ACTIONS(2462), + [anon_sym_xor2] = ACTIONS(2462), + [anon_sym_or2] = ACTIONS(2462), + [anon_sym_not_DASHin2] = ACTIONS(2462), + [anon_sym_has2] = ACTIONS(2462), + [anon_sym_not_DASHhas2] = ACTIONS(2462), + [anon_sym_starts_DASHwith2] = ACTIONS(2462), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2462), + [anon_sym_ends_DASHwith2] = ACTIONS(2462), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2462), + [anon_sym_EQ_EQ2] = ACTIONS(2462), + [anon_sym_BANG_EQ2] = ACTIONS(2462), + [anon_sym_LT2] = ACTIONS(2464), + [anon_sym_LT_EQ2] = ACTIONS(2462), + [anon_sym_GT_EQ2] = ACTIONS(2462), + [anon_sym_EQ_TILDE2] = ACTIONS(2462), + [anon_sym_BANG_TILDE2] = ACTIONS(2462), + [anon_sym_like2] = ACTIONS(2462), + [anon_sym_not_DASHlike2] = ACTIONS(2462), + [anon_sym_STAR_STAR2] = ACTIONS(2462), + [anon_sym_PLUS_PLUS2] = ACTIONS(2462), + [anon_sym_SLASH2] = ACTIONS(2464), + [anon_sym_mod2] = ACTIONS(2462), + [anon_sym_SLASH_SLASH2] = ACTIONS(2462), + [anon_sym_PLUS2] = ACTIONS(2464), + [anon_sym_bit_DASHshl2] = ACTIONS(2462), + [anon_sym_bit_DASHshr2] = ACTIONS(2462), + [anon_sym_bit_DASHand2] = ACTIONS(2462), + [anon_sym_bit_DASHxor2] = ACTIONS(2462), + [anon_sym_bit_DASHor2] = ACTIONS(2462), + [anon_sym_err_GT] = ACTIONS(2464), + [anon_sym_out_GT] = ACTIONS(2464), + [anon_sym_e_GT] = ACTIONS(2464), + [anon_sym_o_GT] = ACTIONS(2464), + [anon_sym_err_PLUSout_GT] = ACTIONS(2464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2464), + [anon_sym_o_PLUSe_GT] = ACTIONS(2464), + [anon_sym_e_PLUSo_GT] = ACTIONS(2464), + [anon_sym_err_GT_GT] = ACTIONS(2462), + [anon_sym_out_GT_GT] = ACTIONS(2462), + [anon_sym_e_GT_GT] = ACTIONS(2462), + [anon_sym_o_GT_GT] = ACTIONS(2462), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2462), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2462), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2462), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2462), [anon_sym_POUND] = ACTIONS(3), }, [STATE(805)] = { [sym_comment] = STATE(805), - [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_if] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [sym__newline] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2466), + [anon_sym_err_GT_PIPE] = ACTIONS(2466), + [anon_sym_out_GT_PIPE] = ACTIONS(2466), + [anon_sym_e_GT_PIPE] = ACTIONS(2466), + [anon_sym_o_GT_PIPE] = ACTIONS(2466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2466), + [anon_sym_RPAREN] = ACTIONS(2466), + [anon_sym_GT2] = ACTIONS(2468), + [anon_sym_DASH2] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_EQ_GT] = ACTIONS(2466), + [anon_sym_STAR2] = ACTIONS(2468), + [anon_sym_and2] = ACTIONS(2466), + [anon_sym_xor2] = ACTIONS(2466), + [anon_sym_or2] = ACTIONS(2466), + [anon_sym_not_DASHin2] = ACTIONS(2466), + [anon_sym_has2] = ACTIONS(2466), + [anon_sym_not_DASHhas2] = ACTIONS(2466), + [anon_sym_starts_DASHwith2] = ACTIONS(2466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2466), + [anon_sym_ends_DASHwith2] = ACTIONS(2466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2466), + [anon_sym_EQ_EQ2] = ACTIONS(2466), + [anon_sym_BANG_EQ2] = ACTIONS(2466), + [anon_sym_LT2] = ACTIONS(2468), + [anon_sym_LT_EQ2] = ACTIONS(2466), + [anon_sym_GT_EQ2] = ACTIONS(2466), + [anon_sym_EQ_TILDE2] = ACTIONS(2466), + [anon_sym_BANG_TILDE2] = ACTIONS(2466), + [anon_sym_like2] = ACTIONS(2466), + [anon_sym_not_DASHlike2] = ACTIONS(2466), + [anon_sym_STAR_STAR2] = ACTIONS(2466), + [anon_sym_PLUS_PLUS2] = ACTIONS(2466), + [anon_sym_SLASH2] = ACTIONS(2468), + [anon_sym_mod2] = ACTIONS(2466), + [anon_sym_SLASH_SLASH2] = ACTIONS(2466), + [anon_sym_PLUS2] = ACTIONS(2468), + [anon_sym_bit_DASHshl2] = ACTIONS(2466), + [anon_sym_bit_DASHshr2] = ACTIONS(2466), + [anon_sym_bit_DASHand2] = ACTIONS(2466), + [anon_sym_bit_DASHxor2] = ACTIONS(2466), + [anon_sym_bit_DASHor2] = ACTIONS(2466), + [anon_sym_err_GT] = ACTIONS(2468), + [anon_sym_out_GT] = ACTIONS(2468), + [anon_sym_e_GT] = ACTIONS(2468), + [anon_sym_o_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT] = ACTIONS(2468), + [anon_sym_err_GT_GT] = ACTIONS(2466), + [anon_sym_out_GT_GT] = ACTIONS(2466), + [anon_sym_e_GT_GT] = ACTIONS(2466), + [anon_sym_o_GT_GT] = ACTIONS(2466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2466), [anon_sym_POUND] = ACTIONS(3), }, [STATE(806)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1718), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1110), + [sym__unquoted_with_expr] = STATE(1348), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(806), - [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_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(807)] = { [sym_comment] = STATE(807), - [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_in] = ACTIONS(2227), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_GT2] = ACTIONS(2229), + [anon_sym_DASH2] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2229), + [anon_sym_and2] = ACTIONS(2227), + [anon_sym_xor2] = ACTIONS(2227), + [anon_sym_or2] = ACTIONS(2227), + [anon_sym_not_DASHin2] = ACTIONS(2227), + [anon_sym_has2] = ACTIONS(2227), + [anon_sym_not_DASHhas2] = ACTIONS(2227), + [anon_sym_starts_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), + [anon_sym_ends_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), + [anon_sym_EQ_EQ2] = ACTIONS(2227), + [anon_sym_BANG_EQ2] = ACTIONS(2227), + [anon_sym_LT2] = ACTIONS(2229), + [anon_sym_LT_EQ2] = ACTIONS(2227), + [anon_sym_GT_EQ2] = ACTIONS(2227), + [anon_sym_EQ_TILDE2] = ACTIONS(2227), + [anon_sym_BANG_TILDE2] = ACTIONS(2227), + [anon_sym_like2] = ACTIONS(2227), + [anon_sym_not_DASHlike2] = ACTIONS(2227), + [anon_sym_STAR_STAR2] = ACTIONS(2227), + [anon_sym_PLUS_PLUS2] = ACTIONS(2227), + [anon_sym_SLASH2] = ACTIONS(2229), + [anon_sym_mod2] = ACTIONS(2227), + [anon_sym_SLASH_SLASH2] = ACTIONS(2227), + [anon_sym_PLUS2] = ACTIONS(2229), + [anon_sym_bit_DASHshl2] = ACTIONS(2227), + [anon_sym_bit_DASHshr2] = ACTIONS(2227), + [anon_sym_bit_DASHand2] = ACTIONS(2227), + [anon_sym_bit_DASHxor2] = ACTIONS(2227), + [anon_sym_bit_DASHor2] = ACTIONS(2227), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [anon_sym_COLON2] = ACTIONS(1716), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(808)] = { + [aux_sym__repeat_newline] = STATE(1148), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(808), - [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_COLON2] = 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_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(809)] = { [sym_comment] = STATE(809), - [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_COLON2] = 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_in] = ACTIONS(2470), + [sym__newline] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_err_GT_PIPE] = ACTIONS(2470), + [anon_sym_out_GT_PIPE] = ACTIONS(2470), + [anon_sym_e_GT_PIPE] = ACTIONS(2470), + [anon_sym_o_GT_PIPE] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2470), + [anon_sym_RPAREN] = ACTIONS(2470), + [anon_sym_GT2] = ACTIONS(2472), + [anon_sym_DASH2] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_EQ_GT] = ACTIONS(2470), + [anon_sym_STAR2] = ACTIONS(2472), + [anon_sym_and2] = ACTIONS(2470), + [anon_sym_xor2] = ACTIONS(2470), + [anon_sym_or2] = ACTIONS(2470), + [anon_sym_not_DASHin2] = ACTIONS(2470), + [anon_sym_has2] = ACTIONS(2470), + [anon_sym_not_DASHhas2] = ACTIONS(2470), + [anon_sym_starts_DASHwith2] = ACTIONS(2470), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2470), + [anon_sym_ends_DASHwith2] = ACTIONS(2470), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2470), + [anon_sym_EQ_EQ2] = ACTIONS(2470), + [anon_sym_BANG_EQ2] = ACTIONS(2470), + [anon_sym_LT2] = ACTIONS(2472), + [anon_sym_LT_EQ2] = ACTIONS(2470), + [anon_sym_GT_EQ2] = ACTIONS(2470), + [anon_sym_EQ_TILDE2] = ACTIONS(2470), + [anon_sym_BANG_TILDE2] = ACTIONS(2470), + [anon_sym_like2] = ACTIONS(2470), + [anon_sym_not_DASHlike2] = ACTIONS(2470), + [anon_sym_STAR_STAR2] = ACTIONS(2470), + [anon_sym_PLUS_PLUS2] = ACTIONS(2470), + [anon_sym_SLASH2] = ACTIONS(2472), + [anon_sym_mod2] = ACTIONS(2470), + [anon_sym_SLASH_SLASH2] = ACTIONS(2470), + [anon_sym_PLUS2] = ACTIONS(2472), + [anon_sym_bit_DASHshl2] = ACTIONS(2470), + [anon_sym_bit_DASHshr2] = ACTIONS(2470), + [anon_sym_bit_DASHand2] = ACTIONS(2470), + [anon_sym_bit_DASHxor2] = ACTIONS(2470), + [anon_sym_bit_DASHor2] = ACTIONS(2470), + [anon_sym_COLON2] = ACTIONS(2470), + [anon_sym_err_GT] = ACTIONS(2472), + [anon_sym_out_GT] = ACTIONS(2472), + [anon_sym_e_GT] = ACTIONS(2472), + [anon_sym_o_GT] = ACTIONS(2472), + [anon_sym_err_PLUSout_GT] = ACTIONS(2472), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2472), + [anon_sym_o_PLUSe_GT] = ACTIONS(2472), + [anon_sym_e_PLUSo_GT] = ACTIONS(2472), + [anon_sym_err_GT_GT] = ACTIONS(2470), + [anon_sym_out_GT_GT] = ACTIONS(2470), + [anon_sym_e_GT_GT] = ACTIONS(2470), + [anon_sym_o_GT_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2470), [anon_sym_POUND] = ACTIONS(3), }, [STATE(810)] = { - [aux_sym__repeat_newline] = STATE(1109), - [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2470), + [sym__newline] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_err_GT_PIPE] = ACTIONS(2470), + [anon_sym_out_GT_PIPE] = ACTIONS(2470), + [anon_sym_e_GT_PIPE] = ACTIONS(2470), + [anon_sym_o_GT_PIPE] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2470), + [anon_sym_RPAREN] = ACTIONS(2470), + [anon_sym_GT2] = ACTIONS(2472), + [anon_sym_DASH2] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_EQ_GT] = ACTIONS(2470), + [anon_sym_STAR2] = ACTIONS(2472), + [anon_sym_and2] = ACTIONS(2470), + [anon_sym_xor2] = ACTIONS(2470), + [anon_sym_or2] = ACTIONS(2470), + [anon_sym_not_DASHin2] = ACTIONS(2470), + [anon_sym_has2] = ACTIONS(2470), + [anon_sym_not_DASHhas2] = ACTIONS(2470), + [anon_sym_starts_DASHwith2] = ACTIONS(2470), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2470), + [anon_sym_ends_DASHwith2] = ACTIONS(2470), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2470), + [anon_sym_EQ_EQ2] = ACTIONS(2470), + [anon_sym_BANG_EQ2] = ACTIONS(2470), + [anon_sym_LT2] = ACTIONS(2472), + [anon_sym_LT_EQ2] = ACTIONS(2470), + [anon_sym_GT_EQ2] = ACTIONS(2470), + [anon_sym_EQ_TILDE2] = ACTIONS(2470), + [anon_sym_BANG_TILDE2] = ACTIONS(2470), + [anon_sym_like2] = ACTIONS(2470), + [anon_sym_not_DASHlike2] = ACTIONS(2470), + [anon_sym_STAR_STAR2] = ACTIONS(2470), + [anon_sym_PLUS_PLUS2] = ACTIONS(2470), + [anon_sym_SLASH2] = ACTIONS(2472), + [anon_sym_mod2] = ACTIONS(2470), + [anon_sym_SLASH_SLASH2] = ACTIONS(2470), + [anon_sym_PLUS2] = ACTIONS(2472), + [anon_sym_bit_DASHshl2] = ACTIONS(2470), + [anon_sym_bit_DASHshr2] = ACTIONS(2470), + [anon_sym_bit_DASHand2] = ACTIONS(2470), + [anon_sym_bit_DASHxor2] = ACTIONS(2470), + [anon_sym_bit_DASHor2] = ACTIONS(2470), + [anon_sym_COLON2] = ACTIONS(2470), + [anon_sym_err_GT] = ACTIONS(2472), + [anon_sym_out_GT] = ACTIONS(2472), + [anon_sym_e_GT] = ACTIONS(2472), + [anon_sym_o_GT] = ACTIONS(2472), + [anon_sym_err_PLUSout_GT] = ACTIONS(2472), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2472), + [anon_sym_o_PLUSe_GT] = ACTIONS(2472), + [anon_sym_e_PLUSo_GT] = ACTIONS(2472), + [anon_sym_err_GT_GT] = ACTIONS(2470), + [anon_sym_out_GT_GT] = ACTIONS(2470), + [anon_sym_e_GT_GT] = ACTIONS(2470), + [anon_sym_o_GT_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2470), [anon_sym_POUND] = ACTIONS(3), }, [STATE(811)] = { + [aux_sym__repeat_newline] = STATE(1000), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(811), - [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_COLON2] = 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_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(812)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1719), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(996), + [sym__unquoted_with_expr] = STATE(1333), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(812), - [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_COLON2] = 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_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(813)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1169), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(1048), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(813), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(814)] = { + [sym_comment] = STATE(814), + [anon_sym_in] = ACTIONS(2474), + [sym__newline] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_err_GT_PIPE] = ACTIONS(2474), + [anon_sym_out_GT_PIPE] = ACTIONS(2474), + [anon_sym_e_GT_PIPE] = ACTIONS(2474), + [anon_sym_o_GT_PIPE] = ACTIONS(2474), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2474), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2474), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2474), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2474), + [anon_sym_RPAREN] = ACTIONS(2474), + [anon_sym_GT2] = ACTIONS(2476), + [anon_sym_DASH2] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_EQ_GT] = ACTIONS(2474), + [anon_sym_STAR2] = ACTIONS(2476), + [anon_sym_and2] = ACTIONS(2474), + [anon_sym_xor2] = ACTIONS(2474), + [anon_sym_or2] = ACTIONS(2474), + [anon_sym_not_DASHin2] = ACTIONS(2474), + [anon_sym_has2] = ACTIONS(2474), + [anon_sym_not_DASHhas2] = ACTIONS(2474), + [anon_sym_starts_DASHwith2] = ACTIONS(2474), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2474), + [anon_sym_ends_DASHwith2] = ACTIONS(2474), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2474), + [anon_sym_EQ_EQ2] = ACTIONS(2474), + [anon_sym_BANG_EQ2] = ACTIONS(2474), + [anon_sym_LT2] = ACTIONS(2476), + [anon_sym_LT_EQ2] = ACTIONS(2474), + [anon_sym_GT_EQ2] = ACTIONS(2474), + [anon_sym_EQ_TILDE2] = ACTIONS(2474), + [anon_sym_BANG_TILDE2] = ACTIONS(2474), + [anon_sym_like2] = ACTIONS(2474), + [anon_sym_not_DASHlike2] = ACTIONS(2474), + [anon_sym_STAR_STAR2] = ACTIONS(2474), + [anon_sym_PLUS_PLUS2] = ACTIONS(2474), + [anon_sym_SLASH2] = ACTIONS(2476), + [anon_sym_mod2] = ACTIONS(2474), + [anon_sym_SLASH_SLASH2] = ACTIONS(2474), + [anon_sym_PLUS2] = ACTIONS(2476), + [anon_sym_bit_DASHshl2] = ACTIONS(2474), + [anon_sym_bit_DASHshr2] = ACTIONS(2474), + [anon_sym_bit_DASHand2] = ACTIONS(2474), + [anon_sym_bit_DASHxor2] = ACTIONS(2474), + [anon_sym_bit_DASHor2] = ACTIONS(2474), + [anon_sym_COLON2] = ACTIONS(2474), + [anon_sym_err_GT] = ACTIONS(2476), + [anon_sym_out_GT] = ACTIONS(2476), + [anon_sym_e_GT] = ACTIONS(2476), + [anon_sym_o_GT] = ACTIONS(2476), + [anon_sym_err_PLUSout_GT] = ACTIONS(2476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2476), + [anon_sym_o_PLUSe_GT] = ACTIONS(2476), + [anon_sym_e_PLUSo_GT] = ACTIONS(2476), + [anon_sym_err_GT_GT] = ACTIONS(2474), + [anon_sym_out_GT_GT] = ACTIONS(2474), + [anon_sym_e_GT_GT] = ACTIONS(2474), + [anon_sym_o_GT_GT] = ACTIONS(2474), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2474), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2474), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2474), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(815)] = { + [sym_comment] = STATE(815), + [anon_sym_in] = ACTIONS(2478), + [sym__newline] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_PIPE] = ACTIONS(2478), + [anon_sym_err_GT_PIPE] = ACTIONS(2478), + [anon_sym_out_GT_PIPE] = ACTIONS(2478), + [anon_sym_e_GT_PIPE] = ACTIONS(2478), + [anon_sym_o_GT_PIPE] = ACTIONS(2478), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2478), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2478), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2478), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2478), + [anon_sym_RPAREN] = ACTIONS(2478), + [anon_sym_GT2] = ACTIONS(2480), + [anon_sym_DASH2] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(2478), + [anon_sym_STAR2] = ACTIONS(2480), + [anon_sym_and2] = ACTIONS(2478), + [anon_sym_xor2] = ACTIONS(2478), + [anon_sym_or2] = ACTIONS(2478), + [anon_sym_not_DASHin2] = ACTIONS(2478), + [anon_sym_has2] = ACTIONS(2478), + [anon_sym_not_DASHhas2] = ACTIONS(2478), + [anon_sym_starts_DASHwith2] = ACTIONS(2478), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2478), + [anon_sym_ends_DASHwith2] = ACTIONS(2478), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2478), + [anon_sym_EQ_EQ2] = ACTIONS(2478), + [anon_sym_BANG_EQ2] = ACTIONS(2478), + [anon_sym_LT2] = ACTIONS(2480), + [anon_sym_LT_EQ2] = ACTIONS(2478), + [anon_sym_GT_EQ2] = ACTIONS(2478), + [anon_sym_EQ_TILDE2] = ACTIONS(2478), + [anon_sym_BANG_TILDE2] = ACTIONS(2478), + [anon_sym_like2] = ACTIONS(2478), + [anon_sym_not_DASHlike2] = ACTIONS(2478), + [anon_sym_STAR_STAR2] = ACTIONS(2478), + [anon_sym_PLUS_PLUS2] = ACTIONS(2478), + [anon_sym_SLASH2] = ACTIONS(2480), + [anon_sym_mod2] = ACTIONS(2478), + [anon_sym_SLASH_SLASH2] = ACTIONS(2478), + [anon_sym_PLUS2] = ACTIONS(2480), + [anon_sym_bit_DASHshl2] = ACTIONS(2478), + [anon_sym_bit_DASHshr2] = ACTIONS(2478), + [anon_sym_bit_DASHand2] = ACTIONS(2478), + [anon_sym_bit_DASHxor2] = ACTIONS(2478), + [anon_sym_bit_DASHor2] = ACTIONS(2478), + [anon_sym_COLON2] = ACTIONS(2478), + [anon_sym_err_GT] = ACTIONS(2480), + [anon_sym_out_GT] = ACTIONS(2480), + [anon_sym_e_GT] = ACTIONS(2480), + [anon_sym_o_GT] = ACTIONS(2480), + [anon_sym_err_PLUSout_GT] = ACTIONS(2480), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2480), + [anon_sym_o_PLUSe_GT] = ACTIONS(2480), + [anon_sym_e_PLUSo_GT] = ACTIONS(2480), + [anon_sym_err_GT_GT] = ACTIONS(2478), + [anon_sym_out_GT_GT] = ACTIONS(2478), + [anon_sym_e_GT_GT] = ACTIONS(2478), + [anon_sym_o_GT_GT] = ACTIONS(2478), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2478), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2478), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2478), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(816)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1720), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1042), + [sym__unquoted_with_expr] = STATE(1346), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(816), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(817)] = { + [aux_sym__repeat_newline] = STATE(1022), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(817), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(818)] = { + [aux_sym__repeat_newline] = STATE(1023), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(818), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(819)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1253), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(956), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(819), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(814)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1185), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(814), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [STATE(820)] = { + [aux_sym__repeat_newline] = STATE(1024), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(820), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(821)] = { + [aux_sym__repeat_newline] = STATE(1025), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(821), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(822)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1254), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(739), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(822), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(815)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1189), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(947), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(815), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [STATE(823)] = { + [aux_sym__repeat_newline] = STATE(1026), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(823), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(824)] = { + [aux_sym__repeat_newline] = STATE(1028), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(824), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(825)] = { + [aux_sym__repeat_newline] = STATE(1029), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(825), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(826)] = { + [aux_sym__repeat_newline] = STATE(1030), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(826), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(827)] = { + [aux_sym__repeat_newline] = STATE(1032), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(827), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(828)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1255), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(958), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(828), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(816)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1193), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(686), + [STATE(829)] = { + [aux_sym__repeat_newline] = STATE(1033), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(829), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(830)] = { + [aux_sym__repeat_newline] = STATE(1034), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(830), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(831)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1692), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(723), [sym__unquoted_with_expr] = STATE(956), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(816), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(831), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(817)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1195), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(924), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(817), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [STATE(832)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1693), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(739), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(832), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(818)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1196), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(943), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(818), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [STATE(833)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1694), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(958), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(833), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(819)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1202), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(921), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(819), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [STATE(834)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1695), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(717), + [sym__unquoted_with_expr] = STATE(988), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(834), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(820)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1212), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(950), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(820), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [STATE(835)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1696), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(961), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(835), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(821)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(955), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(691), - [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(821), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [STATE(836)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1697), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(836), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(822)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1222), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(693), - [sym__unquoted_with_expr] = STATE(948), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(822), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [STATE(837)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1698), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(963), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(837), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(823)] = { - [aux_sym__repeat_newline] = STATE(1111), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(823), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(824)] = { - [sym_comment] = STATE(824), - [anon_sym_if] = 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_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_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(825)] = { - [aux_sym__repeat_newline] = STATE(1113), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(825), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(826)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1236), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(695), - [sym__unquoted_with_expr] = STATE(945), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(826), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [STATE(838)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1699), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(738), + [sym__unquoted_with_expr] = STATE(964), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(838), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(827)] = { - [aux_sym__repeat_newline] = STATE(1116), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(827), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(828)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1238), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(828), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [STATE(839)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(965), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(741), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(839), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2071), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(829)] = { - [aux_sym__repeat_newline] = STATE(1118), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(829), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(830)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1333), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(988), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4844), - [sym_comment] = STATE(830), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [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(2505), - [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(2403), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(831)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1335), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1003), - [sym__unquoted_with_expr] = STATE(1336), - [sym__unquoted_anonymous_prefix] = STATE(4844), - [sym_comment] = STATE(831), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [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(2505), - [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(2403), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(832)] = { - [sym_cell_path] = STATE(1279), - [sym_path] = STATE(715), - [sym_comment] = STATE(832), - [aux_sym__where_predicate_lhs_repeat1] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1887), - [sym__newline] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_err_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_GT_PIPE] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), - [anon_sym_GT2] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_STAR2] = ACTIONS(1889), - [anon_sym_and2] = ACTIONS(1887), - [anon_sym_xor2] = ACTIONS(1887), - [anon_sym_or2] = ACTIONS(1887), - [anon_sym_not_DASHin2] = ACTIONS(1887), - [anon_sym_has2] = ACTIONS(1887), - [anon_sym_not_DASHhas2] = ACTIONS(1887), - [anon_sym_starts_DASHwith2] = ACTIONS(1887), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1887), - [anon_sym_ends_DASHwith2] = ACTIONS(1887), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1887), - [anon_sym_EQ_EQ2] = ACTIONS(1887), - [anon_sym_BANG_EQ2] = ACTIONS(1887), - [anon_sym_LT2] = ACTIONS(1889), - [anon_sym_LT_EQ2] = ACTIONS(1887), - [anon_sym_GT_EQ2] = ACTIONS(1887), - [anon_sym_EQ_TILDE2] = ACTIONS(1887), - [anon_sym_BANG_TILDE2] = ACTIONS(1887), - [anon_sym_like2] = ACTIONS(1887), - [anon_sym_not_DASHlike2] = ACTIONS(1887), - [anon_sym_STAR_STAR2] = ACTIONS(1887), - [anon_sym_PLUS_PLUS2] = ACTIONS(1887), - [anon_sym_SLASH2] = ACTIONS(1889), - [anon_sym_mod2] = ACTIONS(1887), - [anon_sym_SLASH_SLASH2] = ACTIONS(1887), - [anon_sym_PLUS2] = ACTIONS(1889), - [anon_sym_bit_DASHshl2] = ACTIONS(1887), - [anon_sym_bit_DASHshr2] = ACTIONS(1887), - [anon_sym_bit_DASHand2] = ACTIONS(1887), - [anon_sym_bit_DASHxor2] = ACTIONS(1887), - [anon_sym_bit_DASHor2] = ACTIONS(1887), - [anon_sym_DOT2] = ACTIONS(2358), - [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(1887), - [anon_sym_out_GT_GT] = ACTIONS(1887), - [anon_sym_e_GT_GT] = ACTIONS(1887), - [anon_sym_o_GT_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(833)] = { - [sym_cell_path] = STATE(1353), - [sym_path] = STATE(715), - [sym_comment] = STATE(833), - [aux_sym__where_predicate_lhs_repeat1] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [sym__newline] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_err_GT_PIPE] = ACTIONS(1891), - [anon_sym_out_GT_PIPE] = ACTIONS(1891), - [anon_sym_e_GT_PIPE] = ACTIONS(1891), - [anon_sym_o_GT_PIPE] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1891), - [anon_sym_GT2] = ACTIONS(1893), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_STAR2] = ACTIONS(1893), - [anon_sym_and2] = ACTIONS(1891), - [anon_sym_xor2] = ACTIONS(1891), - [anon_sym_or2] = ACTIONS(1891), - [anon_sym_not_DASHin2] = ACTIONS(1891), - [anon_sym_has2] = ACTIONS(1891), - [anon_sym_not_DASHhas2] = ACTIONS(1891), - [anon_sym_starts_DASHwith2] = ACTIONS(1891), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1891), - [anon_sym_ends_DASHwith2] = ACTIONS(1891), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1891), - [anon_sym_EQ_EQ2] = ACTIONS(1891), - [anon_sym_BANG_EQ2] = ACTIONS(1891), - [anon_sym_LT2] = ACTIONS(1893), - [anon_sym_LT_EQ2] = ACTIONS(1891), - [anon_sym_GT_EQ2] = ACTIONS(1891), - [anon_sym_EQ_TILDE2] = ACTIONS(1891), - [anon_sym_BANG_TILDE2] = ACTIONS(1891), - [anon_sym_like2] = ACTIONS(1891), - [anon_sym_not_DASHlike2] = ACTIONS(1891), - [anon_sym_STAR_STAR2] = ACTIONS(1891), - [anon_sym_PLUS_PLUS2] = ACTIONS(1891), - [anon_sym_SLASH2] = ACTIONS(1893), - [anon_sym_mod2] = ACTIONS(1891), - [anon_sym_SLASH_SLASH2] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1893), - [anon_sym_bit_DASHshl2] = ACTIONS(1891), - [anon_sym_bit_DASHshr2] = ACTIONS(1891), - [anon_sym_bit_DASHand2] = ACTIONS(1891), - [anon_sym_bit_DASHxor2] = ACTIONS(1891), - [anon_sym_bit_DASHor2] = ACTIONS(1891), - [anon_sym_DOT2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(1893), - [anon_sym_out_GT] = ACTIONS(1893), - [anon_sym_e_GT] = ACTIONS(1893), - [anon_sym_o_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT] = ACTIONS(1893), - [anon_sym_err_GT_GT] = ACTIONS(1891), - [anon_sym_out_GT_GT] = ACTIONS(1891), - [anon_sym_e_GT_GT] = ACTIONS(1891), - [anon_sym_o_GT_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(834)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1337), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1007), - [sym__unquoted_with_expr] = STATE(1338), - [sym__unquoted_anonymous_prefix] = STATE(4844), - [sym_comment] = STATE(834), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [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(2505), - [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(2403), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(835)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2212), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(835), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(840)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1700), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(840), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(836)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2228), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(836), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(841)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2255), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(963), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(841), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(837)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2243), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(947), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(837), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(842)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1702), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(969), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(842), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(838)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(956), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(838), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(843)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1703), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(722), + [sym__unquoted_with_expr] = STATE(970), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(843), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(2081), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(839)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2232), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(924), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(839), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(844)] = { + [aux_sym__repeat_newline] = STATE(1035), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(844), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(845)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1256), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(717), + [sym__unquoted_with_expr] = STATE(988), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(845), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(840)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2233), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(943), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(840), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(846)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1257), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(961), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(846), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(841)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2236), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(921), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(841), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(847)] = { + [sym_comment] = STATE(847), + [anon_sym_in] = ACTIONS(1784), + [sym__newline] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_err_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_GT_PIPE] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), + [anon_sym_RPAREN] = ACTIONS(1784), + [anon_sym_GT2] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1784), + [anon_sym_xor2] = ACTIONS(1784), + [anon_sym_or2] = ACTIONS(1784), + [anon_sym_not_DASHin2] = ACTIONS(1784), + [anon_sym_has2] = ACTIONS(1784), + [anon_sym_not_DASHhas2] = ACTIONS(1784), + [anon_sym_starts_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), + [anon_sym_ends_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), + [anon_sym_EQ_EQ2] = ACTIONS(1784), + [anon_sym_BANG_EQ2] = ACTIONS(1784), + [anon_sym_LT2] = ACTIONS(1786), + [anon_sym_LT_EQ2] = ACTIONS(1784), + [anon_sym_GT_EQ2] = ACTIONS(1784), + [anon_sym_EQ_TILDE2] = ACTIONS(1784), + [anon_sym_BANG_TILDE2] = ACTIONS(1784), + [anon_sym_like2] = ACTIONS(1784), + [anon_sym_not_DASHlike2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1784), + [anon_sym_PLUS_PLUS2] = ACTIONS(1784), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1784), + [anon_sym_SLASH_SLASH2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_bit_DASHshl2] = ACTIONS(1784), + [anon_sym_bit_DASHshr2] = ACTIONS(1784), + [anon_sym_bit_DASHand2] = ACTIONS(1784), + [anon_sym_bit_DASHxor2] = ACTIONS(1784), + [anon_sym_bit_DASHor2] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(2486), + [aux_sym__immediate_decimal_token5] = ACTIONS(1790), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1784), + [anon_sym_out_GT_GT] = ACTIONS(1784), + [anon_sym_e_GT_GT] = ACTIONS(1784), + [anon_sym_o_GT_GT] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(848)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1258), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(848), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(842)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2237), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(950), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(842), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(849)] = { + [sym_comment] = STATE(849), + [anon_sym_in] = ACTIONS(2488), + [sym__newline] = ACTIONS(2490), + [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(2488), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_STAR2] = ACTIONS(2495), + [anon_sym_and2] = ACTIONS(2488), + [anon_sym_xor2] = ACTIONS(2488), + [anon_sym_or2] = ACTIONS(2488), + [anon_sym_not_DASHin2] = ACTIONS(2488), + [anon_sym_has2] = ACTIONS(2488), + [anon_sym_not_DASHhas2] = ACTIONS(2488), + [anon_sym_starts_DASHwith2] = ACTIONS(2488), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2488), + [anon_sym_ends_DASHwith2] = ACTIONS(2488), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2488), + [anon_sym_EQ_EQ2] = ACTIONS(2488), + [anon_sym_BANG_EQ2] = ACTIONS(2488), + [anon_sym_LT2] = ACTIONS(2495), + [anon_sym_LT_EQ2] = ACTIONS(2488), + [anon_sym_GT_EQ2] = ACTIONS(2488), + [anon_sym_EQ_TILDE2] = ACTIONS(2488), + [anon_sym_BANG_TILDE2] = ACTIONS(2488), + [anon_sym_like2] = ACTIONS(2488), + [anon_sym_not_DASHlike2] = ACTIONS(2488), + [anon_sym_STAR_STAR2] = ACTIONS(2488), + [anon_sym_PLUS_PLUS2] = ACTIONS(2488), + [anon_sym_SLASH2] = ACTIONS(2495), + [anon_sym_mod2] = ACTIONS(2488), + [anon_sym_SLASH_SLASH2] = ACTIONS(2488), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_bit_DASHshl2] = ACTIONS(2488), + [anon_sym_bit_DASHshr2] = ACTIONS(2488), + [anon_sym_bit_DASHand2] = ACTIONS(2488), + [anon_sym_bit_DASHxor2] = ACTIONS(2488), + [anon_sym_bit_DASHor2] = ACTIONS(2488), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [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(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(850)] = { + [aux_sym__repeat_newline] = STATE(1036), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(850), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(851)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1259), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(963), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(851), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(843)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(955), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(691), - [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(843), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(852)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1260), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(738), + [sym__unquoted_with_expr] = STATE(964), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(852), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(844)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2209), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(693), - [sym__unquoted_with_expr] = STATE(948), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(844), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(853)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(965), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(741), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(853), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(845)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2219), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(942), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(845), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(854)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1261), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(854), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(846)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(695), - [sym__unquoted_with_expr] = STATE(945), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(846), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(855)] = { + [sym_cell_path] = STATE(1300), + [sym_path] = STATE(703), + [sym_comment] = STATE(855), + [aux_sym__where_predicate_lhs_repeat1] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1893), + [anon_sym_in] = ACTIONS(1893), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_GT2] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_STAR2] = ACTIONS(1895), + [anon_sym_and2] = ACTIONS(1893), + [anon_sym_xor2] = ACTIONS(1893), + [anon_sym_or2] = ACTIONS(1893), + [anon_sym_not_DASHin2] = ACTIONS(1893), + [anon_sym_has2] = ACTIONS(1893), + [anon_sym_not_DASHhas2] = ACTIONS(1893), + [anon_sym_starts_DASHwith2] = ACTIONS(1893), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1893), + [anon_sym_ends_DASHwith2] = ACTIONS(1893), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1893), + [anon_sym_EQ_EQ2] = ACTIONS(1893), + [anon_sym_BANG_EQ2] = ACTIONS(1893), + [anon_sym_LT2] = ACTIONS(1895), + [anon_sym_LT_EQ2] = ACTIONS(1893), + [anon_sym_GT_EQ2] = ACTIONS(1893), + [anon_sym_EQ_TILDE2] = ACTIONS(1893), + [anon_sym_BANG_TILDE2] = ACTIONS(1893), + [anon_sym_like2] = ACTIONS(1893), + [anon_sym_not_DASHlike2] = ACTIONS(1893), + [anon_sym_STAR_STAR2] = ACTIONS(1893), + [anon_sym_PLUS_PLUS2] = ACTIONS(1893), + [anon_sym_SLASH2] = ACTIONS(1895), + [anon_sym_mod2] = ACTIONS(1893), + [anon_sym_SLASH_SLASH2] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_bit_DASHshl2] = ACTIONS(1893), + [anon_sym_bit_DASHshr2] = ACTIONS(1893), + [anon_sym_bit_DASHand2] = ACTIONS(1893), + [anon_sym_bit_DASHxor2] = ACTIONS(1893), + [anon_sym_bit_DASHor2] = ACTIONS(1893), + [anon_sym_DOT2] = ACTIONS(2362), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(856)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1262), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(856), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(847)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2223), - [sym_expr_parenthesized] = STATE(1987), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2013), - [sym_val_variable] = STATE(1967), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1785), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(847), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [STATE(857)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1263), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(969), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(857), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2525), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(848)] = { - [sym_comment] = STATE(848), - [anon_sym_in] = ACTIONS(2527), - [sym__newline] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_PIPE] = ACTIONS(2527), - [anon_sym_err_GT_PIPE] = ACTIONS(2527), - [anon_sym_out_GT_PIPE] = ACTIONS(2527), - [anon_sym_e_GT_PIPE] = ACTIONS(2527), - [anon_sym_o_GT_PIPE] = ACTIONS(2527), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2527), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2527), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2527), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2527), - [anon_sym_RPAREN] = ACTIONS(2527), - [anon_sym_GT2] = ACTIONS(2529), - [anon_sym_DASH2] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_EQ_GT] = ACTIONS(2527), - [anon_sym_STAR2] = ACTIONS(2529), - [anon_sym_and2] = ACTIONS(2527), - [anon_sym_xor2] = ACTIONS(2527), - [anon_sym_or2] = ACTIONS(2527), - [anon_sym_not_DASHin2] = ACTIONS(2527), - [anon_sym_has2] = ACTIONS(2527), - [anon_sym_not_DASHhas2] = ACTIONS(2527), - [anon_sym_starts_DASHwith2] = ACTIONS(2527), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2527), - [anon_sym_ends_DASHwith2] = ACTIONS(2527), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2527), - [anon_sym_EQ_EQ2] = ACTIONS(2527), - [anon_sym_BANG_EQ2] = ACTIONS(2527), - [anon_sym_LT2] = ACTIONS(2529), - [anon_sym_LT_EQ2] = ACTIONS(2527), - [anon_sym_GT_EQ2] = ACTIONS(2527), - [anon_sym_EQ_TILDE2] = ACTIONS(2527), - [anon_sym_BANG_TILDE2] = ACTIONS(2527), - [anon_sym_like2] = ACTIONS(2527), - [anon_sym_not_DASHlike2] = ACTIONS(2527), - [anon_sym_STAR_STAR2] = ACTIONS(2527), - [anon_sym_PLUS_PLUS2] = ACTIONS(2527), - [anon_sym_SLASH2] = ACTIONS(2529), - [anon_sym_mod2] = ACTIONS(2527), - [anon_sym_SLASH_SLASH2] = ACTIONS(2527), - [anon_sym_PLUS2] = ACTIONS(2529), - [anon_sym_bit_DASHshl2] = ACTIONS(2527), - [anon_sym_bit_DASHshr2] = ACTIONS(2527), - [anon_sym_bit_DASHand2] = ACTIONS(2527), - [anon_sym_bit_DASHxor2] = ACTIONS(2527), - [anon_sym_bit_DASHor2] = ACTIONS(2527), - [anon_sym_COLON2] = ACTIONS(2527), - [anon_sym_err_GT] = ACTIONS(2529), - [anon_sym_out_GT] = ACTIONS(2529), - [anon_sym_e_GT] = ACTIONS(2529), - [anon_sym_o_GT] = ACTIONS(2529), - [anon_sym_err_PLUSout_GT] = ACTIONS(2529), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2529), - [anon_sym_o_PLUSe_GT] = ACTIONS(2529), - [anon_sym_e_PLUSo_GT] = ACTIONS(2529), - [anon_sym_err_GT_GT] = ACTIONS(2527), - [anon_sym_out_GT_GT] = ACTIONS(2527), - [anon_sym_e_GT_GT] = ACTIONS(2527), - [anon_sym_o_GT_GT] = ACTIONS(2527), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2527), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2527), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2527), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2527), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(849)] = { - [sym_comment] = STATE(849), - [anon_sym_in] = ACTIONS(2531), - [sym__newline] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_PIPE] = ACTIONS(2531), - [anon_sym_err_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_GT_PIPE] = ACTIONS(2531), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2531), - [anon_sym_GT2] = ACTIONS(2533), - [anon_sym_DASH2] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_EQ_GT] = ACTIONS(2531), - [anon_sym_STAR2] = ACTIONS(2533), - [anon_sym_and2] = ACTIONS(2531), - [anon_sym_xor2] = ACTIONS(2531), - [anon_sym_or2] = ACTIONS(2531), - [anon_sym_not_DASHin2] = ACTIONS(2531), - [anon_sym_has2] = ACTIONS(2531), - [anon_sym_not_DASHhas2] = ACTIONS(2531), - [anon_sym_starts_DASHwith2] = ACTIONS(2531), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2531), - [anon_sym_ends_DASHwith2] = ACTIONS(2531), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2531), - [anon_sym_EQ_EQ2] = ACTIONS(2531), - [anon_sym_BANG_EQ2] = ACTIONS(2531), - [anon_sym_LT2] = ACTIONS(2533), - [anon_sym_LT_EQ2] = ACTIONS(2531), - [anon_sym_GT_EQ2] = ACTIONS(2531), - [anon_sym_EQ_TILDE2] = ACTIONS(2531), - [anon_sym_BANG_TILDE2] = ACTIONS(2531), - [anon_sym_like2] = ACTIONS(2531), - [anon_sym_not_DASHlike2] = ACTIONS(2531), - [anon_sym_STAR_STAR2] = ACTIONS(2531), - [anon_sym_PLUS_PLUS2] = ACTIONS(2531), - [anon_sym_SLASH2] = ACTIONS(2533), - [anon_sym_mod2] = ACTIONS(2531), - [anon_sym_SLASH_SLASH2] = ACTIONS(2531), - [anon_sym_PLUS2] = ACTIONS(2533), - [anon_sym_bit_DASHshl2] = ACTIONS(2531), - [anon_sym_bit_DASHshr2] = ACTIONS(2531), - [anon_sym_bit_DASHand2] = ACTIONS(2531), - [anon_sym_bit_DASHxor2] = ACTIONS(2531), - [anon_sym_bit_DASHor2] = ACTIONS(2531), - [anon_sym_COLON2] = ACTIONS(2531), - [anon_sym_err_GT] = ACTIONS(2533), - [anon_sym_out_GT] = ACTIONS(2533), - [anon_sym_e_GT] = ACTIONS(2533), - [anon_sym_o_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT] = ACTIONS(2533), - [anon_sym_err_GT_GT] = ACTIONS(2531), - [anon_sym_out_GT_GT] = ACTIONS(2531), - [anon_sym_e_GT_GT] = ACTIONS(2531), - [anon_sym_o_GT_GT] = ACTIONS(2531), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2531), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2531), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2531), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2531), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(850)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1339), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), + [STATE(858)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1352), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1340), - [sym__unquoted_anonymous_prefix] = STATE(4844), - [sym_comment] = STATE(850), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1055), + [sym__unquoted_with_expr] = STATE(1299), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(858), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1304), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2436), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), [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(2505), + [sym_val_date] = ACTIONS(2446), [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(2403), + [aux_sym_unquoted_token1] = ACTIONS(2448), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(851)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1341), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), + [STATE(859)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1721), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1014), - [sym__unquoted_with_expr] = STATE(1342), - [sym__unquoted_anonymous_prefix] = STATE(4844), - [sym_comment] = STATE(851), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1083), + [sym__unquoted_with_expr] = STATE(1340), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(859), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1304), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2436), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), [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(2505), + [sym_val_date] = ACTIONS(2446), [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(2403), + [aux_sym_unquoted_token1] = ACTIONS(2448), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(852)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2235), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(695), - [sym__unquoted_with_expr] = STATE(945), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(852), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [STATE(860)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1264), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(927), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(722), + [sym__unquoted_with_expr] = STATE(970), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(860), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(1939), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(1949), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(853)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(2242), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1965), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1761), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(853), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_null] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [STATE(861)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1362), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1009), + [sym__unquoted_with_expr] = STATE(1289), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(861), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [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(2515), + [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(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(862)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2232), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(956), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(862), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), - [anon_sym_DOT_DOT_LT] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2012), + [sym_val_date] = ACTIONS(2535), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(854)] = { - [sym_cell_path] = STATE(1313), - [sym_path] = STATE(715), - [sym_comment] = STATE(854), - [aux_sym__where_predicate_lhs_repeat1] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1911), - [anon_sym_in] = ACTIONS(1911), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_GT2] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1911), - [anon_sym_STAR2] = ACTIONS(1913), - [anon_sym_and2] = ACTIONS(1911), - [anon_sym_xor2] = ACTIONS(1911), - [anon_sym_or2] = ACTIONS(1911), - [anon_sym_not_DASHin2] = ACTIONS(1911), - [anon_sym_has2] = ACTIONS(1911), - [anon_sym_not_DASHhas2] = ACTIONS(1911), - [anon_sym_starts_DASHwith2] = ACTIONS(1911), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1911), - [anon_sym_ends_DASHwith2] = ACTIONS(1911), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1911), - [anon_sym_EQ_EQ2] = ACTIONS(1911), - [anon_sym_BANG_EQ2] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LT_EQ2] = ACTIONS(1911), - [anon_sym_GT_EQ2] = ACTIONS(1911), - [anon_sym_EQ_TILDE2] = ACTIONS(1911), - [anon_sym_BANG_TILDE2] = ACTIONS(1911), - [anon_sym_like2] = ACTIONS(1911), - [anon_sym_not_DASHlike2] = ACTIONS(1911), - [anon_sym_STAR_STAR2] = ACTIONS(1911), - [anon_sym_PLUS_PLUS2] = ACTIONS(1911), - [anon_sym_SLASH2] = ACTIONS(1913), - [anon_sym_mod2] = ACTIONS(1911), - [anon_sym_SLASH_SLASH2] = ACTIONS(1911), - [anon_sym_PLUS2] = ACTIONS(1913), - [anon_sym_bit_DASHshl2] = ACTIONS(1911), - [anon_sym_bit_DASHshr2] = ACTIONS(1911), - [anon_sym_bit_DASHand2] = ACTIONS(1911), - [anon_sym_bit_DASHxor2] = ACTIONS(1911), - [anon_sym_bit_DASHor2] = ACTIONS(1911), - [anon_sym_DOT2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(1913), - [anon_sym_out_GT] = ACTIONS(1913), - [anon_sym_e_GT] = ACTIONS(1913), - [anon_sym_o_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT] = ACTIONS(1913), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(855)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1343), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), + [STATE(863)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1322), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1138), - [sym__unquoted_with_expr] = STATE(1344), - [sym__unquoted_anonymous_prefix] = STATE(4844), - [sym_comment] = STATE(855), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1066), + [sym__unquoted_with_expr] = STATE(1325), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(863), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1304), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2505), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), [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(2505), + [sym_val_date] = ACTIONS(2515), [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(2403), + [aux_sym_unquoted_token1] = ACTIONS(2448), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(856)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1345), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), + [STATE(864)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1351), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1346), - [sym__unquoted_anonymous_prefix] = STATE(4844), - [sym_comment] = STATE(856), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1076), + [sym__unquoted_with_expr] = STATE(1317), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(864), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1304), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2505), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), [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(2505), + [sym_val_date] = ACTIONS(2515), [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(2403), + [aux_sym_unquoted_token1] = ACTIONS(2448), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(857)] = { - [aux_sym__repeat_newline] = STATE(879), - [sym_comment] = STATE(857), - [anon_sym_export] = ACTIONS(2535), - [anon_sym_alias] = ACTIONS(2537), - [anon_sym_let] = ACTIONS(2537), - [anon_sym_mut] = ACTIONS(2537), - [anon_sym_const] = ACTIONS(2537), - [aux_sym_cmd_identifier_token1] = ACTIONS(2535), - [anon_sym_def] = ACTIONS(2537), - [anon_sym_use] = ACTIONS(2537), - [anon_sym_export_DASHenv] = ACTIONS(2537), - [anon_sym_extern] = ACTIONS(2537), - [anon_sym_module] = ACTIONS(2537), - [anon_sym_for] = ACTIONS(2537), - [anon_sym_loop] = ACTIONS(2537), - [anon_sym_while] = ACTIONS(2537), - [anon_sym_if] = ACTIONS(2537), - [anon_sym_else] = ACTIONS(2537), - [anon_sym_try] = ACTIONS(2537), - [anon_sym_catch] = ACTIONS(2537), - [anon_sym_finally] = ACTIONS(2537), - [anon_sym_match] = ACTIONS(2537), - [anon_sym_in] = ACTIONS(2535), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2537), - [aux_sym_cmd_identifier_token4] = ACTIONS(2537), - [aux_sym_cmd_identifier_token5] = ACTIONS(2537), - [sym__newline] = ACTIONS(2316), - [anon_sym_PIPE] = ACTIONS(2539), - [anon_sym_err_GT_PIPE] = ACTIONS(2539), - [anon_sym_out_GT_PIPE] = ACTIONS(2539), - [anon_sym_e_GT_PIPE] = ACTIONS(2539), - [anon_sym_o_GT_PIPE] = ACTIONS(2539), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2539), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2539), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2539), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_DOT_DOT] = ACTIONS(2535), - [anon_sym_where] = ACTIONS(2537), - [aux_sym_expr_unary_token1] = ACTIONS(2537), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2537), - [anon_sym_DOT_DOT_LT] = ACTIONS(2537), - [aux_sym__val_number_decimal_token1] = ACTIONS(2535), - [aux_sym__val_number_decimal_token2] = ACTIONS(2537), - [aux_sym__val_number_decimal_token3] = ACTIONS(2537), - [aux_sym__val_number_decimal_token4] = ACTIONS(2537), - [aux_sym__val_number_token1] = ACTIONS(2537), - [aux_sym__val_number_token2] = ACTIONS(2537), - [aux_sym__val_number_token3] = ACTIONS(2537), - [anon_sym_0b] = ACTIONS(2535), - [anon_sym_0o] = ACTIONS(2535), - [anon_sym_0x] = ACTIONS(2535), - [sym_val_date] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_BQUOTE] = ACTIONS(2537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2537), - [anon_sym_CARET] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2537), - }, - [STATE(858)] = { - [sym_comment] = STATE(858), - [anon_sym_in] = ACTIONS(2364), - [sym__newline] = ACTIONS(2364), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_err_GT_PIPE] = ACTIONS(2364), - [anon_sym_out_GT_PIPE] = ACTIONS(2364), - [anon_sym_e_GT_PIPE] = ACTIONS(2364), - [anon_sym_o_GT_PIPE] = ACTIONS(2364), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), - [anon_sym_RPAREN] = ACTIONS(2364), - [anon_sym_GT2] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2371), - [anon_sym_and2] = ACTIONS(2364), - [anon_sym_xor2] = ACTIONS(2364), - [anon_sym_or2] = ACTIONS(2364), - [anon_sym_not_DASHin2] = ACTIONS(2364), - [anon_sym_has2] = ACTIONS(2364), - [anon_sym_not_DASHhas2] = ACTIONS(2364), - [anon_sym_starts_DASHwith2] = ACTIONS(2364), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), - [anon_sym_ends_DASHwith2] = ACTIONS(2364), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), - [anon_sym_EQ_EQ2] = ACTIONS(2364), - [anon_sym_BANG_EQ2] = ACTIONS(2364), - [anon_sym_LT2] = ACTIONS(2371), - [anon_sym_LT_EQ2] = ACTIONS(2364), - [anon_sym_GT_EQ2] = ACTIONS(2364), - [anon_sym_EQ_TILDE2] = ACTIONS(2364), - [anon_sym_BANG_TILDE2] = ACTIONS(2364), - [anon_sym_like2] = ACTIONS(2364), - [anon_sym_not_DASHlike2] = ACTIONS(2364), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2371), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2371), - [anon_sym_bit_DASHshl2] = ACTIONS(2364), - [anon_sym_bit_DASHshr2] = ACTIONS(2364), - [anon_sym_bit_DASHand2] = ACTIONS(2364), - [anon_sym_bit_DASHxor2] = ACTIONS(2364), - [anon_sym_bit_DASHor2] = ACTIONS(2364), - [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(2371), - [anon_sym_out_GT] = ACTIONS(2371), - [anon_sym_e_GT] = ACTIONS(2371), - [anon_sym_o_GT] = ACTIONS(2371), - [anon_sym_err_PLUSout_GT] = ACTIONS(2371), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2371), - [anon_sym_o_PLUSe_GT] = ACTIONS(2371), - [anon_sym_e_PLUSo_GT] = ACTIONS(2371), - [anon_sym_err_GT_GT] = ACTIONS(2364), - [anon_sym_out_GT_GT] = ACTIONS(2364), - [anon_sym_e_GT_GT] = ACTIONS(2364), - [anon_sym_o_GT_GT] = ACTIONS(2364), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(859)] = { - [aux_sym__repeat_newline] = STATE(1016), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(859), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(860)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1321), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(980), - [sym__unquoted_with_expr] = STATE(1322), - [sym__unquoted_anonymous_prefix] = STATE(4844), - [sym_comment] = STATE(860), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [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(2505), - [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(2403), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(861)] = { - [aux_sym__repeat_newline] = STATE(1020), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(861), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(862)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1323), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1037), - [sym__unquoted_with_expr] = STATE(1324), - [sym__unquoted_anonymous_prefix] = STATE(4844), - [sym_comment] = STATE(862), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [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(2505), - [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(2403), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(863)] = { - [aux_sym__repeat_newline] = STATE(1026), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(863), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(864)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1325), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), + [STATE(865)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1310), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1053), - [sym__unquoted_with_expr] = STATE(1326), - [sym__unquoted_anonymous_prefix] = STATE(4844), - [sym_comment] = STATE(864), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1081), + [sym__unquoted_with_expr] = STATE(1347), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(865), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1304), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2505), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), [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(2505), + [sym_val_date] = ACTIONS(2515), [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(2403), + [aux_sym_unquoted_token1] = ACTIONS(2448), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(865)] = { - [sym_comment] = STATE(865), - [anon_sym_if] = ACTIONS(2545), - [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(866)] = { - [aux_sym__repeat_newline] = STATE(1029), - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2234), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(739), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(866), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(867)] = { - [aux_sym__repeat_newline] = STATE(1033), - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2257), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(958), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(867), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(868)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1327), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1058), - [sym__unquoted_with_expr] = STATE(1328), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2237), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(717), + [sym__unquoted_with_expr] = STATE(988), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(868), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(869)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1359), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1084), + [sym__unquoted_with_expr] = STATE(1320), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(869), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1304), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2505), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), [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(2505), + [sym_val_date] = ACTIONS(2515), [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(2403), + [aux_sym_unquoted_token1] = ACTIONS(2448), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(869)] = { - [aux_sym__repeat_newline] = STATE(1050), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(869), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(870)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1329), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1323), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1075), - [sym__unquoted_with_expr] = STATE(1330), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1110), + [sym__unquoted_with_expr] = STATE(1348), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(870), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1304), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2505), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), [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(2505), + [sym_val_date] = ACTIONS(2515), [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(2403), + [aux_sym_unquoted_token1] = ACTIONS(2448), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, [STATE(871)] = { - [aux_sym__repeat_newline] = STATE(977), - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_cell_path] = STATE(1364), + [sym_path] = STATE(703), [sym_comment] = STATE(871), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [aux_sym__where_predicate_lhs_repeat1] = STATE(669), + [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(1875), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1875), + [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(1875), + [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(1875), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1875), + [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(2362), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(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(872)] = { - [sym_expr_unary] = STATE(1320), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_binary] = STATE(1320), - [sym__expr_binary_expression] = STATE(1331), - [sym_expr_parenthesized] = STATE(935), - [sym_val_range] = STATE(1320), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(1320), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(985), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(471), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(1078), - [sym__unquoted_with_expr] = STATE(1332), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2238), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(961), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(872), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2495), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), - [anon_sym_DOT_DOT_LT] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [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(2505), - [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(2403), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(873)] = { - [sym_comment] = STATE(873), - [anon_sym_in] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_GT2] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_STAR2] = ACTIONS(1792), - [anon_sym_and2] = ACTIONS(1790), - [anon_sym_xor2] = ACTIONS(1790), - [anon_sym_or2] = ACTIONS(1790), - [anon_sym_not_DASHin2] = ACTIONS(1790), - [anon_sym_has2] = ACTIONS(1790), - [anon_sym_not_DASHhas2] = ACTIONS(1790), - [anon_sym_starts_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), - [anon_sym_ends_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), - [anon_sym_EQ_EQ2] = ACTIONS(1790), - [anon_sym_BANG_EQ2] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ2] = ACTIONS(1790), - [anon_sym_GT_EQ2] = ACTIONS(1790), - [anon_sym_EQ_TILDE2] = ACTIONS(1790), - [anon_sym_BANG_TILDE2] = ACTIONS(1790), - [anon_sym_like2] = ACTIONS(1790), - [anon_sym_not_DASHlike2] = ACTIONS(1790), - [anon_sym_STAR_STAR2] = ACTIONS(1790), - [anon_sym_PLUS_PLUS2] = ACTIONS(1790), - [anon_sym_SLASH2] = ACTIONS(1792), - [anon_sym_mod2] = ACTIONS(1790), - [anon_sym_SLASH_SLASH2] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1792), - [anon_sym_bit_DASHshl2] = ACTIONS(1790), - [anon_sym_bit_DASHshr2] = ACTIONS(1790), - [anon_sym_bit_DASHand2] = ACTIONS(1790), - [anon_sym_bit_DASHxor2] = ACTIONS(1790), - [anon_sym_bit_DASHor2] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(2549), - [aux_sym__immediate_decimal_token5] = ACTIONS(1796), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(874)] = { - [aux_sym__repeat_newline] = STATE(1055), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(874), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(875)] = { - [aux_sym__repeat_newline] = STATE(1062), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(875), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(876)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(876), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(877)] = { - [aux_sym__repeat_newline] = STATE(1068), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(877), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(878)] = { - [sym_comment] = STATE(878), - [anon_sym_finally] = ACTIONS(2551), - [anon_sym_in] = ACTIONS(2551), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2553), - [anon_sym_DASH2] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_EQ_GT] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2553), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2551), - [anon_sym_has2] = ACTIONS(2551), - [anon_sym_not_DASHhas2] = ACTIONS(2551), - [anon_sym_starts_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), - [anon_sym_ends_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), - [anon_sym_EQ_EQ2] = ACTIONS(2551), - [anon_sym_BANG_EQ2] = ACTIONS(2551), - [anon_sym_LT2] = ACTIONS(2553), - [anon_sym_LT_EQ2] = ACTIONS(2551), - [anon_sym_GT_EQ2] = ACTIONS(2551), - [anon_sym_EQ_TILDE2] = ACTIONS(2551), - [anon_sym_BANG_TILDE2] = ACTIONS(2551), - [anon_sym_like2] = ACTIONS(2551), - [anon_sym_not_DASHlike2] = ACTIONS(2551), - [anon_sym_STAR_STAR2] = ACTIONS(2551), - [anon_sym_PLUS_PLUS2] = ACTIONS(2551), - [anon_sym_SLASH2] = ACTIONS(2553), - [anon_sym_mod2] = ACTIONS(2551), - [anon_sym_SLASH_SLASH2] = ACTIONS(2551), - [anon_sym_PLUS2] = ACTIONS(2553), - [anon_sym_bit_DASHshl2] = ACTIONS(2551), - [anon_sym_bit_DASHshr2] = ACTIONS(2551), - [anon_sym_bit_DASHand2] = ACTIONS(2551), - [anon_sym_bit_DASHxor2] = ACTIONS(2551), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(879)] = { - [aux_sym__repeat_newline] = STATE(879), - [sym_comment] = STATE(879), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_alias] = ACTIONS(1862), - [anon_sym_let] = ACTIONS(1862), - [anon_sym_mut] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [aux_sym_cmd_identifier_token1] = ACTIONS(1867), - [anon_sym_def] = ACTIONS(1862), - [anon_sym_use] = ACTIONS(1862), - [anon_sym_export_DASHenv] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym_module] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_loop] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_else] = ACTIONS(1862), - [anon_sym_try] = ACTIONS(1862), - [anon_sym_catch] = ACTIONS(1862), - [anon_sym_finally] = ACTIONS(1862), - [anon_sym_match] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [anon_sym_null] = ACTIONS(1862), - [aux_sym_cmd_identifier_token3] = ACTIONS(1862), - [aux_sym_cmd_identifier_token4] = ACTIONS(1862), - [aux_sym_cmd_identifier_token5] = ACTIONS(1862), - [sym__newline] = ACTIONS(2555), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_DASH2] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1867), - [anon_sym_where] = ACTIONS(1862), - [aux_sym_expr_unary_token1] = ACTIONS(1862), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1862), - [anon_sym_DOT_DOT_LT] = ACTIONS(1862), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1862), - [aux_sym__val_number_decimal_token3] = ACTIONS(1862), - [aux_sym__val_number_decimal_token4] = ACTIONS(1862), - [aux_sym__val_number_token1] = ACTIONS(1862), - [aux_sym__val_number_token2] = ACTIONS(1862), - [aux_sym__val_number_token3] = ACTIONS(1862), - [anon_sym_0b] = ACTIONS(1867), - [anon_sym_0o] = ACTIONS(1867), - [anon_sym_0x] = ACTIONS(1867), - [sym_val_date] = ACTIONS(1862), - [anon_sym_DQUOTE] = ACTIONS(1862), - [anon_sym_SQUOTE] = ACTIONS(1862), - [anon_sym_BQUOTE] = ACTIONS(1862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1862), - [anon_sym_CARET] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1862), - }, - [STATE(880)] = { - [aux_sym__repeat_newline] = STATE(1071), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(880), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(881)] = { - [sym_comment] = STATE(881), - [anon_sym_finally] = ACTIONS(2558), - [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(882)] = { - [aux_sym__repeat_newline] = STATE(1074), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(882), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(883)] = { - [sym_cell_path] = STATE(1303), - [sym_path] = STATE(715), - [sym_comment] = STATE(883), - [aux_sym__where_predicate_lhs_repeat1] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1907), - [anon_sym_in] = ACTIONS(1907), - [sym__newline] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_err_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_GT_PIPE] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), - [anon_sym_GT2] = ACTIONS(1909), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_STAR2] = ACTIONS(1909), - [anon_sym_and2] = ACTIONS(1907), - [anon_sym_xor2] = ACTIONS(1907), - [anon_sym_or2] = ACTIONS(1907), - [anon_sym_not_DASHin2] = ACTIONS(1907), - [anon_sym_has2] = ACTIONS(1907), - [anon_sym_not_DASHhas2] = ACTIONS(1907), - [anon_sym_starts_DASHwith2] = ACTIONS(1907), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1907), - [anon_sym_ends_DASHwith2] = ACTIONS(1907), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1907), - [anon_sym_EQ_EQ2] = ACTIONS(1907), - [anon_sym_BANG_EQ2] = ACTIONS(1907), - [anon_sym_LT2] = ACTIONS(1909), - [anon_sym_LT_EQ2] = ACTIONS(1907), - [anon_sym_GT_EQ2] = ACTIONS(1907), - [anon_sym_EQ_TILDE2] = ACTIONS(1907), - [anon_sym_BANG_TILDE2] = ACTIONS(1907), - [anon_sym_like2] = ACTIONS(1907), - [anon_sym_not_DASHlike2] = ACTIONS(1907), - [anon_sym_STAR_STAR2] = ACTIONS(1907), - [anon_sym_PLUS_PLUS2] = ACTIONS(1907), - [anon_sym_SLASH2] = ACTIONS(1909), - [anon_sym_mod2] = ACTIONS(1907), - [anon_sym_SLASH_SLASH2] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1909), - [anon_sym_bit_DASHshl2] = ACTIONS(1907), - [anon_sym_bit_DASHshr2] = ACTIONS(1907), - [anon_sym_bit_DASHand2] = ACTIONS(1907), - [anon_sym_bit_DASHxor2] = ACTIONS(1907), - [anon_sym_bit_DASHor2] = ACTIONS(1907), - [anon_sym_DOT2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(1909), - [anon_sym_out_GT] = ACTIONS(1909), - [anon_sym_e_GT] = ACTIONS(1909), - [anon_sym_o_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT] = ACTIONS(1909), - [anon_sym_err_GT_GT] = ACTIONS(1907), - [anon_sym_out_GT_GT] = ACTIONS(1907), - [anon_sym_e_GT_GT] = ACTIONS(1907), - [anon_sym_o_GT_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(884)] = { - [sym_comment] = STATE(884), - [anon_sym_if] = 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_RPAREN] = ACTIONS(2562), - [anon_sym_GT2] = ACTIONS(2564), - [anon_sym_DASH2] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2562), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_EQ_GT] = 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_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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(885)] = { - [sym_cell_path] = STATE(1291), - [sym_path] = STATE(715), - [sym_comment] = STATE(885), - [aux_sym__where_predicate_lhs_repeat1] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1883), - [anon_sym_in] = ACTIONS(1883), - [sym__newline] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_PIPE] = ACTIONS(1883), - [anon_sym_err_GT_PIPE] = ACTIONS(1883), - [anon_sym_out_GT_PIPE] = ACTIONS(1883), - [anon_sym_e_GT_PIPE] = ACTIONS(1883), - [anon_sym_o_GT_PIPE] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1883), - [anon_sym_GT2] = ACTIONS(1885), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_STAR2] = ACTIONS(1885), - [anon_sym_and2] = ACTIONS(1883), - [anon_sym_xor2] = ACTIONS(1883), - [anon_sym_or2] = ACTIONS(1883), - [anon_sym_not_DASHin2] = ACTIONS(1883), - [anon_sym_has2] = ACTIONS(1883), - [anon_sym_not_DASHhas2] = ACTIONS(1883), - [anon_sym_starts_DASHwith2] = ACTIONS(1883), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1883), - [anon_sym_ends_DASHwith2] = ACTIONS(1883), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1883), - [anon_sym_EQ_EQ2] = ACTIONS(1883), - [anon_sym_BANG_EQ2] = ACTIONS(1883), - [anon_sym_LT2] = ACTIONS(1885), - [anon_sym_LT_EQ2] = ACTIONS(1883), - [anon_sym_GT_EQ2] = ACTIONS(1883), - [anon_sym_EQ_TILDE2] = ACTIONS(1883), - [anon_sym_BANG_TILDE2] = ACTIONS(1883), - [anon_sym_like2] = ACTIONS(1883), - [anon_sym_not_DASHlike2] = ACTIONS(1883), - [anon_sym_STAR_STAR2] = ACTIONS(1883), - [anon_sym_PLUS_PLUS2] = ACTIONS(1883), - [anon_sym_SLASH2] = ACTIONS(1885), - [anon_sym_mod2] = ACTIONS(1883), - [anon_sym_SLASH_SLASH2] = ACTIONS(1883), - [anon_sym_PLUS2] = ACTIONS(1885), - [anon_sym_bit_DASHshl2] = ACTIONS(1883), - [anon_sym_bit_DASHshr2] = ACTIONS(1883), - [anon_sym_bit_DASHand2] = ACTIONS(1883), - [anon_sym_bit_DASHxor2] = ACTIONS(1883), - [anon_sym_bit_DASHor2] = ACTIONS(1883), - [anon_sym_DOT2] = ACTIONS(2358), - [anon_sym_err_GT] = ACTIONS(1885), - [anon_sym_out_GT] = ACTIONS(1885), - [anon_sym_e_GT] = ACTIONS(1885), - [anon_sym_o_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT] = ACTIONS(1885), - [anon_sym_err_GT_GT] = ACTIONS(1883), - [anon_sym_out_GT_GT] = ACTIONS(1883), - [anon_sym_e_GT_GT] = ACTIONS(1883), - [anon_sym_o_GT_GT] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(886)] = { - [aux_sym__repeat_newline] = STATE(1122), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(886), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(887)] = { - [aux_sym__repeat_newline] = STATE(1123), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(887), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(888)] = { - [aux_sym__repeat_newline] = STATE(1124), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(888), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(889)] = { - [aux_sym__repeat_newline] = STATE(1125), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(889), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(890)] = { - [aux_sym__repeat_newline] = STATE(1126), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(890), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(891)] = { - [aux_sym__repeat_newline] = STATE(1127), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(891), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(892)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1648), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(892), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2535), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(893)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1649), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(893), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [STATE(873)] = { + [aux_sym__repeat_newline] = STATE(873), + [sym_comment] = STATE(873), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_mut] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [aux_sym_cmd_identifier_token1] = ACTIONS(1883), + [anon_sym_def] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_export_DASHenv] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_module] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1878), + [anon_sym_catch] = ACTIONS(1878), + [anon_sym_finally] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_in] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [anon_sym_null] = ACTIONS(1878), + [aux_sym_cmd_identifier_token3] = ACTIONS(1878), + [aux_sym_cmd_identifier_token4] = ACTIONS(1878), + [aux_sym_cmd_identifier_token5] = ACTIONS(1878), + [sym__newline] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_err_GT_PIPE] = ACTIONS(1878), + [anon_sym_out_GT_PIPE] = ACTIONS(1878), + [anon_sym_e_GT_PIPE] = ACTIONS(1878), + [anon_sym_o_GT_PIPE] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_where] = ACTIONS(1878), + [aux_sym_expr_unary_token1] = ACTIONS(1878), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1878), + [anon_sym_DOT_DOT_LT] = ACTIONS(1878), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1878), + [aux_sym__val_number_decimal_token3] = ACTIONS(1878), + [aux_sym__val_number_decimal_token4] = ACTIONS(1878), + [aux_sym__val_number_token1] = ACTIONS(1878), + [aux_sym__val_number_token2] = ACTIONS(1878), + [aux_sym__val_number_token3] = ACTIONS(1878), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [sym_val_date] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1878), + }, + [STATE(874)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2241), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(874), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2535), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(894)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1650), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(947), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(894), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [STATE(875)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2242), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(963), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(875), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2535), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(895)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1651), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(956), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(895), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [STATE(876)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2244), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(738), + [sym__unquoted_with_expr] = STATE(964), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(876), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2535), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(896)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1652), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(924), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(896), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [STATE(877)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(965), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(741), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(877), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2535), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(897)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1653), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(943), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(897), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [STATE(878)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(878), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2535), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(898)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1654), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(921), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(898), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [STATE(879)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2250), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(879), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2535), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(899)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1655), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(950), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(899), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [STATE(880)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1358), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(996), + [sym__unquoted_with_expr] = STATE(1333), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(880), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [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(2515), + [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(2448), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(900)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(955), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(691), - [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(900), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [STATE(881)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1298), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1042), + [sym__unquoted_with_expr] = STATE(1346), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(881), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [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(2515), + [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(2448), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(901)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1656), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(693), - [sym__unquoted_with_expr] = STATE(948), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(901), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [STATE(882)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1352), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1055), + [sym__unquoted_with_expr] = STATE(1299), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(882), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [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(2515), + [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(2448), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(902)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1657), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(942), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(902), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [STATE(883)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1309), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1083), + [sym__unquoted_with_expr] = STATE(1340), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(883), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [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(2515), + [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(2448), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(903)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1658), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(695), - [sym__unquoted_with_expr] = STATE(945), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(903), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [STATE(884)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1312), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1086), + [sym__unquoted_with_expr] = STATE(1326), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(884), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [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(2515), + [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(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(885)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(969), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(885), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2535), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(904)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1659), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(1495), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1414), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(904), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [STATE(886)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2055), + [sym_val_variable] = STATE(2000), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1799), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(722), + [sym__unquoted_with_expr] = STATE(970), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(886), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_LT] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1941), + [sym_val_date] = ACTIONS(2535), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(905)] = { - [aux_sym__repeat_newline] = STATE(1128), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(905), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(906)] = { - [aux_sym__repeat_newline] = STATE(1129), - [sym__expr_parenthesized_immediate] = STATE(5073), - [sym_comment] = STATE(906), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [STATE(887)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1329), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1087), + [sym__unquoted_with_expr] = STATE(1337), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(887), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [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(2515), + [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(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(888)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1339), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1127), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(484), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1088), + [sym__unquoted_with_expr] = STATE(1308), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(888), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_LT] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [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(2515), + [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(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(889)] = { + [sym_cell_path] = STATE(1316), + [sym_path] = STATE(703), + [sym_comment] = STATE(889), + [aux_sym__where_predicate_lhs_repeat1] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1901), + [anon_sym_in] = ACTIONS(1901), + [sym__newline] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_err_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_GT_PIPE] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), + [anon_sym_GT2] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_STAR2] = ACTIONS(1903), + [anon_sym_and2] = ACTIONS(1901), + [anon_sym_xor2] = ACTIONS(1901), + [anon_sym_or2] = ACTIONS(1901), + [anon_sym_not_DASHin2] = ACTIONS(1901), + [anon_sym_has2] = ACTIONS(1901), + [anon_sym_not_DASHhas2] = ACTIONS(1901), + [anon_sym_starts_DASHwith2] = ACTIONS(1901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1901), + [anon_sym_ends_DASHwith2] = ACTIONS(1901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1901), + [anon_sym_EQ_EQ2] = ACTIONS(1901), + [anon_sym_BANG_EQ2] = ACTIONS(1901), + [anon_sym_LT2] = ACTIONS(1903), + [anon_sym_LT_EQ2] = ACTIONS(1901), + [anon_sym_GT_EQ2] = ACTIONS(1901), + [anon_sym_EQ_TILDE2] = ACTIONS(1901), + [anon_sym_BANG_TILDE2] = ACTIONS(1901), + [anon_sym_like2] = ACTIONS(1901), + [anon_sym_not_DASHlike2] = ACTIONS(1901), + [anon_sym_STAR_STAR2] = ACTIONS(1901), + [anon_sym_PLUS_PLUS2] = ACTIONS(1901), + [anon_sym_SLASH2] = ACTIONS(1903), + [anon_sym_mod2] = ACTIONS(1901), + [anon_sym_SLASH_SLASH2] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1903), + [anon_sym_bit_DASHshl2] = ACTIONS(1901), + [anon_sym_bit_DASHshr2] = ACTIONS(1901), + [anon_sym_bit_DASHand2] = ACTIONS(1901), + [anon_sym_bit_DASHxor2] = ACTIONS(1901), + [anon_sym_bit_DASHor2] = ACTIONS(1901), + [anon_sym_DOT2] = ACTIONS(2362), + [anon_sym_err_GT] = ACTIONS(1903), + [anon_sym_out_GT] = ACTIONS(1903), + [anon_sym_e_GT] = ACTIONS(1903), + [anon_sym_o_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT] = ACTIONS(1903), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(890)] = { + [aux_sym__repeat_newline] = STATE(1002), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(890), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(891)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1722), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1086), + [sym__unquoted_with_expr] = STATE(1326), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(891), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(892)] = { + [aux_sym__repeat_newline] = STATE(873), + [sym_comment] = STATE(892), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_alias] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_mut] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [aux_sym_cmd_identifier_token1] = ACTIONS(2540), + [anon_sym_def] = ACTIONS(2542), + [anon_sym_use] = ACTIONS(2542), + [anon_sym_export_DASHenv] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym_module] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_loop] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_catch] = ACTIONS(2542), + [anon_sym_finally] = ACTIONS(2542), + [anon_sym_match] = ACTIONS(2542), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_true] = ACTIONS(2542), + [anon_sym_false] = ACTIONS(2542), + [anon_sym_null] = ACTIONS(2542), + [aux_sym_cmd_identifier_token3] = ACTIONS(2542), + [aux_sym_cmd_identifier_token4] = ACTIONS(2542), + [aux_sym_cmd_identifier_token5] = ACTIONS(2542), + [sym__newline] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_err_GT_PIPE] = ACTIONS(2544), + [anon_sym_out_GT_PIPE] = ACTIONS(2544), + [anon_sym_e_GT_PIPE] = ACTIONS(2544), + [anon_sym_o_GT_PIPE] = ACTIONS(2544), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2544), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2544), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2544), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_DOLLAR] = ACTIONS(2540), + [anon_sym_DASH2] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_DOT_DOT] = ACTIONS(2540), + [anon_sym_where] = ACTIONS(2542), + [aux_sym_expr_unary_token1] = ACTIONS(2542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2542), + [anon_sym_DOT_DOT_LT] = ACTIONS(2542), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2542), + [aux_sym__val_number_decimal_token4] = ACTIONS(2542), + [aux_sym__val_number_token1] = ACTIONS(2542), + [aux_sym__val_number_token2] = ACTIONS(2542), + [aux_sym__val_number_token3] = ACTIONS(2542), + [anon_sym_0b] = ACTIONS(2540), + [anon_sym_0o] = ACTIONS(2540), + [anon_sym_0x] = ACTIONS(2540), + [sym_val_date] = ACTIONS(2542), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_BQUOTE] = ACTIONS(2542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2542), + }, + [STATE(893)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1723), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1087), + [sym__unquoted_with_expr] = STATE(1337), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(893), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(894)] = { + [aux_sym__repeat_newline] = STATE(1004), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(894), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(895)] = { + [sym_expr_unary] = STATE(1357), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_binary] = STATE(1357), + [sym__expr_binary_expression] = STATE(1724), + [sym_expr_parenthesized] = STATE(987), + [sym_val_range] = STATE(1357), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(1357), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(1525), + [sym_val_variable] = STATE(981), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(1088), + [sym__unquoted_with_expr] = STATE(1308), + [sym__unquoted_anonymous_prefix] = STATE(4801), + [sym_comment] = STATE(895), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2438), + [anon_sym_DOT_DOT_LT] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [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(2446), + [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(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(896)] = { + [aux_sym__repeat_newline] = STATE(1007), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(896), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(897)] = { + [aux_sym__repeat_newline] = STATE(1123), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(897), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(898)] = { + [sym_comment] = STATE(898), + [anon_sym_in] = ACTIONS(2488), + [sym__newline] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_err_GT_PIPE] = ACTIONS(2488), + [anon_sym_out_GT_PIPE] = ACTIONS(2488), + [anon_sym_e_GT_PIPE] = ACTIONS(2488), + [anon_sym_o_GT_PIPE] = ACTIONS(2488), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2488), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2488), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2488), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2488), + [anon_sym_RPAREN] = ACTIONS(2488), + [anon_sym_GT2] = ACTIONS(2495), + [anon_sym_DASH2] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_STAR2] = ACTIONS(2495), + [anon_sym_and2] = ACTIONS(2488), + [anon_sym_xor2] = ACTIONS(2488), + [anon_sym_or2] = ACTIONS(2488), + [anon_sym_not_DASHin2] = ACTIONS(2488), + [anon_sym_has2] = ACTIONS(2488), + [anon_sym_not_DASHhas2] = ACTIONS(2488), + [anon_sym_starts_DASHwith2] = ACTIONS(2488), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2488), + [anon_sym_ends_DASHwith2] = ACTIONS(2488), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2488), + [anon_sym_EQ_EQ2] = ACTIONS(2488), + [anon_sym_BANG_EQ2] = ACTIONS(2488), + [anon_sym_LT2] = ACTIONS(2495), + [anon_sym_LT_EQ2] = ACTIONS(2488), + [anon_sym_GT_EQ2] = ACTIONS(2488), + [anon_sym_EQ_TILDE2] = ACTIONS(2488), + [anon_sym_BANG_TILDE2] = ACTIONS(2488), + [anon_sym_like2] = ACTIONS(2488), + [anon_sym_not_DASHlike2] = ACTIONS(2488), + [anon_sym_STAR_STAR2] = ACTIONS(2488), + [anon_sym_PLUS_PLUS2] = ACTIONS(2488), + [anon_sym_SLASH2] = ACTIONS(2495), + [anon_sym_mod2] = ACTIONS(2488), + [anon_sym_SLASH_SLASH2] = ACTIONS(2488), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_bit_DASHshl2] = ACTIONS(2488), + [anon_sym_bit_DASHshr2] = ACTIONS(2488), + [anon_sym_bit_DASHand2] = ACTIONS(2488), + [anon_sym_bit_DASHxor2] = ACTIONS(2488), + [anon_sym_bit_DASHor2] = ACTIONS(2488), + [anon_sym_DOT_DOT2] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1594), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1594), + [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(2488), + [anon_sym_out_GT_GT] = ACTIONS(2488), + [anon_sym_e_GT_GT] = ACTIONS(2488), + [anon_sym_o_GT_GT] = ACTIONS(2488), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2488), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2488), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2488), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2488), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(899)] = { + [aux_sym__repeat_newline] = STATE(1109), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(899), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(900)] = { + [sym_comment] = STATE(900), + [anon_sym_if] = ACTIONS(2546), + [anon_sym_in] = ACTIONS(2546), + [sym__newline] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_err_GT_PIPE] = ACTIONS(2546), + [anon_sym_out_GT_PIPE] = ACTIONS(2546), + [anon_sym_e_GT_PIPE] = ACTIONS(2546), + [anon_sym_o_GT_PIPE] = ACTIONS(2546), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2546), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2546), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2546), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2546), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_GT2] = ACTIONS(2548), + [anon_sym_DASH2] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_EQ_GT] = ACTIONS(2546), + [anon_sym_STAR2] = ACTIONS(2548), + [anon_sym_and2] = ACTIONS(2546), + [anon_sym_xor2] = ACTIONS(2546), + [anon_sym_or2] = ACTIONS(2546), + [anon_sym_not_DASHin2] = ACTIONS(2546), + [anon_sym_has2] = ACTIONS(2546), + [anon_sym_not_DASHhas2] = ACTIONS(2546), + [anon_sym_starts_DASHwith2] = ACTIONS(2546), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2546), + [anon_sym_ends_DASHwith2] = ACTIONS(2546), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2546), + [anon_sym_EQ_EQ2] = ACTIONS(2546), + [anon_sym_BANG_EQ2] = ACTIONS(2546), + [anon_sym_LT2] = ACTIONS(2548), + [anon_sym_LT_EQ2] = ACTIONS(2546), + [anon_sym_GT_EQ2] = ACTIONS(2546), + [anon_sym_EQ_TILDE2] = ACTIONS(2546), + [anon_sym_BANG_TILDE2] = ACTIONS(2546), + [anon_sym_like2] = ACTIONS(2546), + [anon_sym_not_DASHlike2] = ACTIONS(2546), + [anon_sym_STAR_STAR2] = ACTIONS(2546), + [anon_sym_PLUS_PLUS2] = ACTIONS(2546), + [anon_sym_SLASH2] = ACTIONS(2548), + [anon_sym_mod2] = ACTIONS(2546), + [anon_sym_SLASH_SLASH2] = ACTIONS(2546), + [anon_sym_PLUS2] = ACTIONS(2548), + [anon_sym_bit_DASHshl2] = ACTIONS(2546), + [anon_sym_bit_DASHshr2] = ACTIONS(2546), + [anon_sym_bit_DASHand2] = ACTIONS(2546), + [anon_sym_bit_DASHxor2] = ACTIONS(2546), + [anon_sym_bit_DASHor2] = ACTIONS(2546), + [anon_sym_err_GT] = ACTIONS(2548), + [anon_sym_out_GT] = ACTIONS(2548), + [anon_sym_e_GT] = ACTIONS(2548), + [anon_sym_o_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT] = ACTIONS(2548), + [anon_sym_err_GT_GT] = ACTIONS(2546), + [anon_sym_out_GT_GT] = ACTIONS(2546), + [anon_sym_e_GT_GT] = ACTIONS(2546), + [anon_sym_o_GT_GT] = ACTIONS(2546), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2546), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2546), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2546), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2546), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(901)] = { + [sym_comment] = STATE(901), + [anon_sym_in] = ACTIONS(2550), + [sym__newline] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2550), + [anon_sym_err_GT_PIPE] = ACTIONS(2550), + [anon_sym_out_GT_PIPE] = ACTIONS(2550), + [anon_sym_e_GT_PIPE] = ACTIONS(2550), + [anon_sym_o_GT_PIPE] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2550), + [anon_sym_RPAREN] = ACTIONS(2550), + [anon_sym_GT2] = ACTIONS(2552), + [anon_sym_DASH2] = ACTIONS(2550), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_EQ_GT] = ACTIONS(2550), + [anon_sym_STAR2] = ACTIONS(2552), + [anon_sym_and2] = ACTIONS(2550), + [anon_sym_xor2] = ACTIONS(2550), + [anon_sym_or2] = ACTIONS(2550), + [anon_sym_not_DASHin2] = ACTIONS(2550), + [anon_sym_has2] = ACTIONS(2550), + [anon_sym_not_DASHhas2] = ACTIONS(2550), + [anon_sym_starts_DASHwith2] = ACTIONS(2550), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2550), + [anon_sym_ends_DASHwith2] = ACTIONS(2550), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2550), + [anon_sym_EQ_EQ2] = ACTIONS(2550), + [anon_sym_BANG_EQ2] = ACTIONS(2550), + [anon_sym_LT2] = ACTIONS(2552), + [anon_sym_LT_EQ2] = ACTIONS(2550), + [anon_sym_GT_EQ2] = ACTIONS(2550), + [anon_sym_EQ_TILDE2] = ACTIONS(2550), + [anon_sym_BANG_TILDE2] = ACTIONS(2550), + [anon_sym_like2] = ACTIONS(2550), + [anon_sym_not_DASHlike2] = ACTIONS(2550), + [anon_sym_STAR_STAR2] = ACTIONS(2550), + [anon_sym_PLUS_PLUS2] = ACTIONS(2550), + [anon_sym_SLASH2] = ACTIONS(2552), + [anon_sym_mod2] = ACTIONS(2550), + [anon_sym_SLASH_SLASH2] = ACTIONS(2550), + [anon_sym_PLUS2] = ACTIONS(2552), + [anon_sym_bit_DASHshl2] = ACTIONS(2550), + [anon_sym_bit_DASHshr2] = ACTIONS(2550), + [anon_sym_bit_DASHand2] = ACTIONS(2550), + [anon_sym_bit_DASHxor2] = ACTIONS(2550), + [anon_sym_bit_DASHor2] = ACTIONS(2550), + [anon_sym_COLON2] = ACTIONS(2550), + [anon_sym_err_GT] = ACTIONS(2552), + [anon_sym_out_GT] = ACTIONS(2552), + [anon_sym_e_GT] = ACTIONS(2552), + [anon_sym_o_GT] = ACTIONS(2552), + [anon_sym_err_PLUSout_GT] = ACTIONS(2552), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2552), + [anon_sym_o_PLUSe_GT] = ACTIONS(2552), + [anon_sym_e_PLUSo_GT] = ACTIONS(2552), + [anon_sym_err_GT_GT] = ACTIONS(2550), + [anon_sym_out_GT_GT] = ACTIONS(2550), + [anon_sym_e_GT_GT] = ACTIONS(2550), + [anon_sym_o_GT_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2550), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(902)] = { + [aux_sym__repeat_newline] = STATE(1129), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(902), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(903)] = { + [sym_comment] = STATE(903), + [anon_sym_finally] = ACTIONS(2554), + [anon_sym_in] = ACTIONS(2554), + [sym__newline] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_err_GT_PIPE] = ACTIONS(2554), + [anon_sym_out_GT_PIPE] = ACTIONS(2554), + [anon_sym_e_GT_PIPE] = ACTIONS(2554), + [anon_sym_o_GT_PIPE] = ACTIONS(2554), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2554), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2554), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2554), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2554), + [anon_sym_RPAREN] = ACTIONS(2554), + [anon_sym_GT2] = ACTIONS(2556), + [anon_sym_DASH2] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_EQ_GT] = ACTIONS(2554), + [anon_sym_STAR2] = ACTIONS(2556), + [anon_sym_and2] = ACTIONS(2554), + [anon_sym_xor2] = ACTIONS(2554), + [anon_sym_or2] = ACTIONS(2554), + [anon_sym_not_DASHin2] = ACTIONS(2554), + [anon_sym_has2] = ACTIONS(2554), + [anon_sym_not_DASHhas2] = ACTIONS(2554), + [anon_sym_starts_DASHwith2] = ACTIONS(2554), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2554), + [anon_sym_ends_DASHwith2] = ACTIONS(2554), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2554), + [anon_sym_EQ_EQ2] = ACTIONS(2554), + [anon_sym_BANG_EQ2] = ACTIONS(2554), + [anon_sym_LT2] = ACTIONS(2556), + [anon_sym_LT_EQ2] = ACTIONS(2554), + [anon_sym_GT_EQ2] = ACTIONS(2554), + [anon_sym_EQ_TILDE2] = ACTIONS(2554), + [anon_sym_BANG_TILDE2] = ACTIONS(2554), + [anon_sym_like2] = ACTIONS(2554), + [anon_sym_not_DASHlike2] = ACTIONS(2554), + [anon_sym_STAR_STAR2] = ACTIONS(2554), + [anon_sym_PLUS_PLUS2] = ACTIONS(2554), + [anon_sym_SLASH2] = ACTIONS(2556), + [anon_sym_mod2] = ACTIONS(2554), + [anon_sym_SLASH_SLASH2] = ACTIONS(2554), + [anon_sym_PLUS2] = ACTIONS(2556), + [anon_sym_bit_DASHshl2] = ACTIONS(2554), + [anon_sym_bit_DASHshr2] = ACTIONS(2554), + [anon_sym_bit_DASHand2] = ACTIONS(2554), + [anon_sym_bit_DASHxor2] = ACTIONS(2554), + [anon_sym_bit_DASHor2] = ACTIONS(2554), + [anon_sym_err_GT] = ACTIONS(2556), + [anon_sym_out_GT] = ACTIONS(2556), + [anon_sym_e_GT] = ACTIONS(2556), + [anon_sym_o_GT] = ACTIONS(2556), + [anon_sym_err_PLUSout_GT] = ACTIONS(2556), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2556), + [anon_sym_o_PLUSe_GT] = ACTIONS(2556), + [anon_sym_e_PLUSo_GT] = ACTIONS(2556), + [anon_sym_err_GT_GT] = ACTIONS(2554), + [anon_sym_out_GT_GT] = ACTIONS(2554), + [anon_sym_e_GT_GT] = ACTIONS(2554), + [anon_sym_o_GT_GT] = ACTIONS(2554), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2554), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2554), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2554), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(904)] = { + [aux_sym__repeat_newline] = STATE(1112), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(904), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(905)] = { + [aux_sym__repeat_newline] = STATE(1012), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(905), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(906)] = { + [aux_sym__repeat_newline] = STATE(1114), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(906), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(907)] = { - [aux_sym__repeat_newline] = STATE(1132), - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2254), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(956), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(907), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(908)] = { - [aux_sym__repeat_newline] = STATE(1133), - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2227), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(739), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(908), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(909)] = { - [aux_sym__repeat_newline] = STATE(1134), - [sym__expr_parenthesized_immediate] = STATE(5073), + [aux_sym__repeat_newline] = STATE(1116), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(909), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(910)] = { - [aux_sym__repeat_newline] = STATE(1135), - [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(958), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(910), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(911)] = { - [sym_expr_unary] = STATE(940), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(940), - [sym__expr_binary_expression] = STATE(1232), - [sym_expr_parenthesized] = STATE(706), - [sym_val_range] = STATE(940), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(940), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(469), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(942), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(911), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2053), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1961), + [sym_val_date] = ACTIONS(2063), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(911)] = { + [aux_sym__repeat_newline] = STATE(1134), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(911), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(912)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(717), + [sym__unquoted_with_expr] = STATE(988), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(912), - [ts_builtin_sym_end] = ACTIONS(1699), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1699), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(1750), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), - [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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(913)] = { + [aux_sym__repeat_newline] = STATE(1118), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(913), - [anon_sym_in] = ACTIONS(2566), - [sym__newline] = ACTIONS(2566), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_err_GT_PIPE] = ACTIONS(2566), - [anon_sym_out_GT_PIPE] = ACTIONS(2566), - [anon_sym_e_GT_PIPE] = ACTIONS(2566), - [anon_sym_o_GT_PIPE] = ACTIONS(2566), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2566), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2566), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2566), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2566), - [anon_sym_RPAREN] = ACTIONS(2566), - [anon_sym_GT2] = ACTIONS(2568), - [anon_sym_DASH2] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_RBRACE] = ACTIONS(2566), - [anon_sym_EQ_GT] = ACTIONS(2566), - [anon_sym_STAR2] = ACTIONS(2568), - [anon_sym_and2] = ACTIONS(2566), - [anon_sym_xor2] = ACTIONS(2566), - [anon_sym_or2] = ACTIONS(2566), - [anon_sym_not_DASHin2] = ACTIONS(2566), - [anon_sym_has2] = ACTIONS(2566), - [anon_sym_not_DASHhas2] = ACTIONS(2566), - [anon_sym_starts_DASHwith2] = ACTIONS(2566), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2566), - [anon_sym_ends_DASHwith2] = ACTIONS(2566), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2566), - [anon_sym_EQ_EQ2] = ACTIONS(2566), - [anon_sym_BANG_EQ2] = ACTIONS(2566), - [anon_sym_LT2] = ACTIONS(2568), - [anon_sym_LT_EQ2] = ACTIONS(2566), - [anon_sym_GT_EQ2] = ACTIONS(2566), - [anon_sym_EQ_TILDE2] = ACTIONS(2566), - [anon_sym_BANG_TILDE2] = ACTIONS(2566), - [anon_sym_like2] = ACTIONS(2566), - [anon_sym_not_DASHlike2] = ACTIONS(2566), - [anon_sym_STAR_STAR2] = ACTIONS(2566), - [anon_sym_PLUS_PLUS2] = ACTIONS(2566), - [anon_sym_SLASH2] = ACTIONS(2568), - [anon_sym_mod2] = ACTIONS(2566), - [anon_sym_SLASH_SLASH2] = ACTIONS(2566), - [anon_sym_PLUS2] = ACTIONS(2568), - [anon_sym_bit_DASHshl2] = ACTIONS(2566), - [anon_sym_bit_DASHshr2] = ACTIONS(2566), - [anon_sym_bit_DASHand2] = ACTIONS(2566), - [anon_sym_bit_DASHxor2] = ACTIONS(2566), - [anon_sym_bit_DASHor2] = ACTIONS(2566), - [anon_sym_err_GT] = ACTIONS(2568), - [anon_sym_out_GT] = ACTIONS(2568), - [anon_sym_e_GT] = ACTIONS(2568), - [anon_sym_o_GT] = ACTIONS(2568), - [anon_sym_err_PLUSout_GT] = ACTIONS(2568), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2568), - [anon_sym_o_PLUSe_GT] = ACTIONS(2568), - [anon_sym_e_PLUSo_GT] = ACTIONS(2568), - [anon_sym_err_GT_GT] = ACTIONS(2566), - [anon_sym_out_GT_GT] = ACTIONS(2566), - [anon_sym_e_GT_GT] = ACTIONS(2566), - [anon_sym_o_GT_GT] = ACTIONS(2566), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2566), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2566), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2566), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2566), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(914)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2239), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(961), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(914), - [anon_sym_in] = ACTIONS(1887), - [sym__newline] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_err_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_GT_PIPE] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_GT2] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1887), - [anon_sym_STAR2] = ACTIONS(1889), - [anon_sym_and2] = ACTIONS(1887), - [anon_sym_xor2] = ACTIONS(1887), - [anon_sym_or2] = ACTIONS(1887), - [anon_sym_not_DASHin2] = ACTIONS(1887), - [anon_sym_has2] = ACTIONS(1887), - [anon_sym_not_DASHhas2] = ACTIONS(1887), - [anon_sym_starts_DASHwith2] = ACTIONS(1887), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1887), - [anon_sym_ends_DASHwith2] = ACTIONS(1887), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1887), - [anon_sym_EQ_EQ2] = ACTIONS(1887), - [anon_sym_BANG_EQ2] = ACTIONS(1887), - [anon_sym_LT2] = ACTIONS(1889), - [anon_sym_LT_EQ2] = ACTIONS(1887), - [anon_sym_GT_EQ2] = ACTIONS(1887), - [anon_sym_EQ_TILDE2] = ACTIONS(1887), - [anon_sym_BANG_TILDE2] = ACTIONS(1887), - [anon_sym_like2] = ACTIONS(1887), - [anon_sym_not_DASHlike2] = ACTIONS(1887), - [anon_sym_STAR_STAR2] = ACTIONS(1887), - [anon_sym_PLUS_PLUS2] = ACTIONS(1887), - [anon_sym_SLASH2] = ACTIONS(1889), - [anon_sym_mod2] = ACTIONS(1887), - [anon_sym_SLASH_SLASH2] = ACTIONS(1887), - [anon_sym_PLUS2] = ACTIONS(1889), - [anon_sym_bit_DASHshl2] = ACTIONS(1887), - [anon_sym_bit_DASHshr2] = ACTIONS(1887), - [anon_sym_bit_DASHand2] = ACTIONS(1887), - [anon_sym_bit_DASHxor2] = ACTIONS(1887), - [anon_sym_bit_DASHor2] = ACTIONS(1887), - [anon_sym_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(1887), - [anon_sym_out_GT_GT] = ACTIONS(1887), - [anon_sym_e_GT_GT] = ACTIONS(1887), - [anon_sym_o_GT_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(915)] = { + [aux_sym__repeat_newline] = STATE(1120), + [sym__expr_parenthesized_immediate] = STATE(5076), [sym_comment] = STATE(915), - [ts_builtin_sym_end] = ACTIONS(1903), - [anon_sym_in] = ACTIONS(1903), - [sym__newline] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_err_GT_PIPE] = ACTIONS(1903), - [anon_sym_out_GT_PIPE] = ACTIONS(1903), - [anon_sym_e_GT_PIPE] = ACTIONS(1903), - [anon_sym_o_GT_PIPE] = ACTIONS(1903), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), - [anon_sym_GT2] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1903), - [anon_sym_STAR2] = ACTIONS(1905), - [anon_sym_and2] = ACTIONS(1903), - [anon_sym_xor2] = ACTIONS(1903), - [anon_sym_or2] = ACTIONS(1903), - [anon_sym_not_DASHin2] = ACTIONS(1903), - [anon_sym_has2] = ACTIONS(1903), - [anon_sym_not_DASHhas2] = ACTIONS(1903), - [anon_sym_starts_DASHwith2] = ACTIONS(1903), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1903), - [anon_sym_ends_DASHwith2] = ACTIONS(1903), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1903), - [anon_sym_EQ_EQ2] = ACTIONS(1903), - [anon_sym_BANG_EQ2] = ACTIONS(1903), - [anon_sym_LT2] = ACTIONS(1905), - [anon_sym_LT_EQ2] = ACTIONS(1903), - [anon_sym_GT_EQ2] = ACTIONS(1903), - [anon_sym_EQ_TILDE2] = ACTIONS(1903), - [anon_sym_BANG_TILDE2] = ACTIONS(1903), - [anon_sym_like2] = ACTIONS(1903), - [anon_sym_not_DASHlike2] = ACTIONS(1903), - [anon_sym_STAR_STAR2] = ACTIONS(1903), - [anon_sym_PLUS_PLUS2] = ACTIONS(1903), - [anon_sym_SLASH2] = ACTIONS(1905), - [anon_sym_mod2] = ACTIONS(1903), - [anon_sym_SLASH_SLASH2] = ACTIONS(1903), - [anon_sym_PLUS2] = ACTIONS(1905), - [anon_sym_bit_DASHshl2] = ACTIONS(1903), - [anon_sym_bit_DASHshr2] = ACTIONS(1903), - [anon_sym_bit_DASHand2] = ACTIONS(1903), - [anon_sym_bit_DASHxor2] = ACTIONS(1903), - [anon_sym_bit_DASHor2] = ACTIONS(1903), - [anon_sym_DOT_DOT2] = ACTIONS(1905), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1903), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1903), - [anon_sym_err_GT] = ACTIONS(1905), - [anon_sym_out_GT] = ACTIONS(1905), - [anon_sym_e_GT] = ACTIONS(1905), - [anon_sym_o_GT] = ACTIONS(1905), - [anon_sym_err_PLUSout_GT] = ACTIONS(1905), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), - [anon_sym_o_PLUSe_GT] = ACTIONS(1905), - [anon_sym_e_PLUSo_GT] = ACTIONS(1905), - [anon_sym_err_GT_GT] = ACTIONS(1903), - [anon_sym_out_GT_GT] = ACTIONS(1903), - [anon_sym_e_GT_GT] = ACTIONS(1903), - [anon_sym_o_GT_GT] = ACTIONS(1903), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(916)] = { + [sym_cell_path] = STATE(1355), + [sym_path] = STATE(703), [sym_comment] = STATE(916), - [ts_builtin_sym_end] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_GT2] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1846), - [anon_sym_STAR2] = ACTIONS(1848), - [anon_sym_and2] = ACTIONS(1846), - [anon_sym_xor2] = ACTIONS(1846), - [anon_sym_or2] = ACTIONS(1846), - [anon_sym_not_DASHin2] = ACTIONS(1846), - [anon_sym_has2] = ACTIONS(1846), - [anon_sym_not_DASHhas2] = ACTIONS(1846), - [anon_sym_starts_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), - [anon_sym_ends_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), - [anon_sym_EQ_EQ2] = ACTIONS(1846), - [anon_sym_BANG_EQ2] = ACTIONS(1846), - [anon_sym_LT2] = ACTIONS(1848), - [anon_sym_LT_EQ2] = ACTIONS(1846), - [anon_sym_GT_EQ2] = ACTIONS(1846), - [anon_sym_EQ_TILDE2] = ACTIONS(1846), - [anon_sym_BANG_TILDE2] = ACTIONS(1846), - [anon_sym_like2] = ACTIONS(1846), - [anon_sym_not_DASHlike2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1846), - [anon_sym_STAR_STAR2] = ACTIONS(1846), - [anon_sym_PLUS_PLUS2] = ACTIONS(1846), - [anon_sym_SLASH2] = ACTIONS(1848), - [anon_sym_mod2] = ACTIONS(1846), - [anon_sym_SLASH_SLASH2] = ACTIONS(1846), - [anon_sym_PLUS2] = ACTIONS(1848), - [anon_sym_bit_DASHshl2] = ACTIONS(1846), - [anon_sym_bit_DASHshr2] = ACTIONS(1846), - [anon_sym_bit_DASHand2] = ACTIONS(1846), - [anon_sym_bit_DASHxor2] = ACTIONS(1846), - [anon_sym_bit_DASHor2] = ACTIONS(1846), - [aux_sym__immediate_decimal_token5] = ACTIONS(2570), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), - [sym__unquoted_pattern] = ACTIONS(1848), + [aux_sym__where_predicate_lhs_repeat1] = STATE(669), + [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(2362), + [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(917)] = { [sym_comment] = STATE(917), - [anon_sym_in] = ACTIONS(2572), - [sym__newline] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2572), - [anon_sym_err_GT_PIPE] = ACTIONS(2572), - [anon_sym_out_GT_PIPE] = ACTIONS(2572), - [anon_sym_e_GT_PIPE] = ACTIONS(2572), - [anon_sym_o_GT_PIPE] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2572), - [anon_sym_RPAREN] = ACTIONS(2572), - [anon_sym_GT2] = ACTIONS(2574), - [anon_sym_DASH2] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_STAR2] = ACTIONS(2574), - [anon_sym_and2] = ACTIONS(2572), - [anon_sym_xor2] = ACTIONS(2572), - [anon_sym_or2] = ACTIONS(2572), - [anon_sym_not_DASHin2] = ACTIONS(2572), - [anon_sym_has2] = ACTIONS(2572), - [anon_sym_not_DASHhas2] = ACTIONS(2572), - [anon_sym_starts_DASHwith2] = ACTIONS(2572), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2572), - [anon_sym_ends_DASHwith2] = ACTIONS(2572), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2572), - [anon_sym_EQ_EQ2] = ACTIONS(2572), - [anon_sym_BANG_EQ2] = ACTIONS(2572), - [anon_sym_LT2] = ACTIONS(2574), - [anon_sym_LT_EQ2] = ACTIONS(2572), - [anon_sym_GT_EQ2] = ACTIONS(2572), - [anon_sym_EQ_TILDE2] = ACTIONS(2572), - [anon_sym_BANG_TILDE2] = ACTIONS(2572), - [anon_sym_like2] = ACTIONS(2572), - [anon_sym_not_DASHlike2] = ACTIONS(2572), - [anon_sym_LPAREN2] = ACTIONS(2576), - [anon_sym_STAR_STAR2] = ACTIONS(2572), - [anon_sym_PLUS_PLUS2] = ACTIONS(2572), - [anon_sym_SLASH2] = ACTIONS(2574), - [anon_sym_mod2] = ACTIONS(2572), - [anon_sym_SLASH_SLASH2] = ACTIONS(2572), - [anon_sym_PLUS2] = ACTIONS(2574), - [anon_sym_bit_DASHshl2] = ACTIONS(2572), - [anon_sym_bit_DASHshr2] = ACTIONS(2572), - [anon_sym_bit_DASHand2] = ACTIONS(2572), - [anon_sym_bit_DASHxor2] = ACTIONS(2572), - [anon_sym_bit_DASHor2] = ACTIONS(2572), - [anon_sym_err_GT] = ACTIONS(2574), - [anon_sym_out_GT] = ACTIONS(2574), - [anon_sym_e_GT] = ACTIONS(2574), - [anon_sym_o_GT] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT] = ACTIONS(2574), - [anon_sym_err_GT_GT] = ACTIONS(2572), - [anon_sym_out_GT_GT] = ACTIONS(2572), - [anon_sym_e_GT_GT] = ACTIONS(2572), - [anon_sym_o_GT_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2572), - [sym__unquoted_pattern] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(2558), + [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(918)] = { [sym_comment] = STATE(918), - [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), + [ts_builtin_sym_end] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1784), + [sym__newline] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_err_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_GT_PIPE] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), + [anon_sym_GT2] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1784), + [anon_sym_xor2] = ACTIONS(1784), + [anon_sym_or2] = ACTIONS(1784), + [anon_sym_not_DASHin2] = ACTIONS(1784), + [anon_sym_has2] = ACTIONS(1784), + [anon_sym_not_DASHhas2] = ACTIONS(1784), + [anon_sym_starts_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), + [anon_sym_ends_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), + [anon_sym_EQ_EQ2] = ACTIONS(1784), + [anon_sym_BANG_EQ2] = ACTIONS(1784), + [anon_sym_LT2] = ACTIONS(1786), + [anon_sym_LT_EQ2] = ACTIONS(1784), + [anon_sym_GT_EQ2] = ACTIONS(1784), + [anon_sym_EQ_TILDE2] = ACTIONS(1784), + [anon_sym_BANG_TILDE2] = ACTIONS(1784), + [anon_sym_like2] = ACTIONS(1784), + [anon_sym_not_DASHlike2] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1784), + [anon_sym_PLUS_PLUS2] = ACTIONS(1784), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1784), + [anon_sym_SLASH_SLASH2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_bit_DASHshl2] = ACTIONS(1784), + [anon_sym_bit_DASHshr2] = ACTIONS(1784), + [anon_sym_bit_DASHand2] = ACTIONS(1784), + [anon_sym_bit_DASHxor2] = ACTIONS(1784), + [anon_sym_bit_DASHor2] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(2562), + [aux_sym__immediate_decimal_token5] = ACTIONS(2564), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1784), + [anon_sym_out_GT_GT] = ACTIONS(1784), + [anon_sym_e_GT_GT] = ACTIONS(1784), + [anon_sym_o_GT_GT] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), + [sym__unquoted_pattern] = ACTIONS(1786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(919)] = { [sym_comment] = STATE(919), - [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(2582), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2584), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2584), - [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(920)] = { - [sym_comment] = STATE(920), - [ts_builtin_sym_end] = ACTIONS(1982), - [anon_sym_in] = ACTIONS(1982), - [sym__newline] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_err_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_GT_PIPE] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), - [anon_sym_GT2] = ACTIONS(1984), - [anon_sym_DASH2] = ACTIONS(1982), - [anon_sym_STAR2] = ACTIONS(1984), - [anon_sym_and2] = ACTIONS(1982), - [anon_sym_xor2] = ACTIONS(1982), - [anon_sym_or2] = ACTIONS(1982), - [anon_sym_not_DASHin2] = ACTIONS(1982), - [anon_sym_has2] = ACTIONS(1982), - [anon_sym_not_DASHhas2] = ACTIONS(1982), - [anon_sym_starts_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), - [anon_sym_ends_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), - [anon_sym_EQ_EQ2] = ACTIONS(1982), - [anon_sym_BANG_EQ2] = ACTIONS(1982), - [anon_sym_LT2] = ACTIONS(1984), - [anon_sym_LT_EQ2] = ACTIONS(1982), - [anon_sym_GT_EQ2] = ACTIONS(1982), - [anon_sym_EQ_TILDE2] = ACTIONS(1982), - [anon_sym_BANG_TILDE2] = ACTIONS(1982), - [anon_sym_like2] = ACTIONS(1982), - [anon_sym_not_DASHlike2] = ACTIONS(1982), - [anon_sym_STAR_STAR2] = ACTIONS(1982), - [anon_sym_PLUS_PLUS2] = ACTIONS(1982), - [anon_sym_SLASH2] = ACTIONS(1984), - [anon_sym_mod2] = ACTIONS(1982), - [anon_sym_SLASH_SLASH2] = ACTIONS(1982), - [anon_sym_PLUS2] = ACTIONS(1984), - [anon_sym_bit_DASHshl2] = ACTIONS(1982), - [anon_sym_bit_DASHshr2] = ACTIONS(1982), - [anon_sym_bit_DASHand2] = ACTIONS(1982), - [anon_sym_bit_DASHxor2] = ACTIONS(1982), - [anon_sym_bit_DASHor2] = ACTIONS(1982), - [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(1984), - [anon_sym_out_GT] = ACTIONS(1984), - [anon_sym_e_GT] = ACTIONS(1984), - [anon_sym_o_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT] = ACTIONS(1984), - [anon_sym_err_GT_GT] = ACTIONS(1982), - [anon_sym_out_GT_GT] = ACTIONS(1982), - [anon_sym_e_GT_GT] = ACTIONS(1982), - [anon_sym_o_GT_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(921)] = { - [sym_comment] = STATE(921), - [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_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(922)] = { - [sym_comment] = STATE(922), + [ts_builtin_sym_end] = ACTIONS(1730), [anon_sym_in] = ACTIONS(1730), [sym__newline] = ACTIONS(1730), [anon_sym_SEMI] = ACTIONS(1730), @@ -117640,10 +117858,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), - [anon_sym_RPAREN] = ACTIONS(1730), [anon_sym_GT2] = ACTIONS(1732), [anon_sym_DASH2] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_STAR2] = ACTIONS(1732), [anon_sym_and2] = ACTIONS(1730), [anon_sym_xor2] = ACTIONS(1730), @@ -117676,6 +117892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1730), [anon_sym_bit_DASHxor2] = ACTIONS(1730), [anon_sym_bit_DASHor2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token1] = ACTIONS(2566), + [aux_sym__immediate_decimal_token5] = ACTIONS(2568), [anon_sym_err_GT] = ACTIONS(1732), [anon_sym_out_GT] = ACTIONS(1732), [anon_sym_e_GT] = ACTIONS(1732), @@ -117695,1250 +117913,1185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1732), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(920)] = { + [sym_comment] = STATE(920), + [anon_sym_in] = ACTIONS(2570), + [sym__newline] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_err_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_GT_PIPE] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_GT2] = ACTIONS(2572), + [anon_sym_DASH2] = ACTIONS(2570), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_STAR2] = ACTIONS(2572), + [anon_sym_and2] = ACTIONS(2570), + [anon_sym_xor2] = ACTIONS(2570), + [anon_sym_or2] = ACTIONS(2570), + [anon_sym_not_DASHin2] = ACTIONS(2570), + [anon_sym_has2] = ACTIONS(2570), + [anon_sym_not_DASHhas2] = ACTIONS(2570), + [anon_sym_starts_DASHwith2] = ACTIONS(2570), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2570), + [anon_sym_ends_DASHwith2] = ACTIONS(2570), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2570), + [anon_sym_EQ_EQ2] = ACTIONS(2570), + [anon_sym_BANG_EQ2] = ACTIONS(2570), + [anon_sym_LT2] = ACTIONS(2572), + [anon_sym_LT_EQ2] = ACTIONS(2570), + [anon_sym_GT_EQ2] = ACTIONS(2570), + [anon_sym_EQ_TILDE2] = ACTIONS(2570), + [anon_sym_BANG_TILDE2] = ACTIONS(2570), + [anon_sym_like2] = ACTIONS(2570), + [anon_sym_not_DASHlike2] = ACTIONS(2570), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_STAR_STAR2] = ACTIONS(2570), + [anon_sym_PLUS_PLUS2] = ACTIONS(2570), + [anon_sym_SLASH2] = ACTIONS(2572), + [anon_sym_mod2] = ACTIONS(2570), + [anon_sym_SLASH_SLASH2] = ACTIONS(2570), + [anon_sym_PLUS2] = ACTIONS(2572), + [anon_sym_bit_DASHshl2] = ACTIONS(2570), + [anon_sym_bit_DASHshr2] = ACTIONS(2570), + [anon_sym_bit_DASHand2] = ACTIONS(2570), + [anon_sym_bit_DASHxor2] = ACTIONS(2570), + [anon_sym_bit_DASHor2] = ACTIONS(2570), + [anon_sym_err_GT] = ACTIONS(2572), + [anon_sym_out_GT] = ACTIONS(2572), + [anon_sym_e_GT] = ACTIONS(2572), + [anon_sym_o_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT] = ACTIONS(2572), + [anon_sym_err_GT_GT] = ACTIONS(2570), + [anon_sym_out_GT_GT] = ACTIONS(2570), + [anon_sym_e_GT_GT] = ACTIONS(2570), + [anon_sym_o_GT_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), + [sym__unquoted_pattern] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(921)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2243), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2014), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(921), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(922)] = { + [aux_sym__repeat_newline] = STATE(1014), + [sym__expr_parenthesized_immediate] = STATE(5076), + [sym_comment] = STATE(922), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(923)] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1701), + [sym_expr_parenthesized] = STATE(720), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1427), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(923), - [anon_sym_export] = ACTIONS(2330), - [anon_sym_alias] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_mut] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [aux_sym_cmd_identifier_token1] = ACTIONS(2330), - [anon_sym_def] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_export_DASHenv] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2330), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_null] = ACTIONS(2332), - [aux_sym_cmd_identifier_token3] = ACTIONS(2332), - [aux_sym_cmd_identifier_token4] = ACTIONS(2332), - [aux_sym_cmd_identifier_token5] = ACTIONS(2332), - [sym__newline] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_err_GT_PIPE] = ACTIONS(2332), - [anon_sym_out_GT_PIPE] = ACTIONS(2332), - [anon_sym_e_GT_PIPE] = ACTIONS(2332), - [anon_sym_o_GT_PIPE] = ACTIONS(2332), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2332), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2332), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2332), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2330), - [anon_sym_DASH2] = ACTIONS(2330), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_DOT_DOT] = ACTIONS(2330), - [anon_sym_where] = ACTIONS(2332), - [aux_sym_expr_unary_token1] = ACTIONS(2332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [aux_sym__val_number_decimal_token1] = ACTIONS(2330), - [aux_sym__val_number_decimal_token2] = ACTIONS(2332), - [aux_sym__val_number_decimal_token3] = ACTIONS(2332), - [aux_sym__val_number_decimal_token4] = ACTIONS(2332), - [aux_sym__val_number_token1] = ACTIONS(2332), - [aux_sym__val_number_token2] = ACTIONS(2332), - [aux_sym__val_number_token3] = ACTIONS(2332), - [anon_sym_0b] = ACTIONS(2330), - [anon_sym_0o] = ACTIONS(2330), - [anon_sym_0x] = ACTIONS(2330), - [sym_val_date] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_BQUOTE] = ACTIONS(2332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2069), + [aux_sym_cmd_identifier_token4] = ACTIONS(2069), + [aux_sym_cmd_identifier_token5] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(924)] = { [sym_comment] = STATE(924), - [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_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(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(925)] = { [sym_comment] = STATE(925), - [anon_sym_export] = ACTIONS(2590), - [anon_sym_alias] = ACTIONS(2592), - [anon_sym_let] = ACTIONS(2592), - [anon_sym_mut] = ACTIONS(2592), - [anon_sym_const] = ACTIONS(2592), - [aux_sym_cmd_identifier_token1] = ACTIONS(2590), - [anon_sym_def] = ACTIONS(2592), - [anon_sym_use] = ACTIONS(2592), - [anon_sym_export_DASHenv] = ACTIONS(2592), - [anon_sym_extern] = ACTIONS(2592), - [anon_sym_module] = ACTIONS(2592), - [anon_sym_for] = ACTIONS(2592), - [anon_sym_loop] = ACTIONS(2592), - [anon_sym_while] = ACTIONS(2592), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_else] = ACTIONS(2592), - [anon_sym_try] = ACTIONS(2592), - [anon_sym_catch] = ACTIONS(2592), - [anon_sym_finally] = ACTIONS(2592), - [anon_sym_match] = ACTIONS(2592), - [anon_sym_in] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2592), - [anon_sym_false] = ACTIONS(2592), - [anon_sym_null] = ACTIONS(2592), - [aux_sym_cmd_identifier_token3] = ACTIONS(2592), - [aux_sym_cmd_identifier_token4] = ACTIONS(2592), - [aux_sym_cmd_identifier_token5] = ACTIONS(2592), - [sym__newline] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_err_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_GT_PIPE] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(2592), - [anon_sym_LPAREN] = ACTIONS(2592), - [anon_sym_DOLLAR] = ACTIONS(2590), - [anon_sym_DASH2] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_DOT_DOT] = ACTIONS(2590), - [anon_sym_where] = ACTIONS(2592), - [aux_sym_expr_unary_token1] = ACTIONS(2592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2592), - [anon_sym_DOT_DOT_LT] = ACTIONS(2592), - [aux_sym__val_number_decimal_token1] = ACTIONS(2590), - [aux_sym__val_number_decimal_token2] = ACTIONS(2592), - [aux_sym__val_number_decimal_token3] = ACTIONS(2592), - [aux_sym__val_number_decimal_token4] = ACTIONS(2592), - [aux_sym__val_number_token1] = ACTIONS(2592), - [aux_sym__val_number_token2] = ACTIONS(2592), - [aux_sym__val_number_token3] = ACTIONS(2592), - [anon_sym_0b] = ACTIONS(2590), - [anon_sym_0o] = ACTIONS(2590), - [anon_sym_0x] = ACTIONS(2590), - [sym_val_date] = ACTIONS(2592), - [anon_sym_DQUOTE] = ACTIONS(2592), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_BQUOTE] = ACTIONS(2592), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), - [anon_sym_CARET] = ACTIONS(2592), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(1967), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [aux_sym_cmd_identifier_token1] = ACTIONS(1967), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_else] = ACTIONS(1965), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_catch] = ACTIONS(1965), + [anon_sym_finally] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_in] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1965), + [anon_sym_false] = ACTIONS(1965), + [anon_sym_null] = ACTIONS(1965), + [aux_sym_cmd_identifier_token3] = ACTIONS(1965), + [aux_sym_cmd_identifier_token4] = ACTIONS(1965), + [aux_sym_cmd_identifier_token5] = ACTIONS(1965), + [sym__newline] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_err_GT_PIPE] = ACTIONS(1965), + [anon_sym_out_GT_PIPE] = ACTIONS(1965), + [anon_sym_e_GT_PIPE] = ACTIONS(1965), + [anon_sym_o_GT_PIPE] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_DOLLAR] = ACTIONS(1967), + [anon_sym_DASH2] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1965), + [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_where] = ACTIONS(1965), + [aux_sym_expr_unary_token1] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1965), + [anon_sym_DOT_DOT_LT] = ACTIONS(1965), + [aux_sym__val_number_decimal_token1] = ACTIONS(1967), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(1965), + [aux_sym__val_number_token2] = ACTIONS(1965), + [aux_sym__val_number_token3] = ACTIONS(1965), + [anon_sym_0b] = ACTIONS(1967), + [anon_sym_0o] = ACTIONS(1967), + [anon_sym_0x] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_BQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1965), }, [STATE(926)] = { [sym_comment] = STATE(926), - [anon_sym_in] = ACTIONS(2572), - [sym__newline] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2572), - [anon_sym_err_GT_PIPE] = ACTIONS(2572), - [anon_sym_out_GT_PIPE] = ACTIONS(2572), - [anon_sym_e_GT_PIPE] = ACTIONS(2572), - [anon_sym_o_GT_PIPE] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2572), - [anon_sym_RPAREN] = ACTIONS(2572), - [anon_sym_GT2] = ACTIONS(2574), - [anon_sym_DASH2] = ACTIONS(2572), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_EQ_GT] = ACTIONS(2572), - [anon_sym_STAR2] = ACTIONS(2574), - [anon_sym_and2] = ACTIONS(2572), - [anon_sym_xor2] = ACTIONS(2572), - [anon_sym_or2] = ACTIONS(2572), - [anon_sym_not_DASHin2] = ACTIONS(2572), - [anon_sym_has2] = ACTIONS(2572), - [anon_sym_not_DASHhas2] = ACTIONS(2572), - [anon_sym_starts_DASHwith2] = ACTIONS(2572), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2572), - [anon_sym_ends_DASHwith2] = ACTIONS(2572), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2572), - [anon_sym_EQ_EQ2] = ACTIONS(2572), - [anon_sym_BANG_EQ2] = ACTIONS(2572), - [anon_sym_LT2] = ACTIONS(2574), - [anon_sym_LT_EQ2] = ACTIONS(2572), - [anon_sym_GT_EQ2] = ACTIONS(2572), - [anon_sym_EQ_TILDE2] = ACTIONS(2572), - [anon_sym_BANG_TILDE2] = ACTIONS(2572), - [anon_sym_like2] = ACTIONS(2572), - [anon_sym_not_DASHlike2] = ACTIONS(2572), - [anon_sym_STAR_STAR2] = ACTIONS(2572), - [anon_sym_PLUS_PLUS2] = ACTIONS(2572), - [anon_sym_SLASH2] = ACTIONS(2574), - [anon_sym_mod2] = ACTIONS(2572), - [anon_sym_SLASH_SLASH2] = ACTIONS(2572), - [anon_sym_PLUS2] = ACTIONS(2574), - [anon_sym_bit_DASHshl2] = ACTIONS(2572), - [anon_sym_bit_DASHshr2] = ACTIONS(2572), - [anon_sym_bit_DASHand2] = ACTIONS(2572), - [anon_sym_bit_DASHxor2] = ACTIONS(2572), - [anon_sym_bit_DASHor2] = ACTIONS(2572), - [anon_sym_err_GT] = ACTIONS(2574), - [anon_sym_out_GT] = ACTIONS(2574), - [anon_sym_e_GT] = ACTIONS(2574), - [anon_sym_o_GT] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT] = ACTIONS(2574), - [anon_sym_err_GT_GT] = ACTIONS(2572), - [anon_sym_out_GT_GT] = ACTIONS(2572), - [anon_sym_e_GT_GT] = ACTIONS(2572), - [anon_sym_o_GT_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2572), + [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_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1582), + [anon_sym_STAR2] = ACTIONS(1580), + [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(1580), + [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_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1582), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1580), + [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_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [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(927)] = { [sym_comment] = STATE(927), - [anon_sym_in] = ACTIONS(1907), - [sym__newline] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_err_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_GT_PIPE] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), - [anon_sym_RPAREN] = ACTIONS(1907), - [anon_sym_GT2] = ACTIONS(1909), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1907), - [anon_sym_STAR2] = ACTIONS(1909), - [anon_sym_and2] = ACTIONS(1907), - [anon_sym_xor2] = ACTIONS(1907), - [anon_sym_or2] = ACTIONS(1907), - [anon_sym_not_DASHin2] = ACTIONS(1907), - [anon_sym_has2] = ACTIONS(1907), - [anon_sym_not_DASHhas2] = ACTIONS(1907), - [anon_sym_starts_DASHwith2] = ACTIONS(1907), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1907), - [anon_sym_ends_DASHwith2] = ACTIONS(1907), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1907), - [anon_sym_EQ_EQ2] = ACTIONS(1907), - [anon_sym_BANG_EQ2] = ACTIONS(1907), - [anon_sym_LT2] = ACTIONS(1909), - [anon_sym_LT_EQ2] = ACTIONS(1907), - [anon_sym_GT_EQ2] = ACTIONS(1907), - [anon_sym_EQ_TILDE2] = ACTIONS(1907), - [anon_sym_BANG_TILDE2] = ACTIONS(1907), - [anon_sym_like2] = ACTIONS(1907), - [anon_sym_not_DASHlike2] = ACTIONS(1907), - [anon_sym_STAR_STAR2] = ACTIONS(1907), - [anon_sym_PLUS_PLUS2] = ACTIONS(1907), - [anon_sym_SLASH2] = ACTIONS(1909), - [anon_sym_mod2] = ACTIONS(1907), - [anon_sym_SLASH_SLASH2] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1909), - [anon_sym_bit_DASHshl2] = ACTIONS(1907), - [anon_sym_bit_DASHshr2] = ACTIONS(1907), - [anon_sym_bit_DASHand2] = ACTIONS(1907), - [anon_sym_bit_DASHxor2] = ACTIONS(1907), - [anon_sym_bit_DASHor2] = ACTIONS(1907), - [anon_sym_err_GT] = ACTIONS(1909), - [anon_sym_out_GT] = ACTIONS(1909), - [anon_sym_e_GT] = ACTIONS(1909), - [anon_sym_o_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT] = ACTIONS(1909), - [anon_sym_err_GT_GT] = ACTIONS(1907), - [anon_sym_out_GT_GT] = ACTIONS(1907), - [anon_sym_e_GT_GT] = ACTIONS(1907), - [anon_sym_o_GT_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_LPAREN2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1714), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [sym__unquoted_pattern] = ACTIONS(2580), [anon_sym_POUND] = ACTIONS(3), }, [STATE(928)] = { [sym_comment] = STATE(928), - [anon_sym_in] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_GT2] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_STAR2] = ACTIONS(1848), - [anon_sym_and2] = ACTIONS(1846), - [anon_sym_xor2] = ACTIONS(1846), - [anon_sym_or2] = ACTIONS(1846), - [anon_sym_not_DASHin2] = ACTIONS(1846), - [anon_sym_has2] = ACTIONS(1846), - [anon_sym_not_DASHhas2] = ACTIONS(1846), - [anon_sym_starts_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), - [anon_sym_ends_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), - [anon_sym_EQ_EQ2] = ACTIONS(1846), - [anon_sym_BANG_EQ2] = ACTIONS(1846), - [anon_sym_LT2] = ACTIONS(1848), - [anon_sym_LT_EQ2] = ACTIONS(1846), - [anon_sym_GT_EQ2] = ACTIONS(1846), - [anon_sym_EQ_TILDE2] = ACTIONS(1846), - [anon_sym_BANG_TILDE2] = ACTIONS(1846), - [anon_sym_like2] = ACTIONS(1846), - [anon_sym_not_DASHlike2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1846), - [anon_sym_STAR_STAR2] = ACTIONS(1846), - [anon_sym_PLUS_PLUS2] = ACTIONS(1846), - [anon_sym_SLASH2] = ACTIONS(1848), - [anon_sym_mod2] = ACTIONS(1846), - [anon_sym_SLASH_SLASH2] = ACTIONS(1846), - [anon_sym_PLUS2] = ACTIONS(1848), - [anon_sym_bit_DASHshl2] = ACTIONS(1846), - [anon_sym_bit_DASHshr2] = ACTIONS(1846), - [anon_sym_bit_DASHand2] = ACTIONS(1846), - [anon_sym_bit_DASHxor2] = ACTIONS(1846), - [anon_sym_bit_DASHor2] = ACTIONS(1846), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), - [sym__unquoted_pattern] = ACTIONS(1848), + [ts_builtin_sym_end] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1784), + [sym__newline] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_err_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_GT_PIPE] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), + [anon_sym_GT2] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1784), + [anon_sym_xor2] = ACTIONS(1784), + [anon_sym_or2] = ACTIONS(1784), + [anon_sym_not_DASHin2] = ACTIONS(1784), + [anon_sym_has2] = ACTIONS(1784), + [anon_sym_not_DASHhas2] = ACTIONS(1784), + [anon_sym_starts_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), + [anon_sym_ends_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), + [anon_sym_EQ_EQ2] = ACTIONS(1784), + [anon_sym_BANG_EQ2] = ACTIONS(1784), + [anon_sym_LT2] = ACTIONS(1786), + [anon_sym_LT_EQ2] = ACTIONS(1784), + [anon_sym_GT_EQ2] = ACTIONS(1784), + [anon_sym_EQ_TILDE2] = ACTIONS(1784), + [anon_sym_BANG_TILDE2] = ACTIONS(1784), + [anon_sym_like2] = ACTIONS(1784), + [anon_sym_not_DASHlike2] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1784), + [anon_sym_PLUS_PLUS2] = ACTIONS(1784), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1784), + [anon_sym_SLASH_SLASH2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_bit_DASHshl2] = ACTIONS(1784), + [anon_sym_bit_DASHshr2] = ACTIONS(1784), + [anon_sym_bit_DASHand2] = ACTIONS(1784), + [anon_sym_bit_DASHxor2] = ACTIONS(1784), + [anon_sym_bit_DASHor2] = ACTIONS(1784), + [aux_sym__immediate_decimal_token5] = ACTIONS(2564), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1784), + [anon_sym_out_GT_GT] = ACTIONS(1784), + [anon_sym_e_GT_GT] = ACTIONS(1784), + [anon_sym_o_GT_GT] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), + [sym__unquoted_pattern] = ACTIONS(1786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(929)] = { [sym_comment] = STATE(929), - [anon_sym_in] = ACTIONS(1895), - [sym__newline] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_err_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_GT_PIPE] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), - [anon_sym_RPAREN] = ACTIONS(1895), - [anon_sym_GT2] = ACTIONS(1897), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_STAR2] = ACTIONS(1897), - [anon_sym_and2] = ACTIONS(1895), - [anon_sym_xor2] = ACTIONS(1895), - [anon_sym_or2] = ACTIONS(1895), - [anon_sym_not_DASHin2] = ACTIONS(1895), - [anon_sym_has2] = ACTIONS(1895), - [anon_sym_not_DASHhas2] = ACTIONS(1895), - [anon_sym_starts_DASHwith2] = ACTIONS(1895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1895), - [anon_sym_ends_DASHwith2] = ACTIONS(1895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1895), - [anon_sym_EQ_EQ2] = ACTIONS(1895), - [anon_sym_BANG_EQ2] = ACTIONS(1895), - [anon_sym_LT2] = ACTIONS(1897), - [anon_sym_LT_EQ2] = ACTIONS(1895), - [anon_sym_GT_EQ2] = ACTIONS(1895), - [anon_sym_EQ_TILDE2] = ACTIONS(1895), - [anon_sym_BANG_TILDE2] = ACTIONS(1895), - [anon_sym_like2] = ACTIONS(1895), - [anon_sym_not_DASHlike2] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1895), - [anon_sym_STAR_STAR2] = ACTIONS(1895), - [anon_sym_PLUS_PLUS2] = ACTIONS(1895), - [anon_sym_SLASH2] = ACTIONS(1897), - [anon_sym_mod2] = ACTIONS(1895), - [anon_sym_SLASH_SLASH2] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1897), - [anon_sym_bit_DASHshl2] = ACTIONS(1895), - [anon_sym_bit_DASHshr2] = ACTIONS(1895), - [anon_sym_bit_DASHand2] = ACTIONS(1895), - [anon_sym_bit_DASHxor2] = ACTIONS(1895), - [anon_sym_bit_DASHor2] = ACTIONS(1895), - [anon_sym_err_GT] = ACTIONS(1897), - [anon_sym_out_GT] = ACTIONS(1897), - [anon_sym_e_GT] = ACTIONS(1897), - [anon_sym_o_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT] = ACTIONS(1897), - [anon_sym_err_GT_GT] = ACTIONS(1895), - [anon_sym_out_GT_GT] = ACTIONS(1895), - [anon_sym_e_GT_GT] = ACTIONS(1895), - [anon_sym_o_GT_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), - [sym__unquoted_pattern] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_LPAREN2] = ACTIONS(2094), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), + [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, [STATE(930)] = { - [aux_sym__repeat_newline] = STATE(1059), - [sym__expression_parenthesized] = STATE(4643), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2190), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), [sym_comment] = STATE(930), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [sym__newline] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = 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_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(1957), + [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(1963), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(931)] = { [sym_comment] = STATE(931), - [anon_sym_in] = ACTIONS(2608), - [sym__newline] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_PIPE] = ACTIONS(2608), - [anon_sym_err_GT_PIPE] = ACTIONS(2608), - [anon_sym_out_GT_PIPE] = ACTIONS(2608), - [anon_sym_e_GT_PIPE] = ACTIONS(2608), - [anon_sym_o_GT_PIPE] = ACTIONS(2608), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2608), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2608), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2608), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2608), - [anon_sym_RPAREN] = ACTIONS(2608), - [anon_sym_GT2] = ACTIONS(2610), - [anon_sym_DASH2] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_STAR2] = ACTIONS(2610), - [anon_sym_and2] = ACTIONS(2608), - [anon_sym_xor2] = ACTIONS(2608), - [anon_sym_or2] = ACTIONS(2608), - [anon_sym_not_DASHin2] = ACTIONS(2608), - [anon_sym_has2] = ACTIONS(2608), - [anon_sym_not_DASHhas2] = ACTIONS(2608), - [anon_sym_starts_DASHwith2] = ACTIONS(2608), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2608), - [anon_sym_ends_DASHwith2] = ACTIONS(2608), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2608), - [anon_sym_EQ_EQ2] = ACTIONS(2608), - [anon_sym_BANG_EQ2] = ACTIONS(2608), - [anon_sym_LT2] = ACTIONS(2610), - [anon_sym_LT_EQ2] = ACTIONS(2608), - [anon_sym_GT_EQ2] = ACTIONS(2608), - [anon_sym_EQ_TILDE2] = ACTIONS(2608), - [anon_sym_BANG_TILDE2] = ACTIONS(2608), - [anon_sym_like2] = ACTIONS(2608), - [anon_sym_not_DASHlike2] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(2612), - [anon_sym_STAR_STAR2] = ACTIONS(2608), - [anon_sym_PLUS_PLUS2] = ACTIONS(2608), - [anon_sym_SLASH2] = ACTIONS(2610), - [anon_sym_mod2] = ACTIONS(2608), - [anon_sym_SLASH_SLASH2] = ACTIONS(2608), - [anon_sym_PLUS2] = ACTIONS(2610), - [anon_sym_bit_DASHshl2] = ACTIONS(2608), - [anon_sym_bit_DASHshr2] = ACTIONS(2608), - [anon_sym_bit_DASHand2] = ACTIONS(2608), - [anon_sym_bit_DASHxor2] = ACTIONS(2608), - [anon_sym_bit_DASHor2] = ACTIONS(2608), - [anon_sym_err_GT] = ACTIONS(2610), - [anon_sym_out_GT] = ACTIONS(2610), - [anon_sym_e_GT] = ACTIONS(2610), - [anon_sym_o_GT] = ACTIONS(2610), - [anon_sym_err_PLUSout_GT] = ACTIONS(2610), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2610), - [anon_sym_o_PLUSe_GT] = ACTIONS(2610), - [anon_sym_e_PLUSo_GT] = ACTIONS(2610), - [anon_sym_err_GT_GT] = ACTIONS(2608), - [anon_sym_out_GT_GT] = ACTIONS(2608), - [anon_sym_e_GT_GT] = ACTIONS(2608), - [anon_sym_o_GT_GT] = ACTIONS(2608), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2608), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2608), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2608), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2608), - [sym__unquoted_pattern] = ACTIONS(2614), + [anon_sym_in] = ACTIONS(1953), + [sym__newline] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_err_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_GT_PIPE] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1953), + [anon_sym_GT2] = ACTIONS(1955), + [anon_sym_DASH2] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_STAR2] = ACTIONS(1955), + [anon_sym_and2] = ACTIONS(1953), + [anon_sym_xor2] = ACTIONS(1953), + [anon_sym_or2] = ACTIONS(1953), + [anon_sym_not_DASHin2] = ACTIONS(1953), + [anon_sym_has2] = ACTIONS(1953), + [anon_sym_not_DASHhas2] = ACTIONS(1953), + [anon_sym_starts_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), + [anon_sym_ends_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), + [anon_sym_EQ_EQ2] = ACTIONS(1953), + [anon_sym_BANG_EQ2] = ACTIONS(1953), + [anon_sym_LT2] = ACTIONS(1955), + [anon_sym_LT_EQ2] = ACTIONS(1953), + [anon_sym_GT_EQ2] = ACTIONS(1953), + [anon_sym_EQ_TILDE2] = ACTIONS(1953), + [anon_sym_BANG_TILDE2] = ACTIONS(1953), + [anon_sym_like2] = ACTIONS(1953), + [anon_sym_not_DASHlike2] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1957), + [anon_sym_STAR_STAR2] = ACTIONS(1953), + [anon_sym_PLUS_PLUS2] = ACTIONS(1953), + [anon_sym_SLASH2] = ACTIONS(1955), + [anon_sym_mod2] = ACTIONS(1953), + [anon_sym_SLASH_SLASH2] = ACTIONS(1953), + [anon_sym_PLUS2] = ACTIONS(1955), + [anon_sym_bit_DASHshl2] = ACTIONS(1953), + [anon_sym_bit_DASHshr2] = ACTIONS(1953), + [anon_sym_bit_DASHand2] = ACTIONS(1953), + [anon_sym_bit_DASHxor2] = ACTIONS(1953), + [anon_sym_bit_DASHor2] = ACTIONS(1953), + [anon_sym_err_GT] = ACTIONS(1955), + [anon_sym_out_GT] = ACTIONS(1955), + [anon_sym_e_GT] = ACTIONS(1955), + [anon_sym_o_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT] = ACTIONS(1955), + [anon_sym_err_GT_GT] = ACTIONS(1953), + [anon_sym_out_GT_GT] = ACTIONS(1953), + [anon_sym_e_GT_GT] = ACTIONS(1953), + [anon_sym_o_GT_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), + [sym__unquoted_pattern] = ACTIONS(1963), [anon_sym_POUND] = ACTIONS(3), }, [STATE(932)] = { [sym_comment] = STATE(932), - [anon_sym_in] = ACTIONS(2132), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2134), - [anon_sym_DASH2] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_EQ_GT] = ACTIONS(2245), - [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_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(2247), - [anon_sym_out_GT] = ACTIONS(2247), - [anon_sym_e_GT] = ACTIONS(2247), - [anon_sym_o_GT] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT] = ACTIONS(2247), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), + [ts_builtin_sym_end] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1832), + [sym__newline] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_err_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_GT_PIPE] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), + [anon_sym_GT2] = ACTIONS(1834), + [anon_sym_DASH2] = ACTIONS(1832), + [anon_sym_STAR2] = ACTIONS(1834), + [anon_sym_and2] = ACTIONS(1832), + [anon_sym_xor2] = ACTIONS(1832), + [anon_sym_or2] = ACTIONS(1832), + [anon_sym_not_DASHin2] = ACTIONS(1832), + [anon_sym_has2] = ACTIONS(1832), + [anon_sym_not_DASHhas2] = ACTIONS(1832), + [anon_sym_starts_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), + [anon_sym_ends_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), + [anon_sym_EQ_EQ2] = ACTIONS(1832), + [anon_sym_BANG_EQ2] = ACTIONS(1832), + [anon_sym_LT2] = ACTIONS(1834), + [anon_sym_LT_EQ2] = ACTIONS(1832), + [anon_sym_GT_EQ2] = ACTIONS(1832), + [anon_sym_EQ_TILDE2] = ACTIONS(1832), + [anon_sym_BANG_TILDE2] = ACTIONS(1832), + [anon_sym_like2] = ACTIONS(1832), + [anon_sym_not_DASHlike2] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_STAR_STAR2] = ACTIONS(1832), + [anon_sym_PLUS_PLUS2] = ACTIONS(1832), + [anon_sym_SLASH2] = ACTIONS(1834), + [anon_sym_mod2] = ACTIONS(1832), + [anon_sym_SLASH_SLASH2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1834), + [anon_sym_bit_DASHshl2] = ACTIONS(1832), + [anon_sym_bit_DASHshr2] = ACTIONS(1832), + [anon_sym_bit_DASHand2] = ACTIONS(1832), + [anon_sym_bit_DASHxor2] = ACTIONS(1832), + [anon_sym_bit_DASHor2] = ACTIONS(1832), + [aux_sym__immediate_decimal_token5] = ACTIONS(2582), + [anon_sym_err_GT] = ACTIONS(1834), + [anon_sym_out_GT] = ACTIONS(1834), + [anon_sym_e_GT] = ACTIONS(1834), + [anon_sym_o_GT] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT] = ACTIONS(1834), + [anon_sym_err_GT_GT] = ACTIONS(1832), + [anon_sym_out_GT_GT] = ACTIONS(1832), + [anon_sym_e_GT_GT] = ACTIONS(1832), + [anon_sym_o_GT_GT] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), + [sym__unquoted_pattern] = ACTIONS(1834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(933)] = { [sym_comment] = STATE(933), - [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_RBRACE] = 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_LPAREN2] = ACTIONS(2620), - [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), - [sym__unquoted_pattern] = ACTIONS(2622), + [anon_sym_in] = ACTIONS(2584), + [sym__newline] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_err_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_GT_PIPE] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2584), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_GT2] = ACTIONS(2586), + [anon_sym_DASH2] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_STAR2] = ACTIONS(2586), + [anon_sym_and2] = ACTIONS(2584), + [anon_sym_xor2] = ACTIONS(2584), + [anon_sym_or2] = ACTIONS(2584), + [anon_sym_not_DASHin2] = ACTIONS(2584), + [anon_sym_has2] = ACTIONS(2584), + [anon_sym_not_DASHhas2] = ACTIONS(2584), + [anon_sym_starts_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2584), + [anon_sym_ends_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2584), + [anon_sym_EQ_EQ2] = ACTIONS(2584), + [anon_sym_BANG_EQ2] = ACTIONS(2584), + [anon_sym_LT2] = ACTIONS(2586), + [anon_sym_LT_EQ2] = ACTIONS(2584), + [anon_sym_GT_EQ2] = ACTIONS(2584), + [anon_sym_EQ_TILDE2] = ACTIONS(2584), + [anon_sym_BANG_TILDE2] = ACTIONS(2584), + [anon_sym_like2] = ACTIONS(2584), + [anon_sym_not_DASHlike2] = ACTIONS(2584), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_STAR_STAR2] = ACTIONS(2584), + [anon_sym_PLUS_PLUS2] = ACTIONS(2584), + [anon_sym_SLASH2] = ACTIONS(2586), + [anon_sym_mod2] = ACTIONS(2584), + [anon_sym_SLASH_SLASH2] = ACTIONS(2584), + [anon_sym_PLUS2] = ACTIONS(2586), + [anon_sym_bit_DASHshl2] = ACTIONS(2584), + [anon_sym_bit_DASHshr2] = ACTIONS(2584), + [anon_sym_bit_DASHand2] = ACTIONS(2584), + [anon_sym_bit_DASHxor2] = ACTIONS(2584), + [anon_sym_bit_DASHor2] = ACTIONS(2584), + [anon_sym_err_GT] = ACTIONS(2586), + [anon_sym_out_GT] = ACTIONS(2586), + [anon_sym_e_GT] = ACTIONS(2586), + [anon_sym_o_GT] = ACTIONS(2586), + [anon_sym_err_PLUSout_GT] = ACTIONS(2586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2586), + [anon_sym_o_PLUSe_GT] = ACTIONS(2586), + [anon_sym_e_PLUSo_GT] = ACTIONS(2586), + [anon_sym_err_GT_GT] = ACTIONS(2584), + [anon_sym_out_GT_GT] = ACTIONS(2584), + [anon_sym_e_GT_GT] = ACTIONS(2584), + [anon_sym_o_GT_GT] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2584), + [sym__unquoted_pattern] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [STATE(934)] = { [sym_comment] = STATE(934), - [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_in] = ACTIONS(2590), + [sym__newline] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_err_GT_PIPE] = ACTIONS(2590), + [anon_sym_out_GT_PIPE] = ACTIONS(2590), + [anon_sym_e_GT_PIPE] = ACTIONS(2590), + [anon_sym_o_GT_PIPE] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2590), + [anon_sym_RPAREN] = ACTIONS(2590), + [anon_sym_GT2] = ACTIONS(2592), + [anon_sym_DASH2] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_STAR2] = ACTIONS(2592), + [anon_sym_and2] = ACTIONS(2590), + [anon_sym_xor2] = ACTIONS(2590), + [anon_sym_or2] = ACTIONS(2590), + [anon_sym_not_DASHin2] = ACTIONS(2590), + [anon_sym_has2] = ACTIONS(2590), + [anon_sym_not_DASHhas2] = ACTIONS(2590), + [anon_sym_starts_DASHwith2] = ACTIONS(2590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2590), + [anon_sym_ends_DASHwith2] = ACTIONS(2590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2590), + [anon_sym_EQ_EQ2] = ACTIONS(2590), + [anon_sym_BANG_EQ2] = ACTIONS(2590), + [anon_sym_LT2] = ACTIONS(2592), + [anon_sym_LT_EQ2] = ACTIONS(2590), + [anon_sym_GT_EQ2] = ACTIONS(2590), + [anon_sym_EQ_TILDE2] = ACTIONS(2590), + [anon_sym_BANG_TILDE2] = ACTIONS(2590), + [anon_sym_like2] = ACTIONS(2590), + [anon_sym_not_DASHlike2] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2594), + [anon_sym_STAR_STAR2] = ACTIONS(2590), + [anon_sym_PLUS_PLUS2] = ACTIONS(2590), + [anon_sym_SLASH2] = ACTIONS(2592), + [anon_sym_mod2] = ACTIONS(2590), + [anon_sym_SLASH_SLASH2] = ACTIONS(2590), + [anon_sym_PLUS2] = ACTIONS(2592), + [anon_sym_bit_DASHshl2] = ACTIONS(2590), + [anon_sym_bit_DASHshr2] = ACTIONS(2590), + [anon_sym_bit_DASHand2] = ACTIONS(2590), + [anon_sym_bit_DASHxor2] = ACTIONS(2590), + [anon_sym_bit_DASHor2] = ACTIONS(2590), + [anon_sym_err_GT] = ACTIONS(2592), + [anon_sym_out_GT] = ACTIONS(2592), + [anon_sym_e_GT] = ACTIONS(2592), + [anon_sym_o_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT] = ACTIONS(2592), + [anon_sym_err_GT_GT] = ACTIONS(2590), + [anon_sym_out_GT_GT] = ACTIONS(2590), + [anon_sym_e_GT_GT] = ACTIONS(2590), + [anon_sym_o_GT_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2590), + [sym__unquoted_pattern] = ACTIONS(2596), [anon_sym_POUND] = ACTIONS(3), }, [STATE(935)] = { [sym_comment] = STATE(935), - [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_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_DOT_DOT2] = ACTIONS(1750), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), - [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_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_RBRACE] = 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_LPAREN2] = ACTIONS(2602), + [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), + [sym__unquoted_pattern] = ACTIONS(2604), [anon_sym_POUND] = ACTIONS(3), }, [STATE(936)] = { [sym_comment] = STATE(936), - [ts_builtin_sym_end] = ACTIONS(1972), - [anon_sym_in] = ACTIONS(1972), - [sym__newline] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_err_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_GT_PIPE] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), - [anon_sym_GT2] = ACTIONS(1974), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_STAR2] = ACTIONS(1974), - [anon_sym_and2] = ACTIONS(1972), - [anon_sym_xor2] = ACTIONS(1972), - [anon_sym_or2] = ACTIONS(1972), - [anon_sym_not_DASHin2] = ACTIONS(1972), - [anon_sym_has2] = ACTIONS(1972), - [anon_sym_not_DASHhas2] = ACTIONS(1972), - [anon_sym_starts_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), - [anon_sym_ends_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), - [anon_sym_EQ_EQ2] = ACTIONS(1972), - [anon_sym_BANG_EQ2] = ACTIONS(1972), - [anon_sym_LT2] = ACTIONS(1974), - [anon_sym_LT_EQ2] = ACTIONS(1972), - [anon_sym_GT_EQ2] = ACTIONS(1972), - [anon_sym_EQ_TILDE2] = ACTIONS(1972), - [anon_sym_BANG_TILDE2] = ACTIONS(1972), - [anon_sym_like2] = ACTIONS(1972), - [anon_sym_not_DASHlike2] = ACTIONS(1972), - [anon_sym_STAR_STAR2] = ACTIONS(1972), - [anon_sym_PLUS_PLUS2] = ACTIONS(1972), - [anon_sym_SLASH2] = ACTIONS(1974), - [anon_sym_mod2] = ACTIONS(1972), - [anon_sym_SLASH_SLASH2] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1974), - [anon_sym_bit_DASHshl2] = ACTIONS(1972), - [anon_sym_bit_DASHshr2] = ACTIONS(1972), - [anon_sym_bit_DASHand2] = ACTIONS(1972), - [anon_sym_bit_DASHxor2] = ACTIONS(1972), - [anon_sym_bit_DASHor2] = ACTIONS(1972), - [anon_sym_DOT_DOT2] = ACTIONS(2628), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2630), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2630), - [anon_sym_err_GT] = ACTIONS(1974), - [anon_sym_out_GT] = ACTIONS(1974), - [anon_sym_e_GT] = ACTIONS(1974), - [anon_sym_o_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT] = ACTIONS(1974), - [anon_sym_err_GT_GT] = ACTIONS(1972), - [anon_sym_out_GT_GT] = ACTIONS(1972), - [anon_sym_e_GT_GT] = ACTIONS(1972), - [anon_sym_o_GT_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1216), + [sym__newline] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_err_GT_PIPE] = ACTIONS(1216), + [anon_sym_out_GT_PIPE] = ACTIONS(1216), + [anon_sym_e_GT_PIPE] = ACTIONS(1216), + [anon_sym_o_GT_PIPE] = ACTIONS(1216), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1216), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1216), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1216), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1216), + [anon_sym_xor2] = ACTIONS(1216), + [anon_sym_or2] = ACTIONS(1216), + [anon_sym_not_DASHin2] = ACTIONS(1216), + [anon_sym_has2] = ACTIONS(1216), + [anon_sym_not_DASHhas2] = ACTIONS(1216), + [anon_sym_starts_DASHwith2] = ACTIONS(1216), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1216), + [anon_sym_ends_DASHwith2] = ACTIONS(1216), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1216), + [anon_sym_EQ_EQ2] = ACTIONS(1216), + [anon_sym_BANG_EQ2] = ACTIONS(1216), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1216), + [anon_sym_GT_EQ2] = ACTIONS(1216), + [anon_sym_EQ_TILDE2] = ACTIONS(1216), + [anon_sym_BANG_TILDE2] = ACTIONS(1216), + [anon_sym_like2] = ACTIONS(1216), + [anon_sym_not_DASHlike2] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(2606), + [anon_sym_STAR_STAR2] = ACTIONS(1216), + [anon_sym_PLUS_PLUS2] = ACTIONS(1216), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1216), + [anon_sym_SLASH_SLASH2] = ACTIONS(1216), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1216), + [anon_sym_bit_DASHshr2] = ACTIONS(1216), + [anon_sym_bit_DASHand2] = ACTIONS(1216), + [anon_sym_bit_DASHxor2] = ACTIONS(1216), + [anon_sym_bit_DASHor2] = ACTIONS(1216), + [anon_sym_err_GT] = ACTIONS(1218), + [anon_sym_out_GT] = ACTIONS(1218), + [anon_sym_e_GT] = ACTIONS(1218), + [anon_sym_o_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT] = ACTIONS(1218), + [anon_sym_err_GT_GT] = ACTIONS(1216), + [anon_sym_out_GT_GT] = ACTIONS(1216), + [anon_sym_e_GT_GT] = ACTIONS(1216), + [anon_sym_o_GT_GT] = ACTIONS(1216), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1216), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1216), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1216), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1216), + [sym__unquoted_pattern] = ACTIONS(2608), [anon_sym_POUND] = ACTIONS(3), }, [STATE(937)] = { [sym_comment] = STATE(937), - [ts_builtin_sym_end] = ACTIONS(1842), - [anon_sym_in] = ACTIONS(1842), - [sym__newline] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_err_GT_PIPE] = ACTIONS(1842), - [anon_sym_out_GT_PIPE] = ACTIONS(1842), - [anon_sym_e_GT_PIPE] = ACTIONS(1842), - [anon_sym_o_GT_PIPE] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1842), - [anon_sym_GT2] = ACTIONS(1844), - [anon_sym_DASH2] = ACTIONS(1842), - [anon_sym_STAR2] = ACTIONS(1844), - [anon_sym_and2] = ACTIONS(1842), - [anon_sym_xor2] = ACTIONS(1842), - [anon_sym_or2] = ACTIONS(1842), - [anon_sym_not_DASHin2] = ACTIONS(1842), - [anon_sym_has2] = ACTIONS(1842), - [anon_sym_not_DASHhas2] = ACTIONS(1842), - [anon_sym_starts_DASHwith2] = ACTIONS(1842), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1842), - [anon_sym_ends_DASHwith2] = ACTIONS(1842), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1842), - [anon_sym_EQ_EQ2] = ACTIONS(1842), - [anon_sym_BANG_EQ2] = ACTIONS(1842), - [anon_sym_LT2] = ACTIONS(1844), - [anon_sym_LT_EQ2] = ACTIONS(1842), - [anon_sym_GT_EQ2] = ACTIONS(1842), - [anon_sym_EQ_TILDE2] = ACTIONS(1842), - [anon_sym_BANG_TILDE2] = ACTIONS(1842), - [anon_sym_like2] = ACTIONS(1842), - [anon_sym_not_DASHlike2] = ACTIONS(1842), - [anon_sym_STAR_STAR2] = ACTIONS(1842), - [anon_sym_PLUS_PLUS2] = ACTIONS(1842), - [anon_sym_SLASH2] = ACTIONS(1844), - [anon_sym_mod2] = ACTIONS(1842), - [anon_sym_SLASH_SLASH2] = ACTIONS(1842), - [anon_sym_PLUS2] = ACTIONS(1844), - [anon_sym_bit_DASHshl2] = ACTIONS(1842), - [anon_sym_bit_DASHshr2] = ACTIONS(1842), - [anon_sym_bit_DASHand2] = ACTIONS(1842), - [anon_sym_bit_DASHxor2] = ACTIONS(1842), - [anon_sym_bit_DASHor2] = ACTIONS(1842), - [anon_sym_DOT_DOT2] = ACTIONS(1844), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1842), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1844), - [anon_sym_out_GT] = ACTIONS(1844), - [anon_sym_e_GT] = ACTIONS(1844), - [anon_sym_o_GT] = ACTIONS(1844), - [anon_sym_err_PLUSout_GT] = ACTIONS(1844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1844), - [anon_sym_o_PLUSe_GT] = ACTIONS(1844), - [anon_sym_e_PLUSo_GT] = ACTIONS(1844), - [anon_sym_err_GT_GT] = ACTIONS(1842), - [anon_sym_out_GT_GT] = ACTIONS(1842), - [anon_sym_e_GT_GT] = ACTIONS(1842), - [anon_sym_o_GT_GT] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(938)] = { - [sym_comment] = STATE(938), - [anon_sym_in] = ACTIONS(1226), - [sym__newline] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1226), - [anon_sym_err_GT_PIPE] = ACTIONS(1226), - [anon_sym_out_GT_PIPE] = ACTIONS(1226), - [anon_sym_e_GT_PIPE] = ACTIONS(1226), - [anon_sym_o_GT_PIPE] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_GT2] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1012), - [anon_sym_and2] = ACTIONS(1226), - [anon_sym_xor2] = ACTIONS(1226), - [anon_sym_or2] = ACTIONS(1226), - [anon_sym_not_DASHin2] = ACTIONS(1226), - [anon_sym_has2] = ACTIONS(1226), - [anon_sym_not_DASHhas2] = ACTIONS(1226), - [anon_sym_starts_DASHwith2] = ACTIONS(1226), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), - [anon_sym_ends_DASHwith2] = ACTIONS(1226), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), - [anon_sym_EQ_EQ2] = ACTIONS(1226), - [anon_sym_BANG_EQ2] = ACTIONS(1226), - [anon_sym_LT2] = ACTIONS(1012), - [anon_sym_LT_EQ2] = ACTIONS(1226), - [anon_sym_GT_EQ2] = ACTIONS(1226), - [anon_sym_EQ_TILDE2] = ACTIONS(1226), - [anon_sym_BANG_TILDE2] = ACTIONS(1226), - [anon_sym_like2] = ACTIONS(1226), - [anon_sym_not_DASHlike2] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_bit_DASHshl2] = ACTIONS(1226), - [anon_sym_bit_DASHshr2] = ACTIONS(1226), - [anon_sym_bit_DASHand2] = ACTIONS(1226), - [anon_sym_bit_DASHxor2] = ACTIONS(1226), - [anon_sym_bit_DASHor2] = ACTIONS(1226), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1226), - [anon_sym_out_GT_GT] = ACTIONS(1226), - [anon_sym_e_GT_GT] = ACTIONS(1226), - [anon_sym_o_GT_GT] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1226), - [sym__unquoted_pattern] = ACTIONS(2634), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(939)] = { - [sym_comment] = STATE(939), - [anon_sym_export] = ACTIONS(1968), - [anon_sym_alias] = ACTIONS(1966), - [anon_sym_let] = ACTIONS(1966), - [anon_sym_mut] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [aux_sym_cmd_identifier_token1] = ACTIONS(1968), - [anon_sym_def] = ACTIONS(1966), - [anon_sym_use] = ACTIONS(1966), - [anon_sym_export_DASHenv] = ACTIONS(1966), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym_module] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_loop] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_try] = ACTIONS(1966), - [anon_sym_catch] = ACTIONS(1966), - [anon_sym_finally] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_in] = ACTIONS(1968), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1966), - [aux_sym_cmd_identifier_token3] = ACTIONS(1966), - [aux_sym_cmd_identifier_token4] = ACTIONS(1966), - [aux_sym_cmd_identifier_token5] = ACTIONS(1966), - [sym__newline] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_err_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_GT_PIPE] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_DOLLAR] = ACTIONS(1968), - [anon_sym_DASH2] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_where] = ACTIONS(1966), - [aux_sym_expr_unary_token1] = ACTIONS(1966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), - [anon_sym_DOT_DOT_LT] = ACTIONS(1966), - [aux_sym__val_number_decimal_token1] = ACTIONS(1968), - [aux_sym__val_number_decimal_token2] = ACTIONS(1966), - [aux_sym__val_number_decimal_token3] = ACTIONS(1966), - [aux_sym__val_number_decimal_token4] = ACTIONS(1966), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [anon_sym_0b] = ACTIONS(1968), - [anon_sym_0o] = ACTIONS(1968), - [anon_sym_0x] = ACTIONS(1968), - [sym_val_date] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1966), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1966), - [anon_sym_CARET] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1966), - }, - [STATE(940)] = { - [sym_comment] = STATE(940), - [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_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(941)] = { - [sym_comment] = STATE(941), [anon_sym_in] = ACTIONS(1234), [sym__newline] = ACTIONS(1234), [anon_sym_SEMI] = ACTIONS(1234), @@ -118952,10 +119105,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1234), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1234), [anon_sym_RPAREN] = ACTIONS(1234), - [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1226), [anon_sym_DASH2] = ACTIONS(1234), [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1226), [anon_sym_and2] = ACTIONS(1234), [anon_sym_xor2] = ACTIONS(1234), [anon_sym_or2] = ACTIONS(1234), @@ -118968,33 +119121,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1234), [anon_sym_EQ_EQ2] = ACTIONS(1234), [anon_sym_BANG_EQ2] = ACTIONS(1234), - [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1226), [anon_sym_LT_EQ2] = ACTIONS(1234), [anon_sym_GT_EQ2] = ACTIONS(1234), [anon_sym_EQ_TILDE2] = ACTIONS(1234), [anon_sym_BANG_TILDE2] = ACTIONS(1234), [anon_sym_like2] = ACTIONS(1234), [anon_sym_not_DASHlike2] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2606), [anon_sym_STAR_STAR2] = ACTIONS(1234), [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1226), [anon_sym_mod2] = ACTIONS(1234), [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1226), [anon_sym_bit_DASHshl2] = ACTIONS(1234), [anon_sym_bit_DASHshr2] = ACTIONS(1234), [anon_sym_bit_DASHand2] = ACTIONS(1234), [anon_sym_bit_DASHxor2] = ACTIONS(1234), [anon_sym_bit_DASHor2] = ACTIONS(1234), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1226), + [anon_sym_out_GT] = ACTIONS(1226), + [anon_sym_e_GT] = ACTIONS(1226), + [anon_sym_o_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT] = ACTIONS(1226), [anon_sym_err_GT_GT] = ACTIONS(1234), [anon_sym_out_GT_GT] = ACTIONS(1234), [anon_sym_e_GT_GT] = ACTIONS(1234), @@ -119003,1226 +119156,1916 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1234), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1234), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1234), - [sym__unquoted_pattern] = ACTIONS(2634), + [sym__unquoted_pattern] = ACTIONS(2608), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(938)] = { + [sym_comment] = STATE(938), + [anon_sym_in] = ACTIONS(1730), + [sym__newline] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_err_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_GT_PIPE] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_GT2] = ACTIONS(1732), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_STAR2] = ACTIONS(1732), + [anon_sym_and2] = ACTIONS(1730), + [anon_sym_xor2] = ACTIONS(1730), + [anon_sym_or2] = ACTIONS(1730), + [anon_sym_not_DASHin2] = ACTIONS(1730), + [anon_sym_has2] = ACTIONS(1730), + [anon_sym_not_DASHhas2] = ACTIONS(1730), + [anon_sym_starts_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), + [anon_sym_ends_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), + [anon_sym_EQ_EQ2] = ACTIONS(1730), + [anon_sym_BANG_EQ2] = ACTIONS(1730), + [anon_sym_LT2] = ACTIONS(1732), + [anon_sym_LT_EQ2] = ACTIONS(1730), + [anon_sym_GT_EQ2] = ACTIONS(1730), + [anon_sym_EQ_TILDE2] = ACTIONS(1730), + [anon_sym_BANG_TILDE2] = ACTIONS(1730), + [anon_sym_like2] = ACTIONS(1730), + [anon_sym_not_DASHlike2] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_STAR_STAR2] = ACTIONS(1730), + [anon_sym_PLUS_PLUS2] = ACTIONS(1730), + [anon_sym_SLASH2] = ACTIONS(1732), + [anon_sym_mod2] = ACTIONS(1730), + [anon_sym_SLASH_SLASH2] = ACTIONS(1730), + [anon_sym_PLUS2] = ACTIONS(1732), + [anon_sym_bit_DASHshl2] = ACTIONS(1730), + [anon_sym_bit_DASHshr2] = ACTIONS(1730), + [anon_sym_bit_DASHand2] = ACTIONS(1730), + [anon_sym_bit_DASHxor2] = ACTIONS(1730), + [anon_sym_bit_DASHor2] = ACTIONS(1730), + [anon_sym_err_GT] = ACTIONS(1732), + [anon_sym_out_GT] = ACTIONS(1732), + [anon_sym_e_GT] = ACTIONS(1732), + [anon_sym_o_GT] = ACTIONS(1732), + [anon_sym_err_PLUSout_GT] = ACTIONS(1732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), + [anon_sym_o_PLUSe_GT] = ACTIONS(1732), + [anon_sym_e_PLUSo_GT] = ACTIONS(1732), + [anon_sym_err_GT_GT] = ACTIONS(1730), + [anon_sym_out_GT_GT] = ACTIONS(1730), + [anon_sym_e_GT_GT] = ACTIONS(1730), + [anon_sym_o_GT_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), + [sym__unquoted_pattern] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(939)] = { + [sym_comment] = STATE(939), + [anon_sym_in] = ACTIONS(1832), + [sym__newline] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_err_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_GT_PIPE] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_GT2] = ACTIONS(1834), + [anon_sym_DASH2] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_STAR2] = ACTIONS(1834), + [anon_sym_and2] = ACTIONS(1832), + [anon_sym_xor2] = ACTIONS(1832), + [anon_sym_or2] = ACTIONS(1832), + [anon_sym_not_DASHin2] = ACTIONS(1832), + [anon_sym_has2] = ACTIONS(1832), + [anon_sym_not_DASHhas2] = ACTIONS(1832), + [anon_sym_starts_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), + [anon_sym_ends_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), + [anon_sym_EQ_EQ2] = ACTIONS(1832), + [anon_sym_BANG_EQ2] = ACTIONS(1832), + [anon_sym_LT2] = ACTIONS(1834), + [anon_sym_LT_EQ2] = ACTIONS(1832), + [anon_sym_GT_EQ2] = ACTIONS(1832), + [anon_sym_EQ_TILDE2] = ACTIONS(1832), + [anon_sym_BANG_TILDE2] = ACTIONS(1832), + [anon_sym_like2] = ACTIONS(1832), + [anon_sym_not_DASHlike2] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_STAR_STAR2] = ACTIONS(1832), + [anon_sym_PLUS_PLUS2] = ACTIONS(1832), + [anon_sym_SLASH2] = ACTIONS(1834), + [anon_sym_mod2] = ACTIONS(1832), + [anon_sym_SLASH_SLASH2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1834), + [anon_sym_bit_DASHshl2] = ACTIONS(1832), + [anon_sym_bit_DASHshr2] = ACTIONS(1832), + [anon_sym_bit_DASHand2] = ACTIONS(1832), + [anon_sym_bit_DASHxor2] = ACTIONS(1832), + [anon_sym_bit_DASHor2] = ACTIONS(1832), + [anon_sym_err_GT] = ACTIONS(1834), + [anon_sym_out_GT] = ACTIONS(1834), + [anon_sym_e_GT] = ACTIONS(1834), + [anon_sym_o_GT] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT] = ACTIONS(1834), + [anon_sym_err_GT_GT] = ACTIONS(1832), + [anon_sym_out_GT_GT] = ACTIONS(1832), + [anon_sym_e_GT_GT] = ACTIONS(1832), + [anon_sym_o_GT_GT] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), + [sym__unquoted_pattern] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(940)] = { + [sym_comment] = STATE(940), + [anon_sym_in] = ACTIONS(1919), + [sym__newline] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_err_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_GT_PIPE] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_GT2] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_STAR2] = ACTIONS(1921), + [anon_sym_and2] = ACTIONS(1919), + [anon_sym_xor2] = ACTIONS(1919), + [anon_sym_or2] = ACTIONS(1919), + [anon_sym_not_DASHin2] = ACTIONS(1919), + [anon_sym_has2] = ACTIONS(1919), + [anon_sym_not_DASHhas2] = ACTIONS(1919), + [anon_sym_starts_DASHwith2] = ACTIONS(1919), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1919), + [anon_sym_ends_DASHwith2] = ACTIONS(1919), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1919), + [anon_sym_EQ_EQ2] = ACTIONS(1919), + [anon_sym_BANG_EQ2] = ACTIONS(1919), + [anon_sym_LT2] = ACTIONS(1921), + [anon_sym_LT_EQ2] = ACTIONS(1919), + [anon_sym_GT_EQ2] = ACTIONS(1919), + [anon_sym_EQ_TILDE2] = ACTIONS(1919), + [anon_sym_BANG_TILDE2] = ACTIONS(1919), + [anon_sym_like2] = ACTIONS(1919), + [anon_sym_not_DASHlike2] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1919), + [anon_sym_STAR_STAR2] = ACTIONS(1919), + [anon_sym_PLUS_PLUS2] = ACTIONS(1919), + [anon_sym_SLASH2] = ACTIONS(1921), + [anon_sym_mod2] = ACTIONS(1919), + [anon_sym_SLASH_SLASH2] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1921), + [anon_sym_bit_DASHshl2] = ACTIONS(1919), + [anon_sym_bit_DASHshr2] = ACTIONS(1919), + [anon_sym_bit_DASHand2] = ACTIONS(1919), + [anon_sym_bit_DASHxor2] = ACTIONS(1919), + [anon_sym_bit_DASHor2] = ACTIONS(1919), + [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(1919), + [anon_sym_out_GT_GT] = ACTIONS(1919), + [anon_sym_e_GT_GT] = ACTIONS(1919), + [anon_sym_o_GT_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), + [sym__unquoted_pattern] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(941)] = { + [sym_comment] = STATE(941), + [ts_builtin_sym_end] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2241), + [sym__newline] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_err_GT_PIPE] = ACTIONS(2241), + [anon_sym_out_GT_PIPE] = ACTIONS(2241), + [anon_sym_e_GT_PIPE] = ACTIONS(2241), + [anon_sym_o_GT_PIPE] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), + [anon_sym_GT2] = ACTIONS(2243), + [anon_sym_DASH2] = ACTIONS(2241), + [anon_sym_STAR2] = ACTIONS(2243), + [anon_sym_and2] = ACTIONS(2241), + [anon_sym_xor2] = ACTIONS(2241), + [anon_sym_or2] = ACTIONS(2241), + [anon_sym_not_DASHin2] = ACTIONS(2241), + [anon_sym_has2] = ACTIONS(2241), + [anon_sym_not_DASHhas2] = ACTIONS(2241), + [anon_sym_starts_DASHwith2] = ACTIONS(2241), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2241), + [anon_sym_ends_DASHwith2] = ACTIONS(2241), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2241), + [anon_sym_EQ_EQ2] = ACTIONS(2241), + [anon_sym_BANG_EQ2] = ACTIONS(2241), + [anon_sym_LT2] = ACTIONS(2243), + [anon_sym_LT_EQ2] = ACTIONS(2241), + [anon_sym_GT_EQ2] = ACTIONS(2241), + [anon_sym_EQ_TILDE2] = ACTIONS(2241), + [anon_sym_BANG_TILDE2] = ACTIONS(2241), + [anon_sym_like2] = ACTIONS(2241), + [anon_sym_not_DASHlike2] = ACTIONS(2241), + [anon_sym_STAR_STAR2] = ACTIONS(2241), + [anon_sym_PLUS_PLUS2] = ACTIONS(2241), + [anon_sym_SLASH2] = ACTIONS(2243), + [anon_sym_mod2] = ACTIONS(2241), + [anon_sym_SLASH_SLASH2] = ACTIONS(2241), + [anon_sym_PLUS2] = ACTIONS(2243), + [anon_sym_bit_DASHshl2] = ACTIONS(2241), + [anon_sym_bit_DASHshr2] = ACTIONS(2241), + [anon_sym_bit_DASHand2] = ACTIONS(2241), + [anon_sym_bit_DASHxor2] = ACTIONS(2241), + [anon_sym_bit_DASHor2] = ACTIONS(2241), + [anon_sym_DOT_DOT2] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2612), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2612), + [anon_sym_err_GT] = ACTIONS(2243), + [anon_sym_out_GT] = ACTIONS(2243), + [anon_sym_e_GT] = ACTIONS(2243), + [anon_sym_o_GT] = ACTIONS(2243), + [anon_sym_err_PLUSout_GT] = ACTIONS(2243), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2243), + [anon_sym_o_PLUSe_GT] = ACTIONS(2243), + [anon_sym_e_PLUSo_GT] = ACTIONS(2243), + [anon_sym_err_GT_GT] = ACTIONS(2241), + [anon_sym_out_GT_GT] = ACTIONS(2241), + [anon_sym_e_GT_GT] = ACTIONS(2241), + [anon_sym_o_GT_GT] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2241), [anon_sym_POUND] = ACTIONS(3), }, [STATE(942)] = { [sym_comment] = STATE(942), - [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_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(2249), + [anon_sym_in] = ACTIONS(2249), + [sym__newline] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_err_GT_PIPE] = ACTIONS(2249), + [anon_sym_out_GT_PIPE] = ACTIONS(2249), + [anon_sym_e_GT_PIPE] = ACTIONS(2249), + [anon_sym_o_GT_PIPE] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2249), + [anon_sym_GT2] = ACTIONS(2251), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2251), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_has2] = ACTIONS(2249), + [anon_sym_not_DASHhas2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2251), + [anon_sym_LT_EQ2] = ACTIONS(2249), + [anon_sym_GT_EQ2] = ACTIONS(2249), + [anon_sym_EQ_TILDE2] = ACTIONS(2249), + [anon_sym_BANG_TILDE2] = ACTIONS(2249), + [anon_sym_like2] = ACTIONS(2249), + [anon_sym_not_DASHlike2] = ACTIONS(2249), + [anon_sym_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2251), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2251), + [anon_sym_bit_DASHshl2] = ACTIONS(2249), + [anon_sym_bit_DASHshr2] = ACTIONS(2249), + [anon_sym_bit_DASHand2] = ACTIONS(2249), + [anon_sym_bit_DASHxor2] = ACTIONS(2249), + [anon_sym_bit_DASHor2] = ACTIONS(2249), + [anon_sym_DOT_DOT2] = ACTIONS(2614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2616), + [anon_sym_err_GT] = ACTIONS(2251), + [anon_sym_out_GT] = ACTIONS(2251), + [anon_sym_e_GT] = ACTIONS(2251), + [anon_sym_o_GT] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT] = ACTIONS(2251), + [anon_sym_err_GT_GT] = ACTIONS(2249), + [anon_sym_out_GT_GT] = ACTIONS(2249), + [anon_sym_e_GT_GT] = ACTIONS(2249), + [anon_sym_o_GT_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2249), [anon_sym_POUND] = ACTIONS(3), }, [STATE(943)] = { [sym_comment] = STATE(943), - [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_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(2257), + [anon_sym_in] = ACTIONS(2257), + [sym__newline] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_err_GT_PIPE] = ACTIONS(2257), + [anon_sym_out_GT_PIPE] = ACTIONS(2257), + [anon_sym_e_GT_PIPE] = ACTIONS(2257), + [anon_sym_o_GT_PIPE] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2257), + [anon_sym_GT2] = ACTIONS(2259), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2259), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_has2] = ACTIONS(2257), + [anon_sym_not_DASHhas2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2259), + [anon_sym_LT_EQ2] = ACTIONS(2257), + [anon_sym_GT_EQ2] = ACTIONS(2257), + [anon_sym_EQ_TILDE2] = ACTIONS(2257), + [anon_sym_BANG_TILDE2] = ACTIONS(2257), + [anon_sym_like2] = ACTIONS(2257), + [anon_sym_not_DASHlike2] = ACTIONS(2257), + [anon_sym_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2259), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2259), + [anon_sym_bit_DASHshl2] = ACTIONS(2257), + [anon_sym_bit_DASHshr2] = ACTIONS(2257), + [anon_sym_bit_DASHand2] = ACTIONS(2257), + [anon_sym_bit_DASHxor2] = ACTIONS(2257), + [anon_sym_bit_DASHor2] = ACTIONS(2257), + [anon_sym_DOT_DOT2] = ACTIONS(2618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2620), + [anon_sym_err_GT] = ACTIONS(2259), + [anon_sym_out_GT] = ACTIONS(2259), + [anon_sym_e_GT] = ACTIONS(2259), + [anon_sym_o_GT] = ACTIONS(2259), + [anon_sym_err_PLUSout_GT] = ACTIONS(2259), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2259), + [anon_sym_o_PLUSe_GT] = ACTIONS(2259), + [anon_sym_e_PLUSo_GT] = ACTIONS(2259), + [anon_sym_err_GT_GT] = ACTIONS(2257), + [anon_sym_out_GT_GT] = ACTIONS(2257), + [anon_sym_e_GT_GT] = ACTIONS(2257), + [anon_sym_o_GT_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2257), [anon_sym_POUND] = ACTIONS(3), }, [STATE(944)] = { [sym_comment] = STATE(944), - [anon_sym_in] = ACTIONS(2608), - [sym__newline] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_PIPE] = ACTIONS(2608), - [anon_sym_err_GT_PIPE] = ACTIONS(2608), - [anon_sym_out_GT_PIPE] = ACTIONS(2608), - [anon_sym_e_GT_PIPE] = ACTIONS(2608), - [anon_sym_o_GT_PIPE] = ACTIONS(2608), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2608), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2608), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2608), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2608), - [anon_sym_RPAREN] = ACTIONS(2608), - [anon_sym_GT2] = ACTIONS(2610), - [anon_sym_DASH2] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_STAR2] = ACTIONS(2610), - [anon_sym_and2] = ACTIONS(2608), - [anon_sym_xor2] = ACTIONS(2608), - [anon_sym_or2] = ACTIONS(2608), - [anon_sym_not_DASHin2] = ACTIONS(2608), - [anon_sym_has2] = ACTIONS(2608), - [anon_sym_not_DASHhas2] = ACTIONS(2608), - [anon_sym_starts_DASHwith2] = ACTIONS(2608), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2608), - [anon_sym_ends_DASHwith2] = ACTIONS(2608), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2608), - [anon_sym_EQ_EQ2] = ACTIONS(2608), - [anon_sym_BANG_EQ2] = ACTIONS(2608), - [anon_sym_LT2] = ACTIONS(2610), - [anon_sym_LT_EQ2] = ACTIONS(2608), - [anon_sym_GT_EQ2] = ACTIONS(2608), - [anon_sym_EQ_TILDE2] = ACTIONS(2608), - [anon_sym_BANG_TILDE2] = ACTIONS(2608), - [anon_sym_like2] = ACTIONS(2608), - [anon_sym_not_DASHlike2] = ACTIONS(2608), - [anon_sym_STAR_STAR2] = ACTIONS(2608), - [anon_sym_PLUS_PLUS2] = ACTIONS(2608), - [anon_sym_SLASH2] = ACTIONS(2610), - [anon_sym_mod2] = ACTIONS(2608), - [anon_sym_SLASH_SLASH2] = ACTIONS(2608), - [anon_sym_PLUS2] = ACTIONS(2610), - [anon_sym_bit_DASHshl2] = ACTIONS(2608), - [anon_sym_bit_DASHshr2] = ACTIONS(2608), - [anon_sym_bit_DASHand2] = ACTIONS(2608), - [anon_sym_bit_DASHxor2] = ACTIONS(2608), - [anon_sym_bit_DASHor2] = ACTIONS(2608), - [anon_sym_err_GT] = ACTIONS(2610), - [anon_sym_out_GT] = ACTIONS(2610), - [anon_sym_e_GT] = ACTIONS(2610), - [anon_sym_o_GT] = ACTIONS(2610), - [anon_sym_err_PLUSout_GT] = ACTIONS(2610), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2610), - [anon_sym_o_PLUSe_GT] = ACTIONS(2610), - [anon_sym_e_PLUSo_GT] = ACTIONS(2610), - [anon_sym_err_GT_GT] = ACTIONS(2608), - [anon_sym_out_GT_GT] = ACTIONS(2608), - [anon_sym_e_GT_GT] = ACTIONS(2608), - [anon_sym_o_GT_GT] = ACTIONS(2608), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2608), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2608), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2608), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2608), + [ts_builtin_sym_end] = ACTIONS(1953), + [anon_sym_in] = ACTIONS(1953), + [sym__newline] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_err_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_GT_PIPE] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), + [anon_sym_GT2] = ACTIONS(1955), + [anon_sym_DASH2] = ACTIONS(1953), + [anon_sym_STAR2] = ACTIONS(1955), + [anon_sym_and2] = ACTIONS(1953), + [anon_sym_xor2] = ACTIONS(1953), + [anon_sym_or2] = ACTIONS(1953), + [anon_sym_not_DASHin2] = ACTIONS(1953), + [anon_sym_has2] = ACTIONS(1953), + [anon_sym_not_DASHhas2] = ACTIONS(1953), + [anon_sym_starts_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), + [anon_sym_ends_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), + [anon_sym_EQ_EQ2] = ACTIONS(1953), + [anon_sym_BANG_EQ2] = ACTIONS(1953), + [anon_sym_LT2] = ACTIONS(1955), + [anon_sym_LT_EQ2] = ACTIONS(1953), + [anon_sym_GT_EQ2] = ACTIONS(1953), + [anon_sym_EQ_TILDE2] = ACTIONS(1953), + [anon_sym_BANG_TILDE2] = ACTIONS(1953), + [anon_sym_like2] = ACTIONS(1953), + [anon_sym_not_DASHlike2] = ACTIONS(1953), + [anon_sym_STAR_STAR2] = ACTIONS(1953), + [anon_sym_PLUS_PLUS2] = ACTIONS(1953), + [anon_sym_SLASH2] = ACTIONS(1955), + [anon_sym_mod2] = ACTIONS(1953), + [anon_sym_SLASH_SLASH2] = ACTIONS(1953), + [anon_sym_PLUS2] = ACTIONS(1955), + [anon_sym_bit_DASHshl2] = ACTIONS(1953), + [anon_sym_bit_DASHshr2] = ACTIONS(1953), + [anon_sym_bit_DASHand2] = ACTIONS(1953), + [anon_sym_bit_DASHxor2] = ACTIONS(1953), + [anon_sym_bit_DASHor2] = ACTIONS(1953), + [anon_sym_DOT_DOT2] = ACTIONS(2622), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2624), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(1955), + [anon_sym_out_GT] = ACTIONS(1955), + [anon_sym_e_GT] = ACTIONS(1955), + [anon_sym_o_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT] = ACTIONS(1955), + [anon_sym_err_GT_GT] = ACTIONS(1953), + [anon_sym_out_GT_GT] = ACTIONS(1953), + [anon_sym_e_GT_GT] = ACTIONS(1953), + [anon_sym_o_GT_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), [anon_sym_POUND] = ACTIONS(3), }, [STATE(945)] = { [sym_comment] = STATE(945), - [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_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(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_EQ_GT] = ACTIONS(1714), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1714), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(946)] = { - [aux_sym__repeat_newline] = STATE(1119), - [sym__expression_parenthesized] = STATE(4429), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2190), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), [sym_comment] = STATE(946), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [sym__newline] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = 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(2227), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2229), + [anon_sym_DASH2] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_EQ_GT] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2229), + [anon_sym_and2] = ACTIONS(2227), + [anon_sym_xor2] = ACTIONS(2227), + [anon_sym_or2] = ACTIONS(2227), + [anon_sym_not_DASHin2] = ACTIONS(2227), + [anon_sym_has2] = ACTIONS(2227), + [anon_sym_not_DASHhas2] = ACTIONS(2227), + [anon_sym_starts_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), + [anon_sym_ends_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), + [anon_sym_EQ_EQ2] = ACTIONS(2227), + [anon_sym_BANG_EQ2] = ACTIONS(2227), + [anon_sym_LT2] = ACTIONS(2229), + [anon_sym_LT_EQ2] = ACTIONS(2227), + [anon_sym_GT_EQ2] = ACTIONS(2227), + [anon_sym_EQ_TILDE2] = ACTIONS(2227), + [anon_sym_BANG_TILDE2] = ACTIONS(2227), + [anon_sym_like2] = ACTIONS(2227), + [anon_sym_not_DASHlike2] = ACTIONS(2227), + [anon_sym_STAR_STAR2] = ACTIONS(2227), + [anon_sym_PLUS_PLUS2] = ACTIONS(2227), + [anon_sym_SLASH2] = ACTIONS(2229), + [anon_sym_mod2] = ACTIONS(2227), + [anon_sym_SLASH_SLASH2] = ACTIONS(2227), + [anon_sym_PLUS2] = ACTIONS(2229), + [anon_sym_bit_DASHshl2] = ACTIONS(2227), + [anon_sym_bit_DASHshr2] = ACTIONS(2227), + [anon_sym_bit_DASHand2] = ACTIONS(2227), + [anon_sym_bit_DASHxor2] = ACTIONS(2227), + [anon_sym_bit_DASHor2] = ACTIONS(2227), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(947)] = { [sym_comment] = STATE(947), - [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_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(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(948)] = { [sym_comment] = STATE(948), - [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_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(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_GT2] = ACTIONS(1677), + [anon_sym_DASH2] = 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_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), + [anon_sym_DOT_DOT2] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1677), + [anon_sym_out_GT] = ACTIONS(1677), + [anon_sym_e_GT] = ACTIONS(1677), + [anon_sym_o_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT] = ACTIONS(1677), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), [anon_sym_POUND] = ACTIONS(3), }, [STATE(949)] = { [sym_comment] = STATE(949), - [ts_builtin_sym_end] = ACTIONS(2104), - [anon_sym_in] = ACTIONS(2104), - [sym__newline] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_err_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_GT_PIPE] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), - [anon_sym_GT2] = ACTIONS(2106), - [anon_sym_DASH2] = ACTIONS(2104), - [anon_sym_STAR2] = ACTIONS(2106), - [anon_sym_and2] = ACTIONS(2104), - [anon_sym_xor2] = ACTIONS(2104), - [anon_sym_or2] = ACTIONS(2104), - [anon_sym_not_DASHin2] = ACTIONS(2104), - [anon_sym_has2] = ACTIONS(2104), - [anon_sym_not_DASHhas2] = ACTIONS(2104), - [anon_sym_starts_DASHwith2] = ACTIONS(2104), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), - [anon_sym_ends_DASHwith2] = ACTIONS(2104), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), - [anon_sym_EQ_EQ2] = ACTIONS(2104), - [anon_sym_BANG_EQ2] = ACTIONS(2104), - [anon_sym_LT2] = ACTIONS(2106), - [anon_sym_LT_EQ2] = ACTIONS(2104), - [anon_sym_GT_EQ2] = ACTIONS(2104), - [anon_sym_EQ_TILDE2] = ACTIONS(2104), - [anon_sym_BANG_TILDE2] = ACTIONS(2104), - [anon_sym_like2] = ACTIONS(2104), - [anon_sym_not_DASHlike2] = ACTIONS(2104), - [anon_sym_STAR_STAR2] = ACTIONS(2104), - [anon_sym_PLUS_PLUS2] = ACTIONS(2104), - [anon_sym_SLASH2] = ACTIONS(2106), - [anon_sym_mod2] = ACTIONS(2104), - [anon_sym_SLASH_SLASH2] = ACTIONS(2104), - [anon_sym_PLUS2] = ACTIONS(2106), - [anon_sym_bit_DASHshl2] = ACTIONS(2104), - [anon_sym_bit_DASHshr2] = ACTIONS(2104), - [anon_sym_bit_DASHand2] = ACTIONS(2104), - [anon_sym_bit_DASHxor2] = ACTIONS(2104), - [anon_sym_bit_DASHor2] = ACTIONS(2104), - [anon_sym_DOT_DOT2] = ACTIONS(2636), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2638), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2638), - [anon_sym_err_GT] = ACTIONS(2106), - [anon_sym_out_GT] = ACTIONS(2106), - [anon_sym_e_GT] = ACTIONS(2106), - [anon_sym_o_GT] = ACTIONS(2106), - [anon_sym_err_PLUSout_GT] = ACTIONS(2106), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), - [anon_sym_o_PLUSe_GT] = ACTIONS(2106), - [anon_sym_e_PLUSo_GT] = ACTIONS(2106), - [anon_sym_err_GT_GT] = ACTIONS(2104), - [anon_sym_out_GT_GT] = ACTIONS(2104), - [anon_sym_e_GT_GT] = ACTIONS(2104), - [anon_sym_o_GT_GT] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_err_GT_PIPE] = ACTIONS(2630), + [anon_sym_out_GT_PIPE] = ACTIONS(2630), + [anon_sym_e_GT_PIPE] = ACTIONS(2630), + [anon_sym_o_GT_PIPE] = ACTIONS(2630), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2630), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2630), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2630), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2630), + [anon_sym_RPAREN] = ACTIONS(2630), + [anon_sym_GT2] = ACTIONS(2632), + [anon_sym_DASH2] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_RBRACE] = ACTIONS(2630), + [anon_sym_EQ_GT] = ACTIONS(2630), + [anon_sym_STAR2] = ACTIONS(2632), + [anon_sym_and2] = ACTIONS(2630), + [anon_sym_xor2] = ACTIONS(2630), + [anon_sym_or2] = ACTIONS(2630), + [anon_sym_not_DASHin2] = ACTIONS(2630), + [anon_sym_has2] = ACTIONS(2630), + [anon_sym_not_DASHhas2] = ACTIONS(2630), + [anon_sym_starts_DASHwith2] = ACTIONS(2630), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2630), + [anon_sym_ends_DASHwith2] = ACTIONS(2630), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2630), + [anon_sym_EQ_EQ2] = ACTIONS(2630), + [anon_sym_BANG_EQ2] = ACTIONS(2630), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LT_EQ2] = ACTIONS(2630), + [anon_sym_GT_EQ2] = ACTIONS(2630), + [anon_sym_EQ_TILDE2] = ACTIONS(2630), + [anon_sym_BANG_TILDE2] = ACTIONS(2630), + [anon_sym_like2] = ACTIONS(2630), + [anon_sym_not_DASHlike2] = ACTIONS(2630), + [anon_sym_STAR_STAR2] = ACTIONS(2630), + [anon_sym_PLUS_PLUS2] = ACTIONS(2630), + [anon_sym_SLASH2] = ACTIONS(2632), + [anon_sym_mod2] = ACTIONS(2630), + [anon_sym_SLASH_SLASH2] = ACTIONS(2630), + [anon_sym_PLUS2] = ACTIONS(2632), + [anon_sym_bit_DASHshl2] = ACTIONS(2630), + [anon_sym_bit_DASHshr2] = ACTIONS(2630), + [anon_sym_bit_DASHand2] = ACTIONS(2630), + [anon_sym_bit_DASHxor2] = ACTIONS(2630), + [anon_sym_bit_DASHor2] = ACTIONS(2630), + [anon_sym_err_GT] = ACTIONS(2632), + [anon_sym_out_GT] = ACTIONS(2632), + [anon_sym_e_GT] = ACTIONS(2632), + [anon_sym_o_GT] = ACTIONS(2632), + [anon_sym_err_PLUSout_GT] = ACTIONS(2632), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2632), + [anon_sym_o_PLUSe_GT] = ACTIONS(2632), + [anon_sym_e_PLUSo_GT] = ACTIONS(2632), + [anon_sym_err_GT_GT] = ACTIONS(2630), + [anon_sym_out_GT_GT] = ACTIONS(2630), + [anon_sym_e_GT_GT] = ACTIONS(2630), + [anon_sym_o_GT_GT] = ACTIONS(2630), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2630), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2630), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2630), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2630), [anon_sym_POUND] = ACTIONS(3), }, [STATE(950)] = { [sym_comment] = STATE(950), - [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_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(2634), + [sym__newline] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym_PIPE] = ACTIONS(2634), + [anon_sym_err_GT_PIPE] = ACTIONS(2634), + [anon_sym_out_GT_PIPE] = ACTIONS(2634), + [anon_sym_e_GT_PIPE] = ACTIONS(2634), + [anon_sym_o_GT_PIPE] = ACTIONS(2634), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2634), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2634), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2634), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2634), + [anon_sym_RPAREN] = ACTIONS(2634), + [anon_sym_GT2] = ACTIONS(2636), + [anon_sym_DASH2] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym_EQ_GT] = ACTIONS(2634), + [anon_sym_STAR2] = ACTIONS(2636), + [anon_sym_and2] = ACTIONS(2634), + [anon_sym_xor2] = ACTIONS(2634), + [anon_sym_or2] = ACTIONS(2634), + [anon_sym_not_DASHin2] = ACTIONS(2634), + [anon_sym_has2] = ACTIONS(2634), + [anon_sym_not_DASHhas2] = ACTIONS(2634), + [anon_sym_starts_DASHwith2] = ACTIONS(2634), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2634), + [anon_sym_ends_DASHwith2] = ACTIONS(2634), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2634), + [anon_sym_EQ_EQ2] = ACTIONS(2634), + [anon_sym_BANG_EQ2] = ACTIONS(2634), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LT_EQ2] = ACTIONS(2634), + [anon_sym_GT_EQ2] = ACTIONS(2634), + [anon_sym_EQ_TILDE2] = ACTIONS(2634), + [anon_sym_BANG_TILDE2] = ACTIONS(2634), + [anon_sym_like2] = ACTIONS(2634), + [anon_sym_not_DASHlike2] = ACTIONS(2634), + [anon_sym_STAR_STAR2] = ACTIONS(2634), + [anon_sym_PLUS_PLUS2] = ACTIONS(2634), + [anon_sym_SLASH2] = ACTIONS(2636), + [anon_sym_mod2] = ACTIONS(2634), + [anon_sym_SLASH_SLASH2] = ACTIONS(2634), + [anon_sym_PLUS2] = ACTIONS(2636), + [anon_sym_bit_DASHshl2] = ACTIONS(2634), + [anon_sym_bit_DASHshr2] = ACTIONS(2634), + [anon_sym_bit_DASHand2] = ACTIONS(2634), + [anon_sym_bit_DASHxor2] = ACTIONS(2634), + [anon_sym_bit_DASHor2] = ACTIONS(2634), + [anon_sym_err_GT] = ACTIONS(2636), + [anon_sym_out_GT] = ACTIONS(2636), + [anon_sym_e_GT] = ACTIONS(2636), + [anon_sym_o_GT] = ACTIONS(2636), + [anon_sym_err_PLUSout_GT] = ACTIONS(2636), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2636), + [anon_sym_o_PLUSe_GT] = ACTIONS(2636), + [anon_sym_e_PLUSo_GT] = ACTIONS(2636), + [anon_sym_err_GT_GT] = ACTIONS(2634), + [anon_sym_out_GT_GT] = ACTIONS(2634), + [anon_sym_e_GT_GT] = ACTIONS(2634), + [anon_sym_o_GT_GT] = ACTIONS(2634), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2634), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2634), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2634), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2634), [anon_sym_POUND] = ACTIONS(3), }, [STATE(951)] = { [sym_comment] = STATE(951), - [anon_sym_in] = ACTIONS(1972), - [sym__newline] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_err_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_GT_PIPE] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_GT2] = ACTIONS(1974), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_EQ_GT] = ACTIONS(1972), - [anon_sym_STAR2] = ACTIONS(1974), - [anon_sym_and2] = ACTIONS(1972), - [anon_sym_xor2] = ACTIONS(1972), - [anon_sym_or2] = ACTIONS(1972), - [anon_sym_not_DASHin2] = ACTIONS(1972), - [anon_sym_has2] = ACTIONS(1972), - [anon_sym_not_DASHhas2] = ACTIONS(1972), - [anon_sym_starts_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), - [anon_sym_ends_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), - [anon_sym_EQ_EQ2] = ACTIONS(1972), - [anon_sym_BANG_EQ2] = ACTIONS(1972), - [anon_sym_LT2] = ACTIONS(1974), - [anon_sym_LT_EQ2] = ACTIONS(1972), - [anon_sym_GT_EQ2] = ACTIONS(1972), - [anon_sym_EQ_TILDE2] = ACTIONS(1972), - [anon_sym_BANG_TILDE2] = ACTIONS(1972), - [anon_sym_like2] = ACTIONS(1972), - [anon_sym_not_DASHlike2] = ACTIONS(1972), - [anon_sym_STAR_STAR2] = ACTIONS(1972), - [anon_sym_PLUS_PLUS2] = ACTIONS(1972), - [anon_sym_SLASH2] = ACTIONS(1974), - [anon_sym_mod2] = ACTIONS(1972), - [anon_sym_SLASH_SLASH2] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1974), - [anon_sym_bit_DASHshl2] = ACTIONS(1972), - [anon_sym_bit_DASHshr2] = ACTIONS(1972), - [anon_sym_bit_DASHand2] = ACTIONS(1972), - [anon_sym_bit_DASHxor2] = ACTIONS(1972), - [anon_sym_bit_DASHor2] = ACTIONS(1972), - [anon_sym_err_GT] = ACTIONS(1974), - [anon_sym_out_GT] = ACTIONS(1974), - [anon_sym_e_GT] = ACTIONS(1974), - [anon_sym_o_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT] = ACTIONS(1974), - [anon_sym_err_GT_GT] = ACTIONS(1972), - [anon_sym_out_GT_GT] = ACTIONS(1972), - [anon_sym_e_GT_GT] = ACTIONS(1972), - [anon_sym_o_GT_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_EQ_GT] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), [anon_sym_POUND] = ACTIONS(3), }, [STATE(952)] = { [sym_comment] = STATE(952), - [ts_builtin_sym_end] = 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_GT2] = ACTIONS(2114), - [anon_sym_DASH2] = 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_DOT_DOT2] = ACTIONS(2640), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2642), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2642), - [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), + [anon_sym_export] = ACTIONS(2638), + [anon_sym_alias] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_mut] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [aux_sym_cmd_identifier_token1] = ACTIONS(2638), + [anon_sym_def] = ACTIONS(2640), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_export_DASHenv] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_loop] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_catch] = ACTIONS(2640), + [anon_sym_finally] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_in] = ACTIONS(2638), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2640), + [aux_sym_cmd_identifier_token3] = ACTIONS(2640), + [aux_sym_cmd_identifier_token4] = ACTIONS(2640), + [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [sym__newline] = 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_LBRACK] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_DOLLAR] = ACTIONS(2638), + [anon_sym_DASH2] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_where] = ACTIONS(2640), + [aux_sym_expr_unary_token1] = ACTIONS(2640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [aux_sym__val_number_decimal_token1] = ACTIONS(2638), + [aux_sym__val_number_decimal_token2] = ACTIONS(2640), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2640), + [aux_sym__val_number_token2] = ACTIONS(2640), + [aux_sym__val_number_token3] = ACTIONS(2640), + [anon_sym_0b] = ACTIONS(2638), + [anon_sym_0o] = ACTIONS(2638), + [anon_sym_0x] = ACTIONS(2638), + [sym_val_date] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_SQUOTE] = ACTIONS(2640), + [anon_sym_BQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_CARET] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2640), }, [STATE(953)] = { [sym_comment] = STATE(953), - [ts_builtin_sym_end] = ACTIONS(1915), - [anon_sym_in] = ACTIONS(1915), - [sym__newline] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_err_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_GT_PIPE] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), - [anon_sym_GT2] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1915), - [anon_sym_STAR2] = ACTIONS(1917), - [anon_sym_and2] = ACTIONS(1915), - [anon_sym_xor2] = ACTIONS(1915), - [anon_sym_or2] = ACTIONS(1915), - [anon_sym_not_DASHin2] = ACTIONS(1915), - [anon_sym_has2] = ACTIONS(1915), - [anon_sym_not_DASHhas2] = ACTIONS(1915), - [anon_sym_starts_DASHwith2] = ACTIONS(1915), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1915), - [anon_sym_ends_DASHwith2] = ACTIONS(1915), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1915), - [anon_sym_EQ_EQ2] = ACTIONS(1915), - [anon_sym_BANG_EQ2] = ACTIONS(1915), - [anon_sym_LT2] = ACTIONS(1917), - [anon_sym_LT_EQ2] = ACTIONS(1915), - [anon_sym_GT_EQ2] = ACTIONS(1915), - [anon_sym_EQ_TILDE2] = ACTIONS(1915), - [anon_sym_BANG_TILDE2] = ACTIONS(1915), - [anon_sym_like2] = ACTIONS(1915), - [anon_sym_not_DASHlike2] = ACTIONS(1915), - [anon_sym_STAR_STAR2] = ACTIONS(1915), - [anon_sym_PLUS_PLUS2] = ACTIONS(1915), - [anon_sym_SLASH2] = ACTIONS(1917), - [anon_sym_mod2] = ACTIONS(1915), - [anon_sym_SLASH_SLASH2] = ACTIONS(1915), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_bit_DASHshl2] = ACTIONS(1915), - [anon_sym_bit_DASHshr2] = ACTIONS(1915), - [anon_sym_bit_DASHand2] = ACTIONS(1915), - [anon_sym_bit_DASHxor2] = ACTIONS(1915), - [anon_sym_bit_DASHor2] = ACTIONS(1915), - [anon_sym_DOT_DOT2] = ACTIONS(1917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1915), - [anon_sym_err_GT] = ACTIONS(1917), - [anon_sym_out_GT] = ACTIONS(1917), - [anon_sym_e_GT] = ACTIONS(1917), - [anon_sym_o_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT] = ACTIONS(1917), - [anon_sym_err_GT_GT] = ACTIONS(1915), - [anon_sym_out_GT_GT] = ACTIONS(1915), - [anon_sym_e_GT_GT] = ACTIONS(1915), - [anon_sym_o_GT_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), + [anon_sym_in] = ACTIONS(1885), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_RPAREN] = ACTIONS(1885), + [anon_sym_GT2] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_EQ_GT] = ACTIONS(1885), + [anon_sym_STAR2] = ACTIONS(1887), + [anon_sym_and2] = ACTIONS(1885), + [anon_sym_xor2] = ACTIONS(1885), + [anon_sym_or2] = ACTIONS(1885), + [anon_sym_not_DASHin2] = ACTIONS(1885), + [anon_sym_has2] = ACTIONS(1885), + [anon_sym_not_DASHhas2] = ACTIONS(1885), + [anon_sym_starts_DASHwith2] = ACTIONS(1885), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1885), + [anon_sym_ends_DASHwith2] = ACTIONS(1885), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1885), + [anon_sym_EQ_EQ2] = ACTIONS(1885), + [anon_sym_BANG_EQ2] = ACTIONS(1885), + [anon_sym_LT2] = ACTIONS(1887), + [anon_sym_LT_EQ2] = ACTIONS(1885), + [anon_sym_GT_EQ2] = ACTIONS(1885), + [anon_sym_EQ_TILDE2] = ACTIONS(1885), + [anon_sym_BANG_TILDE2] = ACTIONS(1885), + [anon_sym_like2] = ACTIONS(1885), + [anon_sym_not_DASHlike2] = ACTIONS(1885), + [anon_sym_STAR_STAR2] = ACTIONS(1885), + [anon_sym_PLUS_PLUS2] = ACTIONS(1885), + [anon_sym_SLASH2] = ACTIONS(1887), + [anon_sym_mod2] = ACTIONS(1885), + [anon_sym_SLASH_SLASH2] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_bit_DASHshl2] = ACTIONS(1885), + [anon_sym_bit_DASHshr2] = ACTIONS(1885), + [anon_sym_bit_DASHand2] = ACTIONS(1885), + [anon_sym_bit_DASHxor2] = ACTIONS(1885), + [anon_sym_bit_DASHor2] = ACTIONS(1885), + [anon_sym_err_GT] = ACTIONS(1887), + [anon_sym_out_GT] = ACTIONS(1887), + [anon_sym_e_GT] = ACTIONS(1887), + [anon_sym_o_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT] = ACTIONS(1887), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), [anon_sym_POUND] = ACTIONS(3), }, [STATE(954)] = { [sym_comment] = STATE(954), - [anon_sym_export] = ACTIONS(2644), - [anon_sym_alias] = ACTIONS(2646), - [anon_sym_let] = ACTIONS(2646), - [anon_sym_mut] = ACTIONS(2646), - [anon_sym_const] = ACTIONS(2646), - [aux_sym_cmd_identifier_token1] = ACTIONS(2644), - [anon_sym_def] = ACTIONS(2646), - [anon_sym_use] = ACTIONS(2646), - [anon_sym_export_DASHenv] = ACTIONS(2646), - [anon_sym_extern] = ACTIONS(2646), - [anon_sym_module] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2646), - [anon_sym_loop] = ACTIONS(2646), - [anon_sym_while] = ACTIONS(2646), - [anon_sym_if] = ACTIONS(2646), - [anon_sym_else] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2646), - [anon_sym_catch] = ACTIONS(2646), - [anon_sym_finally] = ACTIONS(2646), - [anon_sym_match] = ACTIONS(2646), - [anon_sym_in] = ACTIONS(2644), - [anon_sym_true] = ACTIONS(2646), - [anon_sym_false] = ACTIONS(2646), - [anon_sym_null] = ACTIONS(2646), - [aux_sym_cmd_identifier_token3] = ACTIONS(2646), - [aux_sym_cmd_identifier_token4] = ACTIONS(2646), - [aux_sym_cmd_identifier_token5] = ACTIONS(2646), - [sym__newline] = ACTIONS(2646), - [anon_sym_PIPE] = ACTIONS(2646), - [anon_sym_err_GT_PIPE] = ACTIONS(2646), - [anon_sym_out_GT_PIPE] = ACTIONS(2646), - [anon_sym_e_GT_PIPE] = ACTIONS(2646), - [anon_sym_o_GT_PIPE] = ACTIONS(2646), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2646), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2646), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2646), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_DOLLAR] = ACTIONS(2644), - [anon_sym_DASH2] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(2644), - [anon_sym_where] = ACTIONS(2646), - [aux_sym_expr_unary_token1] = ACTIONS(2646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2646), - [anon_sym_DOT_DOT_LT] = ACTIONS(2646), - [aux_sym__val_number_decimal_token1] = ACTIONS(2644), - [aux_sym__val_number_decimal_token2] = ACTIONS(2646), - [aux_sym__val_number_decimal_token3] = ACTIONS(2646), - [aux_sym__val_number_decimal_token4] = ACTIONS(2646), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [anon_sym_0b] = ACTIONS(2644), - [anon_sym_0o] = ACTIONS(2644), - [anon_sym_0x] = ACTIONS(2644), - [sym_val_date] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(2646), - [anon_sym_SQUOTE] = ACTIONS(2646), - [anon_sym_BQUOTE] = ACTIONS(2646), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2646), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2646), + [anon_sym_in] = ACTIONS(1893), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_GT2] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_EQ_GT] = ACTIONS(1893), + [anon_sym_STAR2] = ACTIONS(1895), + [anon_sym_and2] = ACTIONS(1893), + [anon_sym_xor2] = ACTIONS(1893), + [anon_sym_or2] = ACTIONS(1893), + [anon_sym_not_DASHin2] = ACTIONS(1893), + [anon_sym_has2] = ACTIONS(1893), + [anon_sym_not_DASHhas2] = ACTIONS(1893), + [anon_sym_starts_DASHwith2] = ACTIONS(1893), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1893), + [anon_sym_ends_DASHwith2] = ACTIONS(1893), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1893), + [anon_sym_EQ_EQ2] = ACTIONS(1893), + [anon_sym_BANG_EQ2] = ACTIONS(1893), + [anon_sym_LT2] = ACTIONS(1895), + [anon_sym_LT_EQ2] = ACTIONS(1893), + [anon_sym_GT_EQ2] = ACTIONS(1893), + [anon_sym_EQ_TILDE2] = ACTIONS(1893), + [anon_sym_BANG_TILDE2] = ACTIONS(1893), + [anon_sym_like2] = ACTIONS(1893), + [anon_sym_not_DASHlike2] = ACTIONS(1893), + [anon_sym_STAR_STAR2] = ACTIONS(1893), + [anon_sym_PLUS_PLUS2] = ACTIONS(1893), + [anon_sym_SLASH2] = ACTIONS(1895), + [anon_sym_mod2] = ACTIONS(1893), + [anon_sym_SLASH_SLASH2] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_bit_DASHshl2] = ACTIONS(1893), + [anon_sym_bit_DASHshr2] = ACTIONS(1893), + [anon_sym_bit_DASHand2] = ACTIONS(1893), + [anon_sym_bit_DASHxor2] = ACTIONS(1893), + [anon_sym_bit_DASHor2] = ACTIONS(1893), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(955)] = { [sym_comment] = STATE(955), - [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_RBRACE] = ACTIONS(2648), - [anon_sym_EQ_GT] = 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_in] = ACTIONS(2227), + [sym__newline] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_err_GT_PIPE] = ACTIONS(2227), + [anon_sym_out_GT_PIPE] = ACTIONS(2227), + [anon_sym_e_GT_PIPE] = ACTIONS(2227), + [anon_sym_o_GT_PIPE] = ACTIONS(2227), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2227), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2227), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2227), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2227), + [anon_sym_RPAREN] = ACTIONS(2227), + [anon_sym_GT2] = ACTIONS(2229), + [anon_sym_DASH2] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_EQ_GT] = ACTIONS(2227), + [anon_sym_STAR2] = ACTIONS(2229), + [anon_sym_and2] = ACTIONS(2227), + [anon_sym_xor2] = ACTIONS(2227), + [anon_sym_or2] = ACTIONS(2227), + [anon_sym_not_DASHin2] = ACTIONS(2227), + [anon_sym_has2] = ACTIONS(2227), + [anon_sym_not_DASHhas2] = ACTIONS(2227), + [anon_sym_starts_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), + [anon_sym_ends_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), + [anon_sym_EQ_EQ2] = ACTIONS(2227), + [anon_sym_BANG_EQ2] = ACTIONS(2227), + [anon_sym_LT2] = ACTIONS(2229), + [anon_sym_LT_EQ2] = ACTIONS(2227), + [anon_sym_GT_EQ2] = ACTIONS(2227), + [anon_sym_EQ_TILDE2] = ACTIONS(2227), + [anon_sym_BANG_TILDE2] = ACTIONS(2227), + [anon_sym_like2] = ACTIONS(2227), + [anon_sym_not_DASHlike2] = ACTIONS(2227), + [anon_sym_STAR_STAR2] = ACTIONS(2227), + [anon_sym_PLUS_PLUS2] = ACTIONS(2227), + [anon_sym_SLASH2] = ACTIONS(2229), + [anon_sym_mod2] = ACTIONS(2227), + [anon_sym_SLASH_SLASH2] = ACTIONS(2227), + [anon_sym_PLUS2] = ACTIONS(2229), + [anon_sym_bit_DASHshl2] = ACTIONS(2227), + [anon_sym_bit_DASHshr2] = ACTIONS(2227), + [anon_sym_bit_DASHand2] = ACTIONS(2227), + [anon_sym_bit_DASHxor2] = ACTIONS(2227), + [anon_sym_bit_DASHor2] = ACTIONS(2227), + [anon_sym_err_GT] = ACTIONS(2229), + [anon_sym_out_GT] = ACTIONS(2229), + [anon_sym_e_GT] = ACTIONS(2229), + [anon_sym_o_GT] = ACTIONS(2229), + [anon_sym_err_PLUSout_GT] = ACTIONS(2229), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), + [anon_sym_o_PLUSe_GT] = ACTIONS(2229), + [anon_sym_e_PLUSo_GT] = ACTIONS(2229), + [anon_sym_err_GT_GT] = ACTIONS(2227), + [anon_sym_out_GT_GT] = ACTIONS(2227), + [anon_sym_e_GT_GT] = ACTIONS(2227), + [anon_sym_o_GT_GT] = ACTIONS(2227), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2227), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2227), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2227), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2227), [anon_sym_POUND] = ACTIONS(3), }, [STATE(956)] = { [sym_comment] = STATE(956), - [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_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(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(957)] = { [sym_comment] = STATE(957), - [anon_sym_in] = ACTIONS(1972), - [sym__newline] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_err_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_GT_PIPE] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_GT2] = ACTIONS(1974), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_STAR2] = ACTIONS(1974), - [anon_sym_and2] = ACTIONS(1972), - [anon_sym_xor2] = ACTIONS(1972), - [anon_sym_or2] = ACTIONS(1972), - [anon_sym_not_DASHin2] = ACTIONS(1972), - [anon_sym_has2] = ACTIONS(1972), - [anon_sym_not_DASHhas2] = ACTIONS(1972), - [anon_sym_starts_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), - [anon_sym_ends_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), - [anon_sym_EQ_EQ2] = ACTIONS(1972), - [anon_sym_BANG_EQ2] = ACTIONS(1972), - [anon_sym_LT2] = ACTIONS(1974), - [anon_sym_LT_EQ2] = ACTIONS(1972), - [anon_sym_GT_EQ2] = ACTIONS(1972), - [anon_sym_EQ_TILDE2] = ACTIONS(1972), - [anon_sym_BANG_TILDE2] = ACTIONS(1972), - [anon_sym_like2] = ACTIONS(1972), - [anon_sym_not_DASHlike2] = ACTIONS(1972), - [anon_sym_LPAREN2] = ACTIONS(1976), - [anon_sym_STAR_STAR2] = ACTIONS(1972), - [anon_sym_PLUS_PLUS2] = ACTIONS(1972), - [anon_sym_SLASH2] = ACTIONS(1974), - [anon_sym_mod2] = ACTIONS(1972), - [anon_sym_SLASH_SLASH2] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1974), - [anon_sym_bit_DASHshl2] = ACTIONS(1972), - [anon_sym_bit_DASHshr2] = ACTIONS(1972), - [anon_sym_bit_DASHand2] = ACTIONS(1972), - [anon_sym_bit_DASHxor2] = ACTIONS(1972), - [anon_sym_bit_DASHor2] = ACTIONS(1972), - [anon_sym_err_GT] = ACTIONS(1974), - [anon_sym_out_GT] = ACTIONS(1974), - [anon_sym_e_GT] = ACTIONS(1974), - [anon_sym_o_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT] = ACTIONS(1974), - [anon_sym_err_GT_GT] = ACTIONS(1972), - [anon_sym_out_GT_GT] = ACTIONS(1972), - [anon_sym_e_GT_GT] = ACTIONS(1972), - [anon_sym_o_GT_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), - [sym__unquoted_pattern] = ACTIONS(1637), + [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(958)] = { [sym_comment] = STATE(958), - [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_RBRACE] = ACTIONS(2652), - [anon_sym_EQ_GT] = 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(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_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(959)] = { [sym_comment] = STATE(959), - [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_RBRACE] = ACTIONS(2656), - [anon_sym_EQ_GT] = 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), + [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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(960)] = { + [aux_sym__repeat_newline] = STATE(1150), + [sym__expression_parenthesized] = STATE(4643), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2191), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_comment] = STATE(960), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), + [sym__newline] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2654), + [anon_sym_DQUOTE] = 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(961)] = { + [sym_comment] = STATE(961), + [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(962)] = { + [sym_comment] = STATE(962), + [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(963)] = { + [sym_comment] = STATE(963), + [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(964)] = { + [sym_comment] = STATE(964), + [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(965)] = { + [sym_comment] = STATE(965), + [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_RBRACE] = ACTIONS(2656), + [anon_sym_EQ_GT] = 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), @@ -120248,491 +121091,698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(960)] = { - [sym_comment] = STATE(960), - [ts_builtin_sym_end] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_GT2] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_STAR2] = ACTIONS(1792), - [anon_sym_and2] = ACTIONS(1790), - [anon_sym_xor2] = ACTIONS(1790), - [anon_sym_or2] = ACTIONS(1790), - [anon_sym_not_DASHin2] = ACTIONS(1790), - [anon_sym_has2] = ACTIONS(1790), - [anon_sym_not_DASHhas2] = ACTIONS(1790), - [anon_sym_starts_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), - [anon_sym_ends_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), - [anon_sym_EQ_EQ2] = ACTIONS(1790), - [anon_sym_BANG_EQ2] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ2] = ACTIONS(1790), - [anon_sym_GT_EQ2] = ACTIONS(1790), - [anon_sym_EQ_TILDE2] = ACTIONS(1790), - [anon_sym_BANG_TILDE2] = ACTIONS(1790), - [anon_sym_like2] = ACTIONS(1790), - [anon_sym_not_DASHlike2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_STAR_STAR2] = ACTIONS(1790), - [anon_sym_PLUS_PLUS2] = ACTIONS(1790), - [anon_sym_SLASH2] = ACTIONS(1792), - [anon_sym_mod2] = ACTIONS(1790), - [anon_sym_SLASH_SLASH2] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1792), - [anon_sym_bit_DASHshl2] = ACTIONS(1790), - [anon_sym_bit_DASHshr2] = ACTIONS(1790), - [anon_sym_bit_DASHand2] = ACTIONS(1790), - [anon_sym_bit_DASHxor2] = ACTIONS(1790), - [anon_sym_bit_DASHor2] = ACTIONS(1790), - [aux_sym__immediate_decimal_token5] = ACTIONS(2377), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [sym__unquoted_pattern] = ACTIONS(1792), + [STATE(966)] = { + [sym_comment] = STATE(966), + [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(961)] = { - [sym_comment] = STATE(961), - [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_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), + [STATE(967)] = { + [sym_comment] = STATE(967), + [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(962)] = { - [sym_comment] = STATE(962), - [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_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_DOT_DOT2] = ACTIONS(2660), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2662), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2662), - [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), + [STATE(968)] = { + [sym_comment] = STATE(968), + [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(963)] = { - [sym_comment] = STATE(963), - [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_RBRACE] = 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_LPAREN2] = ACTIONS(1986), - [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), - [sym__unquoted_pattern] = ACTIONS(1992), + [STATE(969)] = { + [sym_comment] = STATE(969), + [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(964)] = { - [sym_comment] = STATE(964), - [ts_builtin_sym_end] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2132), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [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_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_DOT_DOT2] = ACTIONS(1750), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), - [anon_sym_err_GT] = ACTIONS(2247), - [anon_sym_out_GT] = ACTIONS(2247), - [anon_sym_e_GT] = ACTIONS(2247), - [anon_sym_o_GT] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT] = ACTIONS(2247), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), + [STATE(970)] = { + [sym_comment] = STATE(970), + [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(965)] = { - [sym_comment] = STATE(965), - [anon_sym_in] = ACTIONS(1982), - [sym__newline] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_err_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_GT_PIPE] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_GT2] = ACTIONS(1984), - [anon_sym_DASH2] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_STAR2] = ACTIONS(1984), - [anon_sym_and2] = ACTIONS(1982), - [anon_sym_xor2] = ACTIONS(1982), - [anon_sym_or2] = ACTIONS(1982), - [anon_sym_not_DASHin2] = ACTIONS(1982), - [anon_sym_has2] = ACTIONS(1982), - [anon_sym_not_DASHhas2] = ACTIONS(1982), - [anon_sym_starts_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), - [anon_sym_ends_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), - [anon_sym_EQ_EQ2] = ACTIONS(1982), - [anon_sym_BANG_EQ2] = ACTIONS(1982), - [anon_sym_LT2] = ACTIONS(1984), - [anon_sym_LT_EQ2] = ACTIONS(1982), - [anon_sym_GT_EQ2] = ACTIONS(1982), - [anon_sym_EQ_TILDE2] = ACTIONS(1982), - [anon_sym_BANG_TILDE2] = ACTIONS(1982), - [anon_sym_like2] = ACTIONS(1982), - [anon_sym_not_DASHlike2] = ACTIONS(1982), - [anon_sym_LPAREN2] = ACTIONS(1986), - [anon_sym_STAR_STAR2] = ACTIONS(1982), - [anon_sym_PLUS_PLUS2] = ACTIONS(1982), - [anon_sym_SLASH2] = ACTIONS(1984), - [anon_sym_mod2] = ACTIONS(1982), - [anon_sym_SLASH_SLASH2] = ACTIONS(1982), - [anon_sym_PLUS2] = ACTIONS(1984), - [anon_sym_bit_DASHshl2] = ACTIONS(1982), - [anon_sym_bit_DASHshr2] = ACTIONS(1982), - [anon_sym_bit_DASHand2] = ACTIONS(1982), - [anon_sym_bit_DASHxor2] = ACTIONS(1982), - [anon_sym_bit_DASHor2] = ACTIONS(1982), - [anon_sym_err_GT] = ACTIONS(1984), - [anon_sym_out_GT] = ACTIONS(1984), - [anon_sym_e_GT] = ACTIONS(1984), - [anon_sym_o_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT] = ACTIONS(1984), - [anon_sym_err_GT_GT] = ACTIONS(1982), - [anon_sym_out_GT_GT] = ACTIONS(1982), - [anon_sym_e_GT_GT] = ACTIONS(1982), - [anon_sym_o_GT_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), - [sym__unquoted_pattern] = ACTIONS(1992), + [STATE(971)] = { + [sym_comment] = STATE(971), + [ts_builtin_sym_end] = ACTIONS(1905), + [anon_sym_in] = ACTIONS(1905), + [sym__newline] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_err_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_GT_PIPE] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1905), + [anon_sym_GT2] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1905), + [anon_sym_STAR2] = ACTIONS(1907), + [anon_sym_and2] = ACTIONS(1905), + [anon_sym_xor2] = ACTIONS(1905), + [anon_sym_or2] = ACTIONS(1905), + [anon_sym_not_DASHin2] = ACTIONS(1905), + [anon_sym_has2] = ACTIONS(1905), + [anon_sym_not_DASHhas2] = ACTIONS(1905), + [anon_sym_starts_DASHwith2] = ACTIONS(1905), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1905), + [anon_sym_ends_DASHwith2] = ACTIONS(1905), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1905), + [anon_sym_EQ_EQ2] = ACTIONS(1905), + [anon_sym_BANG_EQ2] = ACTIONS(1905), + [anon_sym_LT2] = ACTIONS(1907), + [anon_sym_LT_EQ2] = ACTIONS(1905), + [anon_sym_GT_EQ2] = ACTIONS(1905), + [anon_sym_EQ_TILDE2] = ACTIONS(1905), + [anon_sym_BANG_TILDE2] = ACTIONS(1905), + [anon_sym_like2] = ACTIONS(1905), + [anon_sym_not_DASHlike2] = ACTIONS(1905), + [anon_sym_STAR_STAR2] = ACTIONS(1905), + [anon_sym_PLUS_PLUS2] = ACTIONS(1905), + [anon_sym_SLASH2] = ACTIONS(1907), + [anon_sym_mod2] = ACTIONS(1905), + [anon_sym_SLASH_SLASH2] = ACTIONS(1905), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_bit_DASHshl2] = ACTIONS(1905), + [anon_sym_bit_DASHshr2] = ACTIONS(1905), + [anon_sym_bit_DASHand2] = ACTIONS(1905), + [anon_sym_bit_DASHxor2] = ACTIONS(1905), + [anon_sym_bit_DASHor2] = ACTIONS(1905), + [anon_sym_DOT_DOT2] = ACTIONS(1907), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1905), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1905), + [anon_sym_err_GT] = ACTIONS(1907), + [anon_sym_out_GT] = ACTIONS(1907), + [anon_sym_e_GT] = ACTIONS(1907), + [anon_sym_o_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT] = ACTIONS(1907), + [anon_sym_err_GT_GT] = ACTIONS(1905), + [anon_sym_out_GT_GT] = ACTIONS(1905), + [anon_sym_e_GT_GT] = ACTIONS(1905), + [anon_sym_o_GT_GT] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1905), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(966)] = { - [sym_comment] = STATE(966), - [anon_sym_in] = ACTIONS(1982), - [sym__newline] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_err_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_GT_PIPE] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_GT2] = ACTIONS(1984), - [anon_sym_DASH2] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_EQ_GT] = ACTIONS(1982), - [anon_sym_STAR2] = ACTIONS(1984), - [anon_sym_and2] = ACTIONS(1982), - [anon_sym_xor2] = ACTIONS(1982), - [anon_sym_or2] = ACTIONS(1982), - [anon_sym_not_DASHin2] = ACTIONS(1982), - [anon_sym_has2] = ACTIONS(1982), - [anon_sym_not_DASHhas2] = ACTIONS(1982), - [anon_sym_starts_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), - [anon_sym_ends_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), - [anon_sym_EQ_EQ2] = ACTIONS(1982), - [anon_sym_BANG_EQ2] = ACTIONS(1982), - [anon_sym_LT2] = ACTIONS(1984), - [anon_sym_LT_EQ2] = ACTIONS(1982), - [anon_sym_GT_EQ2] = ACTIONS(1982), - [anon_sym_EQ_TILDE2] = ACTIONS(1982), - [anon_sym_BANG_TILDE2] = ACTIONS(1982), - [anon_sym_like2] = ACTIONS(1982), - [anon_sym_not_DASHlike2] = ACTIONS(1982), - [anon_sym_STAR_STAR2] = ACTIONS(1982), - [anon_sym_PLUS_PLUS2] = ACTIONS(1982), - [anon_sym_SLASH2] = ACTIONS(1984), - [anon_sym_mod2] = ACTIONS(1982), - [anon_sym_SLASH_SLASH2] = ACTIONS(1982), - [anon_sym_PLUS2] = ACTIONS(1984), - [anon_sym_bit_DASHshl2] = ACTIONS(1982), - [anon_sym_bit_DASHshr2] = ACTIONS(1982), - [anon_sym_bit_DASHand2] = ACTIONS(1982), - [anon_sym_bit_DASHxor2] = ACTIONS(1982), - [anon_sym_bit_DASHor2] = ACTIONS(1982), - [anon_sym_err_GT] = ACTIONS(1984), - [anon_sym_out_GT] = ACTIONS(1984), - [anon_sym_e_GT] = ACTIONS(1984), - [anon_sym_o_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT] = ACTIONS(1984), - [anon_sym_err_GT_GT] = ACTIONS(1982), - [anon_sym_out_GT_GT] = ACTIONS(1982), - [anon_sym_e_GT_GT] = ACTIONS(1982), - [anon_sym_o_GT_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), + [STATE(972)] = { + [sym_comment] = STATE(972), + [anon_sym_in] = ACTIONS(1953), + [sym__newline] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_err_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_GT_PIPE] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1953), + [anon_sym_GT2] = ACTIONS(1955), + [anon_sym_DASH2] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_EQ_GT] = ACTIONS(1953), + [anon_sym_STAR2] = ACTIONS(1955), + [anon_sym_and2] = ACTIONS(1953), + [anon_sym_xor2] = ACTIONS(1953), + [anon_sym_or2] = ACTIONS(1953), + [anon_sym_not_DASHin2] = ACTIONS(1953), + [anon_sym_has2] = ACTIONS(1953), + [anon_sym_not_DASHhas2] = ACTIONS(1953), + [anon_sym_starts_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), + [anon_sym_ends_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), + [anon_sym_EQ_EQ2] = ACTIONS(1953), + [anon_sym_BANG_EQ2] = ACTIONS(1953), + [anon_sym_LT2] = ACTIONS(1955), + [anon_sym_LT_EQ2] = ACTIONS(1953), + [anon_sym_GT_EQ2] = ACTIONS(1953), + [anon_sym_EQ_TILDE2] = ACTIONS(1953), + [anon_sym_BANG_TILDE2] = ACTIONS(1953), + [anon_sym_like2] = ACTIONS(1953), + [anon_sym_not_DASHlike2] = ACTIONS(1953), + [anon_sym_STAR_STAR2] = ACTIONS(1953), + [anon_sym_PLUS_PLUS2] = ACTIONS(1953), + [anon_sym_SLASH2] = ACTIONS(1955), + [anon_sym_mod2] = ACTIONS(1953), + [anon_sym_SLASH_SLASH2] = ACTIONS(1953), + [anon_sym_PLUS2] = ACTIONS(1955), + [anon_sym_bit_DASHshl2] = ACTIONS(1953), + [anon_sym_bit_DASHshr2] = ACTIONS(1953), + [anon_sym_bit_DASHand2] = ACTIONS(1953), + [anon_sym_bit_DASHxor2] = ACTIONS(1953), + [anon_sym_bit_DASHor2] = ACTIONS(1953), + [anon_sym_err_GT] = ACTIONS(1955), + [anon_sym_out_GT] = ACTIONS(1955), + [anon_sym_e_GT] = ACTIONS(1955), + [anon_sym_o_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT] = ACTIONS(1955), + [anon_sym_err_GT_GT] = ACTIONS(1953), + [anon_sym_out_GT_GT] = ACTIONS(1953), + [anon_sym_e_GT_GT] = ACTIONS(1953), + [anon_sym_o_GT_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(967)] = { - [sym_comment] = STATE(967), + [STATE(973)] = { + [sym_comment] = STATE(973), + [ts_builtin_sym_end] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2227), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_GT2] = ACTIONS(2229), + [anon_sym_DASH2] = ACTIONS(2227), + [anon_sym_STAR2] = ACTIONS(2229), + [anon_sym_and2] = ACTIONS(2227), + [anon_sym_xor2] = ACTIONS(2227), + [anon_sym_or2] = ACTIONS(2227), + [anon_sym_not_DASHin2] = ACTIONS(2227), + [anon_sym_has2] = ACTIONS(2227), + [anon_sym_not_DASHhas2] = ACTIONS(2227), + [anon_sym_starts_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), + [anon_sym_ends_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), + [anon_sym_EQ_EQ2] = ACTIONS(2227), + [anon_sym_BANG_EQ2] = ACTIONS(2227), + [anon_sym_LT2] = ACTIONS(2229), + [anon_sym_LT_EQ2] = ACTIONS(2227), + [anon_sym_GT_EQ2] = ACTIONS(2227), + [anon_sym_EQ_TILDE2] = ACTIONS(2227), + [anon_sym_BANG_TILDE2] = ACTIONS(2227), + [anon_sym_like2] = ACTIONS(2227), + [anon_sym_not_DASHlike2] = ACTIONS(2227), + [anon_sym_STAR_STAR2] = ACTIONS(2227), + [anon_sym_PLUS_PLUS2] = ACTIONS(2227), + [anon_sym_SLASH2] = ACTIONS(2229), + [anon_sym_mod2] = ACTIONS(2227), + [anon_sym_SLASH_SLASH2] = ACTIONS(2227), + [anon_sym_PLUS2] = ACTIONS(2229), + [anon_sym_bit_DASHshl2] = ACTIONS(2227), + [anon_sym_bit_DASHshr2] = ACTIONS(2227), + [anon_sym_bit_DASHand2] = ACTIONS(2227), + [anon_sym_bit_DASHxor2] = ACTIONS(2227), + [anon_sym_bit_DASHor2] = ACTIONS(2227), + [anon_sym_DOT_DOT2] = ACTIONS(1780), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1782), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1782), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(974)] = { + [sym_comment] = STATE(974), + [anon_sym_in] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_err_GT_PIPE] = ACTIONS(2660), + [anon_sym_out_GT_PIPE] = ACTIONS(2660), + [anon_sym_e_GT_PIPE] = ACTIONS(2660), + [anon_sym_o_GT_PIPE] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2660), + [anon_sym_RPAREN] = ACTIONS(2660), + [anon_sym_GT2] = ACTIONS(2662), + [anon_sym_DASH2] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2660), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_EQ_GT] = ACTIONS(2660), + [anon_sym_STAR2] = ACTIONS(2662), + [anon_sym_and2] = ACTIONS(2660), + [anon_sym_xor2] = ACTIONS(2660), + [anon_sym_or2] = ACTIONS(2660), + [anon_sym_not_DASHin2] = ACTIONS(2660), + [anon_sym_has2] = ACTIONS(2660), + [anon_sym_not_DASHhas2] = ACTIONS(2660), + [anon_sym_starts_DASHwith2] = ACTIONS(2660), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2660), + [anon_sym_ends_DASHwith2] = ACTIONS(2660), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2660), + [anon_sym_EQ_EQ2] = ACTIONS(2660), + [anon_sym_BANG_EQ2] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LT_EQ2] = ACTIONS(2660), + [anon_sym_GT_EQ2] = ACTIONS(2660), + [anon_sym_EQ_TILDE2] = ACTIONS(2660), + [anon_sym_BANG_TILDE2] = ACTIONS(2660), + [anon_sym_like2] = ACTIONS(2660), + [anon_sym_not_DASHlike2] = ACTIONS(2660), + [anon_sym_STAR_STAR2] = ACTIONS(2660), + [anon_sym_PLUS_PLUS2] = ACTIONS(2660), + [anon_sym_SLASH2] = ACTIONS(2662), + [anon_sym_mod2] = ACTIONS(2660), + [anon_sym_SLASH_SLASH2] = ACTIONS(2660), + [anon_sym_PLUS2] = ACTIONS(2662), + [anon_sym_bit_DASHshl2] = ACTIONS(2660), + [anon_sym_bit_DASHshr2] = ACTIONS(2660), + [anon_sym_bit_DASHand2] = ACTIONS(2660), + [anon_sym_bit_DASHxor2] = ACTIONS(2660), + [anon_sym_bit_DASHor2] = ACTIONS(2660), + [anon_sym_err_GT] = ACTIONS(2662), + [anon_sym_out_GT] = ACTIONS(2662), + [anon_sym_e_GT] = ACTIONS(2662), + [anon_sym_o_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT] = ACTIONS(2662), + [anon_sym_err_GT_GT] = ACTIONS(2660), + [anon_sym_out_GT_GT] = ACTIONS(2660), + [anon_sym_e_GT_GT] = ACTIONS(2660), + [anon_sym_o_GT_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(975)] = { + [sym_comment] = STATE(975), + [ts_builtin_sym_end] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [sym__newline] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_err_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_GT_PIPE] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), + [anon_sym_GT2] = ACTIONS(1899), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_STAR2] = ACTIONS(1899), + [anon_sym_and2] = ACTIONS(1897), + [anon_sym_xor2] = ACTIONS(1897), + [anon_sym_or2] = ACTIONS(1897), + [anon_sym_not_DASHin2] = ACTIONS(1897), + [anon_sym_has2] = ACTIONS(1897), + [anon_sym_not_DASHhas2] = ACTIONS(1897), + [anon_sym_starts_DASHwith2] = ACTIONS(1897), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1897), + [anon_sym_ends_DASHwith2] = ACTIONS(1897), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1897), + [anon_sym_EQ_EQ2] = ACTIONS(1897), + [anon_sym_BANG_EQ2] = ACTIONS(1897), + [anon_sym_LT2] = ACTIONS(1899), + [anon_sym_LT_EQ2] = ACTIONS(1897), + [anon_sym_GT_EQ2] = ACTIONS(1897), + [anon_sym_EQ_TILDE2] = ACTIONS(1897), + [anon_sym_BANG_TILDE2] = ACTIONS(1897), + [anon_sym_like2] = ACTIONS(1897), + [anon_sym_not_DASHlike2] = ACTIONS(1897), + [anon_sym_STAR_STAR2] = ACTIONS(1897), + [anon_sym_PLUS_PLUS2] = ACTIONS(1897), + [anon_sym_SLASH2] = ACTIONS(1899), + [anon_sym_mod2] = ACTIONS(1897), + [anon_sym_SLASH_SLASH2] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(1899), + [anon_sym_bit_DASHshl2] = ACTIONS(1897), + [anon_sym_bit_DASHshr2] = ACTIONS(1897), + [anon_sym_bit_DASHand2] = ACTIONS(1897), + [anon_sym_bit_DASHxor2] = ACTIONS(1897), + [anon_sym_bit_DASHor2] = ACTIONS(1897), + [anon_sym_DOT_DOT2] = ACTIONS(1899), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1897), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1899), + [anon_sym_out_GT] = ACTIONS(1899), + [anon_sym_e_GT] = ACTIONS(1899), + [anon_sym_o_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT] = ACTIONS(1899), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(976)] = { + [sym_comment] = STATE(976), [anon_sym_in] = ACTIONS(2664), [sym__newline] = ACTIONS(2664), [anon_sym_SEMI] = ACTIONS(2664), @@ -120800,284 +121850,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2664), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(968)] = { - [sym_comment] = STATE(968), - [ts_builtin_sym_end] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1580), - [sym__newline] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_err_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_GT_PIPE] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), - [anon_sym_GT2] = ACTIONS(1578), - [anon_sym_DASH2] = ACTIONS(1580), - [anon_sym_STAR2] = ACTIONS(1578), - [anon_sym_and2] = ACTIONS(1580), - [anon_sym_xor2] = ACTIONS(1580), - [anon_sym_or2] = ACTIONS(1580), - [anon_sym_not_DASHin2] = ACTIONS(1580), - [anon_sym_has2] = ACTIONS(1580), - [anon_sym_not_DASHhas2] = ACTIONS(1580), - [anon_sym_starts_DASHwith2] = ACTIONS(1580), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), - [anon_sym_ends_DASHwith2] = ACTIONS(1580), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), - [anon_sym_EQ_EQ2] = ACTIONS(1580), - [anon_sym_BANG_EQ2] = ACTIONS(1580), - [anon_sym_LT2] = ACTIONS(1578), - [anon_sym_LT_EQ2] = ACTIONS(1580), - [anon_sym_GT_EQ2] = ACTIONS(1580), - [anon_sym_EQ_TILDE2] = ACTIONS(1580), - [anon_sym_BANG_TILDE2] = ACTIONS(1580), - [anon_sym_like2] = ACTIONS(1580), - [anon_sym_not_DASHlike2] = ACTIONS(1580), - [anon_sym_STAR_STAR2] = ACTIONS(1580), - [anon_sym_PLUS_PLUS2] = ACTIONS(1580), - [anon_sym_SLASH2] = ACTIONS(1578), - [anon_sym_mod2] = ACTIONS(1580), - [anon_sym_SLASH_SLASH2] = ACTIONS(1580), - [anon_sym_PLUS2] = ACTIONS(1578), - [anon_sym_bit_DASHshl2] = ACTIONS(1580), - [anon_sym_bit_DASHshr2] = ACTIONS(1580), - [anon_sym_bit_DASHand2] = ACTIONS(1580), - [anon_sym_bit_DASHxor2] = ACTIONS(1580), - [anon_sym_bit_DASHor2] = ACTIONS(1580), - [anon_sym_DOT_DOT2] = ACTIONS(1578), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1580), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1578), - [anon_sym_out_GT] = ACTIONS(1578), - [anon_sym_e_GT] = ACTIONS(1578), - [anon_sym_o_GT] = ACTIONS(1578), - [anon_sym_err_PLUSout_GT] = ACTIONS(1578), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1578), - [anon_sym_o_PLUSe_GT] = ACTIONS(1578), - [anon_sym_e_PLUSo_GT] = ACTIONS(1578), - [anon_sym_err_GT_GT] = ACTIONS(1580), - [anon_sym_out_GT_GT] = ACTIONS(1580), - [anon_sym_e_GT_GT] = ACTIONS(1580), - [anon_sym_o_GT_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(969)] = { - [sym_comment] = STATE(969), - [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(970)] = { - [sym_comment] = STATE(970), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_EQ_GT] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1699), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(971)] = { - [sym_comment] = STATE(971), - [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_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), + [STATE(977)] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym__expression_parenthesized] = STATE(4659), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2191), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_comment] = STATE(977), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), + [sym__newline] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2654), + [anon_sym_DQUOTE] = 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(972)] = { - [sym_comment] = STATE(972), + [STATE(978)] = { + [sym_comment] = STATE(978), [anon_sym_in] = ACTIONS(2668), [sym__newline] = ACTIONS(2668), [anon_sym_SEMI] = ACTIONS(2668), @@ -121145,20202 +121988,20817 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2668), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(973)] = { - [sym_comment] = STATE(973), - [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_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(974)] = { - [sym_comment] = STATE(974), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(2672), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1699), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [sym__unquoted_pattern] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(975)] = { - [aux_sym__repeat_newline] = STATE(1137), - [sym__expression_parenthesized] = STATE(4632), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2190), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_comment] = STATE(975), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [sym__newline] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = 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(976)] = { - [sym_comment] = STATE(976), - [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_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(977)] = { - [aux_sym__repeat_newline] = STATE(485), - [sym_comment] = STATE(977), - [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(978)] = { - [sym_expr_unary] = STATE(2871), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_parenthesized] = STATE(2552), - [sym_val_range] = STATE(2871), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(2871), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2578), - [sym_val_variable] = STATE(2555), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(2367), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(2635), - [sym__unquoted_with_expr] = STATE(2874), - [sym__unquoted_anonymous_prefix] = STATE(4753), - [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [anon_sym_null] = ACTIONS(2682), - [aux_sym_cmd_identifier_token3] = ACTIONS(2684), - [aux_sym_cmd_identifier_token4] = ACTIONS(2684), - [aux_sym_cmd_identifier_token5] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [aux_sym_expr_unary_token1] = ACTIONS(2696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), - [anon_sym_DOT_DOT_LT] = ACTIONS(2698), - [aux_sym__val_number_decimal_token1] = ACTIONS(2700), - [aux_sym__val_number_decimal_token2] = ACTIONS(2702), - [aux_sym__val_number_decimal_token3] = ACTIONS(2704), - [aux_sym__val_number_decimal_token4] = ACTIONS(2704), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2706), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1778), - }, [STATE(979)] = { [sym_comment] = STATE(979), - [ts_builtin_sym_end] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_GT2] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_STAR2] = ACTIONS(1792), - [anon_sym_and2] = ACTIONS(1790), - [anon_sym_xor2] = ACTIONS(1790), - [anon_sym_or2] = ACTIONS(1790), - [anon_sym_not_DASHin2] = ACTIONS(1790), - [anon_sym_has2] = ACTIONS(1790), - [anon_sym_not_DASHhas2] = ACTIONS(1790), - [anon_sym_starts_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), - [anon_sym_ends_DASHwith2] = ACTIONS(1790), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), - [anon_sym_EQ_EQ2] = ACTIONS(1790), - [anon_sym_BANG_EQ2] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ2] = ACTIONS(1790), - [anon_sym_GT_EQ2] = ACTIONS(1790), - [anon_sym_EQ_TILDE2] = ACTIONS(1790), - [anon_sym_BANG_TILDE2] = ACTIONS(1790), - [anon_sym_like2] = ACTIONS(1790), - [anon_sym_not_DASHlike2] = ACTIONS(1790), - [anon_sym_STAR_STAR2] = ACTIONS(1790), - [anon_sym_PLUS_PLUS2] = ACTIONS(1790), - [anon_sym_SLASH2] = ACTIONS(1792), - [anon_sym_mod2] = ACTIONS(1790), - [anon_sym_SLASH_SLASH2] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1792), - [anon_sym_bit_DASHshl2] = ACTIONS(1790), - [anon_sym_bit_DASHshr2] = ACTIONS(1790), - [anon_sym_bit_DASHand2] = ACTIONS(1790), - [anon_sym_bit_DASHxor2] = ACTIONS(1790), - [anon_sym_bit_DASHor2] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(2708), - [aux_sym__immediate_decimal_token5] = ACTIONS(1901), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(2584), + [sym__newline] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_err_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_GT_PIPE] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2584), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_GT2] = ACTIONS(2586), + [anon_sym_DASH2] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_EQ_GT] = ACTIONS(2584), + [anon_sym_STAR2] = ACTIONS(2586), + [anon_sym_and2] = ACTIONS(2584), + [anon_sym_xor2] = ACTIONS(2584), + [anon_sym_or2] = ACTIONS(2584), + [anon_sym_not_DASHin2] = ACTIONS(2584), + [anon_sym_has2] = ACTIONS(2584), + [anon_sym_not_DASHhas2] = ACTIONS(2584), + [anon_sym_starts_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2584), + [anon_sym_ends_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2584), + [anon_sym_EQ_EQ2] = ACTIONS(2584), + [anon_sym_BANG_EQ2] = ACTIONS(2584), + [anon_sym_LT2] = ACTIONS(2586), + [anon_sym_LT_EQ2] = ACTIONS(2584), + [anon_sym_GT_EQ2] = ACTIONS(2584), + [anon_sym_EQ_TILDE2] = ACTIONS(2584), + [anon_sym_BANG_TILDE2] = ACTIONS(2584), + [anon_sym_like2] = ACTIONS(2584), + [anon_sym_not_DASHlike2] = ACTIONS(2584), + [anon_sym_STAR_STAR2] = ACTIONS(2584), + [anon_sym_PLUS_PLUS2] = ACTIONS(2584), + [anon_sym_SLASH2] = ACTIONS(2586), + [anon_sym_mod2] = ACTIONS(2584), + [anon_sym_SLASH_SLASH2] = ACTIONS(2584), + [anon_sym_PLUS2] = ACTIONS(2586), + [anon_sym_bit_DASHshl2] = ACTIONS(2584), + [anon_sym_bit_DASHshr2] = ACTIONS(2584), + [anon_sym_bit_DASHand2] = ACTIONS(2584), + [anon_sym_bit_DASHxor2] = ACTIONS(2584), + [anon_sym_bit_DASHor2] = ACTIONS(2584), + [anon_sym_err_GT] = ACTIONS(2586), + [anon_sym_out_GT] = ACTIONS(2586), + [anon_sym_e_GT] = ACTIONS(2586), + [anon_sym_o_GT] = ACTIONS(2586), + [anon_sym_err_PLUSout_GT] = ACTIONS(2586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2586), + [anon_sym_o_PLUSe_GT] = ACTIONS(2586), + [anon_sym_e_PLUSo_GT] = ACTIONS(2586), + [anon_sym_err_GT_GT] = ACTIONS(2584), + [anon_sym_out_GT_GT] = ACTIONS(2584), + [anon_sym_e_GT_GT] = ACTIONS(2584), + [anon_sym_o_GT_GT] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2584), [anon_sym_POUND] = ACTIONS(3), }, [STATE(980)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(980), - [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(1818), - [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(2590), + [sym__newline] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_err_GT_PIPE] = ACTIONS(2590), + [anon_sym_out_GT_PIPE] = ACTIONS(2590), + [anon_sym_e_GT_PIPE] = ACTIONS(2590), + [anon_sym_o_GT_PIPE] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2590), + [anon_sym_RPAREN] = ACTIONS(2590), + [anon_sym_GT2] = ACTIONS(2592), + [anon_sym_DASH2] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_EQ_GT] = ACTIONS(2590), + [anon_sym_STAR2] = ACTIONS(2592), + [anon_sym_and2] = ACTIONS(2590), + [anon_sym_xor2] = ACTIONS(2590), + [anon_sym_or2] = ACTIONS(2590), + [anon_sym_not_DASHin2] = ACTIONS(2590), + [anon_sym_has2] = ACTIONS(2590), + [anon_sym_not_DASHhas2] = ACTIONS(2590), + [anon_sym_starts_DASHwith2] = ACTIONS(2590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2590), + [anon_sym_ends_DASHwith2] = ACTIONS(2590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2590), + [anon_sym_EQ_EQ2] = ACTIONS(2590), + [anon_sym_BANG_EQ2] = ACTIONS(2590), + [anon_sym_LT2] = ACTIONS(2592), + [anon_sym_LT_EQ2] = ACTIONS(2590), + [anon_sym_GT_EQ2] = ACTIONS(2590), + [anon_sym_EQ_TILDE2] = ACTIONS(2590), + [anon_sym_BANG_TILDE2] = ACTIONS(2590), + [anon_sym_like2] = ACTIONS(2590), + [anon_sym_not_DASHlike2] = ACTIONS(2590), + [anon_sym_STAR_STAR2] = ACTIONS(2590), + [anon_sym_PLUS_PLUS2] = ACTIONS(2590), + [anon_sym_SLASH2] = ACTIONS(2592), + [anon_sym_mod2] = ACTIONS(2590), + [anon_sym_SLASH_SLASH2] = ACTIONS(2590), + [anon_sym_PLUS2] = ACTIONS(2592), + [anon_sym_bit_DASHshl2] = ACTIONS(2590), + [anon_sym_bit_DASHshr2] = ACTIONS(2590), + [anon_sym_bit_DASHand2] = ACTIONS(2590), + [anon_sym_bit_DASHxor2] = ACTIONS(2590), + [anon_sym_bit_DASHor2] = ACTIONS(2590), + [anon_sym_err_GT] = ACTIONS(2592), + [anon_sym_out_GT] = ACTIONS(2592), + [anon_sym_e_GT] = ACTIONS(2592), + [anon_sym_o_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT] = ACTIONS(2592), + [anon_sym_err_GT_GT] = ACTIONS(2590), + [anon_sym_out_GT_GT] = ACTIONS(2590), + [anon_sym_e_GT_GT] = ACTIONS(2590), + [anon_sym_o_GT_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2590), [anon_sym_POUND] = ACTIONS(3), }, [STATE(981)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(981), - [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(1818), - [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(1714), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1714), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1714), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1780), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1782), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1782), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(982)] = { [sym_comment] = STATE(982), - [ts_builtin_sym_end] = ACTIONS(2360), - [anon_sym_in] = ACTIONS(2360), - [sym__newline] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_err_GT_PIPE] = ACTIONS(2360), - [anon_sym_out_GT_PIPE] = ACTIONS(2360), - [anon_sym_e_GT_PIPE] = ACTIONS(2360), - [anon_sym_o_GT_PIPE] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2360), - [anon_sym_GT2] = ACTIONS(2362), - [anon_sym_DASH2] = ACTIONS(2360), - [anon_sym_STAR2] = ACTIONS(2362), - [anon_sym_and2] = ACTIONS(2360), - [anon_sym_xor2] = ACTIONS(2360), - [anon_sym_or2] = ACTIONS(2360), - [anon_sym_not_DASHin2] = ACTIONS(2360), - [anon_sym_has2] = ACTIONS(2360), - [anon_sym_not_DASHhas2] = ACTIONS(2360), - [anon_sym_starts_DASHwith2] = ACTIONS(2360), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2360), - [anon_sym_ends_DASHwith2] = ACTIONS(2360), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2360), - [anon_sym_EQ_EQ2] = ACTIONS(2360), - [anon_sym_BANG_EQ2] = ACTIONS(2360), - [anon_sym_LT2] = ACTIONS(2362), - [anon_sym_LT_EQ2] = ACTIONS(2360), - [anon_sym_GT_EQ2] = ACTIONS(2360), - [anon_sym_EQ_TILDE2] = ACTIONS(2360), - [anon_sym_BANG_TILDE2] = ACTIONS(2360), - [anon_sym_like2] = ACTIONS(2360), - [anon_sym_not_DASHlike2] = ACTIONS(2360), - [anon_sym_LPAREN2] = ACTIONS(2360), - [anon_sym_STAR_STAR2] = ACTIONS(2360), - [anon_sym_PLUS_PLUS2] = ACTIONS(2360), - [anon_sym_SLASH2] = ACTIONS(2362), - [anon_sym_mod2] = ACTIONS(2360), - [anon_sym_SLASH_SLASH2] = ACTIONS(2360), - [anon_sym_PLUS2] = ACTIONS(2362), - [anon_sym_bit_DASHshl2] = ACTIONS(2360), - [anon_sym_bit_DASHshr2] = ACTIONS(2360), - [anon_sym_bit_DASHand2] = ACTIONS(2360), - [anon_sym_bit_DASHxor2] = ACTIONS(2360), - [anon_sym_bit_DASHor2] = ACTIONS(2360), - [anon_sym_err_GT] = ACTIONS(2362), - [anon_sym_out_GT] = ACTIONS(2362), - [anon_sym_e_GT] = ACTIONS(2362), - [anon_sym_o_GT] = ACTIONS(2362), - [anon_sym_err_PLUSout_GT] = ACTIONS(2362), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2362), - [anon_sym_o_PLUSe_GT] = ACTIONS(2362), - [anon_sym_e_PLUSo_GT] = ACTIONS(2362), - [anon_sym_err_GT_GT] = ACTIONS(2360), - [anon_sym_out_GT_GT] = ACTIONS(2360), - [anon_sym_e_GT_GT] = ACTIONS(2360), - [anon_sym_o_GT_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2360), - [sym__unquoted_pattern] = ACTIONS(2362), + [ts_builtin_sym_end] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [sym__newline] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_err_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_GT_PIPE] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), + [anon_sym_GT2] = ACTIONS(2110), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_STAR2] = ACTIONS(2110), + [anon_sym_and2] = ACTIONS(2108), + [anon_sym_xor2] = ACTIONS(2108), + [anon_sym_or2] = ACTIONS(2108), + [anon_sym_not_DASHin2] = ACTIONS(2108), + [anon_sym_has2] = ACTIONS(2108), + [anon_sym_not_DASHhas2] = ACTIONS(2108), + [anon_sym_starts_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), + [anon_sym_ends_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), + [anon_sym_EQ_EQ2] = ACTIONS(2108), + [anon_sym_BANG_EQ2] = ACTIONS(2108), + [anon_sym_LT2] = ACTIONS(2110), + [anon_sym_LT_EQ2] = ACTIONS(2108), + [anon_sym_GT_EQ2] = ACTIONS(2108), + [anon_sym_EQ_TILDE2] = ACTIONS(2108), + [anon_sym_BANG_TILDE2] = ACTIONS(2108), + [anon_sym_like2] = ACTIONS(2108), + [anon_sym_not_DASHlike2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2108), + [anon_sym_PLUS_PLUS2] = ACTIONS(2108), + [anon_sym_SLASH2] = ACTIONS(2110), + [anon_sym_mod2] = ACTIONS(2108), + [anon_sym_SLASH_SLASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_bit_DASHshl2] = ACTIONS(2108), + [anon_sym_bit_DASHshr2] = ACTIONS(2108), + [anon_sym_bit_DASHand2] = ACTIONS(2108), + [anon_sym_bit_DASHxor2] = ACTIONS(2108), + [anon_sym_bit_DASHor2] = ACTIONS(2108), + [anon_sym_DOT_DOT2] = ACTIONS(2672), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2674), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2674), + [anon_sym_err_GT] = ACTIONS(2110), + [anon_sym_out_GT] = ACTIONS(2110), + [anon_sym_e_GT] = ACTIONS(2110), + [anon_sym_o_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT] = ACTIONS(2110), + [anon_sym_err_GT_GT] = ACTIONS(2108), + [anon_sym_out_GT_GT] = ACTIONS(2108), + [anon_sym_e_GT_GT] = ACTIONS(2108), + [anon_sym_o_GT_GT] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), [anon_sym_POUND] = ACTIONS(3), }, [STATE(983)] = { [sym_comment] = STATE(983), - [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(847), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(847), - [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(847), - [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(847), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(847), - [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(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [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(1828), + [anon_sym_export] = ACTIONS(2231), + [anon_sym_alias] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_mut] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [aux_sym_cmd_identifier_token1] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_export_DASHenv] = ACTIONS(2233), + [anon_sym_extern] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_loop] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_catch] = ACTIONS(2233), + [anon_sym_finally] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_null] = ACTIONS(2233), + [aux_sym_cmd_identifier_token3] = ACTIONS(2233), + [aux_sym_cmd_identifier_token4] = ACTIONS(2233), + [aux_sym_cmd_identifier_token5] = ACTIONS(2233), + [sym__newline] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_err_GT_PIPE] = ACTIONS(2233), + [anon_sym_out_GT_PIPE] = ACTIONS(2233), + [anon_sym_e_GT_PIPE] = ACTIONS(2233), + [anon_sym_o_GT_PIPE] = ACTIONS(2233), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_DASH2] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_DOT_DOT] = ACTIONS(2231), + [anon_sym_where] = ACTIONS(2233), + [aux_sym_expr_unary_token1] = ACTIONS(2233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2233), + [anon_sym_DOT_DOT_LT] = ACTIONS(2233), + [aux_sym__val_number_decimal_token1] = ACTIONS(2231), + [aux_sym__val_number_decimal_token2] = ACTIONS(2233), + [aux_sym__val_number_decimal_token3] = ACTIONS(2233), + [aux_sym__val_number_decimal_token4] = ACTIONS(2233), + [aux_sym__val_number_token1] = ACTIONS(2233), + [aux_sym__val_number_token2] = ACTIONS(2233), + [aux_sym__val_number_token3] = ACTIONS(2233), + [anon_sym_0b] = ACTIONS(2231), + [anon_sym_0o] = ACTIONS(2231), + [anon_sym_0x] = ACTIONS(2231), + [sym_val_date] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_BQUOTE] = ACTIONS(2233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_CARET] = ACTIONS(2233), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2233), }, [STATE(984)] = { [sym_comment] = STATE(984), - [ts_builtin_sym_end] = ACTIONS(2616), - [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_GT2] = ACTIONS(2618), - [anon_sym_DASH2] = 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_LPAREN2] = ACTIONS(2620), - [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), - [sym__unquoted_pattern] = ACTIONS(2622), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2676), + [anon_sym_alias] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2678), + [anon_sym_mut] = ACTIONS(2678), + [anon_sym_const] = ACTIONS(2678), + [aux_sym_cmd_identifier_token1] = ACTIONS(2676), + [anon_sym_def] = ACTIONS(2678), + [anon_sym_use] = ACTIONS(2678), + [anon_sym_export_DASHenv] = ACTIONS(2678), + [anon_sym_extern] = ACTIONS(2678), + [anon_sym_module] = ACTIONS(2678), + [anon_sym_for] = ACTIONS(2678), + [anon_sym_loop] = ACTIONS(2678), + [anon_sym_while] = ACTIONS(2678), + [anon_sym_if] = ACTIONS(2678), + [anon_sym_else] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2678), + [anon_sym_catch] = ACTIONS(2678), + [anon_sym_finally] = ACTIONS(2678), + [anon_sym_match] = ACTIONS(2678), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_true] = ACTIONS(2678), + [anon_sym_false] = ACTIONS(2678), + [anon_sym_null] = ACTIONS(2678), + [aux_sym_cmd_identifier_token3] = ACTIONS(2678), + [aux_sym_cmd_identifier_token4] = ACTIONS(2678), + [aux_sym_cmd_identifier_token5] = ACTIONS(2678), + [sym__newline] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_err_GT_PIPE] = ACTIONS(1965), + [anon_sym_out_GT_PIPE] = ACTIONS(1965), + [anon_sym_e_GT_PIPE] = ACTIONS(1965), + [anon_sym_o_GT_PIPE] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_DOLLAR] = ACTIONS(2676), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_DOT_DOT] = ACTIONS(2676), + [anon_sym_where] = ACTIONS(2678), + [aux_sym_expr_unary_token1] = ACTIONS(2678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2678), + [anon_sym_DOT_DOT_LT] = ACTIONS(2678), + [aux_sym__val_number_decimal_token1] = ACTIONS(2676), + [aux_sym__val_number_decimal_token2] = ACTIONS(2678), + [aux_sym__val_number_decimal_token3] = ACTIONS(2678), + [aux_sym__val_number_decimal_token4] = ACTIONS(2678), + [aux_sym__val_number_token1] = ACTIONS(2678), + [aux_sym__val_number_token2] = ACTIONS(2678), + [aux_sym__val_number_token3] = ACTIONS(2678), + [anon_sym_0b] = ACTIONS(2676), + [anon_sym_0o] = ACTIONS(2676), + [anon_sym_0x] = ACTIONS(2676), + [sym_val_date] = ACTIONS(2678), + [anon_sym_DQUOTE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2678), + [anon_sym_BQUOTE] = ACTIONS(2678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2678), + [anon_sym_CARET] = ACTIONS(2678), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2678), }, [STATE(985)] = { [sym_comment] = STATE(985), - [ts_builtin_sym_end] = ACTIONS(1699), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(2672), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1699), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [sym__unquoted_pattern] = ACTIONS(2674), + [ts_builtin_sym_end] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_DOT_DOT2] = ACTIONS(2680), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2682), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2682), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), [anon_sym_POUND] = ACTIONS(3), }, [STATE(986)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1090), + [sym__expression_parenthesized] = STATE(4661), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2191), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_comment] = STATE(986), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), + [sym__newline] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2654), + [anon_sym_DQUOTE] = 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(987)] = { - [aux_sym__repeat_newline] = STATE(1102), [sym_comment] = STATE(987), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [ts_builtin_sym_end] = ACTIONS(2227), + [anon_sym_in] = ACTIONS(2227), + [sym__newline] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_err_GT_PIPE] = ACTIONS(2227), + [anon_sym_out_GT_PIPE] = ACTIONS(2227), + [anon_sym_e_GT_PIPE] = ACTIONS(2227), + [anon_sym_o_GT_PIPE] = ACTIONS(2227), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2227), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2227), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2227), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2227), + [anon_sym_GT2] = ACTIONS(2229), + [anon_sym_DASH2] = ACTIONS(2227), + [anon_sym_STAR2] = ACTIONS(2229), + [anon_sym_and2] = ACTIONS(2227), + [anon_sym_xor2] = ACTIONS(2227), + [anon_sym_or2] = ACTIONS(2227), + [anon_sym_not_DASHin2] = ACTIONS(2227), + [anon_sym_has2] = ACTIONS(2227), + [anon_sym_not_DASHhas2] = ACTIONS(2227), + [anon_sym_starts_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2227), + [anon_sym_ends_DASHwith2] = ACTIONS(2227), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2227), + [anon_sym_EQ_EQ2] = ACTIONS(2227), + [anon_sym_BANG_EQ2] = ACTIONS(2227), + [anon_sym_LT2] = ACTIONS(2229), + [anon_sym_LT_EQ2] = ACTIONS(2227), + [anon_sym_GT_EQ2] = ACTIONS(2227), + [anon_sym_EQ_TILDE2] = ACTIONS(2227), + [anon_sym_BANG_TILDE2] = ACTIONS(2227), + [anon_sym_like2] = ACTIONS(2227), + [anon_sym_not_DASHlike2] = ACTIONS(2227), + [anon_sym_STAR_STAR2] = ACTIONS(2227), + [anon_sym_PLUS_PLUS2] = ACTIONS(2227), + [anon_sym_SLASH2] = ACTIONS(2229), + [anon_sym_mod2] = ACTIONS(2227), + [anon_sym_SLASH_SLASH2] = ACTIONS(2227), + [anon_sym_PLUS2] = ACTIONS(2229), + [anon_sym_bit_DASHshl2] = ACTIONS(2227), + [anon_sym_bit_DASHshr2] = ACTIONS(2227), + [anon_sym_bit_DASHand2] = ACTIONS(2227), + [anon_sym_bit_DASHxor2] = ACTIONS(2227), + [anon_sym_bit_DASHor2] = ACTIONS(2227), + [anon_sym_DOT_DOT2] = ACTIONS(1780), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1782), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1782), + [anon_sym_err_GT] = ACTIONS(2229), + [anon_sym_out_GT] = ACTIONS(2229), + [anon_sym_e_GT] = ACTIONS(2229), + [anon_sym_o_GT] = ACTIONS(2229), + [anon_sym_err_PLUSout_GT] = ACTIONS(2229), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), + [anon_sym_o_PLUSe_GT] = ACTIONS(2229), + [anon_sym_e_PLUSo_GT] = ACTIONS(2229), + [anon_sym_err_GT_GT] = ACTIONS(2227), + [anon_sym_out_GT_GT] = ACTIONS(2227), + [anon_sym_e_GT_GT] = ACTIONS(2227), + [anon_sym_o_GT_GT] = ACTIONS(2227), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2227), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2227), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2227), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2227), [anon_sym_POUND] = ACTIONS(3), }, [STATE(988)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(988), - [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(1818), - [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(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(989)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym__match_pattern_expression] = STATE(4356), - [sym__match_pattern_value] = STATE(4686), - [sym__match_pattern_list_body] = STATE(4803), - [sym__match_pattern_list] = STATE(4805), - [sym__match_pattern_rest] = STATE(5278), - [sym__match_pattern_record] = STATE(4754), - [sym_expr_parenthesized] = STATE(3964), - [sym_val_range] = STATE(4686), - [sym__val_range] = STATE(5330), - [sym_val_nothing] = STATE(4754), - [sym_val_bool] = STATE(4347), - [sym_val_variable] = STATE(3965), - [sym_val_number] = STATE(4754), - [sym__val_number_decimal] = STATE(3795), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4754), - [sym_val_filesize] = STATE(4754), - [sym_val_binary] = STATE(4754), - [sym_val_string] = STATE(4754), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_list] = STATE(5121), - [sym__table_head] = STATE(3940), - [sym_val_table] = STATE(4754), - [sym__unquoted_in_list] = STATE(4356), - [sym__unquoted_anonymous_prefix] = STATE(5330), + [aux_sym__repeat_newline] = STATE(1108), [sym_comment] = STATE(989), - [aux_sym__types_body_repeat1] = STATE(1407), - [aux_sym_parameter_repeat2] = STATE(4311), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1386), - [aux_sym_cmd_identifier_token3] = ACTIONS(1388), - [aux_sym_cmd_identifier_token4] = ACTIONS(1388), - [aux_sym_cmd_identifier_token5] = ACTIONS(1388), - [sym__newline] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_RBRACK] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1408), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_decimal_token4] = ACTIONS(1412), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(2724), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(990)] = { - [sym_expr_unary] = STATE(3033), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_parenthesized] = STATE(2592), - [sym_val_range] = STATE(3033), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(3033), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(2712), - [sym_val_variable] = STATE(2628), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(2378), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(2667), - [sym__unquoted_with_expr] = STATE(3005), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(990), - [anon_sym_true] = ACTIONS(2726), - [anon_sym_false] = ACTIONS(2726), - [anon_sym_null] = ACTIONS(2728), - [aux_sym_cmd_identifier_token3] = ACTIONS(2730), - [aux_sym_cmd_identifier_token4] = ACTIONS(2730), - [aux_sym_cmd_identifier_token5] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_DOT_DOT] = ACTIONS(2740), - [aux_sym_expr_unary_token1] = ACTIONS(2742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2744), - [anon_sym_DOT_DOT_LT] = ACTIONS(2744), - [aux_sym__val_number_decimal_token1] = ACTIONS(2746), - [aux_sym__val_number_decimal_token2] = ACTIONS(2748), - [aux_sym__val_number_decimal_token3] = ACTIONS(2750), - [aux_sym__val_number_decimal_token4] = ACTIONS(2750), - [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(2752), - [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(2403), + [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), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(991)] = { - [sym_expr_unary] = STATE(3009), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_parenthesized] = STATE(2593), - [sym_val_range] = STATE(3009), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(3009), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(2712), - [sym_val_variable] = STATE(2628), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(2378), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(2669), - [sym__unquoted_with_expr] = STATE(2912), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [aux_sym__repeat_newline] = STATE(1023), [sym_comment] = STATE(991), - [anon_sym_true] = ACTIONS(2726), - [anon_sym_false] = ACTIONS(2726), - [anon_sym_null] = ACTIONS(2728), - [aux_sym_cmd_identifier_token3] = ACTIONS(2730), - [aux_sym_cmd_identifier_token4] = ACTIONS(2730), - [aux_sym_cmd_identifier_token5] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_DOT_DOT] = ACTIONS(2740), - [aux_sym_expr_unary_token1] = ACTIONS(2742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2744), - [anon_sym_DOT_DOT_LT] = ACTIONS(2744), - [aux_sym__val_number_decimal_token1] = ACTIONS(2746), - [aux_sym__val_number_decimal_token2] = ACTIONS(2748), - [aux_sym__val_number_decimal_token3] = ACTIONS(2750), - [aux_sym__val_number_decimal_token4] = ACTIONS(2750), - [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(2752), - [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(2403), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(992)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(992), - [ts_builtin_sym_end] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [sym__newline] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_err_GT_PIPE] = ACTIONS(1730), - [anon_sym_out_GT_PIPE] = ACTIONS(1730), - [anon_sym_e_GT_PIPE] = ACTIONS(1730), - [anon_sym_o_GT_PIPE] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), - [anon_sym_GT2] = ACTIONS(1732), - [anon_sym_DASH2] = ACTIONS(1730), - [anon_sym_STAR2] = ACTIONS(1732), - [anon_sym_and2] = ACTIONS(1730), - [anon_sym_xor2] = ACTIONS(1730), - [anon_sym_or2] = ACTIONS(1730), - [anon_sym_not_DASHin2] = ACTIONS(1730), - [anon_sym_has2] = ACTIONS(1730), - [anon_sym_not_DASHhas2] = ACTIONS(1730), - [anon_sym_starts_DASHwith2] = ACTIONS(1730), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), - [anon_sym_ends_DASHwith2] = ACTIONS(1730), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), - [anon_sym_EQ_EQ2] = ACTIONS(1730), - [anon_sym_BANG_EQ2] = ACTIONS(1730), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ2] = ACTIONS(1730), - [anon_sym_GT_EQ2] = ACTIONS(1730), - [anon_sym_EQ_TILDE2] = ACTIONS(1730), - [anon_sym_BANG_TILDE2] = ACTIONS(1730), - [anon_sym_like2] = ACTIONS(1730), - [anon_sym_not_DASHlike2] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1730), - [anon_sym_STAR_STAR2] = ACTIONS(1730), - [anon_sym_PLUS_PLUS2] = ACTIONS(1730), - [anon_sym_SLASH2] = ACTIONS(1732), - [anon_sym_mod2] = ACTIONS(1730), - [anon_sym_SLASH_SLASH2] = ACTIONS(1730), - [anon_sym_PLUS2] = ACTIONS(1732), - [anon_sym_bit_DASHshl2] = ACTIONS(1730), - [anon_sym_bit_DASHshr2] = ACTIONS(1730), - [anon_sym_bit_DASHand2] = ACTIONS(1730), - [anon_sym_bit_DASHxor2] = ACTIONS(1730), - [anon_sym_bit_DASHor2] = ACTIONS(1730), - [anon_sym_err_GT] = ACTIONS(1732), - [anon_sym_out_GT] = ACTIONS(1732), - [anon_sym_e_GT] = ACTIONS(1732), - [anon_sym_o_GT] = ACTIONS(1732), - [anon_sym_err_PLUSout_GT] = ACTIONS(1732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), - [anon_sym_o_PLUSe_GT] = ACTIONS(1732), - [anon_sym_e_PLUSo_GT] = ACTIONS(1732), - [anon_sym_err_GT_GT] = ACTIONS(1730), - [anon_sym_out_GT_GT] = ACTIONS(1730), - [anon_sym_e_GT_GT] = ACTIONS(1730), - [anon_sym_o_GT_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), - [sym__unquoted_pattern] = ACTIONS(1732), + [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(993)] = { - [sym_expr_unary] = STATE(2915), - [sym__expr_unary_minus] = STATE(1296), - [sym_expr_parenthesized] = STATE(2621), - [sym_val_range] = STATE(2915), - [sym__val_range] = STATE(4844), - [sym__value] = STATE(2915), - [sym_val_nothing] = STATE(1316), - [sym_val_bool] = STATE(2712), - [sym_val_variable] = STATE(2628), - [sym_val_cellpath] = STATE(1316), - [sym_val_number] = STATE(1316), - [sym__val_number_decimal] = STATE(2378), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1316), - [sym_val_filesize] = STATE(1316), - [sym_val_binary] = STATE(1316), - [sym_val_string] = STATE(1316), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1316), - [sym__inter_single_quotes] = STATE(1277), - [sym__inter_double_quotes] = STATE(1311), - [sym_val_list] = STATE(1316), - [sym_val_record] = STATE(1316), - [sym_val_table] = STATE(1316), - [sym_val_closure] = STATE(1316), - [sym_unquoted] = STATE(2671), - [sym__unquoted_with_expr] = STATE(2924), - [sym__unquoted_anonymous_prefix] = STATE(4844), + [aux_sym__repeat_newline] = STATE(1011), [sym_comment] = STATE(993), - [anon_sym_true] = ACTIONS(2726), - [anon_sym_false] = ACTIONS(2726), - [anon_sym_null] = ACTIONS(2728), - [aux_sym_cmd_identifier_token3] = ACTIONS(2730), - [aux_sym_cmd_identifier_token4] = ACTIONS(2730), - [aux_sym_cmd_identifier_token5] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_DOT_DOT] = ACTIONS(2740), - [aux_sym_expr_unary_token1] = ACTIONS(2742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2744), - [anon_sym_DOT_DOT_LT] = ACTIONS(2744), - [aux_sym__val_number_decimal_token1] = ACTIONS(2746), - [aux_sym__val_number_decimal_token2] = ACTIONS(2748), - [aux_sym__val_number_decimal_token3] = ACTIONS(2750), - [aux_sym__val_number_decimal_token4] = ACTIONS(2750), - [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(2752), - [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(2403), + [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), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(994)] = { + [aux_sym__repeat_newline] = STATE(1024), [sym_comment] = STATE(994), - [ts_builtin_sym_end] = ACTIONS(1972), - [anon_sym_in] = ACTIONS(1972), - [sym__newline] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_err_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_GT_PIPE] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), - [anon_sym_GT2] = ACTIONS(1974), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_STAR2] = ACTIONS(1974), - [anon_sym_and2] = ACTIONS(1972), - [anon_sym_xor2] = ACTIONS(1972), - [anon_sym_or2] = ACTIONS(1972), - [anon_sym_not_DASHin2] = ACTIONS(1972), - [anon_sym_has2] = ACTIONS(1972), - [anon_sym_not_DASHhas2] = ACTIONS(1972), - [anon_sym_starts_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), - [anon_sym_ends_DASHwith2] = ACTIONS(1972), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), - [anon_sym_EQ_EQ2] = ACTIONS(1972), - [anon_sym_BANG_EQ2] = ACTIONS(1972), - [anon_sym_LT2] = ACTIONS(1974), - [anon_sym_LT_EQ2] = ACTIONS(1972), - [anon_sym_GT_EQ2] = ACTIONS(1972), - [anon_sym_EQ_TILDE2] = ACTIONS(1972), - [anon_sym_BANG_TILDE2] = ACTIONS(1972), - [anon_sym_like2] = ACTIONS(1972), - [anon_sym_not_DASHlike2] = ACTIONS(1972), - [anon_sym_LPAREN2] = ACTIONS(1976), - [anon_sym_STAR_STAR2] = ACTIONS(1972), - [anon_sym_PLUS_PLUS2] = ACTIONS(1972), - [anon_sym_SLASH2] = ACTIONS(1974), - [anon_sym_mod2] = ACTIONS(1972), - [anon_sym_SLASH_SLASH2] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1974), - [anon_sym_bit_DASHshl2] = ACTIONS(1972), - [anon_sym_bit_DASHshr2] = ACTIONS(1972), - [anon_sym_bit_DASHand2] = ACTIONS(1972), - [anon_sym_bit_DASHxor2] = ACTIONS(1972), - [anon_sym_bit_DASHor2] = ACTIONS(1972), - [anon_sym_err_GT] = ACTIONS(1974), - [anon_sym_out_GT] = ACTIONS(1974), - [anon_sym_e_GT] = ACTIONS(1974), - [anon_sym_o_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT] = ACTIONS(1974), - [anon_sym_err_GT_GT] = ACTIONS(1972), - [anon_sym_out_GT_GT] = ACTIONS(1972), - [anon_sym_e_GT_GT] = ACTIONS(1972), - [anon_sym_o_GT_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), - [sym__unquoted_pattern] = ACTIONS(1637), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(1016), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(995), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [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(996)] = { + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(996), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_in] = ACTIONS(2362), - [sym__newline] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_err_GT_PIPE] = ACTIONS(2360), - [anon_sym_out_GT_PIPE] = ACTIONS(2360), - [anon_sym_e_GT_PIPE] = ACTIONS(2360), - [anon_sym_o_GT_PIPE] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2360), - [anon_sym_RPAREN] = ACTIONS(2360), - [anon_sym_GT2] = ACTIONS(2362), - [anon_sym_DASH2] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2360), - [anon_sym_STAR2] = ACTIONS(2362), - [anon_sym_and2] = ACTIONS(2362), - [anon_sym_xor2] = ACTIONS(2362), - [anon_sym_or2] = ACTIONS(2362), - [anon_sym_not_DASHin2] = ACTIONS(2362), - [anon_sym_has2] = ACTIONS(2362), - [anon_sym_not_DASHhas2] = ACTIONS(2362), - [anon_sym_starts_DASHwith2] = ACTIONS(2362), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2362), - [anon_sym_ends_DASHwith2] = ACTIONS(2362), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2362), - [anon_sym_EQ_EQ2] = ACTIONS(2360), - [anon_sym_BANG_EQ2] = ACTIONS(2360), - [anon_sym_LT2] = ACTIONS(2362), - [anon_sym_LT_EQ2] = ACTIONS(2360), - [anon_sym_GT_EQ2] = ACTIONS(2360), - [anon_sym_EQ_TILDE2] = ACTIONS(2360), - [anon_sym_BANG_TILDE2] = ACTIONS(2362), - [anon_sym_like2] = ACTIONS(2362), - [anon_sym_not_DASHlike2] = ACTIONS(2362), - [anon_sym_STAR_STAR2] = ACTIONS(2362), - [anon_sym_PLUS_PLUS2] = ACTIONS(2362), - [anon_sym_SLASH2] = ACTIONS(2362), - [anon_sym_mod2] = ACTIONS(2362), - [anon_sym_SLASH_SLASH2] = ACTIONS(2362), - [anon_sym_PLUS2] = ACTIONS(2362), - [anon_sym_bit_DASHshl2] = ACTIONS(2362), - [anon_sym_bit_DASHshr2] = ACTIONS(2362), - [anon_sym_bit_DASHand2] = ACTIONS(2362), - [anon_sym_bit_DASHxor2] = ACTIONS(2362), - [anon_sym_bit_DASHor2] = ACTIONS(2362), - [anon_sym_err_GT] = ACTIONS(2362), - [anon_sym_out_GT] = ACTIONS(2362), - [anon_sym_e_GT] = ACTIONS(2362), - [anon_sym_o_GT] = ACTIONS(2362), - [anon_sym_err_PLUSout_GT] = ACTIONS(2362), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2362), - [anon_sym_o_PLUSe_GT] = ACTIONS(2362), - [anon_sym_e_PLUSo_GT] = ACTIONS(2362), - [anon_sym_err_GT_GT] = ACTIONS(2360), - [anon_sym_out_GT_GT] = ACTIONS(2360), - [anon_sym_e_GT_GT] = ACTIONS(2360), - [anon_sym_o_GT_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2360), - [anon_sym_POUND] = ACTIONS(103), + [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_LPAREN2] = ACTIONS(1796), + [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(997)] = { + [aux_sym__repeat_newline] = STATE(1025), [sym_comment] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(1226), - [anon_sym_in] = ACTIONS(1226), - [sym__newline] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1226), - [anon_sym_err_GT_PIPE] = ACTIONS(1226), - [anon_sym_out_GT_PIPE] = ACTIONS(1226), - [anon_sym_e_GT_PIPE] = ACTIONS(1226), - [anon_sym_o_GT_PIPE] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), - [anon_sym_GT2] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1226), - [anon_sym_STAR2] = ACTIONS(1012), - [anon_sym_and2] = ACTIONS(1226), - [anon_sym_xor2] = ACTIONS(1226), - [anon_sym_or2] = ACTIONS(1226), - [anon_sym_not_DASHin2] = ACTIONS(1226), - [anon_sym_has2] = ACTIONS(1226), - [anon_sym_not_DASHhas2] = ACTIONS(1226), - [anon_sym_starts_DASHwith2] = ACTIONS(1226), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), - [anon_sym_ends_DASHwith2] = ACTIONS(1226), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), - [anon_sym_EQ_EQ2] = ACTIONS(1226), - [anon_sym_BANG_EQ2] = ACTIONS(1226), - [anon_sym_LT2] = ACTIONS(1012), - [anon_sym_LT_EQ2] = ACTIONS(1226), - [anon_sym_GT_EQ2] = ACTIONS(1226), - [anon_sym_EQ_TILDE2] = ACTIONS(1226), - [anon_sym_BANG_TILDE2] = ACTIONS(1226), - [anon_sym_like2] = ACTIONS(1226), - [anon_sym_not_DASHlike2] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR_STAR2] = ACTIONS(1226), - [anon_sym_PLUS_PLUS2] = ACTIONS(1226), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1226), - [anon_sym_SLASH_SLASH2] = ACTIONS(1226), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_bit_DASHshl2] = ACTIONS(1226), - [anon_sym_bit_DASHshr2] = ACTIONS(1226), - [anon_sym_bit_DASHand2] = ACTIONS(1226), - [anon_sym_bit_DASHxor2] = ACTIONS(1226), - [anon_sym_bit_DASHor2] = ACTIONS(1226), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1226), - [anon_sym_out_GT_GT] = ACTIONS(1226), - [anon_sym_e_GT_GT] = ACTIONS(1226), - [anon_sym_o_GT_GT] = ACTIONS(1226), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1226), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1226), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1226), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1226), - [sym__unquoted_pattern] = ACTIONS(2634), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(998)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(998), - [ts_builtin_sym_end] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_GT2] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1846), - [anon_sym_STAR2] = ACTIONS(1848), - [anon_sym_and2] = ACTIONS(1846), - [anon_sym_xor2] = ACTIONS(1846), - [anon_sym_or2] = ACTIONS(1846), - [anon_sym_not_DASHin2] = ACTIONS(1846), - [anon_sym_has2] = ACTIONS(1846), - [anon_sym_not_DASHhas2] = ACTIONS(1846), - [anon_sym_starts_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), - [anon_sym_ends_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), - [anon_sym_EQ_EQ2] = ACTIONS(1846), - [anon_sym_BANG_EQ2] = ACTIONS(1846), - [anon_sym_LT2] = ACTIONS(1848), - [anon_sym_LT_EQ2] = ACTIONS(1846), - [anon_sym_GT_EQ2] = ACTIONS(1846), - [anon_sym_EQ_TILDE2] = ACTIONS(1846), - [anon_sym_BANG_TILDE2] = ACTIONS(1846), - [anon_sym_like2] = ACTIONS(1846), - [anon_sym_not_DASHlike2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1846), - [anon_sym_STAR_STAR2] = ACTIONS(1846), - [anon_sym_PLUS_PLUS2] = ACTIONS(1846), - [anon_sym_SLASH2] = ACTIONS(1848), - [anon_sym_mod2] = ACTIONS(1846), - [anon_sym_SLASH_SLASH2] = ACTIONS(1846), - [anon_sym_PLUS2] = ACTIONS(1848), - [anon_sym_bit_DASHshl2] = ACTIONS(1846), - [anon_sym_bit_DASHshr2] = ACTIONS(1846), - [anon_sym_bit_DASHand2] = ACTIONS(1846), - [anon_sym_bit_DASHxor2] = ACTIONS(1846), - [anon_sym_bit_DASHor2] = ACTIONS(1846), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), - [sym__unquoted_pattern] = ACTIONS(1848), + [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(999)] = { + [aux_sym__repeat_newline] = STATE(1026), [sym_comment] = STATE(999), - [ts_builtin_sym_end] = ACTIONS(1234), - [anon_sym_in] = ACTIONS(1234), - [sym__newline] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_err_GT_PIPE] = ACTIONS(1234), - [anon_sym_out_GT_PIPE] = ACTIONS(1234), - [anon_sym_e_GT_PIPE] = ACTIONS(1234), - [anon_sym_o_GT_PIPE] = ACTIONS(1234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1234), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1234), - [anon_sym_xor2] = ACTIONS(1234), - [anon_sym_or2] = ACTIONS(1234), - [anon_sym_not_DASHin2] = ACTIONS(1234), - [anon_sym_has2] = ACTIONS(1234), - [anon_sym_not_DASHhas2] = ACTIONS(1234), - [anon_sym_starts_DASHwith2] = ACTIONS(1234), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1234), - [anon_sym_ends_DASHwith2] = ACTIONS(1234), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1234), - [anon_sym_EQ_EQ2] = ACTIONS(1234), - [anon_sym_BANG_EQ2] = ACTIONS(1234), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1234), - [anon_sym_GT_EQ2] = ACTIONS(1234), - [anon_sym_EQ_TILDE2] = ACTIONS(1234), - [anon_sym_BANG_TILDE2] = ACTIONS(1234), - [anon_sym_like2] = ACTIONS(1234), - [anon_sym_not_DASHlike2] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1234), - [anon_sym_bit_DASHshr2] = ACTIONS(1234), - [anon_sym_bit_DASHand2] = ACTIONS(1234), - [anon_sym_bit_DASHxor2] = ACTIONS(1234), - [anon_sym_bit_DASHor2] = ACTIONS(1234), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1234), - [anon_sym_out_GT_GT] = ACTIONS(1234), - [anon_sym_e_GT_GT] = ACTIONS(1234), - [anon_sym_o_GT_GT] = ACTIONS(1234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1234), - [sym__unquoted_pattern] = ACTIONS(2634), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1000)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1895), - [anon_sym_in] = ACTIONS(1895), - [sym__newline] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_err_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_GT_PIPE] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), - [anon_sym_GT2] = ACTIONS(1897), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_STAR2] = ACTIONS(1897), - [anon_sym_and2] = ACTIONS(1895), - [anon_sym_xor2] = ACTIONS(1895), - [anon_sym_or2] = ACTIONS(1895), - [anon_sym_not_DASHin2] = ACTIONS(1895), - [anon_sym_has2] = ACTIONS(1895), - [anon_sym_not_DASHhas2] = ACTIONS(1895), - [anon_sym_starts_DASHwith2] = ACTIONS(1895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1895), - [anon_sym_ends_DASHwith2] = ACTIONS(1895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1895), - [anon_sym_EQ_EQ2] = ACTIONS(1895), - [anon_sym_BANG_EQ2] = ACTIONS(1895), - [anon_sym_LT2] = ACTIONS(1897), - [anon_sym_LT_EQ2] = ACTIONS(1895), - [anon_sym_GT_EQ2] = ACTIONS(1895), - [anon_sym_EQ_TILDE2] = ACTIONS(1895), - [anon_sym_BANG_TILDE2] = ACTIONS(1895), - [anon_sym_like2] = ACTIONS(1895), - [anon_sym_not_DASHlike2] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1895), - [anon_sym_STAR_STAR2] = ACTIONS(1895), - [anon_sym_PLUS_PLUS2] = ACTIONS(1895), - [anon_sym_SLASH2] = ACTIONS(1897), - [anon_sym_mod2] = ACTIONS(1895), - [anon_sym_SLASH_SLASH2] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1897), - [anon_sym_bit_DASHshl2] = ACTIONS(1895), - [anon_sym_bit_DASHshr2] = ACTIONS(1895), - [anon_sym_bit_DASHand2] = ACTIONS(1895), - [anon_sym_bit_DASHxor2] = ACTIONS(1895), - [anon_sym_bit_DASHor2] = ACTIONS(1895), - [anon_sym_err_GT] = ACTIONS(1897), - [anon_sym_out_GT] = ACTIONS(1897), - [anon_sym_e_GT] = ACTIONS(1897), - [anon_sym_o_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT] = ACTIONS(1897), - [anon_sym_err_GT_GT] = ACTIONS(1895), - [anon_sym_out_GT_GT] = ACTIONS(1895), - [anon_sym_e_GT_GT] = ACTIONS(1895), - [anon_sym_o_GT_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), - [sym__unquoted_pattern] = ACTIONS(1897), + [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(1001)] = { + [aux_sym__repeat_newline] = STATE(1028), [sym_comment] = STATE(1001), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_in] = ACTIONS(2618), - [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(2618), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_STAR2] = ACTIONS(2618), - [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(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(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(2618), - [anon_sym_mod2] = ACTIONS(2618), - [anon_sym_SLASH_SLASH2] = ACTIONS(2618), - [anon_sym_PLUS2] = ACTIONS(2618), - [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(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(103), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1002)] = { - [aux_sym__repeat_newline] = STATE(1020), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1002), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [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(1003)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), + [aux_sym__repeat_newline] = STATE(1029), [sym_comment] = STATE(1003), - [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(1818), - [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(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1004)] = { - [sym__expression] = STATE(4937), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(2754), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = 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(2756), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [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(1005)] = { - [sym__expression] = STATE(4947), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [aux_sym__repeat_newline] = STATE(1012), [sym_comment] = STATE(1005), - [aux_sym_cmd_identifier_token2] = ACTIONS(2754), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = 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(2756), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1006)] = { + [aux_sym__repeat_newline] = STATE(1030), [sym_comment] = STATE(1006), - [anon_sym_export] = ACTIONS(2758), - [anon_sym_alias] = ACTIONS(2762), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_mut] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [aux_sym_cmd_identifier_token1] = ACTIONS(2758), - [anon_sym_def] = ACTIONS(2762), - [anon_sym_use] = ACTIONS(2762), - [anon_sym_export_DASHenv] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym_module] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_loop] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_else] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_catch] = ACTIONS(2762), - [anon_sym_finally] = ACTIONS(2762), - [anon_sym_match] = ACTIONS(2762), - [anon_sym_in] = ACTIONS(2758), - [anon_sym_true] = ACTIONS(2762), - [anon_sym_false] = ACTIONS(2762), - [anon_sym_null] = ACTIONS(2762), - [aux_sym_cmd_identifier_token3] = ACTIONS(2762), - [aux_sym_cmd_identifier_token4] = ACTIONS(2762), - [aux_sym_cmd_identifier_token5] = ACTIONS(2762), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_AT] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_DOT_DOT] = ACTIONS(2769), - [anon_sym_where] = ACTIONS(2766), - [aux_sym_expr_unary_token1] = ACTIONS(2766), - [anon_sym_PLUS2] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2774), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2774), - [aux_sym__val_number_decimal_token1] = ACTIONS(2758), - [aux_sym__val_number_decimal_token2] = ACTIONS(2762), - [aux_sym__val_number_decimal_token3] = ACTIONS(2762), - [aux_sym__val_number_decimal_token4] = ACTIONS(2762), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2769), - [anon_sym_0o] = ACTIONS(2769), - [anon_sym_0x] = ACTIONS(2769), - [sym_val_date] = ACTIONS(2766), - [anon_sym_DQUOTE] = ACTIONS(2762), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_BQUOTE] = ACTIONS(2762), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2762), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2774), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1007)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1007), - [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(1818), - [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(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(1008)] = { - [aux_sym__repeat_newline] = STATE(1026), + [aux_sym__repeat_newline] = STATE(1031), [sym_comment] = STATE(1008), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [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(1009)] = { - [aux_sym__repeat_newline] = STATE(1108), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1009), - [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), + [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_LPAREN2] = ACTIONS(1796), + [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(1010)] = { + [aux_sym__repeat_newline] = STATE(1032), [sym_comment] = STATE(1010), - [ts_builtin_sym_end] = ACTIONS(2652), - [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_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_LPAREN2] = ACTIONS(1986), - [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), - [sym__unquoted_pattern] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1011)] = { - [aux_sym__repeat_newline] = STATE(1109), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1011), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2696), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2698), + [anon_sym_DASH2] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_STAR2] = ACTIONS(2698), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2696), + [anon_sym_has2] = ACTIONS(2696), + [anon_sym_not_DASHhas2] = ACTIONS(2696), + [anon_sym_starts_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), + [anon_sym_ends_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), + [anon_sym_EQ_EQ2] = ACTIONS(2696), + [anon_sym_BANG_EQ2] = ACTIONS(2696), + [anon_sym_LT2] = ACTIONS(2698), + [anon_sym_LT_EQ2] = ACTIONS(2696), + [anon_sym_GT_EQ2] = ACTIONS(2696), + [anon_sym_EQ_TILDE2] = ACTIONS(2696), + [anon_sym_BANG_TILDE2] = ACTIONS(2696), + [anon_sym_like2] = ACTIONS(2696), + [anon_sym_not_DASHlike2] = ACTIONS(2696), + [anon_sym_STAR_STAR2] = ACTIONS(2696), + [anon_sym_PLUS_PLUS2] = ACTIONS(2696), + [anon_sym_SLASH2] = ACTIONS(2698), + [anon_sym_mod2] = ACTIONS(2696), + [anon_sym_SLASH_SLASH2] = ACTIONS(2696), + [anon_sym_PLUS2] = ACTIONS(2698), + [anon_sym_bit_DASHshl2] = ACTIONS(2696), + [anon_sym_bit_DASHshr2] = ACTIONS(2696), + [anon_sym_bit_DASHand2] = ACTIONS(2696), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1012)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1012), - [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(1818), - [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(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(1013)] = { + [aux_sym__repeat_newline] = STATE(1033), [sym_comment] = STATE(1013), - [ts_builtin_sym_end] = ACTIONS(1982), - [anon_sym_in] = ACTIONS(1982), - [sym__newline] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_err_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_GT_PIPE] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), - [anon_sym_GT2] = ACTIONS(1984), - [anon_sym_DASH2] = ACTIONS(1982), - [anon_sym_STAR2] = ACTIONS(1984), - [anon_sym_and2] = ACTIONS(1982), - [anon_sym_xor2] = ACTIONS(1982), - [anon_sym_or2] = ACTIONS(1982), - [anon_sym_not_DASHin2] = ACTIONS(1982), - [anon_sym_has2] = ACTIONS(1982), - [anon_sym_not_DASHhas2] = ACTIONS(1982), - [anon_sym_starts_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), - [anon_sym_ends_DASHwith2] = ACTIONS(1982), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), - [anon_sym_EQ_EQ2] = ACTIONS(1982), - [anon_sym_BANG_EQ2] = ACTIONS(1982), - [anon_sym_LT2] = ACTIONS(1984), - [anon_sym_LT_EQ2] = ACTIONS(1982), - [anon_sym_GT_EQ2] = ACTIONS(1982), - [anon_sym_EQ_TILDE2] = ACTIONS(1982), - [anon_sym_BANG_TILDE2] = ACTIONS(1982), - [anon_sym_like2] = ACTIONS(1982), - [anon_sym_not_DASHlike2] = ACTIONS(1982), - [anon_sym_LPAREN2] = ACTIONS(1986), - [anon_sym_STAR_STAR2] = ACTIONS(1982), - [anon_sym_PLUS_PLUS2] = ACTIONS(1982), - [anon_sym_SLASH2] = ACTIONS(1984), - [anon_sym_mod2] = ACTIONS(1982), - [anon_sym_SLASH_SLASH2] = ACTIONS(1982), - [anon_sym_PLUS2] = ACTIONS(1984), - [anon_sym_bit_DASHshl2] = ACTIONS(1982), - [anon_sym_bit_DASHshr2] = ACTIONS(1982), - [anon_sym_bit_DASHand2] = ACTIONS(1982), - [anon_sym_bit_DASHxor2] = ACTIONS(1982), - [anon_sym_bit_DASHor2] = ACTIONS(1982), - [anon_sym_err_GT] = ACTIONS(1984), - [anon_sym_out_GT] = ACTIONS(1984), - [anon_sym_e_GT] = ACTIONS(1984), - [anon_sym_o_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT] = ACTIONS(1984), - [anon_sym_err_GT_GT] = ACTIONS(1982), - [anon_sym_out_GT_GT] = ACTIONS(1982), - [anon_sym_e_GT_GT] = ACTIONS(1982), - [anon_sym_o_GT_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), - [sym__unquoted_pattern] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1014)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1014), - [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(1818), - [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(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(1015)] = { - [aux_sym__repeat_newline] = STATE(1030), + [aux_sym__repeat_newline] = STATE(1034), [sym_comment] = STATE(1015), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1016)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1016), - [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_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(1017)] = { - [aux_sym__repeat_newline] = STATE(1029), + [aux_sym__repeat_newline] = STATE(1035), [sym_comment] = STATE(1017), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1018)] = { - [aux_sym__repeat_newline] = STATE(1038), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1018), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [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(1019)] = { - [aux_sym__repeat_newline] = STATE(1111), + [aux_sym__repeat_newline] = STATE(1036), [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1020)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1020), - [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_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(1021)] = { - [aux_sym__repeat_newline] = STATE(1113), + [aux_sym__repeat_newline] = STATE(4553), + [sym__match_pattern_expression] = STATE(4454), + [sym__match_pattern_value] = STATE(4911), + [sym__match_pattern_list_body] = STATE(4856), + [sym__match_pattern_list] = STATE(4912), + [sym__match_pattern_rest] = STATE(5273), + [sym__match_pattern_record] = STATE(4913), + [sym_expr_parenthesized] = STATE(4065), + [sym_val_range] = STATE(4911), + [sym__val_range] = STATE(5274), + [sym_val_nothing] = STATE(4913), + [sym_val_bool] = STATE(4509), + [sym_val_variable] = STATE(4066), + [sym_val_number] = STATE(4913), + [sym__val_number_decimal] = STATE(3770), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4913), + [sym_val_filesize] = STATE(4913), + [sym_val_binary] = STATE(4913), + [sym_val_string] = STATE(4913), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_list] = STATE(5281), + [sym__table_head] = STATE(3973), + [sym_val_table] = STATE(4913), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_anonymous_prefix] = STATE(5274), [sym_comment] = STATE(1021), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [aux_sym__types_body_repeat1] = STATE(1415), + [aux_sym_parameter_repeat2] = STATE(4219), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(1022)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1022), - [ts_builtin_sym_end] = ACTIONS(2572), - [anon_sym_in] = ACTIONS(2572), - [sym__newline] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2572), - [anon_sym_err_GT_PIPE] = ACTIONS(2572), - [anon_sym_out_GT_PIPE] = ACTIONS(2572), - [anon_sym_e_GT_PIPE] = ACTIONS(2572), - [anon_sym_o_GT_PIPE] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2572), - [anon_sym_GT2] = ACTIONS(2574), - [anon_sym_DASH2] = ACTIONS(2572), - [anon_sym_STAR2] = ACTIONS(2574), - [anon_sym_and2] = ACTIONS(2572), - [anon_sym_xor2] = ACTIONS(2572), - [anon_sym_or2] = ACTIONS(2572), - [anon_sym_not_DASHin2] = ACTIONS(2572), - [anon_sym_has2] = ACTIONS(2572), - [anon_sym_not_DASHhas2] = ACTIONS(2572), - [anon_sym_starts_DASHwith2] = ACTIONS(2572), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2572), - [anon_sym_ends_DASHwith2] = ACTIONS(2572), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2572), - [anon_sym_EQ_EQ2] = ACTIONS(2572), - [anon_sym_BANG_EQ2] = ACTIONS(2572), - [anon_sym_LT2] = ACTIONS(2574), - [anon_sym_LT_EQ2] = ACTIONS(2572), - [anon_sym_GT_EQ2] = ACTIONS(2572), - [anon_sym_EQ_TILDE2] = ACTIONS(2572), - [anon_sym_BANG_TILDE2] = ACTIONS(2572), - [anon_sym_like2] = ACTIONS(2572), - [anon_sym_not_DASHlike2] = ACTIONS(2572), - [anon_sym_LPAREN2] = ACTIONS(2576), - [anon_sym_STAR_STAR2] = ACTIONS(2572), - [anon_sym_PLUS_PLUS2] = ACTIONS(2572), - [anon_sym_SLASH2] = ACTIONS(2574), - [anon_sym_mod2] = ACTIONS(2572), - [anon_sym_SLASH_SLASH2] = ACTIONS(2572), - [anon_sym_PLUS2] = ACTIONS(2574), - [anon_sym_bit_DASHshl2] = ACTIONS(2572), - [anon_sym_bit_DASHshr2] = ACTIONS(2572), - [anon_sym_bit_DASHand2] = ACTIONS(2572), - [anon_sym_bit_DASHxor2] = ACTIONS(2572), - [anon_sym_bit_DASHor2] = ACTIONS(2572), - [anon_sym_err_GT] = ACTIONS(2574), - [anon_sym_out_GT] = ACTIONS(2574), - [anon_sym_e_GT] = ACTIONS(2574), - [anon_sym_o_GT] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT] = ACTIONS(2574), - [anon_sym_err_GT_GT] = ACTIONS(2572), - [anon_sym_out_GT_GT] = ACTIONS(2572), - [anon_sym_e_GT_GT] = ACTIONS(2572), - [anon_sym_o_GT_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2572), - [sym__unquoted_pattern] = ACTIONS(1695), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(1116), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1024)] = { - [aux_sym__repeat_newline] = STATE(1039), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1024), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1025)] = { - [aux_sym__repeat_newline] = STATE(1118), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1025), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1026)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1026), - [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_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1027)] = { - [aux_sym__repeat_newline] = STATE(1040), + [aux_sym__repeat_newline] = STATE(4553), + [sym__match_pattern_expression] = STATE(4454), + [sym__match_pattern_value] = STATE(4911), + [sym__match_pattern_list_body] = STATE(4682), + [sym__match_pattern_list] = STATE(4912), + [sym__match_pattern_rest] = STATE(5214), + [sym__match_pattern_record] = STATE(4913), + [sym_expr_parenthesized] = STATE(4065), + [sym_val_range] = STATE(4911), + [sym__val_range] = STATE(5274), + [sym_val_nothing] = STATE(4913), + [sym_val_bool] = STATE(4509), + [sym_val_variable] = STATE(4066), + [sym_val_number] = STATE(4913), + [sym__val_number_decimal] = STATE(3770), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4913), + [sym_val_filesize] = STATE(4913), + [sym_val_binary] = STATE(4913), + [sym_val_string] = STATE(4913), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_list] = STATE(5281), + [sym__table_head] = STATE(3937), + [sym_val_table] = STATE(4913), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_anonymous_prefix] = STATE(5274), [sym_comment] = STATE(1027), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [aux_sym__types_body_repeat1] = STATE(1415), + [aux_sym_parameter_repeat2] = STATE(4219), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(1028)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(2754), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [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(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1029)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1029), - [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_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1030)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1030), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1031)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1031), - [ts_builtin_sym_end] = ACTIONS(2608), - [anon_sym_in] = ACTIONS(2608), - [sym__newline] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_PIPE] = ACTIONS(2608), - [anon_sym_err_GT_PIPE] = ACTIONS(2608), - [anon_sym_out_GT_PIPE] = ACTIONS(2608), - [anon_sym_e_GT_PIPE] = ACTIONS(2608), - [anon_sym_o_GT_PIPE] = ACTIONS(2608), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2608), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2608), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2608), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2608), - [anon_sym_GT2] = ACTIONS(2610), - [anon_sym_DASH2] = ACTIONS(2608), - [anon_sym_STAR2] = ACTIONS(2610), - [anon_sym_and2] = ACTIONS(2608), - [anon_sym_xor2] = ACTIONS(2608), - [anon_sym_or2] = ACTIONS(2608), - [anon_sym_not_DASHin2] = ACTIONS(2608), - [anon_sym_has2] = ACTIONS(2608), - [anon_sym_not_DASHhas2] = ACTIONS(2608), - [anon_sym_starts_DASHwith2] = ACTIONS(2608), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2608), - [anon_sym_ends_DASHwith2] = ACTIONS(2608), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2608), - [anon_sym_EQ_EQ2] = ACTIONS(2608), - [anon_sym_BANG_EQ2] = ACTIONS(2608), - [anon_sym_LT2] = ACTIONS(2610), - [anon_sym_LT_EQ2] = ACTIONS(2608), - [anon_sym_GT_EQ2] = ACTIONS(2608), - [anon_sym_EQ_TILDE2] = ACTIONS(2608), - [anon_sym_BANG_TILDE2] = ACTIONS(2608), - [anon_sym_like2] = ACTIONS(2608), - [anon_sym_not_DASHlike2] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(2612), - [anon_sym_STAR_STAR2] = ACTIONS(2608), - [anon_sym_PLUS_PLUS2] = ACTIONS(2608), - [anon_sym_SLASH2] = ACTIONS(2610), - [anon_sym_mod2] = ACTIONS(2608), - [anon_sym_SLASH_SLASH2] = ACTIONS(2608), - [anon_sym_PLUS2] = ACTIONS(2610), - [anon_sym_bit_DASHshl2] = ACTIONS(2608), - [anon_sym_bit_DASHshr2] = ACTIONS(2608), - [anon_sym_bit_DASHand2] = ACTIONS(2608), - [anon_sym_bit_DASHxor2] = ACTIONS(2608), - [anon_sym_bit_DASHor2] = ACTIONS(2608), - [anon_sym_err_GT] = ACTIONS(2610), - [anon_sym_out_GT] = ACTIONS(2610), - [anon_sym_e_GT] = ACTIONS(2610), - [anon_sym_o_GT] = ACTIONS(2610), - [anon_sym_err_PLUSout_GT] = ACTIONS(2610), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2610), - [anon_sym_o_PLUSe_GT] = ACTIONS(2610), - [anon_sym_e_PLUSo_GT] = ACTIONS(2610), - [anon_sym_err_GT_GT] = ACTIONS(2608), - [anon_sym_out_GT_GT] = ACTIONS(2608), - [anon_sym_e_GT_GT] = ACTIONS(2608), - [anon_sym_o_GT_GT] = ACTIONS(2608), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2608), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2608), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2608), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2608), - [sym__unquoted_pattern] = ACTIONS(2614), + [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(1032)] = { - [aux_sym__repeat_newline] = STATE(1041), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1032), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1033)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1033), - [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_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1034)] = { - [sym__expr_parenthesized_immediate] = STATE(5483), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1034), - [ts_builtin_sym_end] = ACTIONS(2342), - [anon_sym_in] = ACTIONS(2342), - [sym__newline] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_err_GT_PIPE] = ACTIONS(2342), - [anon_sym_out_GT_PIPE] = ACTIONS(2342), - [anon_sym_e_GT_PIPE] = ACTIONS(2342), - [anon_sym_o_GT_PIPE] = ACTIONS(2342), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2342), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2342), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2342), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2342), - [anon_sym_GT2] = ACTIONS(2344), - [anon_sym_DASH2] = ACTIONS(2342), - [anon_sym_STAR2] = ACTIONS(2344), - [anon_sym_and2] = ACTIONS(2342), - [anon_sym_xor2] = ACTIONS(2342), - [anon_sym_or2] = ACTIONS(2342), - [anon_sym_not_DASHin2] = ACTIONS(2342), - [anon_sym_has2] = ACTIONS(2342), - [anon_sym_not_DASHhas2] = ACTIONS(2342), - [anon_sym_starts_DASHwith2] = ACTIONS(2342), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2342), - [anon_sym_ends_DASHwith2] = ACTIONS(2342), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2342), - [anon_sym_EQ_EQ2] = ACTIONS(2342), - [anon_sym_BANG_EQ2] = ACTIONS(2342), - [anon_sym_LT2] = ACTIONS(2344), - [anon_sym_LT_EQ2] = ACTIONS(2342), - [anon_sym_GT_EQ2] = ACTIONS(2342), - [anon_sym_EQ_TILDE2] = ACTIONS(2342), - [anon_sym_BANG_TILDE2] = ACTIONS(2342), - [anon_sym_like2] = ACTIONS(2342), - [anon_sym_not_DASHlike2] = ACTIONS(2342), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2342), - [anon_sym_PLUS_PLUS2] = ACTIONS(2342), - [anon_sym_SLASH2] = ACTIONS(2344), - [anon_sym_mod2] = ACTIONS(2342), - [anon_sym_SLASH_SLASH2] = ACTIONS(2342), - [anon_sym_PLUS2] = ACTIONS(2344), - [anon_sym_bit_DASHshl2] = ACTIONS(2342), - [anon_sym_bit_DASHshr2] = ACTIONS(2342), - [anon_sym_bit_DASHand2] = ACTIONS(2342), - [anon_sym_bit_DASHxor2] = ACTIONS(2342), - [anon_sym_bit_DASHor2] = ACTIONS(2342), - [anon_sym_err_GT] = ACTIONS(2344), - [anon_sym_out_GT] = ACTIONS(2344), - [anon_sym_e_GT] = ACTIONS(2344), - [anon_sym_o_GT] = ACTIONS(2344), - [anon_sym_err_PLUSout_GT] = ACTIONS(2344), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2344), - [anon_sym_o_PLUSe_GT] = ACTIONS(2344), - [anon_sym_e_PLUSo_GT] = ACTIONS(2344), - [anon_sym_err_GT_GT] = ACTIONS(2342), - [anon_sym_out_GT_GT] = ACTIONS(2342), - [anon_sym_e_GT_GT] = ACTIONS(2342), - [anon_sym_o_GT_GT] = ACTIONS(2342), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2342), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2342), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2342), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1035)] = { - [aux_sym__repeat_newline] = STATE(1033), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1036)] = { - [sym__expr_parenthesized_immediate] = STATE(5483), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1036), - [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_LPAREN2] = ACTIONS(1818), - [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_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1037)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(1037), - [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(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_in] = ACTIONS(2572), + [sym__newline] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_err_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_GT_PIPE] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_GT2] = ACTIONS(2572), + [anon_sym_DASH2] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_STAR2] = ACTIONS(2572), + [anon_sym_and2] = ACTIONS(2572), + [anon_sym_xor2] = ACTIONS(2572), + [anon_sym_or2] = ACTIONS(2572), + [anon_sym_not_DASHin2] = ACTIONS(2572), + [anon_sym_has2] = ACTIONS(2572), + [anon_sym_not_DASHhas2] = ACTIONS(2572), + [anon_sym_starts_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2572), + [anon_sym_ends_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2572), + [anon_sym_EQ_EQ2] = ACTIONS(2570), + [anon_sym_BANG_EQ2] = ACTIONS(2570), + [anon_sym_LT2] = ACTIONS(2572), + [anon_sym_LT_EQ2] = ACTIONS(2570), + [anon_sym_GT_EQ2] = ACTIONS(2570), + [anon_sym_EQ_TILDE2] = ACTIONS(2570), + [anon_sym_BANG_TILDE2] = ACTIONS(2572), + [anon_sym_like2] = ACTIONS(2572), + [anon_sym_not_DASHlike2] = ACTIONS(2572), + [anon_sym_STAR_STAR2] = ACTIONS(2572), + [anon_sym_PLUS_PLUS2] = ACTIONS(2572), + [anon_sym_SLASH2] = ACTIONS(2572), + [anon_sym_mod2] = ACTIONS(2572), + [anon_sym_SLASH_SLASH2] = ACTIONS(2572), + [anon_sym_PLUS2] = ACTIONS(2572), + [anon_sym_bit_DASHshl2] = ACTIONS(2572), + [anon_sym_bit_DASHshr2] = ACTIONS(2572), + [anon_sym_bit_DASHand2] = ACTIONS(2572), + [anon_sym_bit_DASHxor2] = ACTIONS(2572), + [anon_sym_bit_DASHor2] = ACTIONS(2572), + [anon_sym_err_GT] = ACTIONS(2572), + [anon_sym_out_GT] = ACTIONS(2572), + [anon_sym_e_GT] = ACTIONS(2572), + [anon_sym_o_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT] = ACTIONS(2572), + [anon_sym_err_GT_GT] = ACTIONS(2570), + [anon_sym_out_GT_GT] = ACTIONS(2570), + [anon_sym_e_GT_GT] = ACTIONS(2570), + [anon_sym_o_GT_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1038)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1038), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_in] = ACTIONS(2600), + [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(2600), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_STAR2] = ACTIONS(2600), + [anon_sym_and2] = ACTIONS(2600), + [anon_sym_xor2] = ACTIONS(2600), + [anon_sym_or2] = ACTIONS(2600), + [anon_sym_not_DASHin2] = ACTIONS(2600), + [anon_sym_has2] = ACTIONS(2600), + [anon_sym_not_DASHhas2] = ACTIONS(2600), + [anon_sym_starts_DASHwith2] = ACTIONS(2600), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2600), + [anon_sym_ends_DASHwith2] = ACTIONS(2600), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2600), + [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(2600), + [anon_sym_like2] = ACTIONS(2600), + [anon_sym_not_DASHlike2] = ACTIONS(2600), + [anon_sym_STAR_STAR2] = ACTIONS(2600), + [anon_sym_PLUS_PLUS2] = ACTIONS(2600), + [anon_sym_SLASH2] = ACTIONS(2600), + [anon_sym_mod2] = ACTIONS(2600), + [anon_sym_SLASH_SLASH2] = ACTIONS(2600), + [anon_sym_PLUS2] = ACTIONS(2600), + [anon_sym_bit_DASHshl2] = ACTIONS(2600), + [anon_sym_bit_DASHshr2] = ACTIONS(2600), + [anon_sym_bit_DASHand2] = ACTIONS(2600), + [anon_sym_bit_DASHxor2] = ACTIONS(2600), + [anon_sym_bit_DASHor2] = ACTIONS(2600), + [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(103), }, [STATE(1039)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1039), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_in] = ACTIONS(785), + [sym__newline] = ACTIONS(884), + [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_RPAREN] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1040)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1145), [sym_comment] = STATE(1040), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1041)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1014), [sym_comment] = STATE(1041), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1042)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1042), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [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_LPAREN2] = ACTIONS(1796), + [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(1043)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1109), [sym_comment] = STATE(1043), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1044)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1372), + [sym__expression_parenthesized] = STATE(4503), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2191), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_comment] = STATE(1044), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(2724), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(1045)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1045), - [anon_sym_in] = ACTIONS(2784), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2786), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2784), - [anon_sym_has2] = ACTIONS(2784), - [anon_sym_not_DASHhas2] = ACTIONS(2784), - [anon_sym_starts_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), - [anon_sym_ends_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), - [anon_sym_EQ_EQ2] = ACTIONS(2784), - [anon_sym_BANG_EQ2] = ACTIONS(2784), - [anon_sym_LT2] = ACTIONS(2786), - [anon_sym_LT_EQ2] = ACTIONS(2784), - [anon_sym_GT_EQ2] = ACTIONS(2784), - [anon_sym_EQ_TILDE2] = ACTIONS(2784), - [anon_sym_BANG_TILDE2] = ACTIONS(2784), - [anon_sym_like2] = ACTIONS(2784), - [anon_sym_not_DASHlike2] = ACTIONS(2784), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2784), - [anon_sym_SLASH_SLASH2] = ACTIONS(2784), - [anon_sym_PLUS2] = ACTIONS(2786), - [anon_sym_bit_DASHshl2] = ACTIONS(2784), - [anon_sym_bit_DASHshr2] = ACTIONS(2784), - [anon_sym_bit_DASHand2] = ACTIONS(2784), - [anon_sym_bit_DASHxor2] = ACTIONS(2784), - [anon_sym_bit_DASHor2] = ACTIONS(2784), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(884), + [sym__newline] = ACTIONS(884), + [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_RPAREN] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(884), + [anon_sym_xor2] = ACTIONS(884), + [anon_sym_or2] = ACTIONS(884), + [anon_sym_not_DASHin2] = ACTIONS(884), + [anon_sym_has2] = ACTIONS(884), + [anon_sym_not_DASHhas2] = ACTIONS(884), + [anon_sym_starts_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), + [anon_sym_ends_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(884), + [anon_sym_like2] = ACTIONS(884), + [anon_sym_not_DASHlike2] = ACTIONS(884), + [anon_sym_STAR_STAR2] = ACTIONS(884), + [anon_sym_PLUS_PLUS2] = ACTIONS(884), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(884), + [anon_sym_SLASH_SLASH2] = ACTIONS(884), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(884), + [anon_sym_bit_DASHshr2] = ACTIONS(884), + [anon_sym_bit_DASHand2] = ACTIONS(884), + [anon_sym_bit_DASHxor2] = ACTIONS(884), + [anon_sym_bit_DASHor2] = ACTIONS(884), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [sym__unquoted_pattern] = ACTIONS(1806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1046)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1112), [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1047)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1114), [sym_comment] = STATE(1047), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1048)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [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(1049)] = { - [aux_sym__repeat_newline] = STATE(1042), + [aux_sym__repeat_newline] = STATE(1116), [sym_comment] = STATE(1049), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1050)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1050), - [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), + [ts_builtin_sym_end] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1784), + [sym__newline] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_err_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_GT_PIPE] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1784), + [anon_sym_GT2] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1784), + [anon_sym_xor2] = ACTIONS(1784), + [anon_sym_or2] = ACTIONS(1784), + [anon_sym_not_DASHin2] = ACTIONS(1784), + [anon_sym_has2] = ACTIONS(1784), + [anon_sym_not_DASHhas2] = ACTIONS(1784), + [anon_sym_starts_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1784), + [anon_sym_ends_DASHwith2] = ACTIONS(1784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1784), + [anon_sym_EQ_EQ2] = ACTIONS(1784), + [anon_sym_BANG_EQ2] = ACTIONS(1784), + [anon_sym_LT2] = ACTIONS(1786), + [anon_sym_LT_EQ2] = ACTIONS(1784), + [anon_sym_GT_EQ2] = ACTIONS(1784), + [anon_sym_EQ_TILDE2] = ACTIONS(1784), + [anon_sym_BANG_TILDE2] = ACTIONS(1784), + [anon_sym_like2] = ACTIONS(1784), + [anon_sym_not_DASHlike2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1784), + [anon_sym_PLUS_PLUS2] = ACTIONS(1784), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1784), + [anon_sym_SLASH_SLASH2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_bit_DASHshl2] = ACTIONS(1784), + [anon_sym_bit_DASHshr2] = ACTIONS(1784), + [anon_sym_bit_DASHand2] = ACTIONS(1784), + [anon_sym_bit_DASHxor2] = ACTIONS(1784), + [anon_sym_bit_DASHor2] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(2730), + [aux_sym__immediate_decimal_token5] = ACTIONS(1911), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1784), + [anon_sym_out_GT_GT] = ACTIONS(1784), + [anon_sym_e_GT_GT] = ACTIONS(1784), + [anon_sym_o_GT_GT] = ACTIONS(1784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1051)] = { - [aux_sym__repeat_newline] = STATE(1050), + [aux_sym__repeat_newline] = STATE(1118), [sym_comment] = STATE(1051), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1052)] = { - [aux_sym__repeat_newline] = STATE(1043), + [aux_sym__repeat_newline] = STATE(1016), [sym_comment] = STATE(1052), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1053)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), + [aux_sym__repeat_newline] = STATE(990), [sym_comment] = STATE(1053), - [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(1818), - [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(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1054)] = { - [aux_sym__repeat_newline] = STATE(1044), + [aux_sym__repeat_newline] = STATE(1120), [sym_comment] = STATE(1054), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1055)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1055), - [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), + [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_LPAREN2] = ACTIONS(1796), + [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(1056)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1056), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(785), + [sym__newline] = ACTIONS(884), + [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_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_COLON2] = ACTIONS(884), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1057)] = { - [aux_sym__repeat_newline] = STATE(1045), + [aux_sym__repeat_newline] = STATE(1123), [sym_comment] = STATE(1057), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2788), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_STAR2] = ACTIONS(2790), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2788), - [anon_sym_BANG_TILDE2] = ACTIONS(2788), - [anon_sym_like2] = ACTIONS(2788), - [anon_sym_not_DASHlike2] = ACTIONS(2788), - [anon_sym_STAR_STAR2] = ACTIONS(2788), - [anon_sym_PLUS_PLUS2] = ACTIONS(2788), - [anon_sym_SLASH2] = ACTIONS(2790), - [anon_sym_mod2] = ACTIONS(2788), - [anon_sym_SLASH_SLASH2] = ACTIONS(2788), - [anon_sym_PLUS2] = ACTIONS(2790), - [anon_sym_bit_DASHshl2] = ACTIONS(2788), - [anon_sym_bit_DASHshr2] = ACTIONS(2788), - [anon_sym_bit_DASHand2] = ACTIONS(2788), - [anon_sym_bit_DASHxor2] = ACTIONS(2788), - [anon_sym_bit_DASHor2] = ACTIONS(2788), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1058)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), + [aux_sym__repeat_newline] = STATE(1129), [sym_comment] = STATE(1058), - [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(1818), - [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(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1059)] = { - [aux_sym__repeat_newline] = STATE(1358), - [sym__expression_parenthesized] = STATE(4644), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2190), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [aux_sym__repeat_newline] = STATE(1133), [sym_comment] = STATE(1059), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(2792), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2602), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2734), + [anon_sym_PLUS_PLUS2] = ACTIONS(2734), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1060)] = { + [aux_sym__repeat_newline] = STATE(1134), + [sym_comment] = STATE(1060), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1061)] = { + [aux_sym__repeat_newline] = STATE(1139), + [sym_comment] = STATE(1061), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1062)] = { + [sym__expression] = STATE(5060), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2259), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_comment] = STATE(1062), + [aux_sym_cmd_identifier_token2] = ACTIONS(2732), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), + [sym_val_date] = ACTIONS(2654), [anon_sym_DQUOTE] = 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), + [anon_sym_COLON2] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1060)] = { - [aux_sym__repeat_newline] = STATE(1046), - [sym_comment] = STATE(1060), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1061)] = { - [aux_sym__repeat_newline] = STATE(485), - [sym_comment] = STATE(1061), - [anon_sym_in] = ACTIONS(2794), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2796), - [anon_sym_DASH2] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_STAR2] = ACTIONS(2796), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2794), - [anon_sym_has2] = ACTIONS(2794), - [anon_sym_not_DASHhas2] = ACTIONS(2794), - [anon_sym_starts_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), - [anon_sym_ends_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2796), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2794), - [anon_sym_BANG_TILDE2] = ACTIONS(2794), - [anon_sym_like2] = ACTIONS(2794), - [anon_sym_not_DASHlike2] = ACTIONS(2794), - [anon_sym_STAR_STAR2] = ACTIONS(2794), - [anon_sym_PLUS_PLUS2] = ACTIONS(2794), - [anon_sym_SLASH2] = ACTIONS(2796), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2794), - [anon_sym_bit_DASHshr2] = ACTIONS(2794), - [anon_sym_bit_DASHand2] = ACTIONS(2794), - [anon_sym_bit_DASHxor2] = ACTIONS(2794), - [anon_sym_bit_DASHor2] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1062)] = { - [aux_sym__repeat_newline] = STATE(485), - [sym_comment] = STATE(1062), - [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(1063)] = { - [aux_sym__repeat_newline] = STATE(977), + [aux_sym__repeat_newline] = STATE(1143), [sym_comment] = STATE(1063), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1064)] = { - [aux_sym__repeat_newline] = STATE(1047), + [sym__expression] = STATE(5065), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2259), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_comment] = STATE(1064), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2732), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2654), + [anon_sym_DQUOTE] = 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(2738), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1148), [sym_comment] = STATE(1065), - [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_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1066)] = { + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1066), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_err_GT] = ACTIONS(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(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_LPAREN2] = ACTIONS(1796), + [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(1067)] = { [aux_sym__repeat_newline] = STATE(1048), [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1068)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1068), - [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), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_alias] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_mut] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [aux_sym_cmd_identifier_token1] = ACTIONS(2740), + [anon_sym_def] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2744), + [anon_sym_export_DASHenv] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_loop] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_catch] = ACTIONS(2744), + [anon_sym_finally] = ACTIONS(2744), + [anon_sym_match] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2744), + [aux_sym_cmd_identifier_token3] = ACTIONS(2744), + [aux_sym_cmd_identifier_token4] = ACTIONS(2744), + [aux_sym_cmd_identifier_token5] = ACTIONS(2744), + [sym__newline] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_DOT_DOT] = ACTIONS(2751), + [anon_sym_where] = ACTIONS(2748), + [aux_sym_expr_unary_token1] = ACTIONS(2748), + [anon_sym_PLUS2] = ACTIONS(2754), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2748), + [anon_sym_DOT_DOT_LT] = ACTIONS(2748), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2756), + [aux_sym__val_number_decimal_token1] = ACTIONS(2740), + [aux_sym__val_number_decimal_token2] = ACTIONS(2744), + [aux_sym__val_number_decimal_token3] = ACTIONS(2744), + [aux_sym__val_number_decimal_token4] = ACTIONS(2744), + [aux_sym__val_number_token1] = ACTIONS(2744), + [aux_sym__val_number_token2] = ACTIONS(2744), + [aux_sym__val_number_token3] = ACTIONS(2744), + [anon_sym_0b] = ACTIONS(2751), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), + [sym_val_date] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_BQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2756), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2744), }, [STATE(1069)] = { - [sym_expr_unary] = STATE(2835), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_parenthesized] = STATE(2542), - [sym_val_range] = STATE(2835), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(2835), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2578), - [sym_val_variable] = STATE(2555), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(2367), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(2619), - [sym__unquoted_with_expr] = STATE(2842), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [aux_sym__repeat_newline] = STATE(1018), [sym_comment] = STATE(1069), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [anon_sym_null] = ACTIONS(2682), - [aux_sym_cmd_identifier_token3] = ACTIONS(2684), - [aux_sym_cmd_identifier_token4] = ACTIONS(2684), - [aux_sym_cmd_identifier_token5] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1070)] = { + [sym_expr_unary] = STATE(2849), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_parenthesized] = STATE(2532), + [sym_val_range] = STATE(2849), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(2849), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2595), + [sym_val_variable] = STATE(2547), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(2371), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(2634), + [sym__unquoted_with_expr] = STATE(2851), + [sym__unquoted_anonymous_prefix] = STATE(4880), + [sym_comment] = STATE(1070), + [anon_sym_true] = ACTIONS(2758), + [anon_sym_false] = ACTIONS(2758), + [anon_sym_null] = ACTIONS(2760), + [aux_sym_cmd_identifier_token3] = ACTIONS(2762), + [aux_sym_cmd_identifier_token4] = ACTIONS(2762), + [aux_sym_cmd_identifier_token5] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_DOLLAR] = ACTIONS(2768), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [aux_sym_expr_unary_token1] = ACTIONS(2696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), - [anon_sym_DOT_DOT_LT] = ACTIONS(2698), - [aux_sym__val_number_decimal_token1] = ACTIONS(2700), - [aux_sym__val_number_decimal_token2] = ACTIONS(2702), - [aux_sym__val_number_decimal_token3] = ACTIONS(2704), - [aux_sym__val_number_decimal_token4] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2772), + [aux_sym_expr_unary_token1] = ACTIONS(2774), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2776), + [anon_sym_DOT_DOT_LT] = ACTIONS(2776), + [aux_sym__val_number_decimal_token1] = ACTIONS(2778), + [aux_sym__val_number_decimal_token2] = ACTIONS(2780), + [aux_sym__val_number_decimal_token3] = ACTIONS(2782), + [aux_sym__val_number_decimal_token4] = ACTIONS(2782), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2706), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), + [sym_val_date] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1778), - }, - [STATE(1070)] = { - [aux_sym__repeat_newline] = STATE(1056), - [sym_comment] = STATE(1070), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1764), }, [STATE(1071)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym_expr_unary] = STATE(2852), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_parenthesized] = STATE(2545), + [sym_val_range] = STATE(2852), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(2852), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2595), + [sym_val_variable] = STATE(2547), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(2371), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(2635), + [sym__unquoted_with_expr] = STATE(2854), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(1071), - [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_true] = ACTIONS(2758), + [anon_sym_false] = ACTIONS(2758), + [anon_sym_null] = ACTIONS(2760), + [aux_sym_cmd_identifier_token3] = ACTIONS(2762), + [aux_sym_cmd_identifier_token4] = ACTIONS(2762), + [aux_sym_cmd_identifier_token5] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2772), + [aux_sym_expr_unary_token1] = ACTIONS(2774), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2776), + [anon_sym_DOT_DOT_LT] = ACTIONS(2776), + [aux_sym__val_number_decimal_token1] = ACTIONS(2778), + [aux_sym__val_number_decimal_token2] = ACTIONS(2780), + [aux_sym__val_number_decimal_token3] = ACTIONS(2782), + [aux_sym__val_number_decimal_token4] = ACTIONS(2782), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1764), }, [STATE(1072)] = { - [aux_sym__repeat_newline] = STATE(1073), + [sym_expr_unary] = STATE(2855), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_parenthesized] = STATE(2514), + [sym_val_range] = STATE(2855), + [sym__val_range] = STATE(4880), + [sym__value] = STATE(2855), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(2595), + [sym_val_variable] = STATE(2547), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(2371), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_unquoted] = STATE(2636), + [sym__unquoted_with_expr] = STATE(2857), + [sym__unquoted_anonymous_prefix] = STATE(4880), [sym_comment] = STATE(1072), - [anon_sym_in] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), - [anon_sym_GT2] = ACTIONS(2348), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_STAR2] = ACTIONS(2348), - [anon_sym_and2] = ACTIONS(2346), - [anon_sym_xor2] = ACTIONS(2346), - [anon_sym_or2] = ACTIONS(2346), - [anon_sym_not_DASHin2] = ACTIONS(2346), - [anon_sym_has2] = ACTIONS(2346), - [anon_sym_not_DASHhas2] = ACTIONS(2346), - [anon_sym_starts_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), - [anon_sym_ends_DASHwith2] = ACTIONS(2346), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), - [anon_sym_EQ_EQ2] = ACTIONS(2346), - [anon_sym_BANG_EQ2] = ACTIONS(2346), - [anon_sym_LT2] = ACTIONS(2348), - [anon_sym_LT_EQ2] = ACTIONS(2346), - [anon_sym_GT_EQ2] = ACTIONS(2346), - [anon_sym_EQ_TILDE2] = ACTIONS(2346), - [anon_sym_BANG_TILDE2] = ACTIONS(2346), - [anon_sym_like2] = ACTIONS(2346), - [anon_sym_not_DASHlike2] = ACTIONS(2346), - [anon_sym_STAR_STAR2] = ACTIONS(2346), - [anon_sym_PLUS_PLUS2] = ACTIONS(2346), - [anon_sym_SLASH2] = ACTIONS(2348), - [anon_sym_mod2] = ACTIONS(2346), - [anon_sym_SLASH_SLASH2] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2348), - [anon_sym_bit_DASHshl2] = ACTIONS(2346), - [anon_sym_bit_DASHshr2] = ACTIONS(2346), - [anon_sym_bit_DASHand2] = ACTIONS(2346), - [anon_sym_bit_DASHxor2] = ACTIONS(2346), - [anon_sym_bit_DASHor2] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_true] = ACTIONS(2758), + [anon_sym_false] = ACTIONS(2758), + [anon_sym_null] = ACTIONS(2760), + [aux_sym_cmd_identifier_token3] = ACTIONS(2762), + [aux_sym_cmd_identifier_token4] = ACTIONS(2762), + [aux_sym_cmd_identifier_token5] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2772), + [aux_sym_expr_unary_token1] = ACTIONS(2774), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2776), + [anon_sym_DOT_DOT_LT] = ACTIONS(2776), + [aux_sym__val_number_decimal_token1] = ACTIONS(2778), + [aux_sym__val_number_decimal_token2] = ACTIONS(2780), + [aux_sym__val_number_decimal_token3] = ACTIONS(2782), + [aux_sym__val_number_decimal_token4] = ACTIONS(2782), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1764), }, [STATE(1073)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1073), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2780), - [anon_sym_xor2] = ACTIONS(2780), - [anon_sym_or2] = ACTIONS(2780), - [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(2780), - [anon_sym_BANG_EQ2] = ACTIONS(2780), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2780), - [anon_sym_GT_EQ2] = ACTIONS(2780), - [anon_sym_EQ_TILDE2] = ACTIONS(2780), - [anon_sym_BANG_TILDE2] = ACTIONS(2780), - [anon_sym_like2] = ACTIONS(2780), - [anon_sym_not_DASHlike2] = ACTIONS(2780), - [anon_sym_STAR_STAR2] = ACTIONS(2780), - [anon_sym_PLUS_PLUS2] = ACTIONS(2780), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2780), - [anon_sym_SLASH_SLASH2] = ACTIONS(2780), - [anon_sym_PLUS2] = ACTIONS(2782), - [anon_sym_bit_DASHshl2] = ACTIONS(2780), - [anon_sym_bit_DASHshr2] = ACTIONS(2780), - [anon_sym_bit_DASHand2] = ACTIONS(2780), - [anon_sym_bit_DASHxor2] = ACTIONS(2780), - [anon_sym_bit_DASHor2] = ACTIONS(2780), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2780), - [anon_sym_out_GT_GT] = ACTIONS(2780), - [anon_sym_e_GT_GT] = ACTIONS(2780), - [anon_sym_o_GT_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [ts_builtin_sym_end] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1730), + [sym__newline] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_err_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_GT_PIPE] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), + [anon_sym_GT2] = ACTIONS(1732), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_STAR2] = ACTIONS(1732), + [anon_sym_and2] = ACTIONS(1730), + [anon_sym_xor2] = ACTIONS(1730), + [anon_sym_or2] = ACTIONS(1730), + [anon_sym_not_DASHin2] = ACTIONS(1730), + [anon_sym_has2] = ACTIONS(1730), + [anon_sym_not_DASHhas2] = ACTIONS(1730), + [anon_sym_starts_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), + [anon_sym_ends_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), + [anon_sym_EQ_EQ2] = ACTIONS(1730), + [anon_sym_BANG_EQ2] = ACTIONS(1730), + [anon_sym_LT2] = ACTIONS(1732), + [anon_sym_LT_EQ2] = ACTIONS(1730), + [anon_sym_GT_EQ2] = ACTIONS(1730), + [anon_sym_EQ_TILDE2] = ACTIONS(1730), + [anon_sym_BANG_TILDE2] = ACTIONS(1730), + [anon_sym_like2] = ACTIONS(1730), + [anon_sym_not_DASHlike2] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_STAR_STAR2] = ACTIONS(1730), + [anon_sym_PLUS_PLUS2] = ACTIONS(1730), + [anon_sym_SLASH2] = ACTIONS(1732), + [anon_sym_mod2] = ACTIONS(1730), + [anon_sym_SLASH_SLASH2] = ACTIONS(1730), + [anon_sym_PLUS2] = ACTIONS(1732), + [anon_sym_bit_DASHshl2] = ACTIONS(1730), + [anon_sym_bit_DASHshr2] = ACTIONS(1730), + [anon_sym_bit_DASHand2] = ACTIONS(1730), + [anon_sym_bit_DASHxor2] = ACTIONS(1730), + [anon_sym_bit_DASHor2] = ACTIONS(1730), + [anon_sym_err_GT] = ACTIONS(1732), + [anon_sym_out_GT] = ACTIONS(1732), + [anon_sym_e_GT] = ACTIONS(1732), + [anon_sym_o_GT] = ACTIONS(1732), + [anon_sym_err_PLUSout_GT] = ACTIONS(1732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), + [anon_sym_o_PLUSe_GT] = ACTIONS(1732), + [anon_sym_e_PLUSo_GT] = ACTIONS(1732), + [anon_sym_err_GT_GT] = ACTIONS(1730), + [anon_sym_out_GT_GT] = ACTIONS(1730), + [anon_sym_e_GT_GT] = ACTIONS(1730), + [anon_sym_o_GT_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), + [sym__unquoted_pattern] = ACTIONS(1732), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(992), [sym_comment] = STATE(1074), - [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_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1075)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), + [aux_sym__repeat_newline] = STATE(1020), [sym_comment] = STATE(1075), - [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(1818), - [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(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(1055), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1076), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [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_LPAREN2] = ACTIONS(1796), + [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(1077)] = { - [aux_sym__repeat_newline] = STATE(1085), [sym_comment] = STATE(1077), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [ts_builtin_sym_end] = ACTIONS(2590), + [anon_sym_in] = ACTIONS(2590), + [sym__newline] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_err_GT_PIPE] = ACTIONS(2590), + [anon_sym_out_GT_PIPE] = ACTIONS(2590), + [anon_sym_e_GT_PIPE] = ACTIONS(2590), + [anon_sym_o_GT_PIPE] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2590), + [anon_sym_GT2] = ACTIONS(2592), + [anon_sym_DASH2] = ACTIONS(2590), + [anon_sym_STAR2] = ACTIONS(2592), + [anon_sym_and2] = ACTIONS(2590), + [anon_sym_xor2] = ACTIONS(2590), + [anon_sym_or2] = ACTIONS(2590), + [anon_sym_not_DASHin2] = ACTIONS(2590), + [anon_sym_has2] = ACTIONS(2590), + [anon_sym_not_DASHhas2] = ACTIONS(2590), + [anon_sym_starts_DASHwith2] = ACTIONS(2590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2590), + [anon_sym_ends_DASHwith2] = ACTIONS(2590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2590), + [anon_sym_EQ_EQ2] = ACTIONS(2590), + [anon_sym_BANG_EQ2] = ACTIONS(2590), + [anon_sym_LT2] = ACTIONS(2592), + [anon_sym_LT_EQ2] = ACTIONS(2590), + [anon_sym_GT_EQ2] = ACTIONS(2590), + [anon_sym_EQ_TILDE2] = ACTIONS(2590), + [anon_sym_BANG_TILDE2] = ACTIONS(2590), + [anon_sym_like2] = ACTIONS(2590), + [anon_sym_not_DASHlike2] = ACTIONS(2590), + [anon_sym_LPAREN2] = ACTIONS(2594), + [anon_sym_STAR_STAR2] = ACTIONS(2590), + [anon_sym_PLUS_PLUS2] = ACTIONS(2590), + [anon_sym_SLASH2] = ACTIONS(2592), + [anon_sym_mod2] = ACTIONS(2590), + [anon_sym_SLASH_SLASH2] = ACTIONS(2590), + [anon_sym_PLUS2] = ACTIONS(2592), + [anon_sym_bit_DASHshl2] = ACTIONS(2590), + [anon_sym_bit_DASHshr2] = ACTIONS(2590), + [anon_sym_bit_DASHand2] = ACTIONS(2590), + [anon_sym_bit_DASHxor2] = ACTIONS(2590), + [anon_sym_bit_DASHor2] = ACTIONS(2590), + [anon_sym_err_GT] = ACTIONS(2592), + [anon_sym_out_GT] = ACTIONS(2592), + [anon_sym_e_GT] = ACTIONS(2592), + [anon_sym_o_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT] = ACTIONS(2592), + [anon_sym_err_GT_GT] = ACTIONS(2590), + [anon_sym_out_GT_GT] = ACTIONS(2590), + [anon_sym_e_GT_GT] = ACTIONS(2590), + [anon_sym_o_GT_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2590), + [sym__unquoted_pattern] = ACTIONS(2596), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1078)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(1078), - [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(1818), - [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(1832), + [anon_sym_in] = ACTIONS(1832), + [sym__newline] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_err_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_GT_PIPE] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1832), + [anon_sym_GT2] = ACTIONS(1834), + [anon_sym_DASH2] = ACTIONS(1832), + [anon_sym_STAR2] = ACTIONS(1834), + [anon_sym_and2] = ACTIONS(1832), + [anon_sym_xor2] = ACTIONS(1832), + [anon_sym_or2] = ACTIONS(1832), + [anon_sym_not_DASHin2] = ACTIONS(1832), + [anon_sym_has2] = ACTIONS(1832), + [anon_sym_not_DASHhas2] = ACTIONS(1832), + [anon_sym_starts_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1832), + [anon_sym_ends_DASHwith2] = ACTIONS(1832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1832), + [anon_sym_EQ_EQ2] = ACTIONS(1832), + [anon_sym_BANG_EQ2] = ACTIONS(1832), + [anon_sym_LT2] = ACTIONS(1834), + [anon_sym_LT_EQ2] = ACTIONS(1832), + [anon_sym_GT_EQ2] = ACTIONS(1832), + [anon_sym_EQ_TILDE2] = ACTIONS(1832), + [anon_sym_BANG_TILDE2] = ACTIONS(1832), + [anon_sym_like2] = ACTIONS(1832), + [anon_sym_not_DASHlike2] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_STAR_STAR2] = ACTIONS(1832), + [anon_sym_PLUS_PLUS2] = ACTIONS(1832), + [anon_sym_SLASH2] = ACTIONS(1834), + [anon_sym_mod2] = ACTIONS(1832), + [anon_sym_SLASH_SLASH2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1834), + [anon_sym_bit_DASHshl2] = ACTIONS(1832), + [anon_sym_bit_DASHshr2] = ACTIONS(1832), + [anon_sym_bit_DASHand2] = ACTIONS(1832), + [anon_sym_bit_DASHxor2] = ACTIONS(1832), + [anon_sym_bit_DASHor2] = ACTIONS(1832), + [anon_sym_err_GT] = ACTIONS(1834), + [anon_sym_out_GT] = ACTIONS(1834), + [anon_sym_e_GT] = ACTIONS(1834), + [anon_sym_o_GT] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT] = ACTIONS(1834), + [anon_sym_err_GT_GT] = ACTIONS(1832), + [anon_sym_out_GT_GT] = ACTIONS(1832), + [anon_sym_e_GT_GT] = ACTIONS(1832), + [anon_sym_o_GT_GT] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1832), + [sym__unquoted_pattern] = ACTIONS(1834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1079)] = { - [aux_sym__repeat_newline] = STATE(1061), + [aux_sym__repeat_newline] = STATE(998), [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2798), - [sym__newline] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2800), - [anon_sym_DASH2] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_STAR2] = ACTIONS(2800), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2798), - [anon_sym_has2] = ACTIONS(2798), - [anon_sym_not_DASHhas2] = ACTIONS(2798), - [anon_sym_starts_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), - [anon_sym_ends_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), - [anon_sym_EQ_EQ2] = ACTIONS(2798), - [anon_sym_BANG_EQ2] = ACTIONS(2798), - [anon_sym_LT2] = ACTIONS(2800), - [anon_sym_LT_EQ2] = ACTIONS(2798), - [anon_sym_GT_EQ2] = ACTIONS(2798), - [anon_sym_EQ_TILDE2] = ACTIONS(2798), - [anon_sym_BANG_TILDE2] = ACTIONS(2798), - [anon_sym_like2] = ACTIONS(2798), - [anon_sym_not_DASHlike2] = ACTIONS(2798), - [anon_sym_STAR_STAR2] = ACTIONS(2798), - [anon_sym_PLUS_PLUS2] = ACTIONS(2798), - [anon_sym_SLASH2] = ACTIONS(2800), - [anon_sym_mod2] = ACTIONS(2798), - [anon_sym_SLASH_SLASH2] = ACTIONS(2798), - [anon_sym_PLUS2] = ACTIONS(2800), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2798), - [anon_sym_bit_DASHxor2] = ACTIONS(2798), - [anon_sym_bit_DASHor2] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(1087), [sym_comment] = STATE(1080), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [ts_builtin_sym_end] = ACTIONS(1919), + [anon_sym_in] = ACTIONS(1919), + [sym__newline] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_err_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_GT_PIPE] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), + [anon_sym_GT2] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_STAR2] = ACTIONS(1921), + [anon_sym_and2] = ACTIONS(1919), + [anon_sym_xor2] = ACTIONS(1919), + [anon_sym_or2] = ACTIONS(1919), + [anon_sym_not_DASHin2] = ACTIONS(1919), + [anon_sym_has2] = ACTIONS(1919), + [anon_sym_not_DASHhas2] = ACTIONS(1919), + [anon_sym_starts_DASHwith2] = ACTIONS(1919), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1919), + [anon_sym_ends_DASHwith2] = ACTIONS(1919), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1919), + [anon_sym_EQ_EQ2] = ACTIONS(1919), + [anon_sym_BANG_EQ2] = ACTIONS(1919), + [anon_sym_LT2] = ACTIONS(1921), + [anon_sym_LT_EQ2] = ACTIONS(1919), + [anon_sym_GT_EQ2] = ACTIONS(1919), + [anon_sym_EQ_TILDE2] = ACTIONS(1919), + [anon_sym_BANG_TILDE2] = ACTIONS(1919), + [anon_sym_like2] = ACTIONS(1919), + [anon_sym_not_DASHlike2] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1919), + [anon_sym_STAR_STAR2] = ACTIONS(1919), + [anon_sym_PLUS_PLUS2] = ACTIONS(1919), + [anon_sym_SLASH2] = ACTIONS(1921), + [anon_sym_mod2] = ACTIONS(1919), + [anon_sym_SLASH_SLASH2] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1921), + [anon_sym_bit_DASHshl2] = ACTIONS(1919), + [anon_sym_bit_DASHshr2] = ACTIONS(1919), + [anon_sym_bit_DASHand2] = ACTIONS(1919), + [anon_sym_bit_DASHxor2] = ACTIONS(1919), + [anon_sym_bit_DASHor2] = ACTIONS(1919), + [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(1919), + [anon_sym_out_GT_GT] = ACTIONS(1919), + [anon_sym_e_GT_GT] = ACTIONS(1919), + [anon_sym_o_GT_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), + [sym__unquoted_pattern] = ACTIONS(1921), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1081)] = { - [sym_expr_unary] = STATE(2849), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_parenthesized] = STATE(2551), - [sym_val_range] = STATE(2849), - [sym__val_range] = STATE(4753), - [sym__value] = STATE(2849), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(2578), - [sym_val_variable] = STATE(2555), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(2367), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_unquoted] = STATE(2633), - [sym__unquoted_with_expr] = STATE(2870), - [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1081), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [anon_sym_null] = ACTIONS(2682), - [aux_sym_cmd_identifier_token3] = ACTIONS(2684), - [aux_sym_cmd_identifier_token4] = ACTIONS(2684), - [aux_sym_cmd_identifier_token5] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [aux_sym_expr_unary_token1] = ACTIONS(2696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), - [anon_sym_DOT_DOT_LT] = ACTIONS(2698), - [aux_sym__val_number_decimal_token1] = ACTIONS(2700), - [aux_sym__val_number_decimal_token2] = ACTIONS(2702), - [aux_sym__val_number_decimal_token3] = ACTIONS(2704), - [aux_sym__val_number_decimal_token4] = ACTIONS(2704), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2706), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [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_LPAREN2] = ACTIONS(1796), + [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), - [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(1062), + [aux_sym__repeat_newline] = STATE(1000), [sym_comment] = STATE(1082), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1083)] = { - [aux_sym__repeat_newline] = STATE(1089), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1083), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [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_LPAREN2] = ACTIONS(1796), + [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(1084)] = { - [aux_sym__repeat_newline] = STATE(1122), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1084), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [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_LPAREN2] = ACTIONS(1796), + [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(1085)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1002), [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1086)] = { - [aux_sym__repeat_newline] = STATE(1123), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1086), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [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_LPAREN2] = ACTIONS(1796), + [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(1087)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1087), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [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_LPAREN2] = ACTIONS(1796), + [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(1088)] = { - [aux_sym__repeat_newline] = STATE(1124), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1088), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [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_LPAREN2] = ACTIONS(1796), + [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(1089)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1089), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1090)] = { - [aux_sym__repeat_newline] = STATE(1125), + [aux_sym__repeat_newline] = STATE(1372), + [sym__expression_parenthesized] = STATE(4662), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2191), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_comment] = STATE(1090), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(2724), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(1091)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1091), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1092)] = { - [aux_sym__repeat_newline] = STATE(1126), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1092), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1093)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1093), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1094)] = { - [aux_sym__repeat_newline] = STATE(1091), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1094), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1095)] = { - [aux_sym__repeat_newline] = STATE(1065), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1095), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1096)] = { - [aux_sym__repeat_newline] = STATE(1093), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1096), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1097)] = { - [aux_sym__repeat_newline] = STATE(1100), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1097), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1098)] = { - [aux_sym__repeat_newline] = STATE(1068), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1098), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(2790), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2792), + [anon_sym_DASH2] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_STAR2] = ACTIONS(2792), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2790), + [anon_sym_has2] = ACTIONS(2790), + [anon_sym_not_DASHhas2] = ACTIONS(2790), + [anon_sym_starts_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), + [anon_sym_ends_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2792), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [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(2790), + [anon_sym_PLUS_PLUS2] = ACTIONS(2790), + [anon_sym_SLASH2] = ACTIONS(2792), + [anon_sym_mod2] = ACTIONS(2790), + [anon_sym_SLASH_SLASH2] = ACTIONS(2790), + [anon_sym_PLUS2] = ACTIONS(2792), + [anon_sym_bit_DASHshl2] = ACTIONS(2790), + [anon_sym_bit_DASHshr2] = ACTIONS(2790), + [anon_sym_bit_DASHand2] = ACTIONS(2790), + [anon_sym_bit_DASHxor2] = ACTIONS(2790), + [anon_sym_bit_DASHor2] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1099)] = { - [aux_sym__repeat_newline] = STATE(1127), + [sym_expr_unary] = STATE(3006), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_parenthesized] = STATE(2629), + [sym_val_range] = STATE(3006), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(3006), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(2658), + [sym_val_variable] = STATE(2645), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(2405), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(2682), + [sym__unquoted_with_expr] = STATE(3010), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(1099), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_true] = ACTIONS(2794), + [anon_sym_false] = ACTIONS(2794), + [anon_sym_null] = ACTIONS(2796), + [aux_sym_cmd_identifier_token3] = ACTIONS(2798), + [aux_sym_cmd_identifier_token4] = ACTIONS(2798), + [aux_sym_cmd_identifier_token5] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_DOLLAR] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_DOT_DOT] = ACTIONS(2808), + [aux_sym_expr_unary_token1] = ACTIONS(2810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2812), + [anon_sym_DOT_DOT_LT] = ACTIONS(2812), + [aux_sym__val_number_decimal_token1] = ACTIONS(2814), + [aux_sym__val_number_decimal_token2] = ACTIONS(2816), + [aux_sym__val_number_decimal_token3] = ACTIONS(2818), + [aux_sym__val_number_decimal_token4] = ACTIONS(2818), + [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(2820), + [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(2448), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1100)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym_expr_unary] = STATE(3021), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_parenthesized] = STATE(2630), + [sym_val_range] = STATE(3021), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(3021), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(2658), + [sym_val_variable] = STATE(2645), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(2405), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(2684), + [sym__unquoted_with_expr] = STATE(3024), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(1100), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [anon_sym_true] = ACTIONS(2794), + [anon_sym_false] = ACTIONS(2794), + [anon_sym_null] = ACTIONS(2796), + [aux_sym_cmd_identifier_token3] = ACTIONS(2798), + [aux_sym_cmd_identifier_token4] = ACTIONS(2798), + [aux_sym_cmd_identifier_token5] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_DOLLAR] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_DOT_DOT] = ACTIONS(2808), + [aux_sym_expr_unary_token1] = ACTIONS(2810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2812), + [anon_sym_DOT_DOT_LT] = ACTIONS(2812), + [aux_sym__val_number_decimal_token1] = ACTIONS(2814), + [aux_sym__val_number_decimal_token2] = ACTIONS(2816), + [aux_sym__val_number_decimal_token3] = ACTIONS(2818), + [aux_sym__val_number_decimal_token4] = ACTIONS(2818), + [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(2820), + [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(2448), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1101)] = { - [aux_sym__repeat_newline] = STATE(1128), + [sym_expr_unary] = STATE(3025), + [sym__expr_unary_minus] = STATE(1291), + [sym_expr_parenthesized] = STATE(2631), + [sym_val_range] = STATE(3025), + [sym__val_range] = STATE(4801), + [sym__value] = STATE(3025), + [sym_val_nothing] = STATE(1361), + [sym_val_bool] = STATE(2658), + [sym_val_variable] = STATE(2645), + [sym_val_cellpath] = STATE(1361), + [sym_val_number] = STATE(1361), + [sym__val_number_decimal] = STATE(2405), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1361), + [sym_val_filesize] = STATE(1361), + [sym_val_binary] = STATE(1361), + [sym_val_string] = STATE(1361), + [sym__raw_str] = STATE(505), + [sym__str_double_quotes] = STATE(505), + [sym__str_single_quotes] = STATE(505), + [sym__str_back_ticks] = STATE(505), + [sym_val_interpolated] = STATE(1361), + [sym__inter_single_quotes] = STATE(1327), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1361), + [sym_val_record] = STATE(1361), + [sym_val_table] = STATE(1361), + [sym_val_closure] = STATE(1361), + [sym_unquoted] = STATE(2686), + [sym__unquoted_with_expr] = STATE(3029), + [sym__unquoted_anonymous_prefix] = STATE(4801), [sym_comment] = STATE(1101), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_true] = ACTIONS(2794), + [anon_sym_false] = ACTIONS(2794), + [anon_sym_null] = ACTIONS(2796), + [aux_sym_cmd_identifier_token3] = ACTIONS(2798), + [aux_sym_cmd_identifier_token4] = ACTIONS(2798), + [aux_sym_cmd_identifier_token5] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_DOLLAR] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_DOT_DOT] = ACTIONS(2808), + [aux_sym_expr_unary_token1] = ACTIONS(2810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2812), + [anon_sym_DOT_DOT_LT] = ACTIONS(2812), + [aux_sym__val_number_decimal_token1] = ACTIONS(2814), + [aux_sym__val_number_decimal_token2] = ACTIONS(2816), + [aux_sym__val_number_decimal_token3] = ACTIONS(2818), + [aux_sym__val_number_decimal_token4] = ACTIONS(2818), + [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(2820), + [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(2448), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1102)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym__expr_parenthesized_immediate] = STATE(5511), [sym_comment] = STATE(1102), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [ts_builtin_sym_end] = ACTIONS(2140), + [anon_sym_in] = ACTIONS(2140), + [sym__newline] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_err_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_GT_PIPE] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), + [anon_sym_GT2] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2140), + [anon_sym_STAR2] = ACTIONS(2142), + [anon_sym_and2] = ACTIONS(2140), + [anon_sym_xor2] = ACTIONS(2140), + [anon_sym_or2] = ACTIONS(2140), + [anon_sym_not_DASHin2] = ACTIONS(2140), + [anon_sym_has2] = ACTIONS(2140), + [anon_sym_not_DASHhas2] = ACTIONS(2140), + [anon_sym_starts_DASHwith2] = ACTIONS(2140), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2140), + [anon_sym_ends_DASHwith2] = ACTIONS(2140), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2140), + [anon_sym_EQ_EQ2] = ACTIONS(2140), + [anon_sym_BANG_EQ2] = ACTIONS(2140), + [anon_sym_LT2] = ACTIONS(2142), + [anon_sym_LT_EQ2] = ACTIONS(2140), + [anon_sym_GT_EQ2] = ACTIONS(2140), + [anon_sym_EQ_TILDE2] = ACTIONS(2140), + [anon_sym_BANG_TILDE2] = ACTIONS(2140), + [anon_sym_like2] = ACTIONS(2140), + [anon_sym_not_DASHlike2] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2140), + [anon_sym_PLUS_PLUS2] = ACTIONS(2140), + [anon_sym_SLASH2] = ACTIONS(2142), + [anon_sym_mod2] = ACTIONS(2140), + [anon_sym_SLASH_SLASH2] = ACTIONS(2140), + [anon_sym_PLUS2] = ACTIONS(2142), + [anon_sym_bit_DASHshl2] = ACTIONS(2140), + [anon_sym_bit_DASHshr2] = ACTIONS(2140), + [anon_sym_bit_DASHand2] = ACTIONS(2140), + [anon_sym_bit_DASHxor2] = ACTIONS(2140), + [anon_sym_bit_DASHor2] = ACTIONS(2140), + [anon_sym_err_GT] = ACTIONS(2142), + [anon_sym_out_GT] = ACTIONS(2142), + [anon_sym_e_GT] = ACTIONS(2142), + [anon_sym_o_GT] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT] = ACTIONS(2142), + [anon_sym_err_GT_GT] = ACTIONS(2140), + [anon_sym_out_GT_GT] = ACTIONS(2140), + [anon_sym_e_GT_GT] = ACTIONS(2140), + [anon_sym_o_GT_GT] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2140), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1103)] = { - [aux_sym__repeat_newline] = STATE(1071), + [sym__expr_parenthesized_immediate] = STATE(5511), [sym_comment] = STATE(1103), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [ts_builtin_sym_end] = ACTIONS(2207), + [anon_sym_in] = ACTIONS(2207), + [sym__newline] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_err_GT_PIPE] = ACTIONS(2207), + [anon_sym_out_GT_PIPE] = ACTIONS(2207), + [anon_sym_e_GT_PIPE] = ACTIONS(2207), + [anon_sym_o_GT_PIPE] = ACTIONS(2207), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2207), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2207), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2207), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2207), + [anon_sym_GT2] = ACTIONS(2209), + [anon_sym_DASH2] = ACTIONS(2207), + [anon_sym_STAR2] = ACTIONS(2209), + [anon_sym_and2] = ACTIONS(2207), + [anon_sym_xor2] = ACTIONS(2207), + [anon_sym_or2] = ACTIONS(2207), + [anon_sym_not_DASHin2] = ACTIONS(2207), + [anon_sym_has2] = ACTIONS(2207), + [anon_sym_not_DASHhas2] = ACTIONS(2207), + [anon_sym_starts_DASHwith2] = ACTIONS(2207), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2207), + [anon_sym_ends_DASHwith2] = ACTIONS(2207), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2207), + [anon_sym_EQ_EQ2] = ACTIONS(2207), + [anon_sym_BANG_EQ2] = ACTIONS(2207), + [anon_sym_LT2] = ACTIONS(2209), + [anon_sym_LT_EQ2] = ACTIONS(2207), + [anon_sym_GT_EQ2] = ACTIONS(2207), + [anon_sym_EQ_TILDE2] = ACTIONS(2207), + [anon_sym_BANG_TILDE2] = ACTIONS(2207), + [anon_sym_like2] = ACTIONS(2207), + [anon_sym_not_DASHlike2] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2207), + [anon_sym_PLUS_PLUS2] = ACTIONS(2207), + [anon_sym_SLASH2] = ACTIONS(2209), + [anon_sym_mod2] = ACTIONS(2207), + [anon_sym_SLASH_SLASH2] = ACTIONS(2207), + [anon_sym_PLUS2] = ACTIONS(2209), + [anon_sym_bit_DASHshl2] = ACTIONS(2207), + [anon_sym_bit_DASHshr2] = ACTIONS(2207), + [anon_sym_bit_DASHand2] = ACTIONS(2207), + [anon_sym_bit_DASHxor2] = ACTIONS(2207), + [anon_sym_bit_DASHor2] = ACTIONS(2207), + [anon_sym_err_GT] = ACTIONS(2209), + [anon_sym_out_GT] = ACTIONS(2209), + [anon_sym_e_GT] = ACTIONS(2209), + [anon_sym_o_GT] = ACTIONS(2209), + [anon_sym_err_PLUSout_GT] = ACTIONS(2209), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2209), + [anon_sym_o_PLUSe_GT] = ACTIONS(2209), + [anon_sym_e_PLUSo_GT] = ACTIONS(2209), + [anon_sym_err_GT_GT] = ACTIONS(2207), + [anon_sym_out_GT_GT] = ACTIONS(2207), + [anon_sym_e_GT_GT] = ACTIONS(2207), + [anon_sym_o_GT_GT] = ACTIONS(2207), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2207), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2207), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2207), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2207), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1104)] = { - [aux_sym__repeat_newline] = STATE(1129), + [aux_sym__repeat_newline] = STATE(1004), [sym_comment] = STATE(1104), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1105)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym__expr_parenthesized_immediate] = STATE(5511), [sym_comment] = STATE(1105), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [ts_builtin_sym_end] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [sym__newline] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_err_GT_PIPE] = ACTIONS(2219), + [anon_sym_out_GT_PIPE] = ACTIONS(2219), + [anon_sym_e_GT_PIPE] = ACTIONS(2219), + [anon_sym_o_GT_PIPE] = ACTIONS(2219), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2219), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2219), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2219), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2219), + [anon_sym_GT2] = ACTIONS(2221), + [anon_sym_DASH2] = ACTIONS(2219), + [anon_sym_STAR2] = ACTIONS(2221), + [anon_sym_and2] = ACTIONS(2219), + [anon_sym_xor2] = ACTIONS(2219), + [anon_sym_or2] = ACTIONS(2219), + [anon_sym_not_DASHin2] = ACTIONS(2219), + [anon_sym_has2] = ACTIONS(2219), + [anon_sym_not_DASHhas2] = ACTIONS(2219), + [anon_sym_starts_DASHwith2] = ACTIONS(2219), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2219), + [anon_sym_ends_DASHwith2] = ACTIONS(2219), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2219), + [anon_sym_EQ_EQ2] = ACTIONS(2219), + [anon_sym_BANG_EQ2] = ACTIONS(2219), + [anon_sym_LT2] = ACTIONS(2221), + [anon_sym_LT_EQ2] = ACTIONS(2219), + [anon_sym_GT_EQ2] = ACTIONS(2219), + [anon_sym_EQ_TILDE2] = ACTIONS(2219), + [anon_sym_BANG_TILDE2] = ACTIONS(2219), + [anon_sym_like2] = ACTIONS(2219), + [anon_sym_not_DASHlike2] = ACTIONS(2219), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2219), + [anon_sym_PLUS_PLUS2] = ACTIONS(2219), + [anon_sym_SLASH2] = ACTIONS(2221), + [anon_sym_mod2] = ACTIONS(2219), + [anon_sym_SLASH_SLASH2] = ACTIONS(2219), + [anon_sym_PLUS2] = ACTIONS(2221), + [anon_sym_bit_DASHshl2] = ACTIONS(2219), + [anon_sym_bit_DASHshr2] = ACTIONS(2219), + [anon_sym_bit_DASHand2] = ACTIONS(2219), + [anon_sym_bit_DASHxor2] = ACTIONS(2219), + [anon_sym_bit_DASHor2] = ACTIONS(2219), + [anon_sym_err_GT] = ACTIONS(2221), + [anon_sym_out_GT] = ACTIONS(2221), + [anon_sym_e_GT] = ACTIONS(2221), + [anon_sym_o_GT] = ACTIONS(2221), + [anon_sym_err_PLUSout_GT] = ACTIONS(2221), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2221), + [anon_sym_o_PLUSe_GT] = ACTIONS(2221), + [anon_sym_e_PLUSo_GT] = ACTIONS(2221), + [anon_sym_err_GT_GT] = ACTIONS(2219), + [anon_sym_out_GT_GT] = ACTIONS(2219), + [anon_sym_e_GT_GT] = ACTIONS(2219), + [anon_sym_o_GT_GT] = ACTIONS(2219), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2219), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2219), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2219), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2219), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1106)] = { - [aux_sym__repeat_newline] = STATE(1130), + [sym__expr_parenthesized_immediate] = STATE(5511), [sym_comment] = STATE(1106), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_STAR2] = ACTIONS(2808), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2806), - [anon_sym_BANG_EQ2] = ACTIONS(2806), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2806), - [anon_sym_GT_EQ2] = ACTIONS(2806), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2806), - [anon_sym_PLUS_PLUS2] = ACTIONS(2806), - [anon_sym_SLASH2] = ACTIONS(2808), - [anon_sym_mod2] = ACTIONS(2806), - [anon_sym_SLASH_SLASH2] = ACTIONS(2806), - [anon_sym_PLUS2] = ACTIONS(2808), - [anon_sym_bit_DASHshl2] = ACTIONS(2806), - [anon_sym_bit_DASHshr2] = ACTIONS(2806), - [anon_sym_bit_DASHand2] = ACTIONS(2806), - [anon_sym_bit_DASHxor2] = ACTIONS(2806), - [anon_sym_bit_DASHor2] = ACTIONS(2806), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [ts_builtin_sym_end] = ACTIONS(2223), + [anon_sym_in] = ACTIONS(2223), + [sym__newline] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_err_GT_PIPE] = ACTIONS(2223), + [anon_sym_out_GT_PIPE] = ACTIONS(2223), + [anon_sym_e_GT_PIPE] = ACTIONS(2223), + [anon_sym_o_GT_PIPE] = ACTIONS(2223), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2223), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2223), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2223), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2223), + [anon_sym_GT2] = ACTIONS(2225), + [anon_sym_DASH2] = ACTIONS(2223), + [anon_sym_STAR2] = ACTIONS(2225), + [anon_sym_and2] = ACTIONS(2223), + [anon_sym_xor2] = ACTIONS(2223), + [anon_sym_or2] = ACTIONS(2223), + [anon_sym_not_DASHin2] = ACTIONS(2223), + [anon_sym_has2] = ACTIONS(2223), + [anon_sym_not_DASHhas2] = ACTIONS(2223), + [anon_sym_starts_DASHwith2] = ACTIONS(2223), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2223), + [anon_sym_ends_DASHwith2] = ACTIONS(2223), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2223), + [anon_sym_EQ_EQ2] = ACTIONS(2223), + [anon_sym_BANG_EQ2] = ACTIONS(2223), + [anon_sym_LT2] = ACTIONS(2225), + [anon_sym_LT_EQ2] = ACTIONS(2223), + [anon_sym_GT_EQ2] = ACTIONS(2223), + [anon_sym_EQ_TILDE2] = ACTIONS(2223), + [anon_sym_BANG_TILDE2] = ACTIONS(2223), + [anon_sym_like2] = ACTIONS(2223), + [anon_sym_not_DASHlike2] = ACTIONS(2223), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_STAR_STAR2] = ACTIONS(2223), + [anon_sym_PLUS_PLUS2] = ACTIONS(2223), + [anon_sym_SLASH2] = ACTIONS(2225), + [anon_sym_mod2] = ACTIONS(2223), + [anon_sym_SLASH_SLASH2] = ACTIONS(2223), + [anon_sym_PLUS2] = ACTIONS(2225), + [anon_sym_bit_DASHshl2] = ACTIONS(2223), + [anon_sym_bit_DASHshr2] = ACTIONS(2223), + [anon_sym_bit_DASHand2] = ACTIONS(2223), + [anon_sym_bit_DASHxor2] = ACTIONS(2223), + [anon_sym_bit_DASHor2] = ACTIONS(2223), + [anon_sym_err_GT] = ACTIONS(2225), + [anon_sym_out_GT] = ACTIONS(2225), + [anon_sym_e_GT] = ACTIONS(2225), + [anon_sym_o_GT] = ACTIONS(2225), + [anon_sym_err_PLUSout_GT] = ACTIONS(2225), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2225), + [anon_sym_o_PLUSe_GT] = ACTIONS(2225), + [anon_sym_e_PLUSo_GT] = ACTIONS(2225), + [anon_sym_err_GT_GT] = ACTIONS(2223), + [anon_sym_out_GT_GT] = ACTIONS(2223), + [anon_sym_e_GT_GT] = ACTIONS(2223), + [anon_sym_o_GT_GT] = ACTIONS(2223), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2223), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2223), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2223), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2223), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1107)] = { - [aux_sym__repeat_newline] = STATE(1132), + [aux_sym__repeat_newline] = STATE(1089), [sym_comment] = STATE(1107), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1108)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1108), - [anon_sym_in] = ACTIONS(2810), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2812), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2810), - [anon_sym_has2] = ACTIONS(2810), - [anon_sym_not_DASHhas2] = ACTIONS(2810), - [anon_sym_starts_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), - [anon_sym_ends_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), - [anon_sym_EQ_EQ2] = ACTIONS(2810), - [anon_sym_BANG_EQ2] = ACTIONS(2810), - [anon_sym_LT2] = ACTIONS(2812), - [anon_sym_LT_EQ2] = ACTIONS(2810), - [anon_sym_GT_EQ2] = ACTIONS(2810), - [anon_sym_EQ_TILDE2] = ACTIONS(2810), - [anon_sym_BANG_TILDE2] = ACTIONS(2810), - [anon_sym_like2] = ACTIONS(2810), - [anon_sym_not_DASHlike2] = ACTIONS(2810), - [anon_sym_STAR_STAR2] = ACTIONS(2810), - [anon_sym_PLUS_PLUS2] = ACTIONS(2810), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2810), - [anon_sym_bit_DASHshr2] = ACTIONS(2810), - [anon_sym_bit_DASHand2] = ACTIONS(2810), - [anon_sym_bit_DASHxor2] = ACTIONS(2810), - [anon_sym_bit_DASHor2] = ACTIONS(2810), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1109)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1109), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [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(1110)] = { - [aux_sym__repeat_newline] = STATE(1133), + [sym__expr_parenthesized_immediate] = STATE(5071), [sym_comment] = STATE(1110), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [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_LPAREN2] = ACTIONS(1796), + [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(1111)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1091), [sym_comment] = STATE(1111), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1112)] = { - [aux_sym__repeat_newline] = STATE(1134), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1112), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [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(1113)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1092), [sym_comment] = STATE(1113), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1114)] = { - [aux_sym__repeat_newline] = STATE(1074), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1114), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [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(1115)] = { - [aux_sym__repeat_newline] = STATE(1135), + [aux_sym__repeat_newline] = STATE(1093), [sym_comment] = STATE(1115), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1116)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1116), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [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(1117)] = { - [aux_sym__repeat_newline] = STATE(986), + [aux_sym__repeat_newline] = STATE(1094), [sym_comment] = STATE(1117), - [anon_sym_in] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_err_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_GT_PIPE] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_GT2] = ACTIONS(2352), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_STAR2] = ACTIONS(2352), - [anon_sym_and2] = ACTIONS(2350), - [anon_sym_xor2] = ACTIONS(2350), - [anon_sym_or2] = ACTIONS(2350), - [anon_sym_not_DASHin2] = ACTIONS(2350), - [anon_sym_has2] = ACTIONS(2350), - [anon_sym_not_DASHhas2] = ACTIONS(2350), - [anon_sym_starts_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), - [anon_sym_ends_DASHwith2] = ACTIONS(2350), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), - [anon_sym_EQ_EQ2] = ACTIONS(2350), - [anon_sym_BANG_EQ2] = ACTIONS(2350), - [anon_sym_LT2] = ACTIONS(2352), - [anon_sym_LT_EQ2] = ACTIONS(2350), - [anon_sym_GT_EQ2] = ACTIONS(2350), - [anon_sym_EQ_TILDE2] = ACTIONS(2350), - [anon_sym_BANG_TILDE2] = ACTIONS(2350), - [anon_sym_like2] = ACTIONS(2350), - [anon_sym_not_DASHlike2] = ACTIONS(2350), - [anon_sym_STAR_STAR2] = ACTIONS(2350), - [anon_sym_PLUS_PLUS2] = ACTIONS(2350), - [anon_sym_SLASH2] = ACTIONS(2352), - [anon_sym_mod2] = ACTIONS(2350), - [anon_sym_SLASH_SLASH2] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2352), - [anon_sym_bit_DASHshl2] = ACTIONS(2350), - [anon_sym_bit_DASHshr2] = ACTIONS(2350), - [anon_sym_bit_DASHand2] = ACTIONS(2350), - [anon_sym_bit_DASHxor2] = ACTIONS(2350), - [anon_sym_bit_DASHor2] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1118)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1118), - [anon_sym_in] = ACTIONS(2802), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_GT2] = ACTIONS(2804), - [anon_sym_DASH2] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_STAR2] = ACTIONS(2804), - [anon_sym_and2] = ACTIONS(2802), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2802), - [anon_sym_not_DASHin2] = ACTIONS(2802), - [anon_sym_has2] = ACTIONS(2802), - [anon_sym_not_DASHhas2] = ACTIONS(2802), - [anon_sym_starts_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), - [anon_sym_ends_DASHwith2] = ACTIONS(2802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), - [anon_sym_EQ_EQ2] = ACTIONS(2802), - [anon_sym_BANG_EQ2] = ACTIONS(2802), - [anon_sym_LT2] = ACTIONS(2804), - [anon_sym_LT_EQ2] = ACTIONS(2802), - [anon_sym_GT_EQ2] = ACTIONS(2802), - [anon_sym_EQ_TILDE2] = ACTIONS(2802), - [anon_sym_BANG_TILDE2] = ACTIONS(2802), - [anon_sym_like2] = ACTIONS(2802), - [anon_sym_not_DASHlike2] = ACTIONS(2802), - [anon_sym_STAR_STAR2] = ACTIONS(2802), - [anon_sym_PLUS_PLUS2] = ACTIONS(2802), - [anon_sym_SLASH2] = ACTIONS(2804), - [anon_sym_mod2] = ACTIONS(2802), - [anon_sym_SLASH_SLASH2] = ACTIONS(2802), - [anon_sym_PLUS2] = ACTIONS(2804), - [anon_sym_bit_DASHshl2] = ACTIONS(2802), - [anon_sym_bit_DASHshr2] = ACTIONS(2802), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2802), - [anon_sym_err_GT] = ACTIONS(2804), - [anon_sym_out_GT] = ACTIONS(2804), - [anon_sym_e_GT] = ACTIONS(2804), - [anon_sym_o_GT] = ACTIONS(2804), - [anon_sym_err_PLUSout_GT] = ACTIONS(2804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), - [anon_sym_o_PLUSe_GT] = ACTIONS(2804), - [anon_sym_e_PLUSo_GT] = ACTIONS(2804), - [anon_sym_err_GT_GT] = ACTIONS(2802), - [anon_sym_out_GT_GT] = ACTIONS(2802), - [anon_sym_e_GT_GT] = ACTIONS(2802), - [anon_sym_o_GT_GT] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), + [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(1119)] = { - [aux_sym__repeat_newline] = STATE(1358), - [sym__expression_parenthesized] = STATE(4510), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2190), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [aux_sym__repeat_newline] = STATE(1095), [sym_comment] = STATE(1119), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(2792), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1120)] = { - [sym__expr_parenthesized_immediate] = STATE(5483), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1120), - [ts_builtin_sym_end] = ACTIONS(2140), - [anon_sym_in] = ACTIONS(2140), - [sym__newline] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_err_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_GT_PIPE] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), - [anon_sym_GT2] = ACTIONS(2142), - [anon_sym_DASH2] = ACTIONS(2140), - [anon_sym_STAR2] = ACTIONS(2142), - [anon_sym_and2] = ACTIONS(2140), - [anon_sym_xor2] = ACTIONS(2140), - [anon_sym_or2] = ACTIONS(2140), - [anon_sym_not_DASHin2] = ACTIONS(2140), - [anon_sym_has2] = ACTIONS(2140), - [anon_sym_not_DASHhas2] = ACTIONS(2140), - [anon_sym_starts_DASHwith2] = ACTIONS(2140), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2140), - [anon_sym_ends_DASHwith2] = ACTIONS(2140), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2140), - [anon_sym_EQ_EQ2] = ACTIONS(2140), - [anon_sym_BANG_EQ2] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LT_EQ2] = ACTIONS(2140), - [anon_sym_GT_EQ2] = ACTIONS(2140), - [anon_sym_EQ_TILDE2] = ACTIONS(2140), - [anon_sym_BANG_TILDE2] = ACTIONS(2140), - [anon_sym_like2] = ACTIONS(2140), - [anon_sym_not_DASHlike2] = ACTIONS(2140), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2140), - [anon_sym_PLUS_PLUS2] = ACTIONS(2140), - [anon_sym_SLASH2] = ACTIONS(2142), - [anon_sym_mod2] = ACTIONS(2140), - [anon_sym_SLASH_SLASH2] = ACTIONS(2140), - [anon_sym_PLUS2] = ACTIONS(2142), - [anon_sym_bit_DASHshl2] = ACTIONS(2140), - [anon_sym_bit_DASHshr2] = ACTIONS(2140), - [anon_sym_bit_DASHand2] = ACTIONS(2140), - [anon_sym_bit_DASHxor2] = ACTIONS(2140), - [anon_sym_bit_DASHor2] = ACTIONS(2140), - [anon_sym_err_GT] = ACTIONS(2142), - [anon_sym_out_GT] = ACTIONS(2142), - [anon_sym_e_GT] = ACTIONS(2142), - [anon_sym_o_GT] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT] = ACTIONS(2142), - [anon_sym_err_GT_GT] = ACTIONS(2140), - [anon_sym_out_GT_GT] = ACTIONS(2140), - [anon_sym_e_GT_GT] = ACTIONS(2140), - [anon_sym_o_GT_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2140), + [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(1121)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym__match_pattern_expression] = STATE(4356), - [sym__match_pattern_value] = STATE(4686), - [sym__match_pattern_list_body] = STATE(4700), - [sym__match_pattern_list] = STATE(4805), - [sym__match_pattern_rest] = STATE(5289), - [sym__match_pattern_record] = STATE(4754), - [sym_expr_parenthesized] = STATE(3964), - [sym_val_range] = STATE(4686), - [sym__val_range] = STATE(5330), - [sym_val_nothing] = STATE(4754), - [sym_val_bool] = STATE(4347), - [sym_val_variable] = STATE(3965), - [sym_val_number] = STATE(4754), - [sym__val_number_decimal] = STATE(3795), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4754), - [sym_val_filesize] = STATE(4754), - [sym_val_binary] = STATE(4754), - [sym_val_string] = STATE(4754), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_list] = STATE(5121), - [sym__table_head] = STATE(3912), - [sym_val_table] = STATE(4754), - [sym__unquoted_in_list] = STATE(4356), - [sym__unquoted_anonymous_prefix] = STATE(5330), + [aux_sym__repeat_newline] = STATE(1007), [sym_comment] = STATE(1121), - [aux_sym__types_body_repeat1] = STATE(1407), - [aux_sym_parameter_repeat2] = STATE(4311), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1386), - [aux_sym_cmd_identifier_token3] = ACTIONS(1388), - [aux_sym_cmd_identifier_token4] = ACTIONS(1388), - [aux_sym_cmd_identifier_token5] = ACTIONS(1388), - [sym__newline] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_RBRACK] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_DOT_DOT] = ACTIONS(2816), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1408), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_decimal_token4] = ACTIONS(1412), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(2724), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(1122)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1096), [sym_comment] = STATE(1122), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1123)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1123), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [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(1124)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1124), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1125)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1125), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [ts_builtin_sym_end] = ACTIONS(2570), + [anon_sym_in] = ACTIONS(2570), + [sym__newline] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_err_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_GT_PIPE] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), + [anon_sym_GT2] = ACTIONS(2572), + [anon_sym_DASH2] = ACTIONS(2570), + [anon_sym_STAR2] = ACTIONS(2572), + [anon_sym_and2] = ACTIONS(2570), + [anon_sym_xor2] = ACTIONS(2570), + [anon_sym_or2] = ACTIONS(2570), + [anon_sym_not_DASHin2] = ACTIONS(2570), + [anon_sym_has2] = ACTIONS(2570), + [anon_sym_not_DASHhas2] = ACTIONS(2570), + [anon_sym_starts_DASHwith2] = ACTIONS(2570), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2570), + [anon_sym_ends_DASHwith2] = ACTIONS(2570), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2570), + [anon_sym_EQ_EQ2] = ACTIONS(2570), + [anon_sym_BANG_EQ2] = ACTIONS(2570), + [anon_sym_LT2] = ACTIONS(2572), + [anon_sym_LT_EQ2] = ACTIONS(2570), + [anon_sym_GT_EQ2] = ACTIONS(2570), + [anon_sym_EQ_TILDE2] = ACTIONS(2570), + [anon_sym_BANG_TILDE2] = ACTIONS(2570), + [anon_sym_like2] = ACTIONS(2570), + [anon_sym_not_DASHlike2] = ACTIONS(2570), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_STAR_STAR2] = ACTIONS(2570), + [anon_sym_PLUS_PLUS2] = ACTIONS(2570), + [anon_sym_SLASH2] = ACTIONS(2572), + [anon_sym_mod2] = ACTIONS(2570), + [anon_sym_SLASH_SLASH2] = ACTIONS(2570), + [anon_sym_PLUS2] = ACTIONS(2572), + [anon_sym_bit_DASHshl2] = ACTIONS(2570), + [anon_sym_bit_DASHshr2] = ACTIONS(2570), + [anon_sym_bit_DASHand2] = ACTIONS(2570), + [anon_sym_bit_DASHxor2] = ACTIONS(2570), + [anon_sym_bit_DASHor2] = ACTIONS(2570), + [anon_sym_err_GT] = ACTIONS(2572), + [anon_sym_out_GT] = ACTIONS(2572), + [anon_sym_e_GT] = ACTIONS(2572), + [anon_sym_o_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT] = ACTIONS(2572), + [anon_sym_err_GT_GT] = ACTIONS(2570), + [anon_sym_out_GT_GT] = ACTIONS(2570), + [anon_sym_e_GT_GT] = ACTIONS(2570), + [anon_sym_o_GT_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), + [sym__unquoted_pattern] = ACTIONS(2572), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1126)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1126), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [ts_builtin_sym_end] = ACTIONS(2598), + [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_GT2] = ACTIONS(2600), + [anon_sym_DASH2] = 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_LPAREN2] = ACTIONS(2602), + [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), + [sym__unquoted_pattern] = ACTIONS(2604), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1127)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1127), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [ts_builtin_sym_end] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1714), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_LPAREN2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1714), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [sym__unquoted_pattern] = ACTIONS(2580), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1128)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1097), [sym_comment] = STATE(1128), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1129)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1129), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [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(1130)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1098), [sym_comment] = STATE(1130), - [anon_sym_in] = ACTIONS(2818), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2820), - [anon_sym_DASH2] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_STAR2] = ACTIONS(2820), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2818), - [anon_sym_has2] = ACTIONS(2818), - [anon_sym_not_DASHhas2] = ACTIONS(2818), - [anon_sym_starts_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), - [anon_sym_ends_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), - [anon_sym_EQ_EQ2] = ACTIONS(2818), - [anon_sym_BANG_EQ2] = ACTIONS(2818), - [anon_sym_LT2] = ACTIONS(2820), - [anon_sym_LT_EQ2] = ACTIONS(2818), - [anon_sym_GT_EQ2] = ACTIONS(2818), - [anon_sym_EQ_TILDE2] = ACTIONS(2818), - [anon_sym_BANG_TILDE2] = ACTIONS(2818), - [anon_sym_like2] = ACTIONS(2818), - [anon_sym_not_DASHlike2] = ACTIONS(2818), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2820), - [anon_sym_mod2] = ACTIONS(2818), - [anon_sym_SLASH_SLASH2] = ACTIONS(2818), - [anon_sym_PLUS2] = ACTIONS(2820), - [anon_sym_bit_DASHshl2] = ACTIONS(2818), - [anon_sym_bit_DASHshr2] = ACTIONS(2818), - [anon_sym_bit_DASHand2] = ACTIONS(2818), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2818), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2822), + [sym__newline] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2824), + [anon_sym_DASH2] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_STAR2] = ACTIONS(2824), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2822), + [anon_sym_has2] = ACTIONS(2822), + [anon_sym_not_DASHhas2] = ACTIONS(2822), + [anon_sym_starts_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), + [anon_sym_ends_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), + [anon_sym_EQ_EQ2] = ACTIONS(2822), + [anon_sym_BANG_EQ2] = ACTIONS(2822), + [anon_sym_LT2] = ACTIONS(2824), + [anon_sym_LT_EQ2] = ACTIONS(2822), + [anon_sym_GT_EQ2] = ACTIONS(2822), + [anon_sym_EQ_TILDE2] = ACTIONS(2822), + [anon_sym_BANG_TILDE2] = ACTIONS(2822), + [anon_sym_like2] = ACTIONS(2822), + [anon_sym_not_DASHlike2] = ACTIONS(2822), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2824), + [anon_sym_mod2] = ACTIONS(2822), + [anon_sym_SLASH_SLASH2] = ACTIONS(2822), + [anon_sym_PLUS2] = ACTIONS(2824), + [anon_sym_bit_DASHshl2] = ACTIONS(2822), + [anon_sym_bit_DASHshr2] = ACTIONS(2822), + [anon_sym_bit_DASHand2] = ACTIONS(2822), + [anon_sym_bit_DASHxor2] = ACTIONS(2822), + [anon_sym_bit_DASHor2] = ACTIONS(2822), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1131)] = { - [aux_sym__repeat_newline] = STATE(4461), - [sym__match_pattern_expression] = STATE(4356), - [sym__match_pattern_value] = STATE(4686), - [sym__match_pattern_list_body] = STATE(4803), - [sym__match_pattern_list] = STATE(4805), - [sym__match_pattern_rest] = STATE(5278), - [sym__match_pattern_record] = STATE(4754), - [sym_expr_parenthesized] = STATE(3964), - [sym_val_range] = STATE(4686), - [sym__val_range] = STATE(5330), - [sym_val_nothing] = STATE(4754), - [sym_val_bool] = STATE(4347), - [sym_val_variable] = STATE(3965), - [sym_val_number] = STATE(4754), - [sym__val_number_decimal] = STATE(3795), - [sym__val_number] = STATE(4628), - [sym_val_duration] = STATE(4754), - [sym_val_filesize] = STATE(4754), - [sym_val_binary] = STATE(4754), - [sym_val_string] = STATE(4754), - [sym__raw_str] = STATE(3725), - [sym__str_double_quotes] = STATE(3725), - [sym__str_single_quotes] = STATE(3725), - [sym__str_back_ticks] = STATE(3725), - [sym_val_list] = STATE(5121), - [sym__table_head] = STATE(3916), - [sym_val_table] = STATE(4754), - [sym__unquoted_in_list] = STATE(4356), - [sym__unquoted_anonymous_prefix] = STATE(5330), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1131), - [aux_sym__types_body_repeat1] = STATE(1407), - [aux_sym_parameter_repeat2] = STATE(4311), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1386), - [aux_sym_cmd_identifier_token3] = ACTIONS(1388), - [aux_sym_cmd_identifier_token4] = ACTIONS(1388), - [aux_sym_cmd_identifier_token5] = ACTIONS(1388), - [sym__newline] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_RBRACK] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1408), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_decimal_token4] = ACTIONS(1412), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(2724), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(1132)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1132), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1133)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1133), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_in] = ACTIONS(2826), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2828), + [anon_sym_DASH2] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_STAR2] = ACTIONS(2828), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2826), + [anon_sym_has2] = ACTIONS(2826), + [anon_sym_not_DASHhas2] = ACTIONS(2826), + [anon_sym_starts_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), + [anon_sym_ends_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), + [anon_sym_EQ_EQ2] = ACTIONS(2826), + [anon_sym_BANG_EQ2] = ACTIONS(2826), + [anon_sym_LT2] = ACTIONS(2828), + [anon_sym_LT_EQ2] = ACTIONS(2826), + [anon_sym_GT_EQ2] = ACTIONS(2826), + [anon_sym_EQ_TILDE2] = ACTIONS(2826), + [anon_sym_BANG_TILDE2] = ACTIONS(2826), + [anon_sym_like2] = ACTIONS(2826), + [anon_sym_not_DASHlike2] = ACTIONS(2826), + [anon_sym_STAR_STAR2] = ACTIONS(2826), + [anon_sym_PLUS_PLUS2] = ACTIONS(2826), + [anon_sym_SLASH2] = ACTIONS(2828), + [anon_sym_mod2] = ACTIONS(2826), + [anon_sym_SLASH_SLASH2] = ACTIONS(2826), + [anon_sym_PLUS2] = ACTIONS(2828), + [anon_sym_bit_DASHshl2] = ACTIONS(2826), + [anon_sym_bit_DASHshr2] = ACTIONS(2826), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2826), + [anon_sym_bit_DASHor2] = ACTIONS(2826), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [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(1135)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1135), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [ts_builtin_sym_end] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_LPAREN2] = ACTIONS(2094), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), + [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1136)] = { - [sym__expr_parenthesized_immediate] = STATE(5483), [sym_comment] = STATE(1136), - [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(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [ts_builtin_sym_end] = ACTIONS(1216), + [anon_sym_in] = ACTIONS(1216), + [sym__newline] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_err_GT_PIPE] = ACTIONS(1216), + [anon_sym_out_GT_PIPE] = ACTIONS(1216), + [anon_sym_e_GT_PIPE] = ACTIONS(1216), + [anon_sym_o_GT_PIPE] = ACTIONS(1216), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1216), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1216), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1216), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1216), + [anon_sym_GT2] = ACTIONS(1218), + [anon_sym_DASH2] = ACTIONS(1216), + [anon_sym_STAR2] = ACTIONS(1218), + [anon_sym_and2] = ACTIONS(1216), + [anon_sym_xor2] = ACTIONS(1216), + [anon_sym_or2] = ACTIONS(1216), + [anon_sym_not_DASHin2] = ACTIONS(1216), + [anon_sym_has2] = ACTIONS(1216), + [anon_sym_not_DASHhas2] = ACTIONS(1216), + [anon_sym_starts_DASHwith2] = ACTIONS(1216), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1216), + [anon_sym_ends_DASHwith2] = ACTIONS(1216), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1216), + [anon_sym_EQ_EQ2] = ACTIONS(1216), + [anon_sym_BANG_EQ2] = ACTIONS(1216), + [anon_sym_LT2] = ACTIONS(1218), + [anon_sym_LT_EQ2] = ACTIONS(1216), + [anon_sym_GT_EQ2] = ACTIONS(1216), + [anon_sym_EQ_TILDE2] = ACTIONS(1216), + [anon_sym_BANG_TILDE2] = ACTIONS(1216), + [anon_sym_like2] = ACTIONS(1216), + [anon_sym_not_DASHlike2] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(2606), + [anon_sym_STAR_STAR2] = ACTIONS(1216), + [anon_sym_PLUS_PLUS2] = ACTIONS(1216), + [anon_sym_SLASH2] = ACTIONS(1218), + [anon_sym_mod2] = ACTIONS(1216), + [anon_sym_SLASH_SLASH2] = ACTIONS(1216), + [anon_sym_PLUS2] = ACTIONS(1218), + [anon_sym_bit_DASHshl2] = ACTIONS(1216), + [anon_sym_bit_DASHshr2] = ACTIONS(1216), + [anon_sym_bit_DASHand2] = ACTIONS(1216), + [anon_sym_bit_DASHxor2] = ACTIONS(1216), + [anon_sym_bit_DASHor2] = ACTIONS(1216), + [anon_sym_err_GT] = ACTIONS(1218), + [anon_sym_out_GT] = ACTIONS(1218), + [anon_sym_e_GT] = ACTIONS(1218), + [anon_sym_o_GT] = ACTIONS(1218), + [anon_sym_err_PLUSout_GT] = ACTIONS(1218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1218), + [anon_sym_o_PLUSe_GT] = ACTIONS(1218), + [anon_sym_e_PLUSo_GT] = ACTIONS(1218), + [anon_sym_err_GT_GT] = ACTIONS(1216), + [anon_sym_out_GT_GT] = ACTIONS(1216), + [anon_sym_e_GT_GT] = ACTIONS(1216), + [anon_sym_o_GT_GT] = ACTIONS(1216), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1216), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1216), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1216), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1216), + [sym__unquoted_pattern] = ACTIONS(2608), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1137)] = { - [aux_sym__repeat_newline] = STATE(1358), - [sym__expression_parenthesized] = STATE(4635), - [sym_expr_unary] = STATE(1254), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary_parenthesized] = STATE(1254), - [sym__expr_binary_expression_parenthesized] = STATE(2190), - [sym_expr_parenthesized] = STATE(739), - [sym_val_range] = STATE(1254), - [sym__value] = STATE(1254), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), [sym_comment] = STATE(1137), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(2792), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2008), - [aux_sym__val_number_decimal_token3] = ACTIONS(2010), - [aux_sym__val_number_decimal_token4] = ACTIONS(2010), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [ts_builtin_sym_end] = ACTIONS(1234), + [anon_sym_in] = ACTIONS(1234), + [sym__newline] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_err_GT_PIPE] = ACTIONS(1234), + [anon_sym_out_GT_PIPE] = ACTIONS(1234), + [anon_sym_e_GT_PIPE] = ACTIONS(1234), + [anon_sym_o_GT_PIPE] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1234), + [anon_sym_GT2] = ACTIONS(1226), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1226), + [anon_sym_and2] = ACTIONS(1234), + [anon_sym_xor2] = ACTIONS(1234), + [anon_sym_or2] = ACTIONS(1234), + [anon_sym_not_DASHin2] = ACTIONS(1234), + [anon_sym_has2] = ACTIONS(1234), + [anon_sym_not_DASHhas2] = ACTIONS(1234), + [anon_sym_starts_DASHwith2] = ACTIONS(1234), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1234), + [anon_sym_ends_DASHwith2] = ACTIONS(1234), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1234), + [anon_sym_EQ_EQ2] = ACTIONS(1234), + [anon_sym_BANG_EQ2] = ACTIONS(1234), + [anon_sym_LT2] = ACTIONS(1226), + [anon_sym_LT_EQ2] = ACTIONS(1234), + [anon_sym_GT_EQ2] = ACTIONS(1234), + [anon_sym_EQ_TILDE2] = ACTIONS(1234), + [anon_sym_BANG_TILDE2] = ACTIONS(1234), + [anon_sym_like2] = ACTIONS(1234), + [anon_sym_not_DASHlike2] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(2606), + [anon_sym_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1226), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1226), + [anon_sym_bit_DASHshl2] = ACTIONS(1234), + [anon_sym_bit_DASHshr2] = ACTIONS(1234), + [anon_sym_bit_DASHand2] = ACTIONS(1234), + [anon_sym_bit_DASHxor2] = ACTIONS(1234), + [anon_sym_bit_DASHor2] = ACTIONS(1234), + [anon_sym_err_GT] = ACTIONS(1226), + [anon_sym_out_GT] = ACTIONS(1226), + [anon_sym_e_GT] = ACTIONS(1226), + [anon_sym_o_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT] = ACTIONS(1226), + [anon_sym_err_GT_GT] = ACTIONS(1234), + [anon_sym_out_GT_GT] = ACTIONS(1234), + [anon_sym_e_GT_GT] = ACTIONS(1234), + [anon_sym_o_GT_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1234), + [sym__unquoted_pattern] = ACTIONS(2608), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1138)] = { - [sym__expr_parenthesized_immediate] = STATE(4973), + [aux_sym__repeat_newline] = STATE(1124), [sym_comment] = STATE(1138), - [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(1818), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(1105), - [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_err_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_GT_PIPE] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_GT2] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_STAR2] = ACTIONS(2383), - [anon_sym_and2] = ACTIONS(2381), - [anon_sym_xor2] = ACTIONS(2381), - [anon_sym_or2] = ACTIONS(2381), - [anon_sym_not_DASHin2] = ACTIONS(2381), - [anon_sym_has2] = ACTIONS(2381), - [anon_sym_not_DASHhas2] = ACTIONS(2381), - [anon_sym_starts_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), - [anon_sym_ends_DASHwith2] = ACTIONS(2381), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), - [anon_sym_EQ_EQ2] = ACTIONS(2381), - [anon_sym_BANG_EQ2] = ACTIONS(2381), - [anon_sym_LT2] = ACTIONS(2383), - [anon_sym_LT_EQ2] = ACTIONS(2381), - [anon_sym_GT_EQ2] = ACTIONS(2381), - [anon_sym_EQ_TILDE2] = ACTIONS(2381), - [anon_sym_BANG_TILDE2] = ACTIONS(2381), - [anon_sym_like2] = ACTIONS(2381), - [anon_sym_not_DASHlike2] = ACTIONS(2381), - [anon_sym_STAR_STAR2] = ACTIONS(2381), - [anon_sym_PLUS_PLUS2] = ACTIONS(2381), - [anon_sym_SLASH2] = ACTIONS(2383), - [anon_sym_mod2] = ACTIONS(2381), - [anon_sym_SLASH_SLASH2] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_bit_DASHshl2] = ACTIONS(2381), - [anon_sym_bit_DASHshr2] = ACTIONS(2381), - [anon_sym_bit_DASHand2] = ACTIONS(2381), - [anon_sym_bit_DASHxor2] = ACTIONS(2381), - [anon_sym_bit_DASHor2] = ACTIONS(2381), - [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(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1140)] = { - [sym__expression] = STATE(5035), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_comment] = STATE(1140), - [aux_sym_cmd_identifier_token2] = ACTIONS(2822), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = 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(1141)] = { - [aux_sym__repeat_newline] = STATE(485), - [sym_comment] = STATE(1141), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1142)] = { - [aux_sym__repeat_newline] = STATE(485), - [sym_comment] = STATE(1142), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1139)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(1139), + [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(1140)] = { + [aux_sym__repeat_newline] = STATE(1131), + [sym_comment] = STATE(1140), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1141)] = { + [aux_sym__repeat_newline] = STATE(4553), + [sym__match_pattern_expression] = STATE(4454), + [sym__match_pattern_value] = STATE(4911), + [sym__match_pattern_list_body] = STATE(4682), + [sym__match_pattern_list] = STATE(4912), + [sym__match_pattern_rest] = STATE(5214), + [sym__match_pattern_record] = STATE(4913), + [sym_expr_parenthesized] = STATE(4065), + [sym_val_range] = STATE(4911), + [sym__val_range] = STATE(5274), + [sym_val_nothing] = STATE(4913), + [sym_val_bool] = STATE(4509), + [sym_val_variable] = STATE(4066), + [sym_val_number] = STATE(4913), + [sym__val_number_decimal] = STATE(3770), + [sym__val_number] = STATE(4444), + [sym_val_duration] = STATE(4913), + [sym_val_filesize] = STATE(4913), + [sym_val_binary] = STATE(4913), + [sym_val_string] = STATE(4913), + [sym__raw_str] = STATE(3780), + [sym__str_double_quotes] = STATE(3780), + [sym__str_single_quotes] = STATE(3780), + [sym__str_back_ticks] = STATE(3780), + [sym_val_list] = STATE(5281), + [sym__table_head] = STATE(3913), + [sym_val_table] = STATE(4913), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_anonymous_prefix] = STATE(5274), + [sym_comment] = STATE(1141), + [aux_sym__types_body_repeat1] = STATE(1415), + [aux_sym_parameter_repeat2] = STATE(4219), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(1142)] = { + [sym_comment] = STATE(1142), + [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(1957), + [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(1963), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1143), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2784), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_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(1144)] = { - [aux_sym__repeat_newline] = STATE(1147), [sym_comment] = STATE(1144), - [anon_sym_in] = ACTIONS(2798), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2798), - [anon_sym_has2] = ACTIONS(2798), - [anon_sym_not_DASHhas2] = ACTIONS(2798), - [anon_sym_starts_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), - [anon_sym_ends_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2798), - [anon_sym_BANG_TILDE2] = ACTIONS(2798), - [anon_sym_like2] = ACTIONS(2798), - [anon_sym_not_DASHlike2] = ACTIONS(2798), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2798), - [anon_sym_bit_DASHxor2] = ACTIONS(2798), - [anon_sym_bit_DASHor2] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [ts_builtin_sym_end] = ACTIONS(1953), + [anon_sym_in] = ACTIONS(1953), + [sym__newline] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_err_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_GT_PIPE] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), + [anon_sym_GT2] = ACTIONS(1955), + [anon_sym_DASH2] = ACTIONS(1953), + [anon_sym_STAR2] = ACTIONS(1955), + [anon_sym_and2] = ACTIONS(1953), + [anon_sym_xor2] = ACTIONS(1953), + [anon_sym_or2] = ACTIONS(1953), + [anon_sym_not_DASHin2] = ACTIONS(1953), + [anon_sym_has2] = ACTIONS(1953), + [anon_sym_not_DASHhas2] = ACTIONS(1953), + [anon_sym_starts_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1953), + [anon_sym_ends_DASHwith2] = ACTIONS(1953), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1953), + [anon_sym_EQ_EQ2] = ACTIONS(1953), + [anon_sym_BANG_EQ2] = ACTIONS(1953), + [anon_sym_LT2] = ACTIONS(1955), + [anon_sym_LT_EQ2] = ACTIONS(1953), + [anon_sym_GT_EQ2] = ACTIONS(1953), + [anon_sym_EQ_TILDE2] = ACTIONS(1953), + [anon_sym_BANG_TILDE2] = ACTIONS(1953), + [anon_sym_like2] = ACTIONS(1953), + [anon_sym_not_DASHlike2] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1957), + [anon_sym_STAR_STAR2] = ACTIONS(1953), + [anon_sym_PLUS_PLUS2] = ACTIONS(1953), + [anon_sym_SLASH2] = ACTIONS(1955), + [anon_sym_mod2] = ACTIONS(1953), + [anon_sym_SLASH_SLASH2] = ACTIONS(1953), + [anon_sym_PLUS2] = ACTIONS(1955), + [anon_sym_bit_DASHshl2] = ACTIONS(1953), + [anon_sym_bit_DASHshr2] = ACTIONS(1953), + [anon_sym_bit_DASHand2] = ACTIONS(1953), + [anon_sym_bit_DASHxor2] = ACTIONS(1953), + [anon_sym_bit_DASHor2] = ACTIONS(1953), + [anon_sym_err_GT] = ACTIONS(1955), + [anon_sym_out_GT] = ACTIONS(1955), + [anon_sym_e_GT] = ACTIONS(1955), + [anon_sym_o_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT] = ACTIONS(1955), + [anon_sym_err_GT_GT] = ACTIONS(1953), + [anon_sym_out_GT_GT] = ACTIONS(1953), + [anon_sym_e_GT_GT] = ACTIONS(1953), + [anon_sym_o_GT_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), + [sym__unquoted_pattern] = ACTIONS(1963), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1145)] = { - [aux_sym__repeat_newline] = STATE(1245), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1145), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2806), - [anon_sym_bit_DASHxor2] = ACTIONS(2806), - [anon_sym_bit_DASHor2] = ACTIONS(2806), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2786), + [sym__newline] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_GT2] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2786), + [anon_sym_has2] = ACTIONS(2786), + [anon_sym_not_DASHhas2] = ACTIONS(2786), + [anon_sym_starts_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2786), + [anon_sym_ends_DASHwith2] = ACTIONS(2786), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2786), + [anon_sym_EQ_EQ2] = ACTIONS(2786), + [anon_sym_BANG_EQ2] = ACTIONS(2786), + [anon_sym_LT2] = ACTIONS(2788), + [anon_sym_LT_EQ2] = ACTIONS(2786), + [anon_sym_GT_EQ2] = ACTIONS(2786), + [anon_sym_EQ_TILDE2] = ACTIONS(2786), + [anon_sym_BANG_TILDE2] = ACTIONS(2786), + [anon_sym_like2] = ACTIONS(2786), + [anon_sym_not_DASHlike2] = ACTIONS(2786), + [anon_sym_STAR_STAR2] = ACTIONS(2786), + [anon_sym_PLUS_PLUS2] = ACTIONS(2786), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2786), + [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_PLUS2] = ACTIONS(2788), + [anon_sym_bit_DASHshl2] = ACTIONS(2786), + [anon_sym_bit_DASHshr2] = ACTIONS(2786), + [anon_sym_bit_DASHand2] = ACTIONS(2786), + [anon_sym_bit_DASHxor2] = ACTIONS(2786), + [anon_sym_bit_DASHor2] = ACTIONS(2786), + [anon_sym_err_GT] = ACTIONS(2788), + [anon_sym_out_GT] = ACTIONS(2788), + [anon_sym_e_GT] = ACTIONS(2788), + [anon_sym_o_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT] = ACTIONS(2788), + [anon_sym_err_GT_GT] = ACTIONS(2786), + [anon_sym_out_GT_GT] = ACTIONS(2786), + [anon_sym_e_GT_GT] = ACTIONS(2786), + [anon_sym_o_GT_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2786), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1146)] = { - [aux_sym__repeat_newline] = STATE(1175), + [aux_sym__repeat_newline] = STATE(1132), [sym_comment] = STATE(1146), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2366), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2366), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2366), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2366), + [anon_sym_out_GT] = ACTIONS(2366), + [anon_sym_e_GT] = ACTIONS(2366), + [anon_sym_o_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT] = ACTIONS(2366), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1147)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1147), - [anon_sym_in] = ACTIONS(2794), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2794), - [anon_sym_has2] = ACTIONS(2794), - [anon_sym_not_DASHhas2] = ACTIONS(2794), - [anon_sym_starts_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), - [anon_sym_ends_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2794), - [anon_sym_BANG_TILDE2] = ACTIONS(2794), - [anon_sym_like2] = ACTIONS(2794), - [anon_sym_not_DASHlike2] = ACTIONS(2794), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2794), - [anon_sym_bit_DASHxor2] = ACTIONS(2794), - [anon_sym_bit_DASHor2] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [ts_builtin_sym_end] = ACTIONS(2584), + [anon_sym_in] = ACTIONS(2584), + [sym__newline] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_err_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_GT_PIPE] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2584), + [anon_sym_GT2] = ACTIONS(2586), + [anon_sym_DASH2] = ACTIONS(2584), + [anon_sym_STAR2] = ACTIONS(2586), + [anon_sym_and2] = ACTIONS(2584), + [anon_sym_xor2] = ACTIONS(2584), + [anon_sym_or2] = ACTIONS(2584), + [anon_sym_not_DASHin2] = ACTIONS(2584), + [anon_sym_has2] = ACTIONS(2584), + [anon_sym_not_DASHhas2] = ACTIONS(2584), + [anon_sym_starts_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2584), + [anon_sym_ends_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2584), + [anon_sym_EQ_EQ2] = ACTIONS(2584), + [anon_sym_BANG_EQ2] = ACTIONS(2584), + [anon_sym_LT2] = ACTIONS(2586), + [anon_sym_LT_EQ2] = ACTIONS(2584), + [anon_sym_GT_EQ2] = ACTIONS(2584), + [anon_sym_EQ_TILDE2] = ACTIONS(2584), + [anon_sym_BANG_TILDE2] = ACTIONS(2584), + [anon_sym_like2] = ACTIONS(2584), + [anon_sym_not_DASHlike2] = ACTIONS(2584), + [anon_sym_LPAREN2] = ACTIONS(2588), + [anon_sym_STAR_STAR2] = ACTIONS(2584), + [anon_sym_PLUS_PLUS2] = ACTIONS(2584), + [anon_sym_SLASH2] = ACTIONS(2586), + [anon_sym_mod2] = ACTIONS(2584), + [anon_sym_SLASH_SLASH2] = ACTIONS(2584), + [anon_sym_PLUS2] = ACTIONS(2586), + [anon_sym_bit_DASHshl2] = ACTIONS(2584), + [anon_sym_bit_DASHshr2] = ACTIONS(2584), + [anon_sym_bit_DASHand2] = ACTIONS(2584), + [anon_sym_bit_DASHxor2] = ACTIONS(2584), + [anon_sym_bit_DASHor2] = ACTIONS(2584), + [anon_sym_err_GT] = ACTIONS(2586), + [anon_sym_out_GT] = ACTIONS(2586), + [anon_sym_e_GT] = ACTIONS(2586), + [anon_sym_o_GT] = ACTIONS(2586), + [anon_sym_err_PLUSout_GT] = ACTIONS(2586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2586), + [anon_sym_o_PLUSe_GT] = ACTIONS(2586), + [anon_sym_e_PLUSo_GT] = ACTIONS(2586), + [anon_sym_err_GT_GT] = ACTIONS(2584), + [anon_sym_out_GT_GT] = ACTIONS(2584), + [anon_sym_e_GT_GT] = ACTIONS(2584), + [anon_sym_o_GT_GT] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2584), + [sym__unquoted_pattern] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1148)] = { - [aux_sym__repeat_newline] = STATE(1161), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2776), - [sym__newline] = ACTIONS(2887), - [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(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [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(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [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(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [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_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(1149)] = { + [aux_sym__repeat_newline] = STATE(1022), [sym_comment] = STATE(1149), - [ts_builtin_sym_end] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2156), - [sym__newline] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(2156), - [anon_sym_err_GT_PIPE] = ACTIONS(2156), - [anon_sym_out_GT_PIPE] = ACTIONS(2156), - [anon_sym_e_GT_PIPE] = ACTIONS(2156), - [anon_sym_o_GT_PIPE] = ACTIONS(2156), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2156), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2156), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2156), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2156), - [anon_sym_GT2] = ACTIONS(2158), - [anon_sym_DASH2] = ACTIONS(2156), - [anon_sym_STAR2] = ACTIONS(2158), - [anon_sym_and2] = ACTIONS(2156), - [anon_sym_xor2] = ACTIONS(2156), - [anon_sym_or2] = ACTIONS(2156), - [anon_sym_not_DASHin2] = ACTIONS(2156), - [anon_sym_has2] = ACTIONS(2156), - [anon_sym_not_DASHhas2] = ACTIONS(2156), - [anon_sym_starts_DASHwith2] = ACTIONS(2156), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2156), - [anon_sym_ends_DASHwith2] = ACTIONS(2156), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2156), - [anon_sym_EQ_EQ2] = ACTIONS(2156), - [anon_sym_BANG_EQ2] = ACTIONS(2156), - [anon_sym_LT2] = ACTIONS(2158), - [anon_sym_LT_EQ2] = ACTIONS(2156), - [anon_sym_GT_EQ2] = ACTIONS(2156), - [anon_sym_EQ_TILDE2] = ACTIONS(2156), - [anon_sym_BANG_TILDE2] = ACTIONS(2156), - [anon_sym_like2] = ACTIONS(2156), - [anon_sym_not_DASHlike2] = ACTIONS(2156), - [anon_sym_LPAREN2] = ACTIONS(2156), - [anon_sym_STAR_STAR2] = ACTIONS(2156), - [anon_sym_PLUS_PLUS2] = ACTIONS(2156), - [anon_sym_SLASH2] = ACTIONS(2158), - [anon_sym_mod2] = ACTIONS(2156), - [anon_sym_SLASH_SLASH2] = ACTIONS(2156), - [anon_sym_PLUS2] = ACTIONS(2158), - [anon_sym_bit_DASHshl2] = ACTIONS(2156), - [anon_sym_bit_DASHshr2] = ACTIONS(2156), - [anon_sym_bit_DASHand2] = ACTIONS(2156), - [anon_sym_bit_DASHxor2] = ACTIONS(2156), - [anon_sym_bit_DASHor2] = ACTIONS(2156), - [anon_sym_err_GT] = ACTIONS(2158), - [anon_sym_out_GT] = ACTIONS(2158), - [anon_sym_e_GT] = ACTIONS(2158), - [anon_sym_o_GT] = ACTIONS(2158), - [anon_sym_err_PLUSout_GT] = ACTIONS(2158), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2158), - [anon_sym_o_PLUSe_GT] = ACTIONS(2158), - [anon_sym_e_PLUSo_GT] = ACTIONS(2158), - [anon_sym_err_GT_GT] = ACTIONS(2156), - [anon_sym_out_GT_GT] = ACTIONS(2156), - [anon_sym_e_GT_GT] = ACTIONS(2156), - [anon_sym_o_GT_GT] = ACTIONS(2156), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2156), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2156), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2156), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2482), + [sym__newline] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_err_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_GT_PIPE] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2482), + [anon_sym_RPAREN] = ACTIONS(2482), + [anon_sym_GT2] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_STAR2] = ACTIONS(2484), + [anon_sym_and2] = ACTIONS(2482), + [anon_sym_xor2] = ACTIONS(2482), + [anon_sym_or2] = ACTIONS(2482), + [anon_sym_not_DASHin2] = ACTIONS(2482), + [anon_sym_has2] = ACTIONS(2482), + [anon_sym_not_DASHhas2] = ACTIONS(2482), + [anon_sym_starts_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2482), + [anon_sym_ends_DASHwith2] = ACTIONS(2482), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2482), + [anon_sym_EQ_EQ2] = ACTIONS(2482), + [anon_sym_BANG_EQ2] = ACTIONS(2482), + [anon_sym_LT2] = ACTIONS(2484), + [anon_sym_LT_EQ2] = ACTIONS(2482), + [anon_sym_GT_EQ2] = ACTIONS(2482), + [anon_sym_EQ_TILDE2] = ACTIONS(2482), + [anon_sym_BANG_TILDE2] = ACTIONS(2482), + [anon_sym_like2] = ACTIONS(2482), + [anon_sym_not_DASHlike2] = ACTIONS(2482), + [anon_sym_STAR_STAR2] = ACTIONS(2482), + [anon_sym_PLUS_PLUS2] = ACTIONS(2482), + [anon_sym_SLASH2] = ACTIONS(2484), + [anon_sym_mod2] = ACTIONS(2482), + [anon_sym_SLASH_SLASH2] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_bit_DASHshl2] = ACTIONS(2482), + [anon_sym_bit_DASHshr2] = ACTIONS(2482), + [anon_sym_bit_DASHand2] = ACTIONS(2482), + [anon_sym_bit_DASHxor2] = ACTIONS(2482), + [anon_sym_bit_DASHor2] = ACTIONS(2482), + [anon_sym_err_GT] = ACTIONS(2484), + [anon_sym_out_GT] = ACTIONS(2484), + [anon_sym_e_GT] = ACTIONS(2484), + [anon_sym_o_GT] = ACTIONS(2484), + [anon_sym_err_PLUSout_GT] = ACTIONS(2484), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2484), + [anon_sym_o_PLUSe_GT] = ACTIONS(2484), + [anon_sym_e_PLUSo_GT] = ACTIONS(2484), + [anon_sym_err_GT_GT] = ACTIONS(2482), + [anon_sym_out_GT_GT] = ACTIONS(2482), + [anon_sym_e_GT_GT] = ACTIONS(2482), + [anon_sym_o_GT_GT] = ACTIONS(2482), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2482), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2482), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2482), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1150)] = { + [aux_sym__repeat_newline] = STATE(1372), + [sym__expression_parenthesized] = STATE(4648), + [sym_expr_unary] = STATE(1187), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary_parenthesized] = STATE(1187), + [sym__expr_binary_expression_parenthesized] = STATE(2191), + [sym_expr_parenthesized] = STATE(849), + [sym_val_range] = STATE(1187), + [sym__value] = STATE(1187), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_comment] = STATE(1150), - [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(847), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(847), - [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(847), - [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(847), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(847), - [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(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [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(1840), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(2724), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(1151)] = { - [aux_sym__repeat_newline] = STATE(1157), + [aux_sym__repeat_newline] = STATE(995), [sym_comment] = STATE(1151), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2788), - [anon_sym_BANG_TILDE2] = ACTIONS(2788), - [anon_sym_like2] = ACTIONS(2788), - [anon_sym_not_DASHlike2] = ACTIONS(2788), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2788), - [anon_sym_bit_DASHxor2] = ACTIONS(2788), - [anon_sym_bit_DASHor2] = ACTIONS(2788), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2358), + [sym__newline] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_err_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_GT_PIPE] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_GT2] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_STAR2] = ACTIONS(2360), + [anon_sym_and2] = ACTIONS(2358), + [anon_sym_xor2] = ACTIONS(2358), + [anon_sym_or2] = ACTIONS(2358), + [anon_sym_not_DASHin2] = ACTIONS(2358), + [anon_sym_has2] = ACTIONS(2358), + [anon_sym_not_DASHhas2] = ACTIONS(2358), + [anon_sym_starts_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2358), + [anon_sym_ends_DASHwith2] = ACTIONS(2358), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2358), + [anon_sym_EQ_EQ2] = ACTIONS(2358), + [anon_sym_BANG_EQ2] = ACTIONS(2358), + [anon_sym_LT2] = ACTIONS(2360), + [anon_sym_LT_EQ2] = ACTIONS(2358), + [anon_sym_GT_EQ2] = ACTIONS(2358), + [anon_sym_EQ_TILDE2] = ACTIONS(2358), + [anon_sym_BANG_TILDE2] = ACTIONS(2358), + [anon_sym_like2] = ACTIONS(2358), + [anon_sym_not_DASHlike2] = ACTIONS(2358), + [anon_sym_STAR_STAR2] = ACTIONS(2358), + [anon_sym_PLUS_PLUS2] = ACTIONS(2358), + [anon_sym_SLASH2] = ACTIONS(2360), + [anon_sym_mod2] = ACTIONS(2358), + [anon_sym_SLASH_SLASH2] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_bit_DASHshl2] = ACTIONS(2358), + [anon_sym_bit_DASHshr2] = ACTIONS(2358), + [anon_sym_bit_DASHand2] = ACTIONS(2358), + [anon_sym_bit_DASHxor2] = ACTIONS(2358), + [anon_sym_bit_DASHor2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(2360), + [anon_sym_out_GT] = ACTIONS(2360), + [anon_sym_e_GT] = ACTIONS(2360), + [anon_sym_o_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT] = ACTIONS(2360), + [anon_sym_err_GT_GT] = ACTIONS(2358), + [anon_sym_out_GT_GT] = ACTIONS(2358), + [anon_sym_e_GT_GT] = ACTIONS(2358), + [anon_sym_o_GT_GT] = ACTIONS(2358), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2358), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2358), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2358), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(1166), + [aux_sym__repeat_newline] = STATE(1265), [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2776), - [sym__newline] = ACTIONS(2887), - [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(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [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(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [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_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1153)] = { - [aux_sym__repeat_newline] = STATE(1207), + [sym__expression] = STATE(5060), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2259), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_comment] = STATE(1153), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2654), + [anon_sym_DQUOTE] = 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(1154)] = { + [sym__expression] = STATE(5065), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2259), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_comment] = STATE(1154), - [ts_builtin_sym_end] = ACTIONS(2413), - [anon_sym_finally] = ACTIONS(2413), - [anon_sym_in] = ACTIONS(2413), - [sym__newline] = ACTIONS(2413), - [anon_sym_SEMI] = ACTIONS(2413), - [anon_sym_PIPE] = ACTIONS(2413), - [anon_sym_err_GT_PIPE] = ACTIONS(2413), - [anon_sym_out_GT_PIPE] = ACTIONS(2413), - [anon_sym_e_GT_PIPE] = ACTIONS(2413), - [anon_sym_o_GT_PIPE] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2413), - [anon_sym_GT2] = ACTIONS(2415), - [anon_sym_DASH2] = ACTIONS(2413), - [anon_sym_STAR2] = ACTIONS(2415), - [anon_sym_and2] = ACTIONS(2413), - [anon_sym_xor2] = ACTIONS(2413), - [anon_sym_or2] = ACTIONS(2413), - [anon_sym_not_DASHin2] = ACTIONS(2413), - [anon_sym_has2] = ACTIONS(2413), - [anon_sym_not_DASHhas2] = ACTIONS(2413), - [anon_sym_starts_DASHwith2] = ACTIONS(2413), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2413), - [anon_sym_ends_DASHwith2] = ACTIONS(2413), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2413), - [anon_sym_EQ_EQ2] = ACTIONS(2413), - [anon_sym_BANG_EQ2] = ACTIONS(2413), - [anon_sym_LT2] = ACTIONS(2415), - [anon_sym_LT_EQ2] = ACTIONS(2413), - [anon_sym_GT_EQ2] = ACTIONS(2413), - [anon_sym_EQ_TILDE2] = ACTIONS(2413), - [anon_sym_BANG_TILDE2] = ACTIONS(2413), - [anon_sym_like2] = ACTIONS(2413), - [anon_sym_not_DASHlike2] = ACTIONS(2413), - [anon_sym_STAR_STAR2] = ACTIONS(2413), - [anon_sym_PLUS_PLUS2] = ACTIONS(2413), - [anon_sym_SLASH2] = ACTIONS(2415), - [anon_sym_mod2] = ACTIONS(2413), - [anon_sym_SLASH_SLASH2] = ACTIONS(2413), - [anon_sym_PLUS2] = ACTIONS(2415), - [anon_sym_bit_DASHshl2] = ACTIONS(2413), - [anon_sym_bit_DASHshr2] = ACTIONS(2413), - [anon_sym_bit_DASHand2] = ACTIONS(2413), - [anon_sym_bit_DASHxor2] = ACTIONS(2413), - [anon_sym_bit_DASHor2] = ACTIONS(2413), - [anon_sym_err_GT] = ACTIONS(2415), - [anon_sym_out_GT] = ACTIONS(2415), - [anon_sym_e_GT] = ACTIONS(2415), - [anon_sym_o_GT] = ACTIONS(2415), - [anon_sym_err_PLUSout_GT] = ACTIONS(2415), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2415), - [anon_sym_o_PLUSe_GT] = ACTIONS(2415), - [anon_sym_e_PLUSo_GT] = ACTIONS(2415), - [anon_sym_err_GT_GT] = ACTIONS(2413), - [anon_sym_out_GT_GT] = ACTIONS(2413), - [anon_sym_e_GT_GT] = ACTIONS(2413), - [anon_sym_o_GT_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2413), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2654), + [anon_sym_DQUOTE] = 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(1155)] = { [sym_comment] = STATE(1155), - [ts_builtin_sym_end] = ACTIONS(2326), - [anon_sym_in] = ACTIONS(2326), - [sym__newline] = ACTIONS(2326), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2326), - [anon_sym_err_GT_PIPE] = ACTIONS(2326), - [anon_sym_out_GT_PIPE] = ACTIONS(2326), - [anon_sym_e_GT_PIPE] = ACTIONS(2326), - [anon_sym_o_GT_PIPE] = ACTIONS(2326), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2326), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2326), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2326), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2326), - [anon_sym_GT2] = ACTIONS(2328), - [anon_sym_DASH2] = ACTIONS(2326), - [anon_sym_STAR2] = ACTIONS(2328), - [anon_sym_and2] = ACTIONS(2326), - [anon_sym_xor2] = ACTIONS(2326), - [anon_sym_or2] = ACTIONS(2326), - [anon_sym_not_DASHin2] = ACTIONS(2326), - [anon_sym_has2] = ACTIONS(2326), - [anon_sym_not_DASHhas2] = ACTIONS(2326), - [anon_sym_starts_DASHwith2] = ACTIONS(2326), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2326), - [anon_sym_ends_DASHwith2] = ACTIONS(2326), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2326), - [anon_sym_EQ_EQ2] = ACTIONS(2326), - [anon_sym_BANG_EQ2] = ACTIONS(2326), - [anon_sym_LT2] = ACTIONS(2328), - [anon_sym_LT_EQ2] = ACTIONS(2326), - [anon_sym_GT_EQ2] = ACTIONS(2326), - [anon_sym_EQ_TILDE2] = ACTIONS(2326), - [anon_sym_BANG_TILDE2] = ACTIONS(2326), - [anon_sym_like2] = ACTIONS(2326), - [anon_sym_not_DASHlike2] = ACTIONS(2326), - [anon_sym_LPAREN2] = ACTIONS(2326), - [anon_sym_STAR_STAR2] = ACTIONS(2326), - [anon_sym_PLUS_PLUS2] = ACTIONS(2326), - [anon_sym_SLASH2] = ACTIONS(2328), - [anon_sym_mod2] = ACTIONS(2326), - [anon_sym_SLASH_SLASH2] = ACTIONS(2326), - [anon_sym_PLUS2] = ACTIONS(2328), - [anon_sym_bit_DASHshl2] = ACTIONS(2326), - [anon_sym_bit_DASHshr2] = ACTIONS(2326), - [anon_sym_bit_DASHand2] = ACTIONS(2326), - [anon_sym_bit_DASHxor2] = ACTIONS(2326), - [anon_sym_bit_DASHor2] = ACTIONS(2326), - [anon_sym_err_GT] = ACTIONS(2328), - [anon_sym_out_GT] = ACTIONS(2328), - [anon_sym_e_GT] = ACTIONS(2328), - [anon_sym_o_GT] = ACTIONS(2328), - [anon_sym_err_PLUSout_GT] = ACTIONS(2328), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2328), - [anon_sym_o_PLUSe_GT] = ACTIONS(2328), - [anon_sym_e_PLUSo_GT] = ACTIONS(2328), - [anon_sym_err_GT_GT] = ACTIONS(2326), - [anon_sym_out_GT_GT] = ACTIONS(2326), - [anon_sym_e_GT_GT] = ACTIONS(2326), - [anon_sym_o_GT_GT] = ACTIONS(2326), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2326), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2326), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2326), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2326), + [ts_builtin_sym_end] = ACTIONS(2336), + [anon_sym_in] = ACTIONS(2336), + [sym__newline] = ACTIONS(2336), + [anon_sym_SEMI] = ACTIONS(2336), + [anon_sym_PIPE] = ACTIONS(2336), + [anon_sym_err_GT_PIPE] = ACTIONS(2336), + [anon_sym_out_GT_PIPE] = ACTIONS(2336), + [anon_sym_e_GT_PIPE] = ACTIONS(2336), + [anon_sym_o_GT_PIPE] = ACTIONS(2336), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2336), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2336), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2336), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2336), + [anon_sym_GT2] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2336), + [anon_sym_STAR2] = ACTIONS(2338), + [anon_sym_and2] = ACTIONS(2336), + [anon_sym_xor2] = ACTIONS(2336), + [anon_sym_or2] = ACTIONS(2336), + [anon_sym_not_DASHin2] = ACTIONS(2336), + [anon_sym_has2] = ACTIONS(2336), + [anon_sym_not_DASHhas2] = ACTIONS(2336), + [anon_sym_starts_DASHwith2] = ACTIONS(2336), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2336), + [anon_sym_ends_DASHwith2] = ACTIONS(2336), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2336), + [anon_sym_EQ_EQ2] = ACTIONS(2336), + [anon_sym_BANG_EQ2] = ACTIONS(2336), + [anon_sym_LT2] = ACTIONS(2338), + [anon_sym_LT_EQ2] = ACTIONS(2336), + [anon_sym_GT_EQ2] = ACTIONS(2336), + [anon_sym_EQ_TILDE2] = ACTIONS(2336), + [anon_sym_BANG_TILDE2] = ACTIONS(2336), + [anon_sym_like2] = ACTIONS(2336), + [anon_sym_not_DASHlike2] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(2336), + [anon_sym_STAR_STAR2] = ACTIONS(2336), + [anon_sym_PLUS_PLUS2] = ACTIONS(2336), + [anon_sym_SLASH2] = ACTIONS(2338), + [anon_sym_mod2] = ACTIONS(2336), + [anon_sym_SLASH_SLASH2] = ACTIONS(2336), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_bit_DASHshl2] = ACTIONS(2336), + [anon_sym_bit_DASHshr2] = ACTIONS(2336), + [anon_sym_bit_DASHand2] = ACTIONS(2336), + [anon_sym_bit_DASHxor2] = ACTIONS(2336), + [anon_sym_bit_DASHor2] = ACTIONS(2336), + [anon_sym_err_GT] = ACTIONS(2338), + [anon_sym_out_GT] = ACTIONS(2338), + [anon_sym_e_GT] = ACTIONS(2338), + [anon_sym_o_GT] = ACTIONS(2338), + [anon_sym_err_PLUSout_GT] = ACTIONS(2338), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2338), + [anon_sym_o_PLUSe_GT] = ACTIONS(2338), + [anon_sym_e_PLUSo_GT] = ACTIONS(2338), + [anon_sym_err_GT_GT] = ACTIONS(2336), + [anon_sym_out_GT_GT] = ACTIONS(2336), + [anon_sym_e_GT_GT] = ACTIONS(2336), + [anon_sym_o_GT_GT] = ACTIONS(2336), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2336), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2336), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2336), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2336), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1156)] = { - [aux_sym__repeat_newline] = STATE(1171), + [aux_sym__repeat_newline] = STATE(1175), [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2776), - [sym__newline] = ACTIONS(2887), - [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(2857), - [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(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [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_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2861), + [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(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [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(1157)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1157), - [anon_sym_in] = ACTIONS(2784), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2786), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2784), - [anon_sym_has2] = ACTIONS(2784), - [anon_sym_not_DASHhas2] = ACTIONS(2784), - [anon_sym_starts_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), - [anon_sym_ends_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), - [anon_sym_EQ_EQ2] = ACTIONS(2784), - [anon_sym_BANG_EQ2] = ACTIONS(2784), - [anon_sym_LT2] = ACTIONS(2786), - [anon_sym_LT_EQ2] = ACTIONS(2784), - [anon_sym_GT_EQ2] = ACTIONS(2784), - [anon_sym_EQ_TILDE2] = ACTIONS(2784), - [anon_sym_BANG_TILDE2] = ACTIONS(2784), - [anon_sym_like2] = ACTIONS(2784), - [anon_sym_not_DASHlike2] = ACTIONS(2784), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2784), - [anon_sym_bit_DASHxor2] = ACTIONS(2784), - [anon_sym_bit_DASHor2] = ACTIONS(2784), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2696), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2698), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2696), + [anon_sym_has2] = ACTIONS(2696), + [anon_sym_not_DASHhas2] = ACTIONS(2696), + [anon_sym_starts_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), + [anon_sym_ends_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), + [anon_sym_EQ_EQ2] = ACTIONS(2696), + [anon_sym_BANG_EQ2] = ACTIONS(2696), + [anon_sym_LT2] = ACTIONS(2698), + [anon_sym_LT_EQ2] = ACTIONS(2696), + [anon_sym_GT_EQ2] = ACTIONS(2696), + [anon_sym_EQ_TILDE2] = ACTIONS(2696), + [anon_sym_BANG_TILDE2] = ACTIONS(2696), + [anon_sym_like2] = ACTIONS(2696), + [anon_sym_not_DASHlike2] = ACTIONS(2696), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2696), + [anon_sym_bit_DASHshr2] = ACTIONS(2696), + [anon_sym_bit_DASHand2] = ACTIONS(2696), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1158)] = { - [aux_sym__repeat_newline] = STATE(1219), + [aux_sym__repeat_newline] = STATE(1176), [sym_comment] = STATE(1158), - [anon_sym_in] = ACTIONS(2776), - [sym__newline] = ACTIONS(2887), - [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(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [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(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [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_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2861), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [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(1159)] = { - [sym__expression] = STATE(4937), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1159), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = 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(2874), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2696), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1160)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1178), [sym_comment] = STATE(1160), - [anon_sym_in] = ACTIONS(2784), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2786), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2784), - [anon_sym_has2] = ACTIONS(2784), - [anon_sym_not_DASHhas2] = ACTIONS(2784), - [anon_sym_starts_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), - [anon_sym_ends_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), - [anon_sym_EQ_EQ2] = ACTIONS(2784), - [anon_sym_BANG_EQ2] = ACTIONS(2784), - [anon_sym_LT2] = ACTIONS(2786), - [anon_sym_LT_EQ2] = ACTIONS(2784), - [anon_sym_GT_EQ2] = ACTIONS(2784), - [anon_sym_EQ_TILDE2] = ACTIONS(2784), - [anon_sym_BANG_TILDE2] = ACTIONS(2784), - [anon_sym_like2] = ACTIONS(2784), - [anon_sym_not_DASHlike2] = ACTIONS(2784), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2786), - [anon_sym_bit_DASHshl2] = ACTIONS(2784), - [anon_sym_bit_DASHshr2] = ACTIONS(2784), - [anon_sym_bit_DASHand2] = ACTIONS(2784), - [anon_sym_bit_DASHxor2] = ACTIONS(2784), - [anon_sym_bit_DASHor2] = ACTIONS(2784), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2861), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [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(1161)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1161), - [anon_sym_in] = ACTIONS(2810), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2810), - [anon_sym_has2] = ACTIONS(2810), - [anon_sym_not_DASHhas2] = ACTIONS(2810), - [anon_sym_starts_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), - [anon_sym_ends_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2810), - [anon_sym_BANG_TILDE2] = ACTIONS(2810), - [anon_sym_like2] = ACTIONS(2810), - [anon_sym_not_DASHlike2] = ACTIONS(2810), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2810), - [anon_sym_bit_DASHxor2] = ACTIONS(2810), - [anon_sym_bit_DASHor2] = ACTIONS(2810), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1162)] = { - [aux_sym__repeat_newline] = STATE(1223), + [aux_sym__repeat_newline] = STATE(1180), [sym_comment] = STATE(1162), - [anon_sym_in] = ACTIONS(2798), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2800), - [anon_sym_DASH2] = ACTIONS(2798), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2798), - [anon_sym_has2] = ACTIONS(2798), - [anon_sym_not_DASHhas2] = ACTIONS(2798), - [anon_sym_starts_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), - [anon_sym_ends_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), - [anon_sym_EQ_EQ2] = ACTIONS(2798), - [anon_sym_BANG_EQ2] = ACTIONS(2798), - [anon_sym_LT2] = ACTIONS(2800), - [anon_sym_LT_EQ2] = ACTIONS(2798), - [anon_sym_GT_EQ2] = ACTIONS(2798), - [anon_sym_EQ_TILDE2] = ACTIONS(2798), - [anon_sym_BANG_TILDE2] = ACTIONS(2798), - [anon_sym_like2] = ACTIONS(2798), - [anon_sym_not_DASHlike2] = ACTIONS(2798), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2800), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2798), - [anon_sym_bit_DASHxor2] = ACTIONS(2798), - [anon_sym_bit_DASHor2] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2861), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [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(1163)] = { - [aux_sym__repeat_newline] = STATE(1247), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1163), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2806), - [anon_sym_BANG_EQ2] = ACTIONS(2806), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2806), - [anon_sym_GT_EQ2] = ACTIONS(2806), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2806), - [anon_sym_bit_DASHxor2] = ACTIONS(2806), - [anon_sym_bit_DASHor2] = ACTIONS(2806), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1164)] = { - [sym__expression] = STATE(4947), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [sym__ctrl_match_body] = STATE(5232), + [sym_match_arm] = STATE(4730), + [sym_default_arm] = STATE(4730), + [sym_match_pattern] = STATE(5108), + [sym__match_pattern] = STATE(4120), + [sym__match_pattern_expression] = STATE(4468), + [sym__match_pattern_value] = STATE(4475), + [sym__match_pattern_list] = STATE(4480), + [sym__match_pattern_record] = STATE(4490), + [sym_expr_parenthesized] = STATE(3880), + [sym_val_range] = STATE(4475), + [sym__val_range] = STATE(5398), + [sym_val_nothing] = STATE(4490), + [sym_val_bool] = STATE(4344), + [sym_val_variable] = STATE(3881), + [sym_val_number] = STATE(4490), + [sym__val_number_decimal] = STATE(3707), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(4490), + [sym_val_filesize] = STATE(4490), + [sym_val_binary] = STATE(4490), + [sym_val_string] = STATE(4490), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_table] = STATE(4490), + [sym_unquoted] = STATE(4507), + [sym__unquoted_anonymous_prefix] = STATE(5398), [sym_comment] = STATE(1164), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), + [aux_sym__types_body_repeat1] = STATE(1369), + [aux_sym__ctrl_match_body_repeat1] = STATE(1399), + [anon_sym_true] = ACTIONS(2888), + [anon_sym_false] = ACTIONS(2888), + [anon_sym_null] = ACTIONS(2890), + [aux_sym_cmd_identifier_token3] = ACTIONS(2892), + [aux_sym_cmd_identifier_token4] = ACTIONS(2892), + [aux_sym_cmd_identifier_token5] = ACTIONS(2892), + [sym__newline] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_DOLLAR] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym__] = ACTIONS(2904), + [anon_sym_DOT_DOT] = ACTIONS(2906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2908), + [anon_sym_DOT_DOT_LT] = ACTIONS(2908), + [aux_sym__val_number_decimal_token1] = ACTIONS(2910), + [aux_sym__val_number_decimal_token2] = ACTIONS(2912), + [aux_sym__val_number_decimal_token3] = ACTIONS(2914), + [aux_sym__val_number_decimal_token4] = ACTIONS(2914), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = 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(2916), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1764), }, [STATE(1165)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym__ctrl_match_body] = STATE(5250), + [sym_match_arm] = STATE(4730), + [sym_default_arm] = STATE(4730), + [sym_match_pattern] = STATE(5108), + [sym__match_pattern] = STATE(4120), + [sym__match_pattern_expression] = STATE(4468), + [sym__match_pattern_value] = STATE(4475), + [sym__match_pattern_list] = STATE(4480), + [sym__match_pattern_record] = STATE(4490), + [sym_expr_parenthesized] = STATE(3880), + [sym_val_range] = STATE(4475), + [sym__val_range] = STATE(5398), + [sym_val_nothing] = STATE(4490), + [sym_val_bool] = STATE(4344), + [sym_val_variable] = STATE(3881), + [sym_val_number] = STATE(4490), + [sym__val_number_decimal] = STATE(3707), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(4490), + [sym_val_filesize] = STATE(4490), + [sym_val_binary] = STATE(4490), + [sym_val_string] = STATE(4490), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_table] = STATE(4490), + [sym_unquoted] = STATE(4507), + [sym__unquoted_anonymous_prefix] = STATE(5398), [sym_comment] = STATE(1165), - [anon_sym_in] = ACTIONS(2784), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2786), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2784), - [anon_sym_has2] = ACTIONS(2784), - [anon_sym_not_DASHhas2] = ACTIONS(2784), - [anon_sym_starts_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), - [anon_sym_ends_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), - [anon_sym_EQ_EQ2] = ACTIONS(2784), - [anon_sym_BANG_EQ2] = ACTIONS(2784), - [anon_sym_LT2] = ACTIONS(2786), - [anon_sym_LT_EQ2] = ACTIONS(2784), - [anon_sym_GT_EQ2] = ACTIONS(2784), - [anon_sym_EQ_TILDE2] = ACTIONS(2784), - [anon_sym_BANG_TILDE2] = ACTIONS(2784), - [anon_sym_like2] = ACTIONS(2784), - [anon_sym_not_DASHlike2] = ACTIONS(2784), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2784), - [anon_sym_SLASH_SLASH2] = ACTIONS(2784), - [anon_sym_PLUS2] = ACTIONS(2786), - [anon_sym_bit_DASHshl2] = ACTIONS(2784), - [anon_sym_bit_DASHshr2] = ACTIONS(2784), - [anon_sym_bit_DASHand2] = ACTIONS(2784), - [anon_sym_bit_DASHxor2] = ACTIONS(2784), - [anon_sym_bit_DASHor2] = ACTIONS(2784), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [aux_sym__types_body_repeat1] = STATE(1369), + [aux_sym__ctrl_match_body_repeat1] = STATE(1399), + [anon_sym_true] = ACTIONS(2888), + [anon_sym_false] = ACTIONS(2888), + [anon_sym_null] = ACTIONS(2890), + [aux_sym_cmd_identifier_token3] = ACTIONS(2892), + [aux_sym_cmd_identifier_token4] = ACTIONS(2892), + [aux_sym_cmd_identifier_token5] = ACTIONS(2892), + [sym__newline] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_DOLLAR] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym__] = ACTIONS(2904), + [anon_sym_DOT_DOT] = ACTIONS(2906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2908), + [anon_sym_DOT_DOT_LT] = ACTIONS(2908), + [aux_sym__val_number_decimal_token1] = ACTIONS(2910), + [aux_sym__val_number_decimal_token2] = ACTIONS(2912), + [aux_sym__val_number_decimal_token3] = ACTIONS(2914), + [aux_sym__val_number_decimal_token4] = ACTIONS(2914), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1764), }, [STATE(1166)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym__ctrl_match_body] = STATE(5380), + [sym_match_arm] = STATE(4730), + [sym_default_arm] = STATE(4730), + [sym_match_pattern] = STATE(5108), + [sym__match_pattern] = STATE(4120), + [sym__match_pattern_expression] = STATE(4468), + [sym__match_pattern_value] = STATE(4475), + [sym__match_pattern_list] = STATE(4480), + [sym__match_pattern_record] = STATE(4490), + [sym_expr_parenthesized] = STATE(3880), + [sym_val_range] = STATE(4475), + [sym__val_range] = STATE(5398), + [sym_val_nothing] = STATE(4490), + [sym_val_bool] = STATE(4344), + [sym_val_variable] = STATE(3881), + [sym_val_number] = STATE(4490), + [sym__val_number_decimal] = STATE(3707), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(4490), + [sym_val_filesize] = STATE(4490), + [sym_val_binary] = STATE(4490), + [sym_val_string] = STATE(4490), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_table] = STATE(4490), + [sym_unquoted] = STATE(4507), + [sym__unquoted_anonymous_prefix] = STATE(5398), [sym_comment] = STATE(1166), - [anon_sym_in] = ACTIONS(2810), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2812), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2810), - [anon_sym_has2] = ACTIONS(2810), - [anon_sym_not_DASHhas2] = ACTIONS(2810), - [anon_sym_starts_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), - [anon_sym_ends_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), - [anon_sym_EQ_EQ2] = ACTIONS(2810), - [anon_sym_BANG_EQ2] = ACTIONS(2810), - [anon_sym_LT2] = ACTIONS(2812), - [anon_sym_LT_EQ2] = ACTIONS(2810), - [anon_sym_GT_EQ2] = ACTIONS(2810), - [anon_sym_EQ_TILDE2] = ACTIONS(2810), - [anon_sym_BANG_TILDE2] = ACTIONS(2810), - [anon_sym_like2] = ACTIONS(2810), - [anon_sym_not_DASHlike2] = ACTIONS(2810), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2810), - [anon_sym_bit_DASHxor2] = ACTIONS(2810), - [anon_sym_bit_DASHor2] = ACTIONS(2810), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [aux_sym__types_body_repeat1] = STATE(1369), + [aux_sym__ctrl_match_body_repeat1] = STATE(1399), + [anon_sym_true] = ACTIONS(2888), + [anon_sym_false] = ACTIONS(2888), + [anon_sym_null] = ACTIONS(2890), + [aux_sym_cmd_identifier_token3] = ACTIONS(2892), + [aux_sym_cmd_identifier_token4] = ACTIONS(2892), + [aux_sym_cmd_identifier_token5] = ACTIONS(2892), + [sym__newline] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_DOLLAR] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2920), + [anon_sym__] = ACTIONS(2904), + [anon_sym_DOT_DOT] = ACTIONS(2906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2908), + [anon_sym_DOT_DOT_LT] = ACTIONS(2908), + [aux_sym__val_number_decimal_token1] = ACTIONS(2910), + [aux_sym__val_number_decimal_token2] = ACTIONS(2912), + [aux_sym__val_number_decimal_token3] = ACTIONS(2914), + [aux_sym__val_number_decimal_token4] = ACTIONS(2914), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1764), }, [STATE(1167)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1167), - [ts_builtin_sym_end] = ACTIONS(2417), - [anon_sym_finally] = 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_GT2] = ACTIONS(2419), - [anon_sym_DASH2] = 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_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(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [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(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [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(1168)] = { - [aux_sym__repeat_newline] = STATE(1249), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1168), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2806), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2806), - [anon_sym_BANG_EQ2] = ACTIONS(2806), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2806), - [anon_sym_GT_EQ2] = ACTIONS(2806), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2808), - [anon_sym_bit_DASHshl2] = ACTIONS(2806), - [anon_sym_bit_DASHshr2] = ACTIONS(2806), - [anon_sym_bit_DASHand2] = ACTIONS(2806), - [anon_sym_bit_DASHxor2] = ACTIONS(2806), - [anon_sym_bit_DASHor2] = ACTIONS(2806), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_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(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [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(1169)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1169), - [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(2890), - [anon_sym_DASH2] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [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(2896), - [anon_sym_BANG_EQ2] = ACTIONS(2896), - [anon_sym_LT2] = ACTIONS(2890), - [anon_sym_LT_EQ2] = ACTIONS(2896), - [anon_sym_GT_EQ2] = ACTIONS(2896), - [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(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [anon_sym_PLUS2] = ACTIONS(2902), - [anon_sym_bit_DASHshl2] = ACTIONS(2904), - [anon_sym_bit_DASHshr2] = ACTIONS(2904), - [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_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(2866), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [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(1170)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1170), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [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(1171)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2810), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2812), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2810), - [anon_sym_has2] = ACTIONS(2810), - [anon_sym_not_DASHhas2] = ACTIONS(2810), - [anon_sym_starts_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), - [anon_sym_ends_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), - [anon_sym_EQ_EQ2] = ACTIONS(2810), - [anon_sym_BANG_EQ2] = ACTIONS(2810), - [anon_sym_LT2] = ACTIONS(2812), - [anon_sym_LT_EQ2] = ACTIONS(2810), - [anon_sym_GT_EQ2] = ACTIONS(2810), - [anon_sym_EQ_TILDE2] = ACTIONS(2810), - [anon_sym_BANG_TILDE2] = ACTIONS(2810), - [anon_sym_like2] = ACTIONS(2810), - [anon_sym_not_DASHlike2] = ACTIONS(2810), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2810), - [anon_sym_bit_DASHshr2] = ACTIONS(2810), - [anon_sym_bit_DASHand2] = ACTIONS(2810), - [anon_sym_bit_DASHxor2] = ACTIONS(2810), - [anon_sym_bit_DASHor2] = ACTIONS(2810), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2874), + [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(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [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(1172)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1172), - [anon_sym_in] = ACTIONS(2794), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2796), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2794), - [anon_sym_has2] = ACTIONS(2794), - [anon_sym_not_DASHhas2] = ACTIONS(2794), - [anon_sym_starts_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), - [anon_sym_ends_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2796), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2794), - [anon_sym_BANG_TILDE2] = ACTIONS(2794), - [anon_sym_like2] = ACTIONS(2794), - [anon_sym_not_DASHlike2] = ACTIONS(2794), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2794), - [anon_sym_bit_DASHxor2] = ACTIONS(2794), - [anon_sym_bit_DASHor2] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [anon_sym_in] = ACTIONS(2874), + [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(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2924), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [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(1173)] = { - [aux_sym__repeat_newline] = STATE(1251), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2806), - [anon_sym_STAR2] = ACTIONS(2808), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2806), - [anon_sym_BANG_EQ2] = ACTIONS(2806), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2806), - [anon_sym_GT_EQ2] = ACTIONS(2806), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2808), - [anon_sym_mod2] = ACTIONS(2806), - [anon_sym_SLASH_SLASH2] = ACTIONS(2806), - [anon_sym_PLUS2] = ACTIONS(2808), - [anon_sym_bit_DASHshl2] = ACTIONS(2806), - [anon_sym_bit_DASHshr2] = ACTIONS(2806), - [anon_sym_bit_DASHand2] = ACTIONS(2806), - [anon_sym_bit_DASHxor2] = ACTIONS(2806), - [anon_sym_bit_DASHor2] = ACTIONS(2806), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2874), + [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(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2924), + [anon_sym_xor2] = ACTIONS(2926), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [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(1174)] = { - [aux_sym__repeat_newline] = STATE(1176), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2776), - [sym__newline] = ACTIONS(2887), - [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(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [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_in] = ACTIONS(2874), + [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(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [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(1175)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1175), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2906), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_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(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [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(1176)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2810), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2812), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2810), - [anon_sym_has2] = ACTIONS(2810), - [anon_sym_not_DASHhas2] = ACTIONS(2810), - [anon_sym_starts_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), - [anon_sym_ends_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), - [anon_sym_EQ_EQ2] = ACTIONS(2810), - [anon_sym_BANG_EQ2] = ACTIONS(2810), - [anon_sym_LT2] = ACTIONS(2812), - [anon_sym_LT_EQ2] = ACTIONS(2810), - [anon_sym_GT_EQ2] = ACTIONS(2810), - [anon_sym_EQ_TILDE2] = ACTIONS(2810), - [anon_sym_BANG_TILDE2] = ACTIONS(2810), - [anon_sym_like2] = ACTIONS(2810), - [anon_sym_not_DASHlike2] = ACTIONS(2810), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2810), - [anon_sym_bit_DASHshr2] = ACTIONS(2810), - [anon_sym_bit_DASHand2] = ACTIONS(2810), - [anon_sym_bit_DASHxor2] = ACTIONS(2810), - [anon_sym_bit_DASHor2] = ACTIONS(2810), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2874), + [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(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [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(1177)] = { - [aux_sym__repeat_newline] = STATE(1224), + [aux_sym__repeat_newline] = STATE(1157), [sym_comment] = STATE(1177), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2887), - [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(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2776), - [anon_sym_xor2] = ACTIONS(2776), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [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_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2928), + [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(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [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(1178)] = { - [aux_sym__repeat_newline] = STATE(1253), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2874), + [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(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [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(1179)] = { - [aux_sym__repeat_newline] = STATE(1256), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1179), - [anon_sym_in] = ACTIONS(2798), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2800), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2798), - [anon_sym_has2] = ACTIONS(2798), - [anon_sym_not_DASHhas2] = ACTIONS(2798), - [anon_sym_starts_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), - [anon_sym_ends_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), - [anon_sym_EQ_EQ2] = ACTIONS(2798), - [anon_sym_BANG_EQ2] = ACTIONS(2798), - [anon_sym_LT2] = ACTIONS(2800), - [anon_sym_LT_EQ2] = ACTIONS(2798), - [anon_sym_GT_EQ2] = ACTIONS(2798), - [anon_sym_EQ_TILDE2] = ACTIONS(2798), - [anon_sym_BANG_TILDE2] = ACTIONS(2798), - [anon_sym_like2] = ACTIONS(2798), - [anon_sym_not_DASHlike2] = ACTIONS(2798), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2798), - [anon_sym_bit_DASHxor2] = ACTIONS(2798), - [anon_sym_bit_DASHor2] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2790), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2790), + [anon_sym_has2] = ACTIONS(2790), + [anon_sym_not_DASHhas2] = ACTIONS(2790), + [anon_sym_starts_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), + [anon_sym_ends_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2790), + [anon_sym_bit_DASHxor2] = ACTIONS(2790), + [anon_sym_bit_DASHor2] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2906), - [anon_sym_xor2] = ACTIONS(2908), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2874), + [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(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [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(1181)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1244), [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2928), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [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(1182)] = { + [sym__ctrl_match_body] = STATE(5293), + [sym_match_arm] = STATE(4730), + [sym_default_arm] = STATE(4730), + [sym_match_pattern] = STATE(5108), + [sym__match_pattern] = STATE(4120), + [sym__match_pattern_expression] = STATE(4468), + [sym__match_pattern_value] = STATE(4475), + [sym__match_pattern_list] = STATE(4480), + [sym__match_pattern_record] = STATE(4490), + [sym_expr_parenthesized] = STATE(3880), + [sym_val_range] = STATE(4475), + [sym__val_range] = STATE(5398), + [sym_val_nothing] = STATE(4490), + [sym_val_bool] = STATE(4344), + [sym_val_variable] = STATE(3881), + [sym_val_number] = STATE(4490), + [sym__val_number_decimal] = STATE(3707), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(4490), + [sym_val_filesize] = STATE(4490), + [sym_val_binary] = STATE(4490), + [sym_val_string] = STATE(4490), + [sym__raw_str] = STATE(2288), + [sym__str_double_quotes] = STATE(2288), + [sym__str_single_quotes] = STATE(2288), + [sym__str_back_ticks] = STATE(2288), + [sym_val_table] = STATE(4490), + [sym_unquoted] = STATE(4507), + [sym__unquoted_anonymous_prefix] = STATE(5398), [sym_comment] = STATE(1182), - [ts_builtin_sym_end] = ACTIONS(2421), - [anon_sym_finally] = ACTIONS(2421), - [anon_sym_in] = ACTIONS(2421), - [sym__newline] = ACTIONS(2421), - [anon_sym_SEMI] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2421), - [anon_sym_err_GT_PIPE] = ACTIONS(2421), - [anon_sym_out_GT_PIPE] = ACTIONS(2421), - [anon_sym_e_GT_PIPE] = ACTIONS(2421), - [anon_sym_o_GT_PIPE] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2421), - [anon_sym_GT2] = ACTIONS(2423), - [anon_sym_DASH2] = ACTIONS(2421), - [anon_sym_STAR2] = ACTIONS(2423), - [anon_sym_and2] = ACTIONS(2421), - [anon_sym_xor2] = ACTIONS(2421), - [anon_sym_or2] = ACTIONS(2421), - [anon_sym_not_DASHin2] = ACTIONS(2421), - [anon_sym_has2] = ACTIONS(2421), - [anon_sym_not_DASHhas2] = ACTIONS(2421), - [anon_sym_starts_DASHwith2] = ACTIONS(2421), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2421), - [anon_sym_ends_DASHwith2] = ACTIONS(2421), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2421), - [anon_sym_EQ_EQ2] = ACTIONS(2421), - [anon_sym_BANG_EQ2] = ACTIONS(2421), - [anon_sym_LT2] = ACTIONS(2423), - [anon_sym_LT_EQ2] = ACTIONS(2421), - [anon_sym_GT_EQ2] = ACTIONS(2421), - [anon_sym_EQ_TILDE2] = ACTIONS(2421), - [anon_sym_BANG_TILDE2] = ACTIONS(2421), - [anon_sym_like2] = ACTIONS(2421), - [anon_sym_not_DASHlike2] = ACTIONS(2421), - [anon_sym_STAR_STAR2] = ACTIONS(2421), - [anon_sym_PLUS_PLUS2] = ACTIONS(2421), - [anon_sym_SLASH2] = ACTIONS(2423), - [anon_sym_mod2] = ACTIONS(2421), - [anon_sym_SLASH_SLASH2] = ACTIONS(2421), - [anon_sym_PLUS2] = ACTIONS(2423), - [anon_sym_bit_DASHshl2] = ACTIONS(2421), - [anon_sym_bit_DASHshr2] = ACTIONS(2421), - [anon_sym_bit_DASHand2] = ACTIONS(2421), - [anon_sym_bit_DASHxor2] = ACTIONS(2421), - [anon_sym_bit_DASHor2] = ACTIONS(2421), - [anon_sym_err_GT] = ACTIONS(2423), - [anon_sym_out_GT] = ACTIONS(2423), - [anon_sym_e_GT] = ACTIONS(2423), - [anon_sym_o_GT] = ACTIONS(2423), - [anon_sym_err_PLUSout_GT] = ACTIONS(2423), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2423), - [anon_sym_o_PLUSe_GT] = ACTIONS(2423), - [anon_sym_e_PLUSo_GT] = ACTIONS(2423), - [anon_sym_err_GT_GT] = ACTIONS(2421), - [anon_sym_out_GT_GT] = ACTIONS(2421), - [anon_sym_e_GT_GT] = ACTIONS(2421), - [anon_sym_o_GT_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2421), + [aux_sym__types_body_repeat1] = STATE(1369), + [aux_sym__ctrl_match_body_repeat1] = STATE(1399), + [anon_sym_true] = ACTIONS(2888), + [anon_sym_false] = ACTIONS(2888), + [anon_sym_null] = ACTIONS(2890), + [aux_sym_cmd_identifier_token3] = ACTIONS(2892), + [aux_sym_cmd_identifier_token4] = ACTIONS(2892), + [aux_sym_cmd_identifier_token5] = ACTIONS(2892), + [sym__newline] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_DOLLAR] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2931), + [anon_sym__] = ACTIONS(2904), + [anon_sym_DOT_DOT] = ACTIONS(2906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2908), + [anon_sym_DOT_DOT_LT] = ACTIONS(2908), + [aux_sym__val_number_decimal_token1] = ACTIONS(2910), + [aux_sym__val_number_decimal_token2] = ACTIONS(2912), + [aux_sym__val_number_decimal_token3] = ACTIONS(2914), + [aux_sym__val_number_decimal_token4] = ACTIONS(2914), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1764), }, [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(1255), [sym_comment] = STATE(1183), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2488), + [sym__newline] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_err_GT_PIPE] = ACTIONS(2488), + [anon_sym_out_GT_PIPE] = ACTIONS(2488), + [anon_sym_e_GT_PIPE] = ACTIONS(2488), + [anon_sym_o_GT_PIPE] = ACTIONS(2488), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2488), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2488), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2488), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2488), + [anon_sym_RPAREN] = ACTIONS(2488), + [anon_sym_GT2] = ACTIONS(2495), + [anon_sym_DASH2] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_STAR2] = ACTIONS(2495), + [anon_sym_and2] = ACTIONS(2488), + [anon_sym_xor2] = ACTIONS(2488), + [anon_sym_or2] = ACTIONS(2488), + [anon_sym_not_DASHin2] = ACTIONS(2488), + [anon_sym_has2] = ACTIONS(2488), + [anon_sym_not_DASHhas2] = ACTIONS(2488), + [anon_sym_starts_DASHwith2] = ACTIONS(2488), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2488), + [anon_sym_ends_DASHwith2] = ACTIONS(2488), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2488), + [anon_sym_EQ_EQ2] = ACTIONS(2488), + [anon_sym_BANG_EQ2] = ACTIONS(2488), + [anon_sym_LT2] = ACTIONS(2495), + [anon_sym_LT_EQ2] = ACTIONS(2488), + [anon_sym_GT_EQ2] = ACTIONS(2488), + [anon_sym_EQ_TILDE2] = ACTIONS(2488), + [anon_sym_BANG_TILDE2] = ACTIONS(2488), + [anon_sym_like2] = ACTIONS(2488), + [anon_sym_not_DASHlike2] = ACTIONS(2488), + [anon_sym_STAR_STAR2] = ACTIONS(2488), + [anon_sym_PLUS_PLUS2] = ACTIONS(2488), + [anon_sym_SLASH2] = ACTIONS(2495), + [anon_sym_mod2] = ACTIONS(2488), + [anon_sym_SLASH_SLASH2] = ACTIONS(2488), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_bit_DASHshl2] = ACTIONS(2488), + [anon_sym_bit_DASHshr2] = ACTIONS(2488), + [anon_sym_bit_DASHand2] = ACTIONS(2488), + [anon_sym_bit_DASHxor2] = ACTIONS(2488), + [anon_sym_bit_DASHor2] = ACTIONS(2488), + [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(2488), + [anon_sym_out_GT_GT] = ACTIONS(2488), + [anon_sym_e_GT_GT] = ACTIONS(2488), + [anon_sym_o_GT_GT] = ACTIONS(2488), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2488), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2488), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2488), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2488), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1238), [sym_comment] = STATE(1184), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2784), - [anon_sym_BANG_TILDE2] = ACTIONS(2784), - [anon_sym_like2] = ACTIONS(2784), - [anon_sym_not_DASHlike2] = ACTIONS(2784), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2784), - [anon_sym_bit_DASHxor2] = ACTIONS(2784), - [anon_sym_bit_DASHor2] = ACTIONS(2784), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1185)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1185), - [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(2892), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [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(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [anon_sym_PLUS2] = ACTIONS(2902), - [anon_sym_bit_DASHshl2] = ACTIONS(2904), - [anon_sym_bit_DASHshr2] = ACTIONS(2904), - [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_in] = ACTIONS(2790), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2792), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2790), + [anon_sym_has2] = ACTIONS(2790), + [anon_sym_not_DASHhas2] = ACTIONS(2790), + [anon_sym_starts_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), + [anon_sym_ends_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2792), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2790), + [anon_sym_bit_DASHxor2] = ACTIONS(2790), + [anon_sym_bit_DASHor2] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1186)] = { - [aux_sym__repeat_newline] = STATE(1181), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2887), - [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(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2776), - [anon_sym_xor2] = ACTIONS(2776), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [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_in] = ACTIONS(2790), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2792), + [anon_sym_DASH2] = ACTIONS(2790), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2790), + [anon_sym_has2] = ACTIONS(2790), + [anon_sym_not_DASHhas2] = ACTIONS(2790), + [anon_sym_starts_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), + [anon_sym_ends_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2792), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2792), + [anon_sym_bit_DASHshl2] = ACTIONS(2790), + [anon_sym_bit_DASHshr2] = ACTIONS(2790), + [anon_sym_bit_DASHand2] = ACTIONS(2790), + [anon_sym_bit_DASHxor2] = ACTIONS(2790), + [anon_sym_bit_DASHor2] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1187)] = { - [aux_sym__repeat_newline] = STATE(1172), [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2798), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2800), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2798), - [anon_sym_has2] = ACTIONS(2798), - [anon_sym_not_DASHhas2] = ACTIONS(2798), - [anon_sym_starts_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), - [anon_sym_ends_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), - [anon_sym_EQ_EQ2] = ACTIONS(2798), - [anon_sym_BANG_EQ2] = ACTIONS(2798), - [anon_sym_LT2] = ACTIONS(2800), - [anon_sym_LT_EQ2] = ACTIONS(2798), - [anon_sym_GT_EQ2] = ACTIONS(2798), - [anon_sym_EQ_TILDE2] = ACTIONS(2798), - [anon_sym_BANG_TILDE2] = ACTIONS(2798), - [anon_sym_like2] = ACTIONS(2798), - [anon_sym_not_DASHlike2] = ACTIONS(2798), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2798), - [anon_sym_bit_DASHxor2] = ACTIONS(2798), - [anon_sym_bit_DASHor2] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2488), + [sym__newline] = ACTIONS(2490), + [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(2488), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_STAR2] = ACTIONS(2495), + [anon_sym_and2] = ACTIONS(2488), + [anon_sym_xor2] = ACTIONS(2488), + [anon_sym_or2] = ACTIONS(2488), + [anon_sym_not_DASHin2] = ACTIONS(2488), + [anon_sym_has2] = ACTIONS(2488), + [anon_sym_not_DASHhas2] = ACTIONS(2488), + [anon_sym_starts_DASHwith2] = ACTIONS(2488), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2488), + [anon_sym_ends_DASHwith2] = ACTIONS(2488), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2488), + [anon_sym_EQ_EQ2] = ACTIONS(2488), + [anon_sym_BANG_EQ2] = ACTIONS(2488), + [anon_sym_LT2] = ACTIONS(2495), + [anon_sym_LT_EQ2] = ACTIONS(2488), + [anon_sym_GT_EQ2] = ACTIONS(2488), + [anon_sym_EQ_TILDE2] = ACTIONS(2488), + [anon_sym_BANG_TILDE2] = ACTIONS(2488), + [anon_sym_like2] = ACTIONS(2488), + [anon_sym_not_DASHlike2] = ACTIONS(2488), + [anon_sym_STAR_STAR2] = ACTIONS(2488), + [anon_sym_PLUS_PLUS2] = ACTIONS(2488), + [anon_sym_SLASH2] = ACTIONS(2495), + [anon_sym_mod2] = ACTIONS(2488), + [anon_sym_SLASH_SLASH2] = ACTIONS(2488), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_bit_DASHshl2] = ACTIONS(2488), + [anon_sym_bit_DASHshr2] = ACTIONS(2488), + [anon_sym_bit_DASHand2] = ACTIONS(2488), + [anon_sym_bit_DASHxor2] = ACTIONS(2488), + [anon_sym_bit_DASHor2] = ACTIONS(2488), + [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(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(1188)] = { - [aux_sym__repeat_newline] = STATE(1160), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1188), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2788), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2788), - [anon_sym_BANG_TILDE2] = ACTIONS(2788), - [anon_sym_like2] = ACTIONS(2788), - [anon_sym_not_DASHlike2] = ACTIONS(2788), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2790), - [anon_sym_bit_DASHshl2] = ACTIONS(2788), - [anon_sym_bit_DASHshr2] = ACTIONS(2788), - [anon_sym_bit_DASHand2] = ACTIONS(2788), - [anon_sym_bit_DASHxor2] = ACTIONS(2788), - [anon_sym_bit_DASHor2] = ACTIONS(2788), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2790), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2792), + [anon_sym_DASH2] = ACTIONS(2790), + [anon_sym_STAR2] = ACTIONS(2792), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2790), + [anon_sym_has2] = ACTIONS(2790), + [anon_sym_not_DASHhas2] = ACTIONS(2790), + [anon_sym_starts_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), + [anon_sym_ends_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2792), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2792), + [anon_sym_mod2] = ACTIONS(2790), + [anon_sym_SLASH_SLASH2] = ACTIONS(2790), + [anon_sym_PLUS2] = ACTIONS(2792), + [anon_sym_bit_DASHshl2] = ACTIONS(2790), + [anon_sym_bit_DASHshr2] = ACTIONS(2790), + [anon_sym_bit_DASHand2] = ACTIONS(2790), + [anon_sym_bit_DASHxor2] = ACTIONS(2790), + [anon_sym_bit_DASHor2] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1189)] = { + [aux_sym__repeat_newline] = STATE(1288), [sym_comment] = STATE(1189), - [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_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [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(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [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_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2928), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [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(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [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(1199), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2887), - [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(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2776), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [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_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1191)] = { - [aux_sym__repeat_newline] = STATE(1263), + [aux_sym__repeat_newline] = STATE(1159), [sym_comment] = STATE(1191), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2798), - [anon_sym_bit_DASHxor2] = ACTIONS(2798), - [anon_sym_bit_DASHor2] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2928), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [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(1192)] = { - [aux_sym__repeat_newline] = STATE(1229), + [aux_sym__repeat_newline] = STATE(1241), [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2887), - [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(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2776), - [anon_sym_xor2] = ACTIONS(2776), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [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_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1193)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1193), - [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_RBRACE] = 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(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [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_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2924), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1245), [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2784), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2786), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2784), - [anon_sym_has2] = ACTIONS(2784), - [anon_sym_not_DASHhas2] = ACTIONS(2784), - [anon_sym_starts_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), - [anon_sym_ends_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), - [anon_sym_EQ_EQ2] = ACTIONS(2784), - [anon_sym_BANG_EQ2] = ACTIONS(2784), - [anon_sym_LT2] = ACTIONS(2786), - [anon_sym_LT_EQ2] = ACTIONS(2784), - [anon_sym_GT_EQ2] = ACTIONS(2784), - [anon_sym_EQ_TILDE2] = ACTIONS(2784), - [anon_sym_BANG_TILDE2] = ACTIONS(2784), - [anon_sym_like2] = ACTIONS(2784), - [anon_sym_not_DASHlike2] = ACTIONS(2784), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2784), - [anon_sym_bit_DASHshr2] = ACTIONS(2784), - [anon_sym_bit_DASHand2] = ACTIONS(2784), - [anon_sym_bit_DASHxor2] = ACTIONS(2784), - [anon_sym_bit_DASHor2] = ACTIONS(2784), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1195)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2910), - [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(2890), - [anon_sym_DASH2] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [anon_sym_and2] = ACTIONS(2648), - [anon_sym_xor2] = ACTIONS(2648), - [anon_sym_or2] = ACTIONS(2648), - [anon_sym_not_DASHin2] = ACTIONS(2910), - [anon_sym_has2] = ACTIONS(2910), - [anon_sym_not_DASHhas2] = ACTIONS(2910), - [anon_sym_starts_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), - [anon_sym_ends_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), - [anon_sym_EQ_EQ2] = ACTIONS(2896), - [anon_sym_BANG_EQ2] = ACTIONS(2896), - [anon_sym_LT2] = ACTIONS(2890), - [anon_sym_LT_EQ2] = ACTIONS(2896), - [anon_sym_GT_EQ2] = ACTIONS(2896), - [anon_sym_EQ_TILDE2] = ACTIONS(2912), - [anon_sym_BANG_TILDE2] = ACTIONS(2912), - [anon_sym_like2] = ACTIONS(2912), - [anon_sym_not_DASHlike2] = ACTIONS(2912), - [anon_sym_STAR_STAR2] = ACTIONS(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [anon_sym_PLUS2] = ACTIONS(2902), - [anon_sym_bit_DASHshl2] = ACTIONS(2904), - [anon_sym_bit_DASHshr2] = ACTIONS(2904), - [anon_sym_bit_DASHand2] = ACTIONS(2914), - [anon_sym_bit_DASHxor2] = ACTIONS(2916), - [anon_sym_bit_DASHor2] = ACTIONS(2918), - [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_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2924), + [anon_sym_xor2] = ACTIONS(2926), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1196)] = { + [aux_sym__repeat_newline] = STATE(1249), [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2910), - [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(2890), - [anon_sym_DASH2] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [anon_sym_and2] = ACTIONS(2920), - [anon_sym_xor2] = ACTIONS(2648), - [anon_sym_or2] = ACTIONS(2648), - [anon_sym_not_DASHin2] = ACTIONS(2910), - [anon_sym_has2] = ACTIONS(2910), - [anon_sym_not_DASHhas2] = ACTIONS(2910), - [anon_sym_starts_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), - [anon_sym_ends_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), - [anon_sym_EQ_EQ2] = ACTIONS(2896), - [anon_sym_BANG_EQ2] = ACTIONS(2896), - [anon_sym_LT2] = ACTIONS(2890), - [anon_sym_LT_EQ2] = ACTIONS(2896), - [anon_sym_GT_EQ2] = ACTIONS(2896), - [anon_sym_EQ_TILDE2] = ACTIONS(2912), - [anon_sym_BANG_TILDE2] = ACTIONS(2912), - [anon_sym_like2] = ACTIONS(2912), - [anon_sym_not_DASHlike2] = ACTIONS(2912), - [anon_sym_STAR_STAR2] = ACTIONS(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [anon_sym_PLUS2] = ACTIONS(2902), - [anon_sym_bit_DASHshl2] = ACTIONS(2904), - [anon_sym_bit_DASHshr2] = ACTIONS(2904), - [anon_sym_bit_DASHand2] = ACTIONS(2914), - [anon_sym_bit_DASHxor2] = ACTIONS(2916), - [anon_sym_bit_DASHor2] = ACTIONS(2918), - [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_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2734), + [anon_sym_STAR2] = ACTIONS(2736), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2736), + [anon_sym_mod2] = ACTIONS(2734), + [anon_sym_SLASH_SLASH2] = ACTIONS(2734), + [anon_sym_PLUS2] = ACTIONS(2736), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1197)] = { - [aux_sym__repeat_newline] = STATE(1274), + [aux_sym__repeat_newline] = STATE(1270), [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2798), - [anon_sym_bit_DASHor2] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2928), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [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(1198)] = { - [aux_sym__repeat_newline] = STATE(1209), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1198), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2887), - [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(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2776), - [anon_sym_xor2] = ACTIONS(2776), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [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(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [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_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2790), + [anon_sym_bit_DASHxor2] = ACTIONS(2790), + [anon_sym_bit_DASHor2] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1199)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1251), [sym_comment] = STATE(1199), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2906), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1200)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym__expression] = STATE(5041), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2259), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_comment] = STATE(1200), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2784), - [anon_sym_bit_DASHxor2] = ACTIONS(2784), - [anon_sym_bit_DASHor2] = ACTIONS(2784), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2933), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2654), + [anon_sym_DQUOTE] = 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(1201)] = { - [aux_sym__repeat_newline] = STATE(1257), [sym_comment] = STATE(1201), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2924), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2572), + [sym__newline] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_err_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_GT_PIPE] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), + [anon_sym_GT2] = ACTIONS(2572), + [anon_sym_DASH2] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_STAR2] = ACTIONS(2572), + [anon_sym_and2] = ACTIONS(2572), + [anon_sym_xor2] = ACTIONS(2572), + [anon_sym_or2] = ACTIONS(2572), + [anon_sym_not_DASHin2] = ACTIONS(2572), + [anon_sym_has2] = ACTIONS(2572), + [anon_sym_not_DASHhas2] = ACTIONS(2572), + [anon_sym_starts_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2572), + [anon_sym_ends_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2572), + [anon_sym_EQ_EQ2] = ACTIONS(2570), + [anon_sym_BANG_EQ2] = ACTIONS(2570), + [anon_sym_LT2] = ACTIONS(2572), + [anon_sym_LT_EQ2] = ACTIONS(2570), + [anon_sym_GT_EQ2] = ACTIONS(2570), + [anon_sym_EQ_TILDE2] = ACTIONS(2570), + [anon_sym_BANG_TILDE2] = ACTIONS(2572), + [anon_sym_like2] = ACTIONS(2572), + [anon_sym_not_DASHlike2] = ACTIONS(2572), + [anon_sym_STAR_STAR2] = ACTIONS(2572), + [anon_sym_PLUS_PLUS2] = ACTIONS(2572), + [anon_sym_SLASH2] = ACTIONS(2572), + [anon_sym_mod2] = ACTIONS(2572), + [anon_sym_SLASH_SLASH2] = ACTIONS(2572), + [anon_sym_PLUS2] = ACTIONS(2572), + [anon_sym_bit_DASHshl2] = ACTIONS(2572), + [anon_sym_bit_DASHshr2] = ACTIONS(2572), + [anon_sym_bit_DASHand2] = ACTIONS(2572), + [anon_sym_bit_DASHxor2] = ACTIONS(2572), + [anon_sym_bit_DASHor2] = ACTIONS(2572), + [anon_sym_err_GT] = ACTIONS(2572), + [anon_sym_out_GT] = ACTIONS(2572), + [anon_sym_e_GT] = ACTIONS(2572), + [anon_sym_o_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT] = ACTIONS(2572), + [anon_sym_err_GT_GT] = ACTIONS(2570), + [anon_sym_out_GT_GT] = ACTIONS(2570), + [anon_sym_e_GT_GT] = ACTIONS(2570), + [anon_sym_o_GT_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1202)] = { [sym_comment] = STATE(1202), - [anon_sym_in] = ACTIONS(2910), - [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(2890), - [anon_sym_DASH2] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [anon_sym_and2] = ACTIONS(2920), - [anon_sym_xor2] = ACTIONS(2926), - [anon_sym_or2] = ACTIONS(2648), - [anon_sym_not_DASHin2] = ACTIONS(2910), - [anon_sym_has2] = ACTIONS(2910), - [anon_sym_not_DASHhas2] = ACTIONS(2910), - [anon_sym_starts_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), - [anon_sym_ends_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), - [anon_sym_EQ_EQ2] = ACTIONS(2896), - [anon_sym_BANG_EQ2] = ACTIONS(2896), - [anon_sym_LT2] = ACTIONS(2890), - [anon_sym_LT_EQ2] = ACTIONS(2896), - [anon_sym_GT_EQ2] = ACTIONS(2896), - [anon_sym_EQ_TILDE2] = ACTIONS(2912), - [anon_sym_BANG_TILDE2] = ACTIONS(2912), - [anon_sym_like2] = ACTIONS(2912), - [anon_sym_not_DASHlike2] = ACTIONS(2912), - [anon_sym_STAR_STAR2] = ACTIONS(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [anon_sym_PLUS2] = ACTIONS(2902), - [anon_sym_bit_DASHshl2] = ACTIONS(2904), - [anon_sym_bit_DASHshr2] = ACTIONS(2904), - [anon_sym_bit_DASHand2] = ACTIONS(2914), - [anon_sym_bit_DASHxor2] = ACTIONS(2916), - [anon_sym_bit_DASHor2] = ACTIONS(2918), - [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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2600), + [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_GT2] = ACTIONS(2600), + [anon_sym_DASH2] = ACTIONS(2600), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_STAR2] = ACTIONS(2600), + [anon_sym_and2] = ACTIONS(2600), + [anon_sym_xor2] = ACTIONS(2600), + [anon_sym_or2] = ACTIONS(2600), + [anon_sym_not_DASHin2] = ACTIONS(2600), + [anon_sym_has2] = ACTIONS(2600), + [anon_sym_not_DASHhas2] = ACTIONS(2600), + [anon_sym_starts_DASHwith2] = ACTIONS(2600), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2600), + [anon_sym_ends_DASHwith2] = ACTIONS(2600), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2600), + [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(2600), + [anon_sym_like2] = ACTIONS(2600), + [anon_sym_not_DASHlike2] = ACTIONS(2600), + [anon_sym_STAR_STAR2] = ACTIONS(2600), + [anon_sym_PLUS_PLUS2] = ACTIONS(2600), + [anon_sym_SLASH2] = ACTIONS(2600), + [anon_sym_mod2] = ACTIONS(2600), + [anon_sym_SLASH_SLASH2] = ACTIONS(2600), + [anon_sym_PLUS2] = ACTIONS(2600), + [anon_sym_bit_DASHshl2] = ACTIONS(2600), + [anon_sym_bit_DASHshr2] = ACTIONS(2600), + [anon_sym_bit_DASHand2] = ACTIONS(2600), + [anon_sym_bit_DASHxor2] = ACTIONS(2600), + [anon_sym_bit_DASHor2] = ACTIONS(2600), + [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(103), }, [STATE(1203)] = { + [aux_sym__repeat_newline] = STATE(1268), [sym_comment] = STATE(1203), - [ts_builtin_sym_end] = ACTIONS(2360), - [aux_sym_cmd_identifier_token2] = ACTIONS(2822), - [anon_sym_in] = ACTIONS(2362), - [sym__newline] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_err_GT_PIPE] = ACTIONS(2360), - [anon_sym_out_GT_PIPE] = ACTIONS(2360), - [anon_sym_e_GT_PIPE] = ACTIONS(2360), - [anon_sym_o_GT_PIPE] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2360), - [anon_sym_GT2] = ACTIONS(2362), - [anon_sym_DASH2] = ACTIONS(2362), - [anon_sym_STAR2] = ACTIONS(2362), - [anon_sym_and2] = ACTIONS(2362), - [anon_sym_xor2] = ACTIONS(2362), - [anon_sym_or2] = ACTIONS(2362), - [anon_sym_not_DASHin2] = ACTIONS(2362), - [anon_sym_has2] = ACTIONS(2362), - [anon_sym_not_DASHhas2] = ACTIONS(2362), - [anon_sym_starts_DASHwith2] = ACTIONS(2362), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2362), - [anon_sym_ends_DASHwith2] = ACTIONS(2362), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2362), - [anon_sym_EQ_EQ2] = ACTIONS(2360), - [anon_sym_BANG_EQ2] = ACTIONS(2360), - [anon_sym_LT2] = ACTIONS(2362), - [anon_sym_LT_EQ2] = ACTIONS(2360), - [anon_sym_GT_EQ2] = ACTIONS(2360), - [anon_sym_EQ_TILDE2] = ACTIONS(2360), - [anon_sym_BANG_TILDE2] = ACTIONS(2362), - [anon_sym_like2] = ACTIONS(2362), - [anon_sym_not_DASHlike2] = ACTIONS(2362), - [anon_sym_STAR_STAR2] = ACTIONS(2362), - [anon_sym_PLUS_PLUS2] = ACTIONS(2362), - [anon_sym_SLASH2] = ACTIONS(2362), - [anon_sym_mod2] = ACTIONS(2362), - [anon_sym_SLASH_SLASH2] = ACTIONS(2362), - [anon_sym_PLUS2] = ACTIONS(2362), - [anon_sym_bit_DASHshl2] = ACTIONS(2362), - [anon_sym_bit_DASHshr2] = ACTIONS(2362), - [anon_sym_bit_DASHand2] = ACTIONS(2362), - [anon_sym_bit_DASHxor2] = ACTIONS(2362), - [anon_sym_bit_DASHor2] = ACTIONS(2362), - [anon_sym_err_GT] = ACTIONS(2362), - [anon_sym_out_GT] = ACTIONS(2362), - [anon_sym_e_GT] = ACTIONS(2362), - [anon_sym_o_GT] = ACTIONS(2362), - [anon_sym_err_PLUSout_GT] = ACTIONS(2362), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2362), - [anon_sym_o_PLUSe_GT] = ACTIONS(2362), - [anon_sym_e_PLUSo_GT] = ACTIONS(2362), - [anon_sym_err_GT_GT] = ACTIONS(2360), - [anon_sym_out_GT_GT] = ACTIONS(2360), - [anon_sym_e_GT_GT] = ACTIONS(2360), - [anon_sym_o_GT_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2360), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2937), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1204)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1204), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2906), - [anon_sym_xor2] = ACTIONS(2908), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2570), + [aux_sym_cmd_identifier_token2] = ACTIONS(2933), + [anon_sym_in] = ACTIONS(2572), + [sym__newline] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_err_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_GT_PIPE] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), + [anon_sym_GT2] = ACTIONS(2572), + [anon_sym_DASH2] = ACTIONS(2572), + [anon_sym_STAR2] = ACTIONS(2572), + [anon_sym_and2] = ACTIONS(2572), + [anon_sym_xor2] = ACTIONS(2572), + [anon_sym_or2] = ACTIONS(2572), + [anon_sym_not_DASHin2] = ACTIONS(2572), + [anon_sym_has2] = ACTIONS(2572), + [anon_sym_not_DASHhas2] = ACTIONS(2572), + [anon_sym_starts_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2572), + [anon_sym_ends_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2572), + [anon_sym_EQ_EQ2] = ACTIONS(2570), + [anon_sym_BANG_EQ2] = ACTIONS(2570), + [anon_sym_LT2] = ACTIONS(2572), + [anon_sym_LT_EQ2] = ACTIONS(2570), + [anon_sym_GT_EQ2] = ACTIONS(2570), + [anon_sym_EQ_TILDE2] = ACTIONS(2570), + [anon_sym_BANG_TILDE2] = ACTIONS(2572), + [anon_sym_like2] = ACTIONS(2572), + [anon_sym_not_DASHlike2] = ACTIONS(2572), + [anon_sym_STAR_STAR2] = ACTIONS(2572), + [anon_sym_PLUS_PLUS2] = ACTIONS(2572), + [anon_sym_SLASH2] = ACTIONS(2572), + [anon_sym_mod2] = ACTIONS(2572), + [anon_sym_SLASH_SLASH2] = ACTIONS(2572), + [anon_sym_PLUS2] = ACTIONS(2572), + [anon_sym_bit_DASHshl2] = ACTIONS(2572), + [anon_sym_bit_DASHshr2] = ACTIONS(2572), + [anon_sym_bit_DASHand2] = ACTIONS(2572), + [anon_sym_bit_DASHxor2] = ACTIONS(2572), + [anon_sym_bit_DASHor2] = ACTIONS(2572), + [anon_sym_err_GT] = ACTIONS(2572), + [anon_sym_out_GT] = ACTIONS(2572), + [anon_sym_e_GT] = ACTIONS(2572), + [anon_sym_o_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT] = ACTIONS(2572), + [anon_sym_err_GT_GT] = ACTIONS(2570), + [anon_sym_out_GT_GT] = ACTIONS(2570), + [anon_sym_e_GT_GT] = ACTIONS(2570), + [anon_sym_o_GT_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1205)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1205), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2818), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2598), + [aux_sym_cmd_identifier_token2] = ACTIONS(2933), + [anon_sym_in] = ACTIONS(2600), + [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_GT2] = ACTIONS(2600), + [anon_sym_DASH2] = ACTIONS(2600), + [anon_sym_STAR2] = ACTIONS(2600), + [anon_sym_and2] = ACTIONS(2600), + [anon_sym_xor2] = ACTIONS(2600), + [anon_sym_or2] = ACTIONS(2600), + [anon_sym_not_DASHin2] = ACTIONS(2600), + [anon_sym_has2] = ACTIONS(2600), + [anon_sym_not_DASHhas2] = ACTIONS(2600), + [anon_sym_starts_DASHwith2] = ACTIONS(2600), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2600), + [anon_sym_ends_DASHwith2] = ACTIONS(2600), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2600), + [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(2600), + [anon_sym_like2] = ACTIONS(2600), + [anon_sym_not_DASHlike2] = ACTIONS(2600), + [anon_sym_STAR_STAR2] = ACTIONS(2600), + [anon_sym_PLUS_PLUS2] = ACTIONS(2600), + [anon_sym_SLASH2] = ACTIONS(2600), + [anon_sym_mod2] = ACTIONS(2600), + [anon_sym_SLASH_SLASH2] = ACTIONS(2600), + [anon_sym_PLUS2] = ACTIONS(2600), + [anon_sym_bit_DASHshl2] = ACTIONS(2600), + [anon_sym_bit_DASHshr2] = ACTIONS(2600), + [anon_sym_bit_DASHand2] = ACTIONS(2600), + [anon_sym_bit_DASHxor2] = ACTIONS(2600), + [anon_sym_bit_DASHor2] = ACTIONS(2600), + [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(103), }, [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(1259), + [aux_sym__repeat_newline] = STATE(1272), [sym_comment] = STATE(1206), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2806), - [anon_sym_bit_DASHxor2] = ACTIONS(2806), - [anon_sym_bit_DASHor2] = ACTIONS(2806), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1207)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1207), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2906), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(884), + [aux_sym_cmd_identifier_token2] = ACTIONS(2933), + [anon_sym_in] = ACTIONS(785), + [sym__newline] = ACTIONS(884), + [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_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(785), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(785), + [anon_sym_xor2] = ACTIONS(785), + [anon_sym_or2] = ACTIONS(785), + [anon_sym_not_DASHin2] = ACTIONS(785), + [anon_sym_has2] = ACTIONS(785), + [anon_sym_not_DASHhas2] = ACTIONS(785), + [anon_sym_starts_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(785), + [anon_sym_ends_DASHwith2] = ACTIONS(785), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(785), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(785), + [anon_sym_like2] = ACTIONS(785), + [anon_sym_not_DASHlike2] = ACTIONS(785), + [anon_sym_STAR_STAR2] = ACTIONS(785), + [anon_sym_PLUS_PLUS2] = ACTIONS(785), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(785), + [anon_sym_SLASH_SLASH2] = ACTIONS(785), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(785), + [anon_sym_bit_DASHshr2] = ACTIONS(785), + [anon_sym_bit_DASHand2] = ACTIONS(785), + [anon_sym_bit_DASHxor2] = ACTIONS(785), + [anon_sym_bit_DASHor2] = ACTIONS(785), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1208)] = { - [aux_sym__repeat_newline] = STATE(1234), + [aux_sym__repeat_newline] = STATE(1279), [sym_comment] = STATE(1208), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2887), - [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(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2776), - [anon_sym_xor2] = ACTIONS(2776), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [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_in] = ACTIONS(2734), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2734), + [anon_sym_has2] = ACTIONS(2734), + [anon_sym_not_DASHhas2] = ACTIONS(2734), + [anon_sym_starts_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), + [anon_sym_ends_DASHwith2] = ACTIONS(2734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), + [anon_sym_EQ_EQ2] = ACTIONS(2734), + [anon_sym_BANG_EQ2] = ACTIONS(2734), + [anon_sym_LT2] = ACTIONS(2736), + [anon_sym_LT_EQ2] = ACTIONS(2734), + [anon_sym_GT_EQ2] = ACTIONS(2734), + [anon_sym_EQ_TILDE2] = ACTIONS(2734), + [anon_sym_BANG_TILDE2] = ACTIONS(2734), + [anon_sym_like2] = ACTIONS(2734), + [anon_sym_not_DASHlike2] = ACTIONS(2734), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2734), + [anon_sym_bit_DASHshr2] = ACTIONS(2734), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1209)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1209), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2810), - [anon_sym_BANG_TILDE2] = ACTIONS(2810), - [anon_sym_like2] = ACTIONS(2810), - [anon_sym_not_DASHlike2] = ACTIONS(2810), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2810), - [anon_sym_bit_DASHxor2] = ACTIONS(2810), - [anon_sym_bit_DASHor2] = ACTIONS(2810), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [ts_builtin_sym_end] = ACTIONS(2340), + [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_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = 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_LBRACK2] = ACTIONS(2939), + [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(1210)] = { - [aux_sym__repeat_newline] = STATE(1180), + [aux_sym__repeat_newline] = STATE(1282), [sym_comment] = STATE(1210), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2924), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2734), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1211)] = { + [aux_sym__repeat_newline] = STATE(1285), [sym_comment] = STATE(1211), - [ts_builtin_sym_end] = ACTIONS(2558), - [anon_sym_finally] = ACTIONS(2558), - [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_GT2] = ACTIONS(2560), - [anon_sym_DASH2] = 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_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2734), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1212)] = { + [aux_sym__repeat_newline] = STATE(1220), [sym_comment] = STATE(1212), - [anon_sym_in] = ACTIONS(2910), - [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(2890), - [anon_sym_DASH2] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [anon_sym_and2] = ACTIONS(2648), - [anon_sym_xor2] = ACTIONS(2648), - [anon_sym_or2] = ACTIONS(2648), - [anon_sym_not_DASHin2] = ACTIONS(2910), - [anon_sym_has2] = ACTIONS(2910), - [anon_sym_not_DASHhas2] = ACTIONS(2910), - [anon_sym_starts_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), - [anon_sym_ends_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), - [anon_sym_EQ_EQ2] = ACTIONS(2896), - [anon_sym_BANG_EQ2] = ACTIONS(2896), - [anon_sym_LT2] = ACTIONS(2890), - [anon_sym_LT_EQ2] = ACTIONS(2896), - [anon_sym_GT_EQ2] = ACTIONS(2896), - [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(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [anon_sym_PLUS2] = ACTIONS(2902), - [anon_sym_bit_DASHshl2] = ACTIONS(2904), - [anon_sym_bit_DASHshr2] = ACTIONS(2904), - [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_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_err_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_GT_PIPE] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2734), + [anon_sym_xor2] = ACTIONS(2734), + [anon_sym_or2] = ACTIONS(2734), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2734), + [anon_sym_err_GT] = ACTIONS(2736), + [anon_sym_out_GT] = ACTIONS(2736), + [anon_sym_e_GT] = ACTIONS(2736), + [anon_sym_o_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT] = ACTIONS(2736), + [anon_sym_err_GT_GT] = ACTIONS(2734), + [anon_sym_out_GT_GT] = ACTIONS(2734), + [anon_sym_e_GT_GT] = ACTIONS(2734), + [anon_sym_o_GT_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1213)] = { + [aux_sym__repeat_newline] = STATE(1161), [sym_comment] = STATE(1213), - [ts_builtin_sym_end] = ACTIONS(968), - [aux_sym_cmd_identifier_token2] = ACTIONS(2822), - [anon_sym_in] = ACTIONS(847), - [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(847), - [anon_sym_DASH2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(847), - [anon_sym_and2] = ACTIONS(847), - [anon_sym_xor2] = ACTIONS(847), - [anon_sym_or2] = ACTIONS(847), - [anon_sym_not_DASHin2] = ACTIONS(847), - [anon_sym_has2] = ACTIONS(847), - [anon_sym_not_DASHhas2] = ACTIONS(847), - [anon_sym_starts_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), - [anon_sym_ends_DASHwith2] = ACTIONS(847), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(847), - [anon_sym_like2] = ACTIONS(847), - [anon_sym_not_DASHlike2] = ACTIONS(847), - [anon_sym_STAR_STAR2] = ACTIONS(847), - [anon_sym_PLUS_PLUS2] = ACTIONS(847), - [anon_sym_SLASH2] = ACTIONS(847), - [anon_sym_mod2] = ACTIONS(847), - [anon_sym_SLASH_SLASH2] = ACTIONS(847), - [anon_sym_PLUS2] = ACTIONS(847), - [anon_sym_bit_DASHshl2] = ACTIONS(847), - [anon_sym_bit_DASHshr2] = ACTIONS(847), - [anon_sym_bit_DASHand2] = ACTIONS(847), - [anon_sym_bit_DASHxor2] = ACTIONS(847), - [anon_sym_bit_DASHor2] = ACTIONS(847), - [anon_sym_err_GT] = ACTIONS(847), - [anon_sym_out_GT] = ACTIONS(847), - [anon_sym_e_GT] = ACTIONS(847), - [anon_sym_o_GT] = ACTIONS(847), - [anon_sym_err_PLUSout_GT] = ACTIONS(847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(847), - [anon_sym_o_PLUSe_GT] = ACTIONS(847), - [anon_sym_e_PLUSo_GT] = ACTIONS(847), - [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(2830), + [sym__newline] = ACTIONS(2928), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [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(1214)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1214), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2906), - [anon_sym_xor2] = ACTIONS(2908), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [ts_builtin_sym_end] = ACTIONS(2426), + [anon_sym_finally] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(2426), + [sym__newline] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_PIPE] = ACTIONS(2426), + [anon_sym_err_GT_PIPE] = ACTIONS(2426), + [anon_sym_out_GT_PIPE] = ACTIONS(2426), + [anon_sym_e_GT_PIPE] = ACTIONS(2426), + [anon_sym_o_GT_PIPE] = ACTIONS(2426), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2426), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2426), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2426), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2426), + [anon_sym_GT2] = ACTIONS(2428), + [anon_sym_DASH2] = ACTIONS(2426), + [anon_sym_STAR2] = ACTIONS(2428), + [anon_sym_and2] = ACTIONS(2426), + [anon_sym_xor2] = ACTIONS(2426), + [anon_sym_or2] = ACTIONS(2426), + [anon_sym_not_DASHin2] = ACTIONS(2426), + [anon_sym_has2] = ACTIONS(2426), + [anon_sym_not_DASHhas2] = ACTIONS(2426), + [anon_sym_starts_DASHwith2] = ACTIONS(2426), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2426), + [anon_sym_ends_DASHwith2] = ACTIONS(2426), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2426), + [anon_sym_EQ_EQ2] = ACTIONS(2426), + [anon_sym_BANG_EQ2] = ACTIONS(2426), + [anon_sym_LT2] = ACTIONS(2428), + [anon_sym_LT_EQ2] = ACTIONS(2426), + [anon_sym_GT_EQ2] = ACTIONS(2426), + [anon_sym_EQ_TILDE2] = ACTIONS(2426), + [anon_sym_BANG_TILDE2] = ACTIONS(2426), + [anon_sym_like2] = ACTIONS(2426), + [anon_sym_not_DASHlike2] = ACTIONS(2426), + [anon_sym_STAR_STAR2] = ACTIONS(2426), + [anon_sym_PLUS_PLUS2] = ACTIONS(2426), + [anon_sym_SLASH2] = ACTIONS(2428), + [anon_sym_mod2] = ACTIONS(2426), + [anon_sym_SLASH_SLASH2] = ACTIONS(2426), + [anon_sym_PLUS2] = ACTIONS(2428), + [anon_sym_bit_DASHshl2] = ACTIONS(2426), + [anon_sym_bit_DASHshr2] = ACTIONS(2426), + [anon_sym_bit_DASHand2] = ACTIONS(2426), + [anon_sym_bit_DASHxor2] = ACTIONS(2426), + [anon_sym_bit_DASHor2] = ACTIONS(2426), + [anon_sym_err_GT] = ACTIONS(2428), + [anon_sym_out_GT] = ACTIONS(2428), + [anon_sym_e_GT] = ACTIONS(2428), + [anon_sym_o_GT] = ACTIONS(2428), + [anon_sym_err_PLUSout_GT] = ACTIONS(2428), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2428), + [anon_sym_o_PLUSe_GT] = ACTIONS(2428), + [anon_sym_e_PLUSo_GT] = ACTIONS(2428), + [anon_sym_err_GT_GT] = ACTIONS(2426), + [anon_sym_out_GT_GT] = ACTIONS(2426), + [anon_sym_e_GT_GT] = ACTIONS(2426), + [anon_sym_o_GT_GT] = ACTIONS(2426), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2426), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2426), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2426), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2426), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1215)] = { - [aux_sym__repeat_newline] = STATE(1143), [sym_comment] = STATE(1215), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2788), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [ts_builtin_sym_end] = ACTIONS(2554), + [anon_sym_finally] = ACTIONS(2554), + [anon_sym_in] = ACTIONS(2554), + [sym__newline] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_err_GT_PIPE] = ACTIONS(2554), + [anon_sym_out_GT_PIPE] = ACTIONS(2554), + [anon_sym_e_GT_PIPE] = ACTIONS(2554), + [anon_sym_o_GT_PIPE] = ACTIONS(2554), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2554), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2554), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2554), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2554), + [anon_sym_GT2] = ACTIONS(2556), + [anon_sym_DASH2] = ACTIONS(2554), + [anon_sym_STAR2] = ACTIONS(2556), + [anon_sym_and2] = ACTIONS(2554), + [anon_sym_xor2] = ACTIONS(2554), + [anon_sym_or2] = ACTIONS(2554), + [anon_sym_not_DASHin2] = ACTIONS(2554), + [anon_sym_has2] = ACTIONS(2554), + [anon_sym_not_DASHhas2] = ACTIONS(2554), + [anon_sym_starts_DASHwith2] = ACTIONS(2554), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2554), + [anon_sym_ends_DASHwith2] = ACTIONS(2554), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2554), + [anon_sym_EQ_EQ2] = ACTIONS(2554), + [anon_sym_BANG_EQ2] = ACTIONS(2554), + [anon_sym_LT2] = ACTIONS(2556), + [anon_sym_LT_EQ2] = ACTIONS(2554), + [anon_sym_GT_EQ2] = ACTIONS(2554), + [anon_sym_EQ_TILDE2] = ACTIONS(2554), + [anon_sym_BANG_TILDE2] = ACTIONS(2554), + [anon_sym_like2] = ACTIONS(2554), + [anon_sym_not_DASHlike2] = ACTIONS(2554), + [anon_sym_STAR_STAR2] = ACTIONS(2554), + [anon_sym_PLUS_PLUS2] = ACTIONS(2554), + [anon_sym_SLASH2] = ACTIONS(2556), + [anon_sym_mod2] = ACTIONS(2554), + [anon_sym_SLASH_SLASH2] = ACTIONS(2554), + [anon_sym_PLUS2] = ACTIONS(2556), + [anon_sym_bit_DASHshl2] = ACTIONS(2554), + [anon_sym_bit_DASHshr2] = ACTIONS(2554), + [anon_sym_bit_DASHand2] = ACTIONS(2554), + [anon_sym_bit_DASHxor2] = ACTIONS(2554), + [anon_sym_bit_DASHor2] = ACTIONS(2554), + [anon_sym_err_GT] = ACTIONS(2556), + [anon_sym_out_GT] = ACTIONS(2556), + [anon_sym_e_GT] = ACTIONS(2556), + [anon_sym_o_GT] = ACTIONS(2556), + [anon_sym_err_PLUSout_GT] = ACTIONS(2556), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2556), + [anon_sym_o_PLUSe_GT] = ACTIONS(2556), + [anon_sym_e_PLUSo_GT] = ACTIONS(2556), + [anon_sym_err_GT_GT] = ACTIONS(2554), + [anon_sym_out_GT_GT] = ACTIONS(2554), + [anon_sym_e_GT_GT] = ACTIONS(2554), + [anon_sym_o_GT_GT] = ACTIONS(2554), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2554), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2554), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2554), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2554), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(1225), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2798), - [anon_sym_BANG_TILDE2] = ACTIONS(2798), - [anon_sym_like2] = ACTIONS(2798), - [anon_sym_not_DASHlike2] = ACTIONS(2798), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2798), - [anon_sym_bit_DASHxor2] = ACTIONS(2798), - [anon_sym_bit_DASHor2] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2790), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2792), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2790), + [anon_sym_has2] = ACTIONS(2790), + [anon_sym_not_DASHhas2] = ACTIONS(2790), + [anon_sym_starts_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2790), + [anon_sym_ends_DASHwith2] = ACTIONS(2790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2790), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2792), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [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(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2790), + [anon_sym_bit_DASHshr2] = ACTIONS(2790), + [anon_sym_bit_DASHand2] = ACTIONS(2790), + [anon_sym_bit_DASHxor2] = ACTIONS(2790), + [anon_sym_bit_DASHor2] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1217)] = { - [aux_sym__repeat_newline] = STATE(1142), + [aux_sym__repeat_newline] = STATE(1273), [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2928), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [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(1218)] = { - [aux_sym__repeat_newline] = STATE(1184), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1218), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2788), - [anon_sym_BANG_TILDE2] = ACTIONS(2788), - [anon_sym_like2] = ACTIONS(2788), - [anon_sym_not_DASHlike2] = ACTIONS(2788), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2788), - [anon_sym_bit_DASHxor2] = ACTIONS(2788), - [anon_sym_bit_DASHor2] = ACTIONS(2788), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2790), + [anon_sym_bit_DASHxor2] = ACTIONS(2790), + [anon_sym_bit_DASHor2] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1219)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1219), - [anon_sym_in] = ACTIONS(2810), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2812), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2810), - [anon_sym_has2] = ACTIONS(2810), - [anon_sym_not_DASHhas2] = ACTIONS(2810), - [anon_sym_starts_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), - [anon_sym_ends_DASHwith2] = ACTIONS(2810), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), - [anon_sym_EQ_EQ2] = ACTIONS(2810), - [anon_sym_BANG_EQ2] = ACTIONS(2810), - [anon_sym_LT2] = ACTIONS(2812), - [anon_sym_LT_EQ2] = ACTIONS(2810), - [anon_sym_GT_EQ2] = ACTIONS(2810), - [anon_sym_EQ_TILDE2] = ACTIONS(2810), - [anon_sym_BANG_TILDE2] = ACTIONS(2810), - [anon_sym_like2] = ACTIONS(2810), - [anon_sym_not_DASHlike2] = ACTIONS(2810), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2810), - [anon_sym_bit_DASHshr2] = ACTIONS(2810), - [anon_sym_bit_DASHand2] = ACTIONS(2810), - [anon_sym_bit_DASHxor2] = ACTIONS(2810), - [anon_sym_bit_DASHor2] = ACTIONS(2810), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [ts_builtin_sym_end] = ACTIONS(2382), + [anon_sym_finally] = ACTIONS(2382), + [anon_sym_in] = ACTIONS(2382), + [sym__newline] = ACTIONS(2382), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_err_GT_PIPE] = ACTIONS(2382), + [anon_sym_out_GT_PIPE] = ACTIONS(2382), + [anon_sym_e_GT_PIPE] = ACTIONS(2382), + [anon_sym_o_GT_PIPE] = ACTIONS(2382), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2382), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2382), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2382), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2382), + [anon_sym_GT2] = ACTIONS(2384), + [anon_sym_DASH2] = ACTIONS(2382), + [anon_sym_STAR2] = ACTIONS(2384), + [anon_sym_and2] = ACTIONS(2382), + [anon_sym_xor2] = ACTIONS(2382), + [anon_sym_or2] = ACTIONS(2382), + [anon_sym_not_DASHin2] = ACTIONS(2382), + [anon_sym_has2] = ACTIONS(2382), + [anon_sym_not_DASHhas2] = ACTIONS(2382), + [anon_sym_starts_DASHwith2] = ACTIONS(2382), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2382), + [anon_sym_ends_DASHwith2] = ACTIONS(2382), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2382), + [anon_sym_EQ_EQ2] = ACTIONS(2382), + [anon_sym_BANG_EQ2] = ACTIONS(2382), + [anon_sym_LT2] = ACTIONS(2384), + [anon_sym_LT_EQ2] = ACTIONS(2382), + [anon_sym_GT_EQ2] = ACTIONS(2382), + [anon_sym_EQ_TILDE2] = ACTIONS(2382), + [anon_sym_BANG_TILDE2] = ACTIONS(2382), + [anon_sym_like2] = ACTIONS(2382), + [anon_sym_not_DASHlike2] = ACTIONS(2382), + [anon_sym_STAR_STAR2] = ACTIONS(2382), + [anon_sym_PLUS_PLUS2] = ACTIONS(2382), + [anon_sym_SLASH2] = ACTIONS(2384), + [anon_sym_mod2] = ACTIONS(2382), + [anon_sym_SLASH_SLASH2] = ACTIONS(2382), + [anon_sym_PLUS2] = ACTIONS(2384), + [anon_sym_bit_DASHshl2] = ACTIONS(2382), + [anon_sym_bit_DASHshr2] = ACTIONS(2382), + [anon_sym_bit_DASHand2] = ACTIONS(2382), + [anon_sym_bit_DASHxor2] = ACTIONS(2382), + [anon_sym_bit_DASHor2] = ACTIONS(2382), + [anon_sym_err_GT] = ACTIONS(2384), + [anon_sym_out_GT] = ACTIONS(2384), + [anon_sym_e_GT] = ACTIONS(2384), + [anon_sym_o_GT] = ACTIONS(2384), + [anon_sym_err_PLUSout_GT] = ACTIONS(2384), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2384), + [anon_sym_o_PLUSe_GT] = ACTIONS(2384), + [anon_sym_e_PLUSo_GT] = ACTIONS(2384), + [anon_sym_err_GT_GT] = ACTIONS(2382), + [anon_sym_out_GT_GT] = ACTIONS(2382), + [anon_sym_e_GT_GT] = ACTIONS(2382), + [anon_sym_o_GT_GT] = ACTIONS(2382), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2382), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2382), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2382), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2382), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1220)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(2445), - [anon_sym_finally] = 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_GT2] = ACTIONS(2447), - [anon_sym_DASH2] = 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_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2826), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1221)] = { - [aux_sym__repeat_newline] = STATE(1266), [sym_comment] = STATE(1221), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2806), - [anon_sym_bit_DASHxor2] = ACTIONS(2806), - [anon_sym_bit_DASHor2] = ACTIONS(2806), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [ts_builtin_sym_end] = ACTIONS(2386), + [anon_sym_finally] = ACTIONS(2386), + [anon_sym_in] = ACTIONS(2386), + [sym__newline] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2386), + [anon_sym_err_GT_PIPE] = ACTIONS(2386), + [anon_sym_out_GT_PIPE] = ACTIONS(2386), + [anon_sym_e_GT_PIPE] = ACTIONS(2386), + [anon_sym_o_GT_PIPE] = ACTIONS(2386), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2386), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2386), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2386), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2386), + [anon_sym_GT2] = ACTIONS(2388), + [anon_sym_DASH2] = ACTIONS(2386), + [anon_sym_STAR2] = ACTIONS(2388), + [anon_sym_and2] = ACTIONS(2386), + [anon_sym_xor2] = ACTIONS(2386), + [anon_sym_or2] = ACTIONS(2386), + [anon_sym_not_DASHin2] = ACTIONS(2386), + [anon_sym_has2] = ACTIONS(2386), + [anon_sym_not_DASHhas2] = ACTIONS(2386), + [anon_sym_starts_DASHwith2] = ACTIONS(2386), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2386), + [anon_sym_ends_DASHwith2] = ACTIONS(2386), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2386), + [anon_sym_EQ_EQ2] = ACTIONS(2386), + [anon_sym_BANG_EQ2] = ACTIONS(2386), + [anon_sym_LT2] = ACTIONS(2388), + [anon_sym_LT_EQ2] = ACTIONS(2386), + [anon_sym_GT_EQ2] = ACTIONS(2386), + [anon_sym_EQ_TILDE2] = ACTIONS(2386), + [anon_sym_BANG_TILDE2] = ACTIONS(2386), + [anon_sym_like2] = ACTIONS(2386), + [anon_sym_not_DASHlike2] = ACTIONS(2386), + [anon_sym_STAR_STAR2] = ACTIONS(2386), + [anon_sym_PLUS_PLUS2] = ACTIONS(2386), + [anon_sym_SLASH2] = ACTIONS(2388), + [anon_sym_mod2] = ACTIONS(2386), + [anon_sym_SLASH_SLASH2] = ACTIONS(2386), + [anon_sym_PLUS2] = ACTIONS(2388), + [anon_sym_bit_DASHshl2] = ACTIONS(2386), + [anon_sym_bit_DASHshr2] = ACTIONS(2386), + [anon_sym_bit_DASHand2] = ACTIONS(2386), + [anon_sym_bit_DASHxor2] = ACTIONS(2386), + [anon_sym_bit_DASHor2] = ACTIONS(2386), + [anon_sym_err_GT] = ACTIONS(2388), + [anon_sym_out_GT] = ACTIONS(2388), + [anon_sym_e_GT] = ACTIONS(2388), + [anon_sym_o_GT] = ACTIONS(2388), + [anon_sym_err_PLUSout_GT] = ACTIONS(2388), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2388), + [anon_sym_o_PLUSe_GT] = ACTIONS(2388), + [anon_sym_e_PLUSo_GT] = ACTIONS(2388), + [anon_sym_err_GT_GT] = ACTIONS(2386), + [anon_sym_out_GT_GT] = ACTIONS(2386), + [anon_sym_e_GT_GT] = ACTIONS(2386), + [anon_sym_o_GT_GT] = ACTIONS(2386), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2386), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2386), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2386), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2386), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1222)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1222), - [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(2892), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [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(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [anon_sym_PLUS2] = ACTIONS(2902), - [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_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2790), + [anon_sym_bit_DASHor2] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1223)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1223), - [anon_sym_in] = ACTIONS(2794), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2796), - [anon_sym_DASH2] = ACTIONS(2794), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2794), - [anon_sym_has2] = ACTIONS(2794), - [anon_sym_not_DASHhas2] = ACTIONS(2794), - [anon_sym_starts_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), - [anon_sym_ends_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2796), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2794), - [anon_sym_BANG_TILDE2] = ACTIONS(2794), - [anon_sym_like2] = ACTIONS(2794), - [anon_sym_not_DASHlike2] = ACTIONS(2794), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2794), - [anon_sym_bit_DASHshr2] = ACTIONS(2794), - [anon_sym_bit_DASHand2] = ACTIONS(2794), - [anon_sym_bit_DASHxor2] = ACTIONS(2794), - [anon_sym_bit_DASHor2] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [ts_builtin_sym_end] = ACTIONS(2390), + [anon_sym_finally] = ACTIONS(2390), + [anon_sym_in] = ACTIONS(2390), + [sym__newline] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_err_GT_PIPE] = ACTIONS(2390), + [anon_sym_out_GT_PIPE] = ACTIONS(2390), + [anon_sym_e_GT_PIPE] = ACTIONS(2390), + [anon_sym_o_GT_PIPE] = ACTIONS(2390), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2390), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2390), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2390), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2390), + [anon_sym_GT2] = ACTIONS(2392), + [anon_sym_DASH2] = ACTIONS(2390), + [anon_sym_STAR2] = ACTIONS(2392), + [anon_sym_and2] = ACTIONS(2390), + [anon_sym_xor2] = ACTIONS(2390), + [anon_sym_or2] = ACTIONS(2390), + [anon_sym_not_DASHin2] = ACTIONS(2390), + [anon_sym_has2] = ACTIONS(2390), + [anon_sym_not_DASHhas2] = ACTIONS(2390), + [anon_sym_starts_DASHwith2] = ACTIONS(2390), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2390), + [anon_sym_ends_DASHwith2] = ACTIONS(2390), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2390), + [anon_sym_EQ_EQ2] = ACTIONS(2390), + [anon_sym_BANG_EQ2] = ACTIONS(2390), + [anon_sym_LT2] = ACTIONS(2392), + [anon_sym_LT_EQ2] = ACTIONS(2390), + [anon_sym_GT_EQ2] = ACTIONS(2390), + [anon_sym_EQ_TILDE2] = ACTIONS(2390), + [anon_sym_BANG_TILDE2] = ACTIONS(2390), + [anon_sym_like2] = ACTIONS(2390), + [anon_sym_not_DASHlike2] = ACTIONS(2390), + [anon_sym_STAR_STAR2] = ACTIONS(2390), + [anon_sym_PLUS_PLUS2] = ACTIONS(2390), + [anon_sym_SLASH2] = ACTIONS(2392), + [anon_sym_mod2] = ACTIONS(2390), + [anon_sym_SLASH_SLASH2] = ACTIONS(2390), + [anon_sym_PLUS2] = ACTIONS(2392), + [anon_sym_bit_DASHshl2] = ACTIONS(2390), + [anon_sym_bit_DASHshr2] = ACTIONS(2390), + [anon_sym_bit_DASHand2] = ACTIONS(2390), + [anon_sym_bit_DASHxor2] = ACTIONS(2390), + [anon_sym_bit_DASHor2] = ACTIONS(2390), + [anon_sym_err_GT] = ACTIONS(2392), + [anon_sym_out_GT] = ACTIONS(2392), + [anon_sym_e_GT] = ACTIONS(2392), + [anon_sym_o_GT] = ACTIONS(2392), + [anon_sym_err_PLUSout_GT] = ACTIONS(2392), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2392), + [anon_sym_o_PLUSe_GT] = ACTIONS(2392), + [anon_sym_e_PLUSo_GT] = ACTIONS(2392), + [anon_sym_err_GT_GT] = ACTIONS(2390), + [anon_sym_out_GT_GT] = ACTIONS(2390), + [anon_sym_e_GT_GT] = ACTIONS(2390), + [anon_sym_o_GT_GT] = ACTIONS(2390), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2390), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2390), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2390), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2390), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2810), - [anon_sym_bit_DASHxor2] = ACTIONS(2810), - [anon_sym_bit_DASHor2] = ACTIONS(2810), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2790), + [anon_sym_xor2] = ACTIONS(2790), + [anon_sym_or2] = ACTIONS(2790), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(2792), + [anon_sym_out_GT] = ACTIONS(2792), + [anon_sym_e_GT] = ACTIONS(2792), + [anon_sym_o_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT] = ACTIONS(2792), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1225)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1225), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2794), - [anon_sym_BANG_TILDE2] = ACTIONS(2794), - [anon_sym_like2] = ACTIONS(2794), - [anon_sym_not_DASHlike2] = ACTIONS(2794), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2794), - [anon_sym_bit_DASHxor2] = ACTIONS(2794), - [anon_sym_bit_DASHor2] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1714), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_COLON2] = ACTIONS(1716), + [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(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1226)] = { - [aux_sym__repeat_newline] = STATE(1268), + [aux_sym__repeat_newline] = STATE(1163), [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2806), - [anon_sym_bit_DASHor2] = ACTIONS(2806), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2928), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [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(1227)] = { + [aux_sym__repeat_newline] = STATE(1167), [sym_comment] = STATE(1227), - [ts_builtin_sym_end] = ACTIONS(2616), - [aux_sym_cmd_identifier_token2] = ACTIONS(2822), - [anon_sym_in] = ACTIONS(2618), - [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_GT2] = ACTIONS(2618), - [anon_sym_DASH2] = ACTIONS(2618), - [anon_sym_STAR2] = ACTIONS(2618), - [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(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(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(2618), - [anon_sym_mod2] = ACTIONS(2618), - [anon_sym_SLASH_SLASH2] = ACTIONS(2618), - [anon_sym_PLUS2] = ACTIONS(2618), - [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(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(103), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2861), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [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(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [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(1228)] = { - [aux_sym__repeat_newline] = STATE(485), + [sym__expression] = STATE(5053), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2259), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_comment] = STATE(1228), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2784), - [anon_sym_bit_DASHor2] = ACTIONS(2784), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2654), + [anon_sym_DQUOTE] = 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(1229)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1231), [sym_comment] = STATE(1229), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2810), - [anon_sym_bit_DASHor2] = ACTIONS(2810), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2928), + [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(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [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(1230)] = { - [sym__ctrl_match_body] = STATE(5303), - [sym_match_arm] = STATE(4828), - [sym_default_arm] = STATE(4828), - [sym_match_pattern] = STATE(5314), - [sym__match_pattern] = STATE(4156), - [sym__match_pattern_expression] = STATE(4612), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_record] = STATE(4620), - [sym_expr_parenthesized] = STATE(3917), - [sym_val_range] = STATE(4618), - [sym__val_range] = STATE(5288), - [sym_val_nothing] = STATE(4620), - [sym_val_bool] = STATE(4286), - [sym_val_variable] = STATE(3872), - [sym_val_number] = STATE(4620), - [sym__val_number_decimal] = STATE(3638), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(4620), - [sym_val_filesize] = STATE(4620), - [sym_val_binary] = STATE(4620), - [sym_val_string] = STATE(4620), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_table] = STATE(4620), - [sym_unquoted] = STATE(4621), - [sym__unquoted_anonymous_prefix] = STATE(5288), + [aux_sym__repeat_newline] = STATE(1168), [sym_comment] = STATE(1230), - [aux_sym__types_body_repeat1] = STATE(1357), - [aux_sym__ctrl_match_body_repeat1] = STATE(1386), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2930), - [aux_sym_cmd_identifier_token3] = ACTIONS(2932), - [aux_sym_cmd_identifier_token4] = ACTIONS(2932), - [aux_sym_cmd_identifier_token5] = ACTIONS(2932), - [sym__newline] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym__] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(2946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), - [anon_sym_DOT_DOT_LT] = ACTIONS(2948), - [aux_sym__val_number_decimal_token1] = ACTIONS(2950), - [aux_sym__val_number_decimal_token2] = ACTIONS(2952), - [aux_sym__val_number_decimal_token3] = ACTIONS(2954), - [aux_sym__val_number_decimal_token4] = ACTIONS(2954), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2861), + [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(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [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), - [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(1231)] = { - [aux_sym__repeat_newline] = STATE(1205), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2806), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2696), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2698), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2696), + [anon_sym_has2] = ACTIONS(2696), + [anon_sym_not_DASHhas2] = ACTIONS(2696), + [anon_sym_starts_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), + [anon_sym_ends_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), + [anon_sym_EQ_EQ2] = ACTIONS(2696), + [anon_sym_BANG_EQ2] = ACTIONS(2696), + [anon_sym_LT2] = ACTIONS(2698), + [anon_sym_LT_EQ2] = ACTIONS(2696), + [anon_sym_GT_EQ2] = ACTIONS(2696), + [anon_sym_EQ_TILDE2] = ACTIONS(2696), + [anon_sym_BANG_TILDE2] = ACTIONS(2696), + [anon_sym_like2] = ACTIONS(2696), + [anon_sym_not_DASHlike2] = ACTIONS(2696), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2696), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1232)] = { + [sym__expression] = STATE(4997), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2259), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), [sym_comment] = STATE(1232), - [anon_sym_in] = ACTIONS(2910), - [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(2890), - [anon_sym_DASH2] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [anon_sym_and2] = ACTIONS(2648), - [anon_sym_xor2] = ACTIONS(2648), - [anon_sym_or2] = ACTIONS(2648), - [anon_sym_not_DASHin2] = ACTIONS(2910), - [anon_sym_has2] = ACTIONS(2910), - [anon_sym_not_DASHhas2] = ACTIONS(2910), - [anon_sym_starts_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), - [anon_sym_ends_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), - [anon_sym_EQ_EQ2] = ACTIONS(2896), - [anon_sym_BANG_EQ2] = ACTIONS(2896), - [anon_sym_LT2] = ACTIONS(2890), - [anon_sym_LT_EQ2] = ACTIONS(2896), - [anon_sym_GT_EQ2] = ACTIONS(2896), - [anon_sym_EQ_TILDE2] = ACTIONS(2912), - [anon_sym_BANG_TILDE2] = ACTIONS(2912), - [anon_sym_like2] = ACTIONS(2912), - [anon_sym_not_DASHlike2] = ACTIONS(2912), - [anon_sym_STAR_STAR2] = ACTIONS(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [anon_sym_PLUS2] = ACTIONS(2902), - [anon_sym_bit_DASHshl2] = ACTIONS(2904), - [anon_sym_bit_DASHshr2] = ACTIONS(2904), - [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(1233)] = { - [sym__ctrl_match_body] = STATE(5486), - [sym_match_arm] = STATE(4828), - [sym_default_arm] = STATE(4828), - [sym_match_pattern] = STATE(5314), - [sym__match_pattern] = STATE(4156), - [sym__match_pattern_expression] = STATE(4612), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_record] = STATE(4620), - [sym_expr_parenthesized] = STATE(3917), - [sym_val_range] = STATE(4618), - [sym__val_range] = STATE(5288), - [sym_val_nothing] = STATE(4620), - [sym_val_bool] = STATE(4286), - [sym_val_variable] = STATE(3872), - [sym_val_number] = STATE(4620), - [sym__val_number_decimal] = STATE(3638), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(4620), - [sym_val_filesize] = STATE(4620), - [sym_val_binary] = STATE(4620), - [sym_val_string] = STATE(4620), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_table] = STATE(4620), - [sym_unquoted] = STATE(4621), - [sym__unquoted_anonymous_prefix] = STATE(5288), - [sym_comment] = STATE(1233), - [aux_sym__types_body_repeat1] = STATE(1357), - [aux_sym__ctrl_match_body_repeat1] = STATE(1386), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2930), - [aux_sym_cmd_identifier_token3] = ACTIONS(2932), - [aux_sym_cmd_identifier_token4] = ACTIONS(2932), - [aux_sym_cmd_identifier_token5] = ACTIONS(2932), - [sym__newline] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_RBRACE] = ACTIONS(2958), - [anon_sym__] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(2946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), - [anon_sym_DOT_DOT_LT] = ACTIONS(2948), - [aux_sym__val_number_decimal_token1] = ACTIONS(2950), - [aux_sym__val_number_decimal_token2] = ACTIONS(2952), - [aux_sym__val_number_decimal_token3] = ACTIONS(2954), - [aux_sym__val_number_decimal_token4] = ACTIONS(2954), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token2] = ACTIONS(2933), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1270), + [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(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [sym_val_date] = ACTIONS(2654), + [anon_sym_DQUOTE] = 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(1233)] = { + [aux_sym__repeat_newline] = STATE(1169), + [sym_comment] = STATE(1233), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2861), + [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(2839), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [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), - [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1276), [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_err_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_GT_PIPE] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2810), - [anon_sym_xor2] = ACTIONS(2810), - [anon_sym_or2] = ACTIONS(2810), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2810), - [anon_sym_err_GT] = ACTIONS(2812), - [anon_sym_out_GT] = ACTIONS(2812), - [anon_sym_e_GT] = ACTIONS(2812), - [anon_sym_o_GT] = ACTIONS(2812), - [anon_sym_err_PLUSout_GT] = ACTIONS(2812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), - [anon_sym_o_PLUSe_GT] = ACTIONS(2812), - [anon_sym_e_PLUSo_GT] = ACTIONS(2812), - [anon_sym_err_GT_GT] = ACTIONS(2810), - [anon_sym_out_GT_GT] = ACTIONS(2810), - [anon_sym_e_GT_GT] = ACTIONS(2810), - [anon_sym_o_GT_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2935), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2937), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [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(1235)] = { - [aux_sym__repeat_newline] = STATE(1214), + [aux_sym__repeat_newline] = STATE(1179), [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2924), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2822), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2822), + [anon_sym_has2] = ACTIONS(2822), + [anon_sym_not_DASHhas2] = ACTIONS(2822), + [anon_sym_starts_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), + [anon_sym_ends_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2822), + [anon_sym_BANG_TILDE2] = ACTIONS(2822), + [anon_sym_like2] = ACTIONS(2822), + [anon_sym_not_DASHlike2] = ACTIONS(2822), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2822), + [anon_sym_bit_DASHxor2] = ACTIONS(2822), + [anon_sym_bit_DASHor2] = ACTIONS(2822), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1236)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2910), - [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(2890), - [anon_sym_DASH2] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [anon_sym_and2] = ACTIONS(2648), - [anon_sym_xor2] = ACTIONS(2648), - [anon_sym_or2] = ACTIONS(2648), - [anon_sym_not_DASHin2] = ACTIONS(2910), - [anon_sym_has2] = ACTIONS(2910), - [anon_sym_not_DASHhas2] = ACTIONS(2910), - [anon_sym_starts_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), - [anon_sym_ends_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), - [anon_sym_EQ_EQ2] = ACTIONS(2896), - [anon_sym_BANG_EQ2] = ACTIONS(2896), - [anon_sym_LT2] = ACTIONS(2890), - [anon_sym_LT_EQ2] = ACTIONS(2896), - [anon_sym_GT_EQ2] = ACTIONS(2896), - [anon_sym_EQ_TILDE2] = ACTIONS(2912), - [anon_sym_BANG_TILDE2] = ACTIONS(2912), - [anon_sym_like2] = ACTIONS(2912), - [anon_sym_not_DASHlike2] = ACTIONS(2912), - [anon_sym_STAR_STAR2] = ACTIONS(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [anon_sym_PLUS2] = ACTIONS(2902), - [anon_sym_bit_DASHshl2] = ACTIONS(2904), - [anon_sym_bit_DASHshr2] = ACTIONS(2904), - [anon_sym_bit_DASHand2] = ACTIONS(2914), - [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_in] = ACTIONS(2696), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2698), + [anon_sym_DASH2] = ACTIONS(2696), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2696), + [anon_sym_has2] = ACTIONS(2696), + [anon_sym_not_DASHhas2] = ACTIONS(2696), + [anon_sym_starts_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), + [anon_sym_ends_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), + [anon_sym_EQ_EQ2] = ACTIONS(2696), + [anon_sym_BANG_EQ2] = ACTIONS(2696), + [anon_sym_LT2] = ACTIONS(2698), + [anon_sym_LT_EQ2] = ACTIONS(2696), + [anon_sym_GT_EQ2] = ACTIONS(2696), + [anon_sym_EQ_TILDE2] = ACTIONS(2696), + [anon_sym_BANG_TILDE2] = ACTIONS(2696), + [anon_sym_like2] = ACTIONS(2696), + [anon_sym_not_DASHlike2] = ACTIONS(2696), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2698), + [anon_sym_bit_DASHshl2] = ACTIONS(2696), + [anon_sym_bit_DASHshr2] = ACTIONS(2696), + [anon_sym_bit_DASHand2] = ACTIONS(2696), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1237)] = { - [aux_sym__repeat_newline] = STATE(1165), [sym_comment] = STATE(1237), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2788), - [anon_sym_STAR2] = ACTIONS(2790), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2788), - [anon_sym_BANG_TILDE2] = ACTIONS(2788), - [anon_sym_like2] = ACTIONS(2788), - [anon_sym_not_DASHlike2] = ACTIONS(2788), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2790), - [anon_sym_mod2] = ACTIONS(2788), - [anon_sym_SLASH_SLASH2] = ACTIONS(2788), - [anon_sym_PLUS2] = ACTIONS(2790), - [anon_sym_bit_DASHshl2] = ACTIONS(2788), - [anon_sym_bit_DASHshr2] = ACTIONS(2788), - [anon_sym_bit_DASHand2] = ACTIONS(2788), - [anon_sym_bit_DASHxor2] = ACTIONS(2788), - [anon_sym_bit_DASHor2] = ACTIONS(2788), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_in] = ACTIONS(884), + [sym__newline] = ACTIONS(884), + [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_GT2] = ACTIONS(785), + [anon_sym_DASH2] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_and2] = ACTIONS(884), + [anon_sym_xor2] = ACTIONS(884), + [anon_sym_or2] = ACTIONS(884), + [anon_sym_not_DASHin2] = ACTIONS(884), + [anon_sym_has2] = ACTIONS(884), + [anon_sym_not_DASHhas2] = ACTIONS(884), + [anon_sym_starts_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), + [anon_sym_ends_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(785), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(884), + [anon_sym_like2] = ACTIONS(884), + [anon_sym_not_DASHlike2] = ACTIONS(884), + [anon_sym_STAR_STAR2] = ACTIONS(884), + [anon_sym_PLUS_PLUS2] = ACTIONS(884), + [anon_sym_SLASH2] = ACTIONS(785), + [anon_sym_mod2] = ACTIONS(884), + [anon_sym_SLASH_SLASH2] = ACTIONS(884), + [anon_sym_PLUS2] = ACTIONS(785), + [anon_sym_bit_DASHshl2] = ACTIONS(884), + [anon_sym_bit_DASHshr2] = ACTIONS(884), + [anon_sym_bit_DASHand2] = ACTIONS(884), + [anon_sym_bit_DASHxor2] = ACTIONS(884), + [anon_sym_bit_DASHor2] = ACTIONS(884), + [anon_sym_err_GT] = ACTIONS(785), + [anon_sym_out_GT] = ACTIONS(785), + [anon_sym_e_GT] = ACTIONS(785), + [anon_sym_o_GT] = ACTIONS(785), + [anon_sym_err_PLUSout_GT] = ACTIONS(785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(785), + [anon_sym_o_PLUSe_GT] = ACTIONS(785), + [anon_sym_e_PLUSo_GT] = ACTIONS(785), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [sym__unquoted_pattern] = ACTIONS(1846), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1238)] = { + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1238), - [anon_sym_in] = ACTIONS(2910), - [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(2890), - [anon_sym_DASH2] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2894), - [anon_sym_and2] = ACTIONS(2648), - [anon_sym_xor2] = ACTIONS(2648), - [anon_sym_or2] = ACTIONS(2648), - [anon_sym_not_DASHin2] = ACTIONS(2910), - [anon_sym_has2] = ACTIONS(2910), - [anon_sym_not_DASHhas2] = ACTIONS(2910), - [anon_sym_starts_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), - [anon_sym_ends_DASHwith2] = ACTIONS(2910), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), - [anon_sym_EQ_EQ2] = ACTIONS(2896), - [anon_sym_BANG_EQ2] = ACTIONS(2896), - [anon_sym_LT2] = ACTIONS(2890), - [anon_sym_LT_EQ2] = ACTIONS(2896), - [anon_sym_GT_EQ2] = ACTIONS(2896), - [anon_sym_EQ_TILDE2] = ACTIONS(2912), - [anon_sym_BANG_TILDE2] = ACTIONS(2912), - [anon_sym_like2] = ACTIONS(2912), - [anon_sym_not_DASHlike2] = ACTIONS(2912), - [anon_sym_STAR_STAR2] = ACTIONS(2898), - [anon_sym_PLUS_PLUS2] = ACTIONS(2898), - [anon_sym_SLASH2] = ACTIONS(2894), - [anon_sym_mod2] = ACTIONS(2900), - [anon_sym_SLASH_SLASH2] = ACTIONS(2900), - [anon_sym_PLUS2] = ACTIONS(2902), - [anon_sym_bit_DASHshl2] = ACTIONS(2904), - [anon_sym_bit_DASHshr2] = ACTIONS(2904), - [anon_sym_bit_DASHand2] = ACTIONS(2914), - [anon_sym_bit_DASHxor2] = ACTIONS(2916), - [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_in] = ACTIONS(2826), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2826), + [anon_sym_has2] = ACTIONS(2826), + [anon_sym_not_DASHhas2] = ACTIONS(2826), + [anon_sym_starts_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), + [anon_sym_ends_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2826), + [anon_sym_BANG_TILDE2] = ACTIONS(2826), + [anon_sym_like2] = ACTIONS(2826), + [anon_sym_not_DASHlike2] = ACTIONS(2826), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2826), + [anon_sym_bit_DASHor2] = ACTIONS(2826), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1239)] = { + [aux_sym__repeat_newline] = STATE(1185), [sym_comment] = STATE(1239), - [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_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_LBRACK2] = ACTIONS(2960), - [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_in] = ACTIONS(2822), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2824), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2822), + [anon_sym_has2] = ACTIONS(2822), + [anon_sym_not_DASHhas2] = ACTIONS(2822), + [anon_sym_starts_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), + [anon_sym_ends_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), + [anon_sym_EQ_EQ2] = ACTIONS(2822), + [anon_sym_BANG_EQ2] = ACTIONS(2822), + [anon_sym_LT2] = ACTIONS(2824), + [anon_sym_LT_EQ2] = ACTIONS(2822), + [anon_sym_GT_EQ2] = ACTIONS(2822), + [anon_sym_EQ_TILDE2] = ACTIONS(2822), + [anon_sym_BANG_TILDE2] = ACTIONS(2822), + [anon_sym_like2] = ACTIONS(2822), + [anon_sym_not_DASHlike2] = ACTIONS(2822), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2822), + [anon_sym_bit_DASHxor2] = ACTIONS(2822), + [anon_sym_bit_DASHor2] = ACTIONS(2822), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1240)] = { - [sym__ctrl_match_body] = STATE(5229), - [sym_match_arm] = STATE(4828), - [sym_default_arm] = STATE(4828), - [sym_match_pattern] = STATE(5314), - [sym__match_pattern] = STATE(4156), - [sym__match_pattern_expression] = STATE(4612), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_record] = STATE(4620), - [sym_expr_parenthesized] = STATE(3917), - [sym_val_range] = STATE(4618), - [sym__val_range] = STATE(5288), - [sym_val_nothing] = STATE(4620), - [sym_val_bool] = STATE(4286), - [sym_val_variable] = STATE(3872), - [sym_val_number] = STATE(4620), - [sym__val_number_decimal] = STATE(3638), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(4620), - [sym_val_filesize] = STATE(4620), - [sym_val_binary] = STATE(4620), - [sym_val_string] = STATE(4620), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_table] = STATE(4620), - [sym_unquoted] = STATE(4621), - [sym__unquoted_anonymous_prefix] = STATE(5288), + [aux_sym__repeat_newline] = STATE(1170), [sym_comment] = STATE(1240), - [aux_sym__types_body_repeat1] = STATE(1357), - [aux_sym__ctrl_match_body_repeat1] = STATE(1386), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2930), - [aux_sym_cmd_identifier_token3] = ACTIONS(2932), - [aux_sym_cmd_identifier_token4] = ACTIONS(2932), - [aux_sym_cmd_identifier_token5] = ACTIONS(2932), - [sym__newline] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_RBRACE] = ACTIONS(2962), - [anon_sym__] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(2946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), - [anon_sym_DOT_DOT_LT] = ACTIONS(2948), - [aux_sym__val_number_decimal_token1] = ACTIONS(2950), - [aux_sym__val_number_decimal_token2] = ACTIONS(2952), - [aux_sym__val_number_decimal_token3] = ACTIONS(2954), - [aux_sym__val_number_decimal_token4] = ACTIONS(2954), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2861), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [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), - [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(1241)] = { - [sym__ctrl_match_body] = STATE(5234), - [sym_match_arm] = STATE(4828), - [sym_default_arm] = STATE(4828), - [sym_match_pattern] = STATE(5314), - [sym__match_pattern] = STATE(4156), - [sym__match_pattern_expression] = STATE(4612), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_record] = STATE(4620), - [sym_expr_parenthesized] = STATE(3917), - [sym_val_range] = STATE(4618), - [sym__val_range] = STATE(5288), - [sym_val_nothing] = STATE(4620), - [sym_val_bool] = STATE(4286), - [sym_val_variable] = STATE(3872), - [sym_val_number] = STATE(4620), - [sym__val_number_decimal] = STATE(3638), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(4620), - [sym_val_filesize] = STATE(4620), - [sym_val_binary] = STATE(4620), - [sym_val_string] = STATE(4620), - [sym__raw_str] = STATE(2274), - [sym__str_double_quotes] = STATE(2274), - [sym__str_single_quotes] = STATE(2274), - [sym__str_back_ticks] = STATE(2274), - [sym_val_table] = STATE(4620), - [sym_unquoted] = STATE(4621), - [sym__unquoted_anonymous_prefix] = STATE(5288), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1241), - [aux_sym__types_body_repeat1] = STATE(1357), - [aux_sym__ctrl_match_body_repeat1] = STATE(1386), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2930), - [aux_sym_cmd_identifier_token3] = ACTIONS(2932), - [aux_sym_cmd_identifier_token4] = ACTIONS(2932), - [aux_sym_cmd_identifier_token5] = ACTIONS(2932), - [sym__newline] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_RBRACE] = ACTIONS(2964), - [anon_sym__] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(2946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), - [anon_sym_DOT_DOT_LT] = ACTIONS(2948), - [aux_sym__val_number_decimal_token1] = ACTIONS(2950), - [aux_sym__val_number_decimal_token2] = ACTIONS(2952), - [aux_sym__val_number_decimal_token3] = ACTIONS(2954), - [aux_sym__val_number_decimal_token4] = ACTIONS(2954), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1776), - [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(2826), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2828), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2826), + [anon_sym_has2] = ACTIONS(2826), + [anon_sym_not_DASHhas2] = ACTIONS(2826), + [anon_sym_starts_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), + [anon_sym_ends_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), + [anon_sym_EQ_EQ2] = ACTIONS(2826), + [anon_sym_BANG_EQ2] = ACTIONS(2826), + [anon_sym_LT2] = ACTIONS(2828), + [anon_sym_LT_EQ2] = ACTIONS(2826), + [anon_sym_GT_EQ2] = ACTIONS(2826), + [anon_sym_EQ_TILDE2] = ACTIONS(2826), + [anon_sym_BANG_TILDE2] = ACTIONS(2826), + [anon_sym_like2] = ACTIONS(2826), + [anon_sym_not_DASHlike2] = ACTIONS(2826), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2826), + [anon_sym_bit_DASHor2] = ACTIONS(2826), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(1242)] = { - [aux_sym__repeat_newline] = STATE(1204), [sym_comment] = STATE(1242), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2922), - [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(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2924), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [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), + [ts_builtin_sym_end] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [sym__newline] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_err_GT_PIPE] = ACTIONS(2116), + [anon_sym_out_GT_PIPE] = ACTIONS(2116), + [anon_sym_e_GT_PIPE] = ACTIONS(2116), + [anon_sym_o_GT_PIPE] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2116), + [anon_sym_GT2] = ACTIONS(2118), + [anon_sym_DASH2] = ACTIONS(2116), + [anon_sym_STAR2] = ACTIONS(2118), + [anon_sym_and2] = ACTIONS(2116), + [anon_sym_xor2] = ACTIONS(2116), + [anon_sym_or2] = ACTIONS(2116), + [anon_sym_not_DASHin2] = ACTIONS(2116), + [anon_sym_has2] = ACTIONS(2116), + [anon_sym_not_DASHhas2] = ACTIONS(2116), + [anon_sym_starts_DASHwith2] = ACTIONS(2116), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2116), + [anon_sym_ends_DASHwith2] = ACTIONS(2116), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2116), + [anon_sym_EQ_EQ2] = ACTIONS(2116), + [anon_sym_BANG_EQ2] = ACTIONS(2116), + [anon_sym_LT2] = ACTIONS(2118), + [anon_sym_LT_EQ2] = ACTIONS(2116), + [anon_sym_GT_EQ2] = ACTIONS(2116), + [anon_sym_EQ_TILDE2] = ACTIONS(2116), + [anon_sym_BANG_TILDE2] = ACTIONS(2116), + [anon_sym_like2] = ACTIONS(2116), + [anon_sym_not_DASHlike2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2116), + [anon_sym_STAR_STAR2] = ACTIONS(2116), + [anon_sym_PLUS_PLUS2] = ACTIONS(2116), + [anon_sym_SLASH2] = ACTIONS(2118), + [anon_sym_mod2] = ACTIONS(2116), + [anon_sym_SLASH_SLASH2] = ACTIONS(2116), + [anon_sym_PLUS2] = ACTIONS(2118), + [anon_sym_bit_DASHshl2] = ACTIONS(2116), + [anon_sym_bit_DASHshr2] = ACTIONS(2116), + [anon_sym_bit_DASHand2] = ACTIONS(2116), + [anon_sym_bit_DASHxor2] = ACTIONS(2116), + [anon_sym_bit_DASHor2] = ACTIONS(2116), + [anon_sym_err_GT] = ACTIONS(2118), + [anon_sym_out_GT] = ACTIONS(2118), + [anon_sym_e_GT] = ACTIONS(2118), + [anon_sym_o_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT] = ACTIONS(2118), + [anon_sym_err_GT_GT] = ACTIONS(2116), + [anon_sym_out_GT_GT] = ACTIONS(2116), + [anon_sym_e_GT_GT] = ACTIONS(2116), + [anon_sym_o_GT_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2116), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1243)] = { - [aux_sym__repeat_newline] = STATE(1141), + [aux_sym__repeat_newline] = STATE(1186), [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2822), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2824), + [anon_sym_DASH2] = ACTIONS(2822), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2822), + [anon_sym_has2] = ACTIONS(2822), + [anon_sym_not_DASHhas2] = ACTIONS(2822), + [anon_sym_starts_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), + [anon_sym_ends_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), + [anon_sym_EQ_EQ2] = ACTIONS(2822), + [anon_sym_BANG_EQ2] = ACTIONS(2822), + [anon_sym_LT2] = ACTIONS(2824), + [anon_sym_LT_EQ2] = ACTIONS(2822), + [anon_sym_GT_EQ2] = ACTIONS(2822), + [anon_sym_EQ_TILDE2] = ACTIONS(2822), + [anon_sym_BANG_TILDE2] = ACTIONS(2822), + [anon_sym_like2] = ACTIONS(2822), + [anon_sym_not_DASHlike2] = ACTIONS(2822), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2824), + [anon_sym_bit_DASHshl2] = ACTIONS(2822), + [anon_sym_bit_DASHshr2] = ACTIONS(2822), + [anon_sym_bit_DASHand2] = ACTIONS(2822), + [anon_sym_bit_DASHxor2] = ACTIONS(2822), + [anon_sym_bit_DASHor2] = ACTIONS(2822), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1244)] = { - [sym__expression] = STATE(5045), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1244), - [aux_sym_cmd_identifier_token2] = ACTIONS(2822), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = 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(2696), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2698), + [anon_sym_DASH2] = ACTIONS(2696), + [anon_sym_STAR2] = ACTIONS(2698), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2696), + [anon_sym_has2] = ACTIONS(2696), + [anon_sym_not_DASHhas2] = ACTIONS(2696), + [anon_sym_starts_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), + [anon_sym_ends_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), + [anon_sym_EQ_EQ2] = ACTIONS(2696), + [anon_sym_BANG_EQ2] = ACTIONS(2696), + [anon_sym_LT2] = ACTIONS(2698), + [anon_sym_LT_EQ2] = ACTIONS(2696), + [anon_sym_GT_EQ2] = ACTIONS(2696), + [anon_sym_EQ_TILDE2] = ACTIONS(2696), + [anon_sym_BANG_TILDE2] = ACTIONS(2696), + [anon_sym_like2] = ACTIONS(2696), + [anon_sym_not_DASHlike2] = ACTIONS(2696), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2698), + [anon_sym_mod2] = ACTIONS(2696), + [anon_sym_SLASH_SLASH2] = ACTIONS(2696), + [anon_sym_PLUS2] = ACTIONS(2698), + [anon_sym_bit_DASHshl2] = ACTIONS(2696), + [anon_sym_bit_DASHshr2] = ACTIONS(2696), + [anon_sym_bit_DASHand2] = ACTIONS(2696), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1245)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1245), - [anon_sym_in] = ACTIONS(2818), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2818), - [anon_sym_has2] = ACTIONS(2818), - [anon_sym_not_DASHhas2] = ACTIONS(2818), - [anon_sym_starts_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), - [anon_sym_ends_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2818), - [anon_sym_BANG_TILDE2] = ACTIONS(2818), - [anon_sym_like2] = ACTIONS(2818), - [anon_sym_not_DASHlike2] = ACTIONS(2818), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2818), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2818), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2826), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2828), + [anon_sym_DASH2] = ACTIONS(2826), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2826), + [anon_sym_has2] = ACTIONS(2826), + [anon_sym_not_DASHhas2] = ACTIONS(2826), + [anon_sym_starts_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), + [anon_sym_ends_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), + [anon_sym_EQ_EQ2] = ACTIONS(2826), + [anon_sym_BANG_EQ2] = ACTIONS(2826), + [anon_sym_LT2] = ACTIONS(2828), + [anon_sym_LT_EQ2] = ACTIONS(2826), + [anon_sym_GT_EQ2] = ACTIONS(2826), + [anon_sym_EQ_TILDE2] = ACTIONS(2826), + [anon_sym_BANG_TILDE2] = ACTIONS(2826), + [anon_sym_like2] = ACTIONS(2826), + [anon_sym_not_DASHlike2] = ACTIONS(2826), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2828), + [anon_sym_bit_DASHshl2] = ACTIONS(2826), + [anon_sym_bit_DASHshr2] = ACTIONS(2826), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2826), + [anon_sym_bit_DASHor2] = ACTIONS(2826), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1246)] = { + [aux_sym__repeat_newline] = STATE(1281), [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2364), - [sym__newline] = ACTIONS(2364), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_err_GT_PIPE] = ACTIONS(2364), - [anon_sym_out_GT_PIPE] = ACTIONS(2364), - [anon_sym_e_GT_PIPE] = ACTIONS(2364), - [anon_sym_o_GT_PIPE] = ACTIONS(2364), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), - [anon_sym_RPAREN] = ACTIONS(2364), - [anon_sym_GT2] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_STAR2] = ACTIONS(2371), - [anon_sym_and2] = ACTIONS(2364), - [anon_sym_xor2] = ACTIONS(2364), - [anon_sym_or2] = ACTIONS(2364), - [anon_sym_not_DASHin2] = ACTIONS(2364), - [anon_sym_has2] = ACTIONS(2364), - [anon_sym_not_DASHhas2] = ACTIONS(2364), - [anon_sym_starts_DASHwith2] = ACTIONS(2364), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), - [anon_sym_ends_DASHwith2] = ACTIONS(2364), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), - [anon_sym_EQ_EQ2] = ACTIONS(2364), - [anon_sym_BANG_EQ2] = ACTIONS(2364), - [anon_sym_LT2] = ACTIONS(2371), - [anon_sym_LT_EQ2] = ACTIONS(2364), - [anon_sym_GT_EQ2] = ACTIONS(2364), - [anon_sym_EQ_TILDE2] = ACTIONS(2364), - [anon_sym_BANG_TILDE2] = ACTIONS(2364), - [anon_sym_like2] = ACTIONS(2364), - [anon_sym_not_DASHlike2] = ACTIONS(2364), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2371), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2371), - [anon_sym_bit_DASHshl2] = ACTIONS(2364), - [anon_sym_bit_DASHshr2] = ACTIONS(2364), - [anon_sym_bit_DASHand2] = ACTIONS(2364), - [anon_sym_bit_DASHxor2] = ACTIONS(2364), - [anon_sym_bit_DASHor2] = ACTIONS(2364), - [anon_sym_err_GT] = ACTIONS(2371), - [anon_sym_out_GT] = ACTIONS(2371), - [anon_sym_e_GT] = ACTIONS(2371), - [anon_sym_o_GT] = ACTIONS(2371), - [anon_sym_err_PLUSout_GT] = ACTIONS(2371), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2371), - [anon_sym_o_PLUSe_GT] = ACTIONS(2371), - [anon_sym_e_PLUSo_GT] = ACTIONS(2371), - [anon_sym_err_GT_GT] = ACTIONS(2364), - [anon_sym_out_GT_GT] = ACTIONS(2364), - [anon_sym_e_GT_GT] = ACTIONS(2364), - [anon_sym_o_GT_GT] = ACTIONS(2364), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2928), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [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(1247)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1188), [sym_comment] = STATE(1247), - [anon_sym_in] = ACTIONS(2818), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2820), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2818), - [anon_sym_has2] = ACTIONS(2818), - [anon_sym_not_DASHhas2] = ACTIONS(2818), - [anon_sym_starts_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), - [anon_sym_ends_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), - [anon_sym_EQ_EQ2] = ACTIONS(2818), - [anon_sym_BANG_EQ2] = ACTIONS(2818), - [anon_sym_LT2] = ACTIONS(2820), - [anon_sym_LT_EQ2] = ACTIONS(2818), - [anon_sym_GT_EQ2] = ACTIONS(2818), - [anon_sym_EQ_TILDE2] = ACTIONS(2818), - [anon_sym_BANG_TILDE2] = ACTIONS(2818), - [anon_sym_like2] = ACTIONS(2818), - [anon_sym_not_DASHlike2] = ACTIONS(2818), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2818), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2818), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2822), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2824), + [anon_sym_DASH2] = ACTIONS(2822), + [anon_sym_STAR2] = ACTIONS(2824), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2822), + [anon_sym_has2] = ACTIONS(2822), + [anon_sym_not_DASHhas2] = ACTIONS(2822), + [anon_sym_starts_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), + [anon_sym_ends_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), + [anon_sym_EQ_EQ2] = ACTIONS(2822), + [anon_sym_BANG_EQ2] = ACTIONS(2822), + [anon_sym_LT2] = ACTIONS(2824), + [anon_sym_LT_EQ2] = ACTIONS(2822), + [anon_sym_GT_EQ2] = ACTIONS(2822), + [anon_sym_EQ_TILDE2] = ACTIONS(2822), + [anon_sym_BANG_TILDE2] = ACTIONS(2822), + [anon_sym_like2] = ACTIONS(2822), + [anon_sym_not_DASHlike2] = ACTIONS(2822), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2824), + [anon_sym_mod2] = ACTIONS(2822), + [anon_sym_SLASH_SLASH2] = ACTIONS(2822), + [anon_sym_PLUS2] = ACTIONS(2824), + [anon_sym_bit_DASHshl2] = ACTIONS(2822), + [anon_sym_bit_DASHshr2] = ACTIONS(2822), + [anon_sym_bit_DASHand2] = ACTIONS(2822), + [anon_sym_bit_DASHxor2] = ACTIONS(2822), + [anon_sym_bit_DASHor2] = ACTIONS(2822), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1248)] = { + [aux_sym__repeat_newline] = STATE(1171), [sym_comment] = STATE(1248), - [aux_sym_cmd_identifier_token2] = ACTIONS(2754), - [anon_sym_in] = ACTIONS(2362), - [sym__newline] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_err_GT_PIPE] = ACTIONS(2360), - [anon_sym_out_GT_PIPE] = ACTIONS(2360), - [anon_sym_e_GT_PIPE] = ACTIONS(2360), - [anon_sym_o_GT_PIPE] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2360), - [anon_sym_GT2] = ACTIONS(2362), - [anon_sym_DASH2] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2360), - [anon_sym_STAR2] = ACTIONS(2362), - [anon_sym_and2] = ACTIONS(2362), - [anon_sym_xor2] = ACTIONS(2362), - [anon_sym_or2] = ACTIONS(2362), - [anon_sym_not_DASHin2] = ACTIONS(2362), - [anon_sym_has2] = ACTIONS(2362), - [anon_sym_not_DASHhas2] = ACTIONS(2362), - [anon_sym_starts_DASHwith2] = ACTIONS(2362), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2362), - [anon_sym_ends_DASHwith2] = ACTIONS(2362), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2362), - [anon_sym_EQ_EQ2] = ACTIONS(2360), - [anon_sym_BANG_EQ2] = ACTIONS(2360), - [anon_sym_LT2] = ACTIONS(2362), - [anon_sym_LT_EQ2] = ACTIONS(2360), - [anon_sym_GT_EQ2] = ACTIONS(2360), - [anon_sym_EQ_TILDE2] = ACTIONS(2360), - [anon_sym_BANG_TILDE2] = ACTIONS(2362), - [anon_sym_like2] = ACTIONS(2362), - [anon_sym_not_DASHlike2] = ACTIONS(2362), - [anon_sym_STAR_STAR2] = ACTIONS(2362), - [anon_sym_PLUS_PLUS2] = ACTIONS(2362), - [anon_sym_SLASH2] = ACTIONS(2362), - [anon_sym_mod2] = ACTIONS(2362), - [anon_sym_SLASH_SLASH2] = ACTIONS(2362), - [anon_sym_PLUS2] = ACTIONS(2362), - [anon_sym_bit_DASHshl2] = ACTIONS(2362), - [anon_sym_bit_DASHshr2] = ACTIONS(2362), - [anon_sym_bit_DASHand2] = ACTIONS(2362), - [anon_sym_bit_DASHxor2] = ACTIONS(2362), - [anon_sym_bit_DASHor2] = ACTIONS(2362), - [anon_sym_err_GT] = ACTIONS(2362), - [anon_sym_out_GT] = ACTIONS(2362), - [anon_sym_e_GT] = ACTIONS(2362), - [anon_sym_o_GT] = ACTIONS(2362), - [anon_sym_err_PLUSout_GT] = ACTIONS(2362), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2362), - [anon_sym_o_PLUSe_GT] = ACTIONS(2362), - [anon_sym_e_PLUSo_GT] = ACTIONS(2362), - [anon_sym_err_GT_GT] = ACTIONS(2360), - [anon_sym_out_GT_GT] = ACTIONS(2360), - [anon_sym_e_GT_GT] = ACTIONS(2360), - [anon_sym_o_GT_GT] = ACTIONS(2360), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2360), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2360), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2360), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2360), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2861), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [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(1249)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2818), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2820), - [anon_sym_DASH2] = ACTIONS(2818), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2818), - [anon_sym_has2] = ACTIONS(2818), - [anon_sym_not_DASHhas2] = ACTIONS(2818), - [anon_sym_starts_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), - [anon_sym_ends_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), - [anon_sym_EQ_EQ2] = ACTIONS(2818), - [anon_sym_BANG_EQ2] = ACTIONS(2818), - [anon_sym_LT2] = ACTIONS(2820), - [anon_sym_LT_EQ2] = ACTIONS(2818), - [anon_sym_GT_EQ2] = ACTIONS(2818), - [anon_sym_EQ_TILDE2] = ACTIONS(2818), - [anon_sym_BANG_TILDE2] = ACTIONS(2818), - [anon_sym_like2] = ACTIONS(2818), - [anon_sym_not_DASHlike2] = ACTIONS(2818), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2820), - [anon_sym_bit_DASHshl2] = ACTIONS(2818), - [anon_sym_bit_DASHshr2] = ACTIONS(2818), - [anon_sym_bit_DASHand2] = ACTIONS(2818), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2818), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2826), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2828), + [anon_sym_DASH2] = ACTIONS(2826), + [anon_sym_STAR2] = ACTIONS(2828), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2826), + [anon_sym_has2] = ACTIONS(2826), + [anon_sym_not_DASHhas2] = ACTIONS(2826), + [anon_sym_starts_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), + [anon_sym_ends_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), + [anon_sym_EQ_EQ2] = ACTIONS(2826), + [anon_sym_BANG_EQ2] = ACTIONS(2826), + [anon_sym_LT2] = ACTIONS(2828), + [anon_sym_LT_EQ2] = ACTIONS(2826), + [anon_sym_GT_EQ2] = ACTIONS(2826), + [anon_sym_EQ_TILDE2] = ACTIONS(2826), + [anon_sym_BANG_TILDE2] = ACTIONS(2826), + [anon_sym_like2] = ACTIONS(2826), + [anon_sym_not_DASHlike2] = ACTIONS(2826), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2828), + [anon_sym_mod2] = ACTIONS(2826), + [anon_sym_SLASH_SLASH2] = ACTIONS(2826), + [anon_sym_PLUS2] = ACTIONS(2828), + [anon_sym_bit_DASHshl2] = ACTIONS(2826), + [anon_sym_bit_DASHshr2] = ACTIONS(2826), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2826), + [anon_sym_bit_DASHor2] = ACTIONS(2826), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(1194), + [aux_sym__repeat_newline] = STATE(1190), [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2788), - [anon_sym_BANG_TILDE2] = ACTIONS(2788), - [anon_sym_like2] = ACTIONS(2788), - [anon_sym_not_DASHlike2] = ACTIONS(2788), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2788), - [anon_sym_bit_DASHshr2] = ACTIONS(2788), - [anon_sym_bit_DASHand2] = ACTIONS(2788), - [anon_sym_bit_DASHxor2] = ACTIONS(2788), - [anon_sym_bit_DASHor2] = ACTIONS(2788), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1251)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2818), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2820), - [anon_sym_DASH2] = ACTIONS(2818), - [anon_sym_STAR2] = ACTIONS(2820), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2818), - [anon_sym_has2] = ACTIONS(2818), - [anon_sym_not_DASHhas2] = ACTIONS(2818), - [anon_sym_starts_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), - [anon_sym_ends_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), - [anon_sym_EQ_EQ2] = ACTIONS(2818), - [anon_sym_BANG_EQ2] = ACTIONS(2818), - [anon_sym_LT2] = ACTIONS(2820), - [anon_sym_LT_EQ2] = ACTIONS(2818), - [anon_sym_GT_EQ2] = ACTIONS(2818), - [anon_sym_EQ_TILDE2] = ACTIONS(2818), - [anon_sym_BANG_TILDE2] = ACTIONS(2818), - [anon_sym_like2] = ACTIONS(2818), - [anon_sym_not_DASHlike2] = ACTIONS(2818), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2820), - [anon_sym_mod2] = ACTIONS(2818), - [anon_sym_SLASH_SLASH2] = ACTIONS(2818), - [anon_sym_PLUS2] = ACTIONS(2820), - [anon_sym_bit_DASHshl2] = ACTIONS(2818), - [anon_sym_bit_DASHshr2] = ACTIONS(2818), - [anon_sym_bit_DASHand2] = ACTIONS(2818), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2818), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1252)] = { + [aux_sym__repeat_newline] = STATE(1193), [sym_comment] = STATE(1252), - [aux_sym_cmd_identifier_token2] = ACTIONS(2754), - [anon_sym_in] = ACTIONS(2618), - [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_GT2] = ACTIONS(2618), - [anon_sym_DASH2] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_STAR2] = ACTIONS(2618), - [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(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(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(2618), - [anon_sym_mod2] = ACTIONS(2618), - [anon_sym_SLASH_SLASH2] = ACTIONS(2618), - [anon_sym_PLUS2] = ACTIONS(2618), - [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(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(103), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1253)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1253), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [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(2944), + [anon_sym_DASH2] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [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(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2944), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [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(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [anon_sym_PLUS2] = ACTIONS(2956), + [anon_sym_bit_DASHshl2] = ACTIONS(2958), + [anon_sym_bit_DASHshr2] = ACTIONS(2958), + [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(1254)] = { [sym_comment] = STATE(1254), - [anon_sym_in] = ACTIONS(2364), - [sym__newline] = ACTIONS(2366), - [anon_sym_SEMI] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2369), - [anon_sym_err_GT_PIPE] = ACTIONS(2369), - [anon_sym_out_GT_PIPE] = ACTIONS(2369), - [anon_sym_e_GT_PIPE] = ACTIONS(2369), - [anon_sym_o_GT_PIPE] = ACTIONS(2369), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2369), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2369), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2369), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2369), - [anon_sym_RPAREN] = ACTIONS(2369), - [anon_sym_GT2] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_STAR2] = ACTIONS(2371), - [anon_sym_and2] = ACTIONS(2364), - [anon_sym_xor2] = ACTIONS(2364), - [anon_sym_or2] = ACTIONS(2364), - [anon_sym_not_DASHin2] = ACTIONS(2364), - [anon_sym_has2] = ACTIONS(2364), - [anon_sym_not_DASHhas2] = ACTIONS(2364), - [anon_sym_starts_DASHwith2] = ACTIONS(2364), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), - [anon_sym_ends_DASHwith2] = ACTIONS(2364), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), - [anon_sym_EQ_EQ2] = ACTIONS(2364), - [anon_sym_BANG_EQ2] = ACTIONS(2364), - [anon_sym_LT2] = ACTIONS(2371), - [anon_sym_LT_EQ2] = ACTIONS(2364), - [anon_sym_GT_EQ2] = ACTIONS(2364), - [anon_sym_EQ_TILDE2] = ACTIONS(2364), - [anon_sym_BANG_TILDE2] = ACTIONS(2364), - [anon_sym_like2] = ACTIONS(2364), - [anon_sym_not_DASHlike2] = ACTIONS(2364), - [anon_sym_STAR_STAR2] = ACTIONS(2364), - [anon_sym_PLUS_PLUS2] = ACTIONS(2364), - [anon_sym_SLASH2] = ACTIONS(2371), - [anon_sym_mod2] = ACTIONS(2364), - [anon_sym_SLASH_SLASH2] = ACTIONS(2364), - [anon_sym_PLUS2] = ACTIONS(2371), - [anon_sym_bit_DASHshl2] = ACTIONS(2364), - [anon_sym_bit_DASHshr2] = ACTIONS(2364), - [anon_sym_bit_DASHand2] = ACTIONS(2364), - [anon_sym_bit_DASHxor2] = ACTIONS(2364), - [anon_sym_bit_DASHor2] = ACTIONS(2364), - [anon_sym_err_GT] = ACTIONS(2373), - [anon_sym_out_GT] = ACTIONS(2373), - [anon_sym_e_GT] = ACTIONS(2373), - [anon_sym_o_GT] = ACTIONS(2373), - [anon_sym_err_PLUSout_GT] = ACTIONS(2373), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2373), - [anon_sym_o_PLUSe_GT] = ACTIONS(2373), - [anon_sym_e_PLUSo_GT] = ACTIONS(2373), - [anon_sym_err_GT_GT] = ACTIONS(2369), - [anon_sym_out_GT_GT] = ACTIONS(2369), - [anon_sym_e_GT_GT] = ACTIONS(2369), - [anon_sym_o_GT_GT] = ACTIONS(2369), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2369), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2369), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2369), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2369), + [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(2946), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [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(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [anon_sym_PLUS2] = ACTIONS(2956), + [anon_sym_bit_DASHshl2] = ACTIONS(2958), + [anon_sym_bit_DASHshr2] = ACTIONS(2958), + [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(1255)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1255), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2906), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [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_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [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(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [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(1256)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1256), - [anon_sym_in] = ACTIONS(2794), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2796), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2794), - [anon_sym_has2] = ACTIONS(2794), - [anon_sym_not_DASHhas2] = ACTIONS(2794), - [anon_sym_starts_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), - [anon_sym_ends_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2796), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2794), - [anon_sym_BANG_TILDE2] = ACTIONS(2794), - [anon_sym_like2] = ACTIONS(2794), - [anon_sym_not_DASHlike2] = ACTIONS(2794), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2794), - [anon_sym_bit_DASHshr2] = ACTIONS(2794), - [anon_sym_bit_DASHand2] = ACTIONS(2794), - [anon_sym_bit_DASHxor2] = ACTIONS(2794), - [anon_sym_bit_DASHor2] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [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_RBRACE] = 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(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [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(1257)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1257), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2906), - [anon_sym_xor2] = ACTIONS(2908), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2846), - [anon_sym_bit_DASHor2] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2960), + [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(2944), + [anon_sym_DASH2] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2960), + [anon_sym_has2] = ACTIONS(2960), + [anon_sym_not_DASHhas2] = ACTIONS(2960), + [anon_sym_starts_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), + [anon_sym_ends_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2944), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2962), + [anon_sym_BANG_TILDE2] = ACTIONS(2962), + [anon_sym_like2] = ACTIONS(2962), + [anon_sym_not_DASHlike2] = ACTIONS(2962), + [anon_sym_STAR_STAR2] = ACTIONS(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [anon_sym_PLUS2] = ACTIONS(2956), + [anon_sym_bit_DASHshl2] = ACTIONS(2958), + [anon_sym_bit_DASHshr2] = ACTIONS(2958), + [anon_sym_bit_DASHand2] = ACTIONS(2964), + [anon_sym_bit_DASHxor2] = ACTIONS(2966), + [anon_sym_bit_DASHor2] = ACTIONS(2968), + [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(1258)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1258), - [anon_sym_in] = ACTIONS(2794), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2796), - [anon_sym_DASH2] = ACTIONS(2794), - [anon_sym_STAR2] = ACTIONS(2796), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2794), - [anon_sym_has2] = ACTIONS(2794), - [anon_sym_not_DASHhas2] = ACTIONS(2794), - [anon_sym_starts_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), - [anon_sym_ends_DASHwith2] = ACTIONS(2794), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2796), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2794), - [anon_sym_BANG_TILDE2] = ACTIONS(2794), - [anon_sym_like2] = ACTIONS(2794), - [anon_sym_not_DASHlike2] = ACTIONS(2794), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2796), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2794), - [anon_sym_bit_DASHshr2] = ACTIONS(2794), - [anon_sym_bit_DASHand2] = ACTIONS(2794), - [anon_sym_bit_DASHxor2] = ACTIONS(2794), - [anon_sym_bit_DASHor2] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [anon_sym_in] = ACTIONS(2960), + [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(2944), + [anon_sym_DASH2] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [anon_sym_and2] = ACTIONS(2970), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2960), + [anon_sym_has2] = ACTIONS(2960), + [anon_sym_not_DASHhas2] = ACTIONS(2960), + [anon_sym_starts_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), + [anon_sym_ends_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2944), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2962), + [anon_sym_BANG_TILDE2] = ACTIONS(2962), + [anon_sym_like2] = ACTIONS(2962), + [anon_sym_not_DASHlike2] = ACTIONS(2962), + [anon_sym_STAR_STAR2] = ACTIONS(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [anon_sym_PLUS2] = ACTIONS(2956), + [anon_sym_bit_DASHshl2] = ACTIONS(2958), + [anon_sym_bit_DASHshr2] = ACTIONS(2958), + [anon_sym_bit_DASHand2] = ACTIONS(2964), + [anon_sym_bit_DASHxor2] = ACTIONS(2966), + [anon_sym_bit_DASHor2] = ACTIONS(2968), + [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(1259)] = { - [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1259), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2818), - [anon_sym_BANG_TILDE2] = ACTIONS(2818), - [anon_sym_like2] = ACTIONS(2818), - [anon_sym_not_DASHlike2] = ACTIONS(2818), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2818), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2818), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2960), + [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(2944), + [anon_sym_DASH2] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [anon_sym_and2] = ACTIONS(2970), + [anon_sym_xor2] = ACTIONS(2972), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2960), + [anon_sym_has2] = ACTIONS(2960), + [anon_sym_not_DASHhas2] = ACTIONS(2960), + [anon_sym_starts_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), + [anon_sym_ends_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2944), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2962), + [anon_sym_BANG_TILDE2] = ACTIONS(2962), + [anon_sym_like2] = ACTIONS(2962), + [anon_sym_not_DASHlike2] = ACTIONS(2962), + [anon_sym_STAR_STAR2] = ACTIONS(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [anon_sym_PLUS2] = ACTIONS(2956), + [anon_sym_bit_DASHshl2] = ACTIONS(2958), + [anon_sym_bit_DASHshr2] = ACTIONS(2958), + [anon_sym_bit_DASHand2] = ACTIONS(2964), + [anon_sym_bit_DASHxor2] = ACTIONS(2966), + [anon_sym_bit_DASHor2] = ACTIONS(2968), + [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(1260)] = { - [aux_sym__repeat_newline] = STATE(1200), [sym_comment] = STATE(1260), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2788), - [anon_sym_bit_DASHxor2] = ACTIONS(2788), - [anon_sym_bit_DASHor2] = ACTIONS(2788), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2960), + [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(2944), + [anon_sym_DASH2] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2960), + [anon_sym_has2] = ACTIONS(2960), + [anon_sym_not_DASHhas2] = ACTIONS(2960), + [anon_sym_starts_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), + [anon_sym_ends_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2944), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [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(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [anon_sym_PLUS2] = ACTIONS(2956), + [anon_sym_bit_DASHshl2] = ACTIONS(2958), + [anon_sym_bit_DASHshr2] = ACTIONS(2958), + [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(1261)] = { [sym_comment] = STATE(1261), - [anon_sym_in] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_has2] = ACTIONS(1699), - [anon_sym_not_DASHhas2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_like2] = ACTIONS(1699), - [anon_sym_not_DASHlike2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1699), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_COLON2] = ACTIONS(1701), - [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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1262)] = { - [aux_sym__repeat_newline] = STATE(485), - [sym_comment] = STATE(1262), - [anon_sym_in] = ACTIONS(2784), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2784), - [anon_sym_xor2] = ACTIONS(2784), - [anon_sym_or2] = ACTIONS(2784), - [anon_sym_not_DASHin2] = ACTIONS(2784), - [anon_sym_has2] = ACTIONS(2784), - [anon_sym_not_DASHhas2] = ACTIONS(2784), - [anon_sym_starts_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), - [anon_sym_ends_DASHwith2] = ACTIONS(2784), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2784), - [anon_sym_BANG_TILDE2] = ACTIONS(2784), - [anon_sym_like2] = ACTIONS(2784), - [anon_sym_not_DASHlike2] = ACTIONS(2784), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2784), - [anon_sym_bit_DASHxor2] = ACTIONS(2784), - [anon_sym_bit_DASHor2] = ACTIONS(2784), - [anon_sym_err_GT] = ACTIONS(2786), - [anon_sym_out_GT] = ACTIONS(2786), - [anon_sym_e_GT] = ACTIONS(2786), - [anon_sym_o_GT] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT] = ACTIONS(2786), - [anon_sym_err_GT_GT] = ACTIONS(2784), - [anon_sym_out_GT_GT] = ACTIONS(2784), - [anon_sym_e_GT_GT] = ACTIONS(2784), - [anon_sym_o_GT_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1263)] = { - [aux_sym__repeat_newline] = STATE(485), - [sym_comment] = STATE(1263), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2794), - [anon_sym_bit_DASHxor2] = ACTIONS(2794), - [anon_sym_bit_DASHor2] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1264)] = { - [aux_sym__repeat_newline] = STATE(485), - [sym_comment] = STATE(1264), - [anon_sym_in] = ACTIONS(2818), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2820), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2818), - [anon_sym_has2] = ACTIONS(2818), - [anon_sym_not_DASHhas2] = ACTIONS(2818), - [anon_sym_starts_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), - [anon_sym_ends_DASHwith2] = ACTIONS(2818), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), - [anon_sym_EQ_EQ2] = ACTIONS(2818), - [anon_sym_BANG_EQ2] = ACTIONS(2818), - [anon_sym_LT2] = ACTIONS(2820), - [anon_sym_LT_EQ2] = ACTIONS(2818), - [anon_sym_GT_EQ2] = ACTIONS(2818), - [anon_sym_EQ_TILDE2] = ACTIONS(2818), - [anon_sym_BANG_TILDE2] = ACTIONS(2818), - [anon_sym_like2] = ACTIONS(2818), - [anon_sym_not_DASHlike2] = ACTIONS(2818), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2818), - [anon_sym_bit_DASHshr2] = ACTIONS(2818), - [anon_sym_bit_DASHand2] = ACTIONS(2818), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2818), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1265)] = { - [aux_sym__repeat_newline] = STATE(1258), - [sym_comment] = STATE(1265), - [anon_sym_in] = ACTIONS(2798), - [sym__newline] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_err_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_GT_PIPE] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_GT2] = ACTIONS(2800), - [anon_sym_DASH2] = ACTIONS(2798), - [anon_sym_STAR2] = ACTIONS(2800), - [anon_sym_and2] = ACTIONS(2798), - [anon_sym_xor2] = ACTIONS(2798), - [anon_sym_or2] = ACTIONS(2798), - [anon_sym_not_DASHin2] = ACTIONS(2798), - [anon_sym_has2] = ACTIONS(2798), - [anon_sym_not_DASHhas2] = ACTIONS(2798), - [anon_sym_starts_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), - [anon_sym_ends_DASHwith2] = ACTIONS(2798), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), - [anon_sym_EQ_EQ2] = ACTIONS(2798), - [anon_sym_BANG_EQ2] = ACTIONS(2798), - [anon_sym_LT2] = ACTIONS(2800), - [anon_sym_LT_EQ2] = ACTIONS(2798), - [anon_sym_GT_EQ2] = ACTIONS(2798), - [anon_sym_EQ_TILDE2] = ACTIONS(2798), - [anon_sym_BANG_TILDE2] = ACTIONS(2798), - [anon_sym_like2] = ACTIONS(2798), - [anon_sym_not_DASHlike2] = ACTIONS(2798), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2800), - [anon_sym_mod2] = ACTIONS(2798), - [anon_sym_SLASH_SLASH2] = ACTIONS(2798), - [anon_sym_PLUS2] = ACTIONS(2800), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2798), - [anon_sym_bit_DASHxor2] = ACTIONS(2798), - [anon_sym_bit_DASHor2] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2800), - [anon_sym_out_GT] = ACTIONS(2800), - [anon_sym_e_GT] = ACTIONS(2800), - [anon_sym_o_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT] = ACTIONS(2800), - [anon_sym_err_GT_GT] = ACTIONS(2798), - [anon_sym_out_GT_GT] = ACTIONS(2798), - [anon_sym_e_GT_GT] = ACTIONS(2798), - [anon_sym_o_GT_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(3), - }, + [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(2946), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [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(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [anon_sym_PLUS2] = ACTIONS(2956), + [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(1262)] = { + [sym_comment] = STATE(1262), + [anon_sym_in] = ACTIONS(2960), + [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(2944), + [anon_sym_DASH2] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2960), + [anon_sym_has2] = ACTIONS(2960), + [anon_sym_not_DASHhas2] = ACTIONS(2960), + [anon_sym_starts_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), + [anon_sym_ends_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2944), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2962), + [anon_sym_BANG_TILDE2] = ACTIONS(2962), + [anon_sym_like2] = ACTIONS(2962), + [anon_sym_not_DASHlike2] = ACTIONS(2962), + [anon_sym_STAR_STAR2] = ACTIONS(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [anon_sym_PLUS2] = ACTIONS(2956), + [anon_sym_bit_DASHshl2] = ACTIONS(2958), + [anon_sym_bit_DASHshr2] = ACTIONS(2958), + [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(1263)] = { + [sym_comment] = STATE(1263), + [anon_sym_in] = ACTIONS(2960), + [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(2944), + [anon_sym_DASH2] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2960), + [anon_sym_has2] = ACTIONS(2960), + [anon_sym_not_DASHhas2] = ACTIONS(2960), + [anon_sym_starts_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), + [anon_sym_ends_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2944), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2962), + [anon_sym_BANG_TILDE2] = ACTIONS(2962), + [anon_sym_like2] = ACTIONS(2962), + [anon_sym_not_DASHlike2] = ACTIONS(2962), + [anon_sym_STAR_STAR2] = ACTIONS(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [anon_sym_PLUS2] = ACTIONS(2956), + [anon_sym_bit_DASHshl2] = ACTIONS(2958), + [anon_sym_bit_DASHshr2] = ACTIONS(2958), + [anon_sym_bit_DASHand2] = ACTIONS(2964), + [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(1264)] = { + [sym_comment] = STATE(1264), + [anon_sym_in] = ACTIONS(2960), + [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(2944), + [anon_sym_DASH2] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2948), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2960), + [anon_sym_has2] = ACTIONS(2960), + [anon_sym_not_DASHhas2] = ACTIONS(2960), + [anon_sym_starts_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2960), + [anon_sym_ends_DASHwith2] = ACTIONS(2960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2960), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2944), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2962), + [anon_sym_BANG_TILDE2] = ACTIONS(2962), + [anon_sym_like2] = ACTIONS(2962), + [anon_sym_not_DASHlike2] = ACTIONS(2962), + [anon_sym_STAR_STAR2] = ACTIONS(2952), + [anon_sym_PLUS_PLUS2] = ACTIONS(2952), + [anon_sym_SLASH2] = ACTIONS(2948), + [anon_sym_mod2] = ACTIONS(2954), + [anon_sym_SLASH_SLASH2] = ACTIONS(2954), + [anon_sym_PLUS2] = ACTIONS(2956), + [anon_sym_bit_DASHshl2] = ACTIONS(2958), + [anon_sym_bit_DASHshr2] = ACTIONS(2958), + [anon_sym_bit_DASHand2] = ACTIONS(2964), + [anon_sym_bit_DASHxor2] = ACTIONS(2966), + [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(1265)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(1265), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2924), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1266)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(1224), [sym_comment] = STATE(1266), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2818), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2818), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2822), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1267)] = { - [aux_sym__repeat_newline] = STATE(1228), + [aux_sym__repeat_newline] = STATE(1195), [sym_comment] = STATE(1267), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2788), - [anon_sym_bit_DASHor2] = ACTIONS(2788), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2937), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1268)] = { - [aux_sym__repeat_newline] = STATE(485), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1268), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_err_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_GT_PIPE] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2818), - [anon_sym_xor2] = ACTIONS(2818), - [anon_sym_or2] = ACTIONS(2818), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2818), - [anon_sym_err_GT] = ACTIONS(2820), - [anon_sym_out_GT] = ACTIONS(2820), - [anon_sym_e_GT] = ACTIONS(2820), - [anon_sym_o_GT] = ACTIONS(2820), - [anon_sym_err_PLUSout_GT] = ACTIONS(2820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), - [anon_sym_o_PLUSe_GT] = ACTIONS(2820), - [anon_sym_e_PLUSo_GT] = ACTIONS(2820), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2924), + [anon_sym_xor2] = ACTIONS(2926), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1269)] = { - [aux_sym__repeat_newline] = STATE(1170), + [aux_sym__repeat_newline] = STATE(1198), [sym_comment] = STATE(1269), - [anon_sym_in] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2872), - [anon_sym_has2] = ACTIONS(2872), - [anon_sym_not_DASHhas2] = ACTIONS(2872), - [anon_sym_starts_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), - [anon_sym_ends_DASHwith2] = ACTIONS(2872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2879), - [anon_sym_BANG_TILDE2] = ACTIONS(2879), - [anon_sym_like2] = ACTIONS(2879), - [anon_sym_not_DASHlike2] = ACTIONS(2879), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2881), - [anon_sym_bit_DASHxor2] = ACTIONS(2883), - [anon_sym_bit_DASHor2] = ACTIONS(2885), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2822), + [anon_sym_BANG_TILDE2] = ACTIONS(2822), + [anon_sym_like2] = ACTIONS(2822), + [anon_sym_not_DASHlike2] = ACTIONS(2822), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2822), + [anon_sym_bit_DASHxor2] = ACTIONS(2822), + [anon_sym_bit_DASHor2] = ACTIONS(2822), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1270)] = { - [sym__expression] = STATE(5032), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [aux_sym__repeat_newline] = STATE(503), [sym_comment] = STATE(1270), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), - [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), - [anon_sym_DQUOTE] = 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(2874), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1271)] = { - [sym__expression] = STATE(5047), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), + [aux_sym__repeat_newline] = STATE(1172), [sym_comment] = STATE(1271), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2861), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [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(1272)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(1272), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2826), + [anon_sym_BANG_TILDE2] = ACTIONS(2826), + [anon_sym_like2] = ACTIONS(2826), + [anon_sym_not_DASHlike2] = ACTIONS(2826), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2826), + [anon_sym_bit_DASHor2] = ACTIONS(2826), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1273)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(1273), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2924), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1274)] = { + [aux_sym__repeat_newline] = STATE(1173), + [sym_comment] = STATE(1274), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2935), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2937), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2857), + [anon_sym_bit_DASHor2] = ACTIONS(2859), + [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(1275)] = { + [sym_comment] = STATE(1275), + [ts_builtin_sym_end] = ACTIONS(2402), + [anon_sym_finally] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [sym__newline] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2402), + [anon_sym_err_GT_PIPE] = ACTIONS(2402), + [anon_sym_out_GT_PIPE] = ACTIONS(2402), + [anon_sym_e_GT_PIPE] = ACTIONS(2402), + [anon_sym_o_GT_PIPE] = ACTIONS(2402), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2402), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2402), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2402), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2402), + [anon_sym_GT2] = ACTIONS(2404), + [anon_sym_DASH2] = ACTIONS(2402), + [anon_sym_STAR2] = ACTIONS(2404), + [anon_sym_and2] = ACTIONS(2402), + [anon_sym_xor2] = ACTIONS(2402), + [anon_sym_or2] = ACTIONS(2402), + [anon_sym_not_DASHin2] = ACTIONS(2402), + [anon_sym_has2] = ACTIONS(2402), + [anon_sym_not_DASHhas2] = ACTIONS(2402), + [anon_sym_starts_DASHwith2] = ACTIONS(2402), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2402), + [anon_sym_ends_DASHwith2] = ACTIONS(2402), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2402), + [anon_sym_EQ_EQ2] = ACTIONS(2402), + [anon_sym_BANG_EQ2] = ACTIONS(2402), + [anon_sym_LT2] = ACTIONS(2404), + [anon_sym_LT_EQ2] = ACTIONS(2402), + [anon_sym_GT_EQ2] = ACTIONS(2402), + [anon_sym_EQ_TILDE2] = ACTIONS(2402), + [anon_sym_BANG_TILDE2] = ACTIONS(2402), + [anon_sym_like2] = ACTIONS(2402), + [anon_sym_not_DASHlike2] = ACTIONS(2402), + [anon_sym_STAR_STAR2] = ACTIONS(2402), + [anon_sym_PLUS_PLUS2] = ACTIONS(2402), + [anon_sym_SLASH2] = ACTIONS(2404), + [anon_sym_mod2] = ACTIONS(2402), + [anon_sym_SLASH_SLASH2] = ACTIONS(2402), + [anon_sym_PLUS2] = ACTIONS(2404), + [anon_sym_bit_DASHshl2] = ACTIONS(2402), + [anon_sym_bit_DASHshr2] = ACTIONS(2402), + [anon_sym_bit_DASHand2] = ACTIONS(2402), + [anon_sym_bit_DASHxor2] = ACTIONS(2402), + [anon_sym_bit_DASHor2] = ACTIONS(2402), + [anon_sym_err_GT] = ACTIONS(2404), + [anon_sym_out_GT] = ACTIONS(2404), + [anon_sym_e_GT] = ACTIONS(2404), + [anon_sym_o_GT] = ACTIONS(2404), + [anon_sym_err_PLUSout_GT] = ACTIONS(2404), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2404), + [anon_sym_o_PLUSe_GT] = ACTIONS(2404), + [anon_sym_e_PLUSo_GT] = ACTIONS(2404), + [anon_sym_err_GT_GT] = ACTIONS(2402), + [anon_sym_out_GT_GT] = ACTIONS(2402), + [anon_sym_e_GT_GT] = ACTIONS(2402), + [anon_sym_o_GT_GT] = ACTIONS(2402), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2402), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2402), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2402), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1276)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(1276), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2924), + [anon_sym_xor2] = ACTIONS(2926), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2886), + [anon_sym_bit_DASHor2] = ACTIONS(2922), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1277)] = { + [aux_sym__repeat_newline] = STATE(1216), + [sym_comment] = STATE(1277), + [anon_sym_in] = ACTIONS(2822), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2824), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2822), + [anon_sym_has2] = ACTIONS(2822), + [anon_sym_not_DASHhas2] = ACTIONS(2822), + [anon_sym_starts_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2822), + [anon_sym_ends_DASHwith2] = ACTIONS(2822), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2822), + [anon_sym_EQ_EQ2] = ACTIONS(2822), + [anon_sym_BANG_EQ2] = ACTIONS(2822), + [anon_sym_LT2] = ACTIONS(2824), + [anon_sym_LT_EQ2] = ACTIONS(2822), + [anon_sym_GT_EQ2] = ACTIONS(2822), + [anon_sym_EQ_TILDE2] = ACTIONS(2822), + [anon_sym_BANG_TILDE2] = ACTIONS(2822), + [anon_sym_like2] = ACTIONS(2822), + [anon_sym_not_DASHlike2] = ACTIONS(2822), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2822), + [anon_sym_bit_DASHshr2] = ACTIONS(2822), + [anon_sym_bit_DASHand2] = ACTIONS(2822), + [anon_sym_bit_DASHxor2] = ACTIONS(2822), + [anon_sym_bit_DASHor2] = ACTIONS(2822), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1278)] = { + [aux_sym__repeat_newline] = STATE(1174), + [sym_comment] = STATE(1278), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2861), + [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(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [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(1279)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(1279), + [anon_sym_in] = ACTIONS(2826), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2828), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2826), + [anon_sym_has2] = ACTIONS(2826), + [anon_sym_not_DASHhas2] = ACTIONS(2826), + [anon_sym_starts_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2826), + [anon_sym_ends_DASHwith2] = ACTIONS(2826), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2826), + [anon_sym_EQ_EQ2] = ACTIONS(2826), + [anon_sym_BANG_EQ2] = ACTIONS(2826), + [anon_sym_LT2] = ACTIONS(2828), + [anon_sym_LT_EQ2] = ACTIONS(2826), + [anon_sym_GT_EQ2] = ACTIONS(2826), + [anon_sym_EQ_TILDE2] = ACTIONS(2826), + [anon_sym_BANG_TILDE2] = ACTIONS(2826), + [anon_sym_like2] = ACTIONS(2826), + [anon_sym_not_DASHlike2] = ACTIONS(2826), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2826), + [anon_sym_bit_DASHshr2] = ACTIONS(2826), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2826), + [anon_sym_bit_DASHor2] = ACTIONS(2826), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1280)] = { + [aux_sym__repeat_newline] = STATE(1218), + [sym_comment] = STATE(1280), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2822), + [anon_sym_bit_DASHxor2] = ACTIONS(2822), + [anon_sym_bit_DASHor2] = ACTIONS(2822), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1281)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(1281), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2696), + [anon_sym_BANG_TILDE2] = ACTIONS(2696), + [anon_sym_like2] = ACTIONS(2696), + [anon_sym_not_DASHlike2] = ACTIONS(2696), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2696), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1282)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(1282), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2826), + [anon_sym_bit_DASHor2] = ACTIONS(2826), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1283)] = { + [aux_sym__repeat_newline] = STATE(1222), + [sym_comment] = STATE(1283), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_err_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_GT_PIPE] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_GT2] = ACTIONS(2835), + [anon_sym_DASH2] = ACTIONS(2837), + [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_and2] = ACTIONS(2822), + [anon_sym_xor2] = ACTIONS(2822), + [anon_sym_or2] = ACTIONS(2822), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2843), + [anon_sym_BANG_EQ2] = ACTIONS(2843), + [anon_sym_LT2] = ACTIONS(2835), + [anon_sym_LT_EQ2] = ACTIONS(2843), + [anon_sym_GT_EQ2] = ACTIONS(2843), + [anon_sym_EQ_TILDE2] = ACTIONS(2845), + [anon_sym_BANG_TILDE2] = ACTIONS(2845), + [anon_sym_like2] = ACTIONS(2845), + [anon_sym_not_DASHlike2] = ACTIONS(2845), + [anon_sym_STAR_STAR2] = ACTIONS(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [anon_sym_PLUS2] = ACTIONS(2851), + [anon_sym_bit_DASHshl2] = ACTIONS(2853), + [anon_sym_bit_DASHshr2] = ACTIONS(2853), + [anon_sym_bit_DASHand2] = ACTIONS(2855), + [anon_sym_bit_DASHxor2] = ACTIONS(2822), + [anon_sym_bit_DASHor2] = ACTIONS(2822), + [anon_sym_err_GT] = ACTIONS(2824), + [anon_sym_out_GT] = ACTIONS(2824), + [anon_sym_e_GT] = ACTIONS(2824), + [anon_sym_o_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT] = ACTIONS(2824), + [anon_sym_err_GT_GT] = ACTIONS(2822), + [anon_sym_out_GT_GT] = ACTIONS(2822), + [anon_sym_e_GT_GT] = ACTIONS(2822), + [anon_sym_o_GT_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1284)] = { + [aux_sym__repeat_newline] = STATE(1236), + [sym_comment] = STATE(1284), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2928), + [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(2839), + [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(2847), + [anon_sym_PLUS_PLUS2] = ACTIONS(2847), + [anon_sym_SLASH2] = ACTIONS(2839), + [anon_sym_mod2] = ACTIONS(2849), + [anon_sym_SLASH_SLASH2] = ACTIONS(2849), + [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(1285)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(1285), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_err_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_GT_PIPE] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2826), + [anon_sym_xor2] = ACTIONS(2826), + [anon_sym_or2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2874), + [anon_sym_has2] = ACTIONS(2874), + [anon_sym_not_DASHhas2] = ACTIONS(2874), + [anon_sym_starts_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2874), + [anon_sym_ends_DASHwith2] = ACTIONS(2874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2874), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2880), + [anon_sym_BANG_TILDE2] = ACTIONS(2880), + [anon_sym_like2] = ACTIONS(2880), + [anon_sym_not_DASHlike2] = ACTIONS(2880), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2884), + [anon_sym_bit_DASHxor2] = ACTIONS(2826), + [anon_sym_bit_DASHor2] = ACTIONS(2826), + [anon_sym_err_GT] = ACTIONS(2828), + [anon_sym_out_GT] = ACTIONS(2828), + [anon_sym_e_GT] = ACTIONS(2828), + [anon_sym_o_GT] = ACTIONS(2828), + [anon_sym_err_PLUSout_GT] = ACTIONS(2828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2828), + [anon_sym_o_PLUSe_GT] = ACTIONS(2828), + [anon_sym_e_PLUSo_GT] = ACTIONS(2828), + [anon_sym_err_GT_GT] = ACTIONS(2826), + [anon_sym_out_GT_GT] = ACTIONS(2826), + [anon_sym_e_GT_GT] = ACTIONS(2826), + [anon_sym_o_GT_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1286)] = { + [sym__expression] = STATE(4929), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2259), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_comment] = STATE(1286), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), + [sym_val_date] = ACTIONS(2654), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -141349,65 +142807,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(1272)] = { - [sym__expression] = STATE(5051), - [sym_expr_unary] = STATE(932), - [sym__expr_unary_minus] = STATE(959), - [sym_expr_binary] = STATE(932), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(724), - [sym_val_range] = STATE(932), - [sym__value] = STATE(932), - [sym_val_nothing] = STATE(970), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(705), - [sym_val_cellpath] = STATE(970), - [sym_val_number] = STATE(970), - [sym__val_number_decimal] = STATE(1886), - [sym__val_number] = STATE(710), - [sym_val_duration] = STATE(970), - [sym_val_filesize] = STATE(970), - [sym_val_binary] = STATE(970), - [sym_val_string] = STATE(970), - [sym__raw_str] = STATE(418), - [sym__str_double_quotes] = STATE(418), - [sym__str_single_quotes] = STATE(418), - [sym__str_back_ticks] = STATE(418), - [sym_val_interpolated] = STATE(970), - [sym__inter_single_quotes] = STATE(808), - [sym__inter_double_quotes] = STATE(809), - [sym_val_list] = STATE(970), - [sym_val_record] = STATE(970), - [sym_val_table] = STATE(970), - [sym_val_closure] = STATE(970), - [sym_comment] = STATE(1272), - [aux_sym_cmd_identifier_token2] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_null] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), + [STATE(1287)] = { + [sym__expression] = STATE(5048), + [sym_expr_unary] = STATE(946), + [sym__expr_unary_minus] = STATE(947), + [sym_expr_binary] = STATE(946), + [sym__expr_binary_expression] = STATE(2259), + [sym_expr_parenthesized] = STATE(743), + [sym_val_range] = STATE(946), + [sym__value] = STATE(946), + [sym_val_nothing] = STATE(945), + [sym_val_bool] = STATE(945), + [sym_val_variable] = STATE(730), + [sym_val_cellpath] = STATE(945), + [sym_val_number] = STATE(945), + [sym__val_number_decimal] = STATE(1885), + [sym__val_number] = STATE(744), + [sym_val_duration] = STATE(945), + [sym_val_filesize] = STATE(945), + [sym_val_binary] = STATE(945), + [sym_val_string] = STATE(945), + [sym__raw_str] = STATE(442), + [sym__str_double_quotes] = STATE(442), + [sym__str_single_quotes] = STATE(442), + [sym__str_back_ticks] = STATE(442), + [sym_val_interpolated] = STATE(945), + [sym__inter_single_quotes] = STATE(809), + [sym__inter_double_quotes] = STATE(810), + [sym_val_list] = STATE(945), + [sym_val_record] = STATE(945), + [sym_val_table] = STATE(945), + [sym_val_closure] = STATE(945), + [sym_comment] = STATE(1287), + [aux_sym_cmd_identifier_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1270), [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(2006), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2604), - [aux_sym__val_number_decimal_token4] = ACTIONS(2604), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2652), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [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(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2606), + [sym_val_date] = ACTIONS(2654), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -141416,272 +142874,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1273)] = { - [aux_sym__repeat_newline] = STATE(1262), - [sym_comment] = STATE(1273), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_err_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_GT_PIPE] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_GT2] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2859), - [anon_sym_BANG_EQ2] = ACTIONS(2859), - [anon_sym_LT2] = ACTIONS(2853), - [anon_sym_LT_EQ2] = ACTIONS(2859), - [anon_sym_GT_EQ2] = ACTIONS(2859), - [anon_sym_EQ_TILDE2] = ACTIONS(2788), - [anon_sym_BANG_TILDE2] = ACTIONS(2788), - [anon_sym_like2] = ACTIONS(2788), - [anon_sym_not_DASHlike2] = ACTIONS(2788), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2867), - [anon_sym_bit_DASHshr2] = ACTIONS(2867), - [anon_sym_bit_DASHand2] = ACTIONS(2788), - [anon_sym_bit_DASHxor2] = ACTIONS(2788), - [anon_sym_bit_DASHor2] = ACTIONS(2788), - [anon_sym_err_GT] = ACTIONS(2790), - [anon_sym_out_GT] = ACTIONS(2790), - [anon_sym_e_GT] = ACTIONS(2790), - [anon_sym_o_GT] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT] = ACTIONS(2790), - [anon_sym_err_GT_GT] = ACTIONS(2788), - [anon_sym_out_GT_GT] = ACTIONS(2788), - [anon_sym_e_GT_GT] = ACTIONS(2788), - [anon_sym_o_GT_GT] = ACTIONS(2788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1274)] = { - [aux_sym__repeat_newline] = STATE(485), - [sym_comment] = STATE(1274), - [anon_sym_in] = ACTIONS(2824), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_GT2] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2828), - [anon_sym_STAR2] = ACTIONS(2830), - [anon_sym_and2] = ACTIONS(2794), - [anon_sym_xor2] = ACTIONS(2794), - [anon_sym_or2] = ACTIONS(2794), - [anon_sym_not_DASHin2] = ACTIONS(2824), - [anon_sym_has2] = ACTIONS(2824), - [anon_sym_not_DASHhas2] = ACTIONS(2824), - [anon_sym_starts_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), - [anon_sym_ends_DASHwith2] = ACTIONS(2824), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), - [anon_sym_EQ_EQ2] = ACTIONS(2832), - [anon_sym_BANG_EQ2] = ACTIONS(2832), - [anon_sym_LT2] = ACTIONS(2826), - [anon_sym_LT_EQ2] = ACTIONS(2832), - [anon_sym_GT_EQ2] = ACTIONS(2832), - [anon_sym_EQ_TILDE2] = ACTIONS(2834), - [anon_sym_BANG_TILDE2] = ACTIONS(2834), - [anon_sym_like2] = ACTIONS(2834), - [anon_sym_not_DASHlike2] = ACTIONS(2834), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2830), - [anon_sym_mod2] = ACTIONS(2838), - [anon_sym_SLASH_SLASH2] = ACTIONS(2838), - [anon_sym_PLUS2] = ACTIONS(2840), - [anon_sym_bit_DASHshl2] = ACTIONS(2842), - [anon_sym_bit_DASHshr2] = ACTIONS(2842), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2794), - [anon_sym_bit_DASHor2] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2796), - [anon_sym_out_GT] = ACTIONS(2796), - [anon_sym_e_GT] = ACTIONS(2796), - [anon_sym_o_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT] = ACTIONS(2796), - [anon_sym_err_GT_GT] = ACTIONS(2794), - [anon_sym_out_GT_GT] = ACTIONS(2794), - [anon_sym_e_GT_GT] = ACTIONS(2794), - [anon_sym_o_GT_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1275)] = { - [sym_comment] = STATE(1275), - [ts_builtin_sym_end] = ACTIONS(2551), - [anon_sym_finally] = ACTIONS(2551), - [anon_sym_in] = ACTIONS(2551), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2553), - [anon_sym_DASH2] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2553), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2551), - [anon_sym_has2] = ACTIONS(2551), - [anon_sym_not_DASHhas2] = ACTIONS(2551), - [anon_sym_starts_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), - [anon_sym_ends_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), - [anon_sym_EQ_EQ2] = ACTIONS(2551), - [anon_sym_BANG_EQ2] = ACTIONS(2551), - [anon_sym_LT2] = ACTIONS(2553), - [anon_sym_LT_EQ2] = ACTIONS(2551), - [anon_sym_GT_EQ2] = ACTIONS(2551), - [anon_sym_EQ_TILDE2] = ACTIONS(2551), - [anon_sym_BANG_TILDE2] = ACTIONS(2551), - [anon_sym_like2] = ACTIONS(2551), - [anon_sym_not_DASHlike2] = ACTIONS(2551), - [anon_sym_STAR_STAR2] = ACTIONS(2551), - [anon_sym_PLUS_PLUS2] = ACTIONS(2551), - [anon_sym_SLASH2] = ACTIONS(2553), - [anon_sym_mod2] = ACTIONS(2551), - [anon_sym_SLASH_SLASH2] = ACTIONS(2551), - [anon_sym_PLUS2] = ACTIONS(2553), - [anon_sym_bit_DASHshl2] = ACTIONS(2551), - [anon_sym_bit_DASHshr2] = ACTIONS(2551), - [anon_sym_bit_DASHand2] = ACTIONS(2551), - [anon_sym_bit_DASHxor2] = ACTIONS(2551), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1276)] = { - [aux_sym__repeat_newline] = STATE(1264), - [sym_comment] = STATE(1276), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_err_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_GT_PIPE] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2855), - [anon_sym_STAR2] = ACTIONS(2857), - [anon_sym_and2] = ACTIONS(2806), - [anon_sym_xor2] = ACTIONS(2806), - [anon_sym_or2] = ACTIONS(2806), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2806), - [anon_sym_BANG_EQ2] = ACTIONS(2806), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2806), - [anon_sym_GT_EQ2] = ACTIONS(2806), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2861), - [anon_sym_PLUS_PLUS2] = ACTIONS(2861), - [anon_sym_SLASH2] = ACTIONS(2857), - [anon_sym_mod2] = ACTIONS(2863), - [anon_sym_SLASH_SLASH2] = ACTIONS(2863), - [anon_sym_PLUS2] = ACTIONS(2865), - [anon_sym_bit_DASHshl2] = ACTIONS(2806), - [anon_sym_bit_DASHshr2] = ACTIONS(2806), - [anon_sym_bit_DASHand2] = ACTIONS(2806), - [anon_sym_bit_DASHxor2] = ACTIONS(2806), - [anon_sym_bit_DASHor2] = ACTIONS(2806), - [anon_sym_err_GT] = ACTIONS(2808), - [anon_sym_out_GT] = ACTIONS(2808), - [anon_sym_e_GT] = ACTIONS(2808), - [anon_sym_o_GT] = ACTIONS(2808), - [anon_sym_err_PLUSout_GT] = ACTIONS(2808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), - [anon_sym_o_PLUSe_GT] = ACTIONS(2808), - [anon_sym_e_PLUSo_GT] = ACTIONS(2808), - [anon_sym_err_GT_GT] = ACTIONS(2806), - [anon_sym_out_GT_GT] = ACTIONS(2806), - [anon_sym_e_GT_GT] = ACTIONS(2806), - [anon_sym_o_GT_GT] = ACTIONS(2806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [STATE(1288)] = { + [aux_sym__repeat_newline] = STATE(503), + [sym_comment] = STATE(1288), + [anon_sym_in] = ACTIONS(2696), + [sym__newline] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_err_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_GT_PIPE] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_GT2] = ACTIONS(2876), + [anon_sym_DASH2] = ACTIONS(2864), + [anon_sym_STAR2] = ACTIONS(2866), + [anon_sym_and2] = ACTIONS(2696), + [anon_sym_xor2] = ACTIONS(2696), + [anon_sym_or2] = ACTIONS(2696), + [anon_sym_not_DASHin2] = ACTIONS(2696), + [anon_sym_has2] = ACTIONS(2696), + [anon_sym_not_DASHhas2] = ACTIONS(2696), + [anon_sym_starts_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2696), + [anon_sym_ends_DASHwith2] = ACTIONS(2696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2696), + [anon_sym_EQ_EQ2] = ACTIONS(2878), + [anon_sym_BANG_EQ2] = ACTIONS(2878), + [anon_sym_LT2] = ACTIONS(2876), + [anon_sym_LT_EQ2] = ACTIONS(2878), + [anon_sym_GT_EQ2] = ACTIONS(2878), + [anon_sym_EQ_TILDE2] = ACTIONS(2696), + [anon_sym_BANG_TILDE2] = ACTIONS(2696), + [anon_sym_like2] = ACTIONS(2696), + [anon_sym_not_DASHlike2] = ACTIONS(2696), + [anon_sym_STAR_STAR2] = ACTIONS(2868), + [anon_sym_PLUS_PLUS2] = ACTIONS(2868), + [anon_sym_SLASH2] = ACTIONS(2866), + [anon_sym_mod2] = ACTIONS(2870), + [anon_sym_SLASH_SLASH2] = ACTIONS(2870), + [anon_sym_PLUS2] = ACTIONS(2872), + [anon_sym_bit_DASHshl2] = ACTIONS(2882), + [anon_sym_bit_DASHshr2] = ACTIONS(2882), + [anon_sym_bit_DASHand2] = ACTIONS(2696), + [anon_sym_bit_DASHxor2] = ACTIONS(2696), + [anon_sym_bit_DASHor2] = ACTIONS(2696), + [anon_sym_err_GT] = ACTIONS(2698), + [anon_sym_out_GT] = ACTIONS(2698), + [anon_sym_e_GT] = ACTIONS(2698), + [anon_sym_o_GT] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT] = ACTIONS(2698), + [anon_sym_err_GT_GT] = ACTIONS(2696), + [anon_sym_out_GT_GT] = ACTIONS(2696), + [anon_sym_e_GT_GT] = ACTIONS(2696), + [anon_sym_o_GT_GT] = ACTIONS(2696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2696), [anon_sym_POUND] = ACTIONS(3), }, }; @@ -141690,9 +142947,9 @@ static const uint16_t ts_small_parse_table[] = { [0] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1277), 1, + STATE(1289), 1, sym_comment, - ACTIONS(2479), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141706,7 +142963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2477), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141756,112 +143013,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73] = 37, + [73] = 6, 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(1290), 1, + sym_comment, + ACTIONS(2229), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2348), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2346), 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(2227), 29, + anon_sym_in, anon_sym_DASH2, - ACTIONS(998), 1, - anon_sym_DOLLAR, - ACTIONS(2006), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2008), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2792), 1, - anon_sym_null, - STATE(705), 1, - sym_val_variable, - STATE(710), 1, - sym__val_number, - STATE(724), 1, - sym_expr_parenthesized, - STATE(808), 1, - sym__inter_single_quotes, - STATE(809), 1, - sym__inter_double_quotes, - STATE(959), 1, - sym__expr_unary_minus, - STATE(1278), 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, + [150] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1291), 1, sym_comment, - STATE(1886), 1, - sym__val_number_decimal, - STATE(2246), 1, - sym__expr_binary_expression, - STATE(4924), 1, - sym__expression, - ACTIONS(179), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2010), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(932), 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(970), 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, - [212] = 4, + ACTIONS(2628), 13, + anon_sym_GT2, + 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(2626), 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, + [223] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1279), 1, + STATE(1292), 1, sym_comment, ACTIONS(2666), 13, anon_sym_GT2, @@ -141927,202 +143222,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, - [285] = 39, + [296] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2968), 1, - anon_sym_null, - ACTIONS(2972), 1, - sym__newline, - ACTIONS(2974), 1, - anon_sym_LBRACK, ACTIONS(2976), 1, - anon_sym_LPAREN, - ACTIONS(2978), 1, - anon_sym_DOLLAR, - ACTIONS(2980), 1, - anon_sym_LBRACE, - ACTIONS(2982), 1, - anon_sym_DOT_DOT, - ACTIONS(2986), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2988), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2994), 1, - anon_sym_0b, - ACTIONS(2998), 1, - sym_val_date, - ACTIONS(3000), 1, - anon_sym_DQUOTE, - ACTIONS(3002), 1, - anon_sym_SQUOTE, - ACTIONS(3004), 1, - anon_sym_BQUOTE, - ACTIONS(3006), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3008), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3010), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3012), 1, - sym_raw_string_begin, - STATE(1280), 1, - sym_comment, - STATE(2256), 1, - aux_sym__repeat_newline, - STATE(2471), 1, - sym__val_number_decimal, - STATE(2958), 1, - sym_expr_parenthesized, - STATE(3008), 1, - sym_val_variable, - STATE(3046), 1, - sym__val_number, - STATE(3074), 1, - sym__inter_single_quotes, - STATE(3075), 1, - sym__inter_double_quotes, - STATE(3105), 1, - sym_val_bool, - STATE(3208), 1, - sym__unquoted_in_record, - ACTIONS(2966), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2984), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2990), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(2996), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4747), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2970), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(2992), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3541), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2643), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3044), 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, - [428] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2968), 1, anon_sym_null, - ACTIONS(2972), 1, + ACTIONS(2980), 1, sym__newline, - ACTIONS(2974), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, + ACTIONS(2984), 1, anon_sym_LPAREN, - ACTIONS(2978), 1, + ACTIONS(2986), 1, anon_sym_DOLLAR, - ACTIONS(2980), 1, + ACTIONS(2988), 1, anon_sym_LBRACE, - ACTIONS(2982), 1, + ACTIONS(2990), 1, anon_sym_DOT_DOT, - ACTIONS(2986), 1, + ACTIONS(2994), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2988), 1, + ACTIONS(2996), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_0b, - ACTIONS(2998), 1, + ACTIONS(3006), 1, sym_val_date, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_DQUOTE, - ACTIONS(3002), 1, + ACTIONS(3010), 1, anon_sym_SQUOTE, - ACTIONS(3004), 1, + ACTIONS(3012), 1, anon_sym_BQUOTE, - ACTIONS(3006), 1, + ACTIONS(3014), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3008), 1, + ACTIONS(3016), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3010), 1, + ACTIONS(3018), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(3012), 1, + ACTIONS(3020), 1, sym_raw_string_begin, - STATE(1281), 1, + STATE(1293), 1, sym_comment, - STATE(1308), 1, + STATE(1335), 1, aux_sym__repeat_newline, - STATE(2471), 1, + STATE(2475), 1, sym__val_number_decimal, - STATE(2958), 1, + STATE(2954), 1, sym_expr_parenthesized, - STATE(3008), 1, + STATE(2983), 1, sym_val_variable, - STATE(3046), 1, + STATE(3062), 1, + sym_val_bool, + STATE(3129), 1, sym__val_number, - STATE(3074), 1, + STATE(3214), 1, sym__inter_single_quotes, - STATE(3075), 1, + STATE(3215), 1, sym__inter_double_quotes, - STATE(3105), 1, - sym_val_bool, - STATE(3208), 1, + STATE(3234), 1, sym__unquoted_in_record, - ACTIONS(2966), 2, + ACTIONS(2974), 2, anon_sym_true, anon_sym_false, - ACTIONS(2984), 2, + ACTIONS(2992), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2990), 2, + ACTIONS(2998), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(2996), 2, + ACTIONS(3004), 2, anon_sym_0o, anon_sym_0x, - STATE(4747), 2, + STATE(4910), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2970), 3, + ACTIONS(2978), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(2992), 3, + ACTIONS(3000), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3541), 3, + STATE(3535), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2643), 4, + STATE(2607), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3044), 12, + STATE(3128), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -142135,12 +143326,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [571] = 4, + [439] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1282), 1, + STATE(1294), 1, sym_comment, - ACTIONS(2451), 13, + ACTIONS(2110), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142154,7 +143345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2449), 49, + ACTIONS(2108), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142204,12 +143395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [644] = 4, + [512] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1283), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2455), 13, + ACTIONS(2092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142223,7 +143414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2453), 49, + ACTIONS(2090), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142273,12 +143464,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, - [717] = 4, + [585] = 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(1270), 1, + anon_sym_DOLLAR, + ACTIONS(2057), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2059), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2724), 1, + anon_sym_null, + STATE(730), 1, + sym_val_variable, + STATE(743), 1, + sym_expr_parenthesized, + STATE(744), 1, + sym__val_number, + STATE(809), 1, + sym__inter_single_quotes, + STATE(810), 1, + sym__inter_double_quotes, + STATE(947), 1, + sym__expr_unary_minus, + STATE(1296), 1, + sym_comment, + STATE(1885), 1, + sym__val_number_decimal, + STATE(2259), 1, + sym__expr_binary_expression, + STATE(5015), 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(1931), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2061), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(946), 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(945), 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, + [724] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1284), 1, + STATE(1297), 1, sym_comment, - ACTIONS(2459), 13, + ACTIONS(2259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142292,7 +143585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2457), 49, + ACTIONS(2257), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142342,17 +143635,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, - [790] = 4, + [797] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1285), 1, + ACTIONS(3026), 1, + anon_sym_DASH2, + ACTIONS(3036), 1, + anon_sym_PLUS2, + STATE(1298), 1, sym_comment, - ACTIONS(2463), 13, + ACTIONS(3024), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3028), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3038), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3030), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2658), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142361,9 +143673,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(2461), 49, - ts_builtin_sym_end, + ACTIONS(3022), 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(2656), 30, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142375,31 +143695,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, @@ -142411,12 +143713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [863] = 4, + [888] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1286), 1, + STATE(1299), 1, sym_comment, - ACTIONS(2467), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142430,7 +143732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2465), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142480,12 +143782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [936] = 4, + [961] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1287), 1, + STATE(1300), 1, sym_comment, - ACTIONS(2471), 13, + ACTIONS(2670), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142499,7 +143801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2469), 49, + ACTIONS(2668), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142549,12 +143851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1009] = 4, + [1034] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1288), 1, + STATE(1301), 1, sym_comment, - ACTIONS(2475), 13, + ACTIONS(2662), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142568,7 +143870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2473), 49, + ACTIONS(2660), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142618,12 +143920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1082] = 4, + [1107] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1289), 1, + STATE(1302), 1, sym_comment, - ACTIONS(2610), 13, + ACTIONS(2396), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142637,7 +143939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2608), 49, + ACTIONS(2394), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142687,114 +143989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1155] = 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(998), 1, - anon_sym_DOLLAR, - ACTIONS(2006), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2008), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2792), 1, - anon_sym_null, - STATE(705), 1, - sym_val_variable, - STATE(710), 1, - sym__val_number, - STATE(724), 1, - sym_expr_parenthesized, - STATE(808), 1, - sym__inter_single_quotes, - STATE(809), 1, - sym__inter_double_quotes, - STATE(959), 1, - sym__expr_unary_minus, - STATE(1290), 1, - sym_comment, - STATE(1886), 1, - sym__val_number_decimal, - STATE(2246), 1, - sym__expr_binary_expression, - STATE(5006), 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(1945), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2010), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(932), 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(970), 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, - [1294] = 4, + [1180] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1291), 1, + STATE(1303), 1, sym_comment, - ACTIONS(1889), 13, + ACTIONS(2416), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142808,7 +144008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1887), 49, + ACTIONS(2414), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142858,18 +144058,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, - [1367] = 6, + [1253] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1292), 1, + STATE(1304), 1, sym_comment, - ACTIONS(2134), 5, + ACTIONS(2352), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2247), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142878,8 +144077,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(2245), 20, + ACTIONS(2350), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142891,16 +144091,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(2132), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -142929,12 +144119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [1444] = 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, + [1326] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1293), 1, + STATE(1305), 1, sym_comment, - ACTIONS(2670), 13, + ACTIONS(2420), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142948,7 +144146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2668), 49, + ACTIONS(2418), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142998,12 +144196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1517] = 4, + [1399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1294), 1, + STATE(1306), 1, sym_comment, - ACTIONS(2172), 13, + ACTIONS(2586), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143017,7 +144215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2170), 49, + ACTIONS(2584), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143067,12 +144265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1590] = 4, + [1472] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1307), 1, sym_comment, - ACTIONS(1974), 13, + ACTIONS(2548), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143086,7 +144284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1972), 49, + ACTIONS(2546), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143136,12 +144334,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1663] = 4, + [1545] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1296), 1, + STATE(1308), 1, sym_comment, - ACTIONS(2658), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143155,7 +144353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2656), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143205,17 +144403,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, - [1736] = 4, + [1618] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1297), 1, + ACTIONS(3026), 1, + anon_sym_DASH2, + ACTIONS(3036), 1, + anon_sym_PLUS2, + STATE(1309), 1, sym_comment, - ACTIONS(2483), 13, - anon_sym_GT2, + ACTIONS(3028), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2658), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143224,7 +144432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2481), 49, + ACTIONS(2656), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143238,7 +144446,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, @@ -143257,10 +144464,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, @@ -143274,12 +144477,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, - [1809] = 4, + [1701] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1298), 1, + STATE(1310), 1, sym_comment, - ACTIONS(1909), 13, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2658), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143293,7 +144499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1907), 49, + ACTIONS(2656), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143326,8 +144532,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, @@ -143343,12 +144547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1882] = 4, + [1776] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1299), 1, + STATE(1311), 1, sym_comment, - ACTIONS(2487), 13, + ACTIONS(2460), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143362,7 +144566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2485), 49, + ACTIONS(2458), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143412,12 +144616,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, - [1955] = 4, + [1849] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + ACTIONS(3026), 1, + anon_sym_DASH2, + ACTIONS(3036), 1, + anon_sym_PLUS2, + STATE(1312), 1, + sym_comment, + ACTIONS(3024), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3028), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3038), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3030), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3040), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2658), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3022), 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(2656), 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, + [1942] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1313), 1, sym_comment, - ACTIONS(2568), 13, + ACTIONS(2370), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143431,7 +144714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2566), 49, + ACTIONS(2368), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143481,99 +144764,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2028] = 39, + [2015] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2968), 1, - anon_sym_null, - ACTIONS(2972), 1, - sym__newline, - ACTIONS(2974), 1, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, + ACTIONS(159), 1, anon_sym_LPAREN, - ACTIONS(2978), 1, - anon_sym_DOLLAR, - ACTIONS(2980), 1, + ACTIONS(165), 1, anon_sym_LBRACE, - ACTIONS(2982), 1, - anon_sym_DOT_DOT, - ACTIONS(2986), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2988), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2994), 1, + ACTIONS(191), 1, anon_sym_0b, - ACTIONS(2998), 1, + ACTIONS(195), 1, sym_val_date, - ACTIONS(3000), 1, + ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(3002), 1, + ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(3004), 1, + ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(3006), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3008), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3010), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3012), 1, + ACTIONS(211), 1, sym_raw_string_begin, - STATE(1280), 1, - aux_sym__repeat_newline, - STATE(1301), 1, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1270), 1, + anon_sym_DOLLAR, + ACTIONS(2525), 1, + aux_sym_expr_unary_token1, + ACTIONS(2529), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2531), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2724), 1, + anon_sym_null, + ACTIONS(3042), 1, + anon_sym_DOT_DOT, + STATE(744), 1, + sym__val_number, + STATE(809), 1, + sym__inter_single_quotes, + STATE(810), 1, + sym__inter_double_quotes, + STATE(947), 1, + sym__expr_unary_minus, + STATE(1314), 1, sym_comment, - STATE(2471), 1, + STATE(1944), 1, sym__val_number_decimal, - STATE(3008), 1, + STATE(2000), 1, sym_val_variable, - STATE(3011), 1, + STATE(2004), 1, sym_expr_parenthesized, - STATE(3046), 1, - sym__val_number, - STATE(3074), 1, - sym__inter_single_quotes, - STATE(3075), 1, - sym__inter_double_quotes, - STATE(3105), 1, - sym_val_bool, - STATE(3140), 1, - sym__unquoted_in_record, - ACTIONS(2966), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2984), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2990), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(2996), 2, + STATE(2260), 1, + sym__expr_binary_expression, + STATE(5235), 1, + sym__expression, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - STATE(4747), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2970), 3, + ACTIONS(2517), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2533), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3044), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(946), 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, - ACTIONS(2992), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3407), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2643), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3044), 12, + STATE(945), 13, sym_val_nothing, + sym_val_bool, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -143585,12 +144866,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [2171] = 4, + [2154] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 1, + STATE(1315), 1, sym_comment, - ACTIONS(2547), 13, + ACTIONS(2412), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143604,7 +144885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2545), 49, + ACTIONS(2410), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143654,12 +144935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2244] = 4, + [2227] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1303), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2580), 13, + ACTIONS(2400), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143673,7 +144954,7 @@ 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(2398), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143723,12 +145004,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2317] = 4, + [2300] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + STATE(1317), 1, sym_comment, - ACTIONS(2150), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143742,7 +145023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2148), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143792,12 +145073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2390] = 4, + [2373] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + STATE(1318), 1, sym_comment, - ACTIONS(2427), 13, + ACTIONS(2374), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143811,7 +145092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2425), 49, + ACTIONS(2372), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143861,12 +145142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2463] = 4, + [2446] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 1, + STATE(1319), 1, sym_comment, - ACTIONS(2431), 13, + ACTIONS(2560), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143880,7 +145161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2429), 49, + ACTIONS(2558), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143930,12 +145211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2536] = 4, + [2519] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + STATE(1320), 1, sym_comment, - ACTIONS(2435), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143949,7 +145230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2433), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143999,116 +145280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2609] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2968), 1, - anon_sym_null, - ACTIONS(2972), 1, - sym__newline, - ACTIONS(2974), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_LPAREN, - ACTIONS(2978), 1, - anon_sym_DOLLAR, - ACTIONS(2980), 1, - anon_sym_LBRACE, - ACTIONS(2982), 1, - anon_sym_DOT_DOT, - ACTIONS(2986), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2988), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2994), 1, - anon_sym_0b, - ACTIONS(2998), 1, - sym_val_date, - ACTIONS(3000), 1, - anon_sym_DQUOTE, - ACTIONS(3002), 1, - anon_sym_SQUOTE, - ACTIONS(3004), 1, - anon_sym_BQUOTE, - ACTIONS(3006), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3008), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3010), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3012), 1, - sym_raw_string_begin, - STATE(1308), 1, - sym_comment, - STATE(2256), 1, - aux_sym__repeat_newline, - STATE(2471), 1, - sym__val_number_decimal, - STATE(2989), 1, - sym_expr_parenthesized, - STATE(3008), 1, - sym_val_variable, - STATE(3046), 1, - sym__val_number, - STATE(3071), 1, - sym__unquoted_in_record, - STATE(3074), 1, - sym__inter_single_quotes, - STATE(3075), 1, - sym__inter_double_quotes, - STATE(3105), 1, - sym_val_bool, - ACTIONS(2966), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2984), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2990), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(2996), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4747), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2970), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(2992), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3574), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2643), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3044), 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, - [2752] = 4, + [2592] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1309), 1, + STATE(1321), 1, sym_comment, - ACTIONS(2574), 13, + ACTIONS(2464), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144122,7 +145299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2572), 49, + ACTIONS(2462), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144172,12 +145349,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2825] = 4, + [2665] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + ACTIONS(3026), 1, + anon_sym_DASH2, + ACTIONS(3036), 1, + anon_sym_PLUS2, + STATE(1322), 1, + sym_comment, + ACTIONS(3028), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3038), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2658), 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(2656), 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, + [2750] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3026), 1, + anon_sym_DASH2, + ACTIONS(3036), 1, + anon_sym_PLUS2, + ACTIONS(3046), 1, + anon_sym_and2, + ACTIONS(3048), 1, + anon_sym_bit_DASHand2, + ACTIONS(3050), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3052), 1, + anon_sym_bit_DASHor2, + STATE(1323), 1, + sym_comment, + ACTIONS(3024), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3028), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3038), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3030), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3040), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2658), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3022), 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(2656), 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, + [2851] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1324), 1, sym_comment, - ACTIONS(2439), 13, + ACTIONS(2468), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144191,7 +145526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2437), 49, + ACTIONS(2466), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144241,12 +145576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2898] = 4, + [2924] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1311), 1, + STATE(1325), 1, sym_comment, - ACTIONS(2479), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144260,7 +145595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2477), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144310,114 +145645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2971] = 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(998), 1, - anon_sym_DOLLAR, - ACTIONS(2515), 1, - aux_sym_expr_unary_token1, - ACTIONS(2519), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2521), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2792), 1, - anon_sym_null, - ACTIONS(3014), 1, - anon_sym_DOT_DOT, - STATE(710), 1, - sym__val_number, - STATE(808), 1, - sym__inter_single_quotes, - STATE(809), 1, - sym__inter_double_quotes, - STATE(959), 1, - sym__expr_unary_minus, - STATE(1312), 1, - sym_comment, - STATE(1921), 1, - sym__val_number_decimal, - STATE(1967), 1, - sym_val_variable, - STATE(1974), 1, - sym_expr_parenthesized, - STATE(2250), 1, - sym__expr_binary_expression, - STATE(5244), 1, - sym__expression, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2507), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2523), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3016), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(932), 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(970), 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, - [3110] = 4, + [2997] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1313), 1, + STATE(1326), 1, sym_comment, - ACTIONS(2443), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144431,7 +145664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2441), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144481,12 +145714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3183] = 4, + [3070] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1314), 1, + STATE(1327), 1, sym_comment, - ACTIONS(847), 13, + ACTIONS(2472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144500,7 +145733,7 @@ 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(2470), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144550,12 +145783,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3256] = 4, + [3143] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1315), 1, + STATE(1328), 1, sym_comment, - ACTIONS(2564), 13, + ACTIONS(2452), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144569,7 +145802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2562), 49, + ACTIONS(2450), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144619,86 +145852,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, - [3329] = 4, + [3216] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + ACTIONS(3026), 1, + anon_sym_DASH2, + ACTIONS(3036), 1, + anon_sym_PLUS2, + ACTIONS(3048), 1, + anon_sym_bit_DASHand2, + STATE(1329), 1, sym_comment, - ACTIONS(1615), 13, + ACTIONS(3024), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3028), 2, + anon_sym_STAR2, 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(1699), 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, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3038), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3030), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3040), 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3402] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1317), 1, - sym_comment, - ACTIONS(2626), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2658), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144707,9 +145897,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(2624), 49, - ts_builtin_sym_end, + ACTIONS(3022), 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(2656), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144721,32 +145919,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, @@ -144757,12 +145932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3475] = 4, + [3311] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1318), 1, + STATE(1330), 1, sym_comment, - ACTIONS(2529), 13, + ACTIONS(2476), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144776,7 +145951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2527), 49, + ACTIONS(2474), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144826,12 +146001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3548] = 4, + [3384] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1319), 1, + STATE(1331), 1, sym_comment, - ACTIONS(2533), 13, + ACTIONS(2356), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144845,7 +146020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2531), 49, + ACTIONS(2354), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144895,12 +146070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3621] = 4, + [3457] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1320), 1, + STATE(1332), 1, sym_comment, - ACTIONS(2134), 13, + ACTIONS(2243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144914,7 +146089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2132), 49, + ACTIONS(2241), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144964,89 +146139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3694] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3020), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - STATE(1321), 1, - sym_comment, - ACTIONS(3018), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3022), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3024), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2650), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2648), 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, - [3783] = 4, + [3530] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1322), 1, + STATE(1333), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145060,7 +146158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145110,87 +146208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3856] = 10, + [3603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3020), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - STATE(1323), 1, - sym_comment, - ACTIONS(3022), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2650), 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(2648), 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, - [3941] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1324), 1, + STATE(1334), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2552), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145204,7 +146227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2550), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145254,84 +146277,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, - [4014] = 7, + [3676] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, - sym_comment, - ACTIONS(3022), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2650), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2648), 45, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2976), 1, + anon_sym_null, + ACTIONS(2980), 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_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4093] = 4, + ACTIONS(2982), 1, + anon_sym_LBRACK, + ACTIONS(2984), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(2988), 1, + anon_sym_LBRACE, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2994), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2996), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3002), 1, + anon_sym_0b, + ACTIONS(3006), 1, + sym_val_date, + ACTIONS(3008), 1, + anon_sym_DQUOTE, + ACTIONS(3010), 1, + anon_sym_SQUOTE, + ACTIONS(3012), 1, + anon_sym_BQUOTE, + ACTIONS(3014), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3016), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3018), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3020), 1, + sym_raw_string_begin, + STATE(1335), 1, + sym_comment, + STATE(2269), 1, + aux_sym__repeat_newline, + STATE(2475), 1, + sym__val_number_decimal, + STATE(2971), 1, + sym_expr_parenthesized, + STATE(2983), 1, + sym_val_variable, + STATE(3052), 1, + sym__unquoted_in_record, + STATE(3062), 1, + sym_val_bool, + STATE(3129), 1, + sym__val_number, + STATE(3214), 1, + sym__inter_single_quotes, + STATE(3215), 1, + sym__inter_double_quotes, + ACTIONS(2974), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2992), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2998), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4910), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2978), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3000), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3426), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2607), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3128), 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, + [3819] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 1, + STATE(1336), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145345,7 +146400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2470), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145395,15 +146450,12 @@ static const 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] = 5, + [3892] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, + STATE(1337), 1, sym_comment, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2650), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145417,7 +146469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2648), 47, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145450,6 +146502,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, @@ -145465,12 +146519,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4241] = 4, + [3965] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1328), 1, + STATE(1338), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2592), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145484,7 +146538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2590), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145534,47 +146588,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, - [4314] = 17, + [4038] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3020), 1, + ACTIONS(3026), 1, anon_sym_DASH2, - ACTIONS(3030), 1, + ACTIONS(3036), 1, anon_sym_PLUS2, - ACTIONS(3038), 1, + ACTIONS(3048), 1, anon_sym_bit_DASHand2, - ACTIONS(3040), 1, + ACTIONS(3050), 1, anon_sym_bit_DASHxor2, - ACTIONS(3042), 1, - anon_sym_bit_DASHor2, - STATE(1329), 1, + STATE(1339), 1, sym_comment, - ACTIONS(3018), 2, + ACTIONS(3024), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3022), 2, + ACTIONS(3028), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3026), 2, + ACTIONS(3032), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, + ACTIONS(3034), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, + ACTIONS(3038), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3024), 4, + ACTIONS(3030), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3036), 4, + ACTIONS(3040), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2650), 8, + ACTIONS(2658), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -145583,7 +146635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3034), 8, + ACTIONS(3022), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -145592,7 +146644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 23, + ACTIONS(2656), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -145608,6 +146660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -145616,12 +146669,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4413] = 4, + [4135] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1330), 1, + STATE(1340), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145635,7 +146688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145685,49 +146738,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, - [4486] = 18, + [4208] = 39, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2976), 1, + anon_sym_null, + ACTIONS(2980), 1, + sym__newline, + ACTIONS(2982), 1, + anon_sym_LBRACK, + ACTIONS(2984), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(2988), 1, + anon_sym_LBRACE, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2994), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2996), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3002), 1, + anon_sym_0b, + ACTIONS(3006), 1, + sym_val_date, + ACTIONS(3008), 1, + anon_sym_DQUOTE, + ACTIONS(3010), 1, + anon_sym_SQUOTE, + ACTIONS(3012), 1, + anon_sym_BQUOTE, + ACTIONS(3014), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3016), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3018), 1, + aux_sym__unquoted_in_record_token1, ACTIONS(3020), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - ACTIONS(3038), 1, - anon_sym_bit_DASHand2, - ACTIONS(3040), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3042), 1, - anon_sym_bit_DASHor2, - ACTIONS(3044), 1, - anon_sym_and2, - STATE(1331), 1, + sym_raw_string_begin, + STATE(1341), 1, sym_comment, - ACTIONS(3018), 2, + STATE(2269), 1, + aux_sym__repeat_newline, + STATE(2475), 1, + sym__val_number_decimal, + STATE(2953), 1, + sym_expr_parenthesized, + STATE(2983), 1, + sym_val_variable, + STATE(3062), 1, + sym_val_bool, + STATE(3122), 1, + sym__unquoted_in_record, + STATE(3129), 1, + sym__val_number, + STATE(3214), 1, + sym__inter_single_quotes, + STATE(3215), 1, + sym__inter_double_quotes, + ACTIONS(2974), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2992), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2998), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4910), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2978), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3000), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3419), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2607), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3128), 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, + [4351] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1342), 1, + sym_comment, + ACTIONS(2632), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3022), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3024), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3036), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2650), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -145736,17 +146861,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(3034), 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(2648), 22, + ACTIONS(2630), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -145758,8 +146875,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, @@ -145768,12 +146911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4587] = 4, + [4424] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1332), 1, + STATE(1343), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(785), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145787,7 +146930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(884), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145837,51 +146980,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, - [4660] = 19, + [4497] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3020), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - ACTIONS(3038), 1, - anon_sym_bit_DASHand2, - ACTIONS(3040), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3042), 1, - anon_sym_bit_DASHor2, - ACTIONS(3044), 1, - anon_sym_and2, - ACTIONS(3046), 1, - anon_sym_xor2, - STATE(1333), 1, + STATE(1344), 1, sym_comment, - ACTIONS(3018), 2, + ACTIONS(1955), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3022), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3024), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3036), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2650), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -145890,17 +146999,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(3034), 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(2648), 21, + ACTIONS(1953), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -145912,7 +147013,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, @@ -145921,12 +147049,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4763] = 4, + [4570] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1334), 1, + STATE(1345), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2380), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145940,7 +147068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2378), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145990,36 +147118,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, - [4836] = 13, + [4643] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3020), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - STATE(1335), 1, + STATE(1346), 1, sym_comment, - ACTIONS(3018), 2, + ACTIONS(2102), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3022), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3024), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2650), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -146028,17 +147137,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(3034), 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(2648), 30, + ACTIONS(2100), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -146050,13 +147151,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, @@ -146068,12 +147187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4927] = 4, + [4716] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1336), 1, + STATE(1347), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146087,7 +147206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146137,12 +147256,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5000] = 4, + [4789] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1337), 1, + STATE(1348), 1, sym_comment, - ACTIONS(2650), 13, + ACTIONS(2102), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146156,7 +147275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2648), 49, + ACTIONS(2100), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146206,12 +147325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5073] = 4, + [4862] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1338), 1, + STATE(1349), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2456), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146225,7 +147344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2454), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146275,27 +147394,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, - [5146] = 9, + [4935] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3020), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - STATE(1339), 1, + STATE(1350), 1, sym_comment, - ACTIONS(3022), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2650), 10, + ACTIONS(2251), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -146304,7 +147413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2648), 44, + ACTIONS(2249), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146318,6 +147427,7 @@ static const uint16_t 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, @@ -146336,6 +147446,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, @@ -146349,16 +147463,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, - [5229] = 4, + [5008] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1340), 1, + STATE(1351), 1, sym_comment, - ACTIONS(2094), 13, - anon_sym_GT2, + ACTIONS(3028), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2658), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -146368,7 +147489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2656), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146401,10 +147522,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, @@ -146418,41 +147535,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, - [5302] = 14, + [5087] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3020), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - STATE(1341), 1, + STATE(1352), 1, sym_comment, - ACTIONS(3018), 2, + ACTIONS(2658), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3022), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3024), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3036), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2650), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -146461,17 +147554,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(3034), 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(2648), 26, + ACTIONS(2656), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -146483,9 +147568,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, @@ -146497,12 +147604,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, - [5395] = 4, + [5160] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1342), 1, + ACTIONS(2976), 1, + anon_sym_null, + ACTIONS(2980), 1, + sym__newline, + ACTIONS(2982), 1, + anon_sym_LBRACK, + ACTIONS(2984), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(2988), 1, + anon_sym_LBRACE, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2994), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2996), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3002), 1, + anon_sym_0b, + ACTIONS(3006), 1, + sym_val_date, + ACTIONS(3008), 1, + anon_sym_DQUOTE, + ACTIONS(3010), 1, + anon_sym_SQUOTE, + ACTIONS(3012), 1, + anon_sym_BQUOTE, + ACTIONS(3014), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3016), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3018), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3020), 1, + sym_raw_string_begin, + STATE(1341), 1, + aux_sym__repeat_newline, + STATE(1353), 1, + sym_comment, + STATE(2475), 1, + sym__val_number_decimal, + STATE(2971), 1, + sym_expr_parenthesized, + STATE(2983), 1, + sym_val_variable, + STATE(3052), 1, + sym__unquoted_in_record, + STATE(3062), 1, + sym_val_bool, + STATE(3129), 1, + sym__val_number, + STATE(3214), 1, + sym__inter_single_quotes, + STATE(3215), 1, + sym__inter_double_quotes, + ACTIONS(2974), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2992), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2998), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4910), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2978), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3000), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3426), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2607), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3128), 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, + [5303] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1354), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2576), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146516,7 +147727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2574), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146566,43 +147777,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, - [5468] = 15, + [5376] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3020), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - ACTIONS(3038), 1, - anon_sym_bit_DASHand2, - STATE(1343), 1, + STATE(1355), 1, sym_comment, - ACTIONS(3018), 2, + ACTIONS(1887), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3022), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3024), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3036), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2650), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -146611,17 +147796,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(3034), 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(2648), 25, + ACTIONS(1885), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -146633,9 +147810,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, @@ -146646,12 +147846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5563] = 4, + [5449] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1344), 1, + STATE(1356), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2636), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146665,7 +147865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2634), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146715,93 +147915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5636] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3020), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - ACTIONS(3038), 1, - anon_sym_bit_DASHand2, - ACTIONS(3040), 1, - anon_sym_bit_DASHxor2, - STATE(1345), 1, - sym_comment, - ACTIONS(3018), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3022), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3024), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3036), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2650), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3034), 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(2648), 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, - [5733] = 4, + [5522] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1346), 1, + STATE(1357), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(2229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146815,7 +147934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 49, + ACTIONS(2227), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146865,17 +147984,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, - [5806] = 4, + [5595] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(1347), 1, + ACTIONS(3026), 1, + anon_sym_DASH2, + ACTIONS(3036), 1, + anon_sym_PLUS2, + ACTIONS(3046), 1, + anon_sym_and2, + ACTIONS(3048), 1, + anon_sym_bit_DASHand2, + ACTIONS(3050), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3052), 1, + anon_sym_bit_DASHor2, + ACTIONS(3054), 1, + anon_sym_xor2, + STATE(1358), 1, sym_comment, - ACTIONS(2407), 13, + ACTIONS(3024), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3028), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3038), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3030), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3040), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2658), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -146884,9 +148037,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(2405), 49, - ts_builtin_sym_end, + ACTIONS(3022), 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(2656), 21, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -146898,34 +148059,7 @@ static const uint16_t 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, @@ -146934,17 +148068,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, - [5879] = 4, + [5698] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1348), 1, + ACTIONS(3026), 1, + anon_sym_DASH2, + ACTIONS(3036), 1, + anon_sym_PLUS2, + ACTIONS(3048), 1, + anon_sym_bit_DASHand2, + ACTIONS(3050), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3052), 1, + anon_sym_bit_DASHor2, + STATE(1359), 1, sym_comment, - ACTIONS(2106), 13, + ACTIONS(3024), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3028), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3038), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3030), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3040), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2658), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -146953,9 +148117,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(2104), 49, - ts_builtin_sym_end, + ACTIONS(3022), 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(2656), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -146967,34 +148139,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, @@ -147003,12 +148150,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, - [5952] = 4, + [5797] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1349), 1, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(169), 1, + anon_sym_DOT_DOT, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1270), 1, + anon_sym_DOLLAR, + ACTIONS(2057), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2059), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2724), 1, + anon_sym_null, + STATE(730), 1, + sym_val_variable, + STATE(743), 1, + sym_expr_parenthesized, + STATE(744), 1, + sym__val_number, + STATE(809), 1, + sym__inter_single_quotes, + STATE(810), 1, + sym__inter_double_quotes, + STATE(947), 1, + sym__expr_unary_minus, + STATE(1360), 1, sym_comment, - ACTIONS(2114), 13, + STATE(1885), 1, + sym__val_number_decimal, + STATE(2259), 1, + sym__expr_binary_expression, + STATE(4957), 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(1931), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2061), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(946), 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(945), 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, + [5936] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1361), 1, + sym_comment, + ACTIONS(1588), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147022,7 +148271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2112), 49, + ACTIONS(1714), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147072,17 +148321,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, - [6025] = 4, + [6009] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, + ACTIONS(3026), 1, + anon_sym_DASH2, + ACTIONS(3036), 1, + anon_sym_PLUS2, + STATE(1362), 1, sym_comment, - ACTIONS(2654), 13, + ACTIONS(3024), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3028), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3038), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3030), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2658), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -147091,7 +148359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2652), 49, + ACTIONS(2656), 38, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147105,7 +148373,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, @@ -147116,20 +148383,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, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -147144,9 +148401,9 @@ static const uint16_t ts_small_parse_table[] = { [6098] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1351), 1, + STATE(1363), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(2408), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147160,7 +148417,7 @@ 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(2406), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147213,9 +148470,9 @@ static const uint16_t ts_small_parse_table[] = { [6171] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1352), 1, + STATE(1364), 1, sym_comment, - ACTIONS(1984), 13, + ACTIONS(1895), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147229,7 +148486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1982), 49, + ACTIONS(1893), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147282,9 +148539,9 @@ static const uint16_t ts_small_parse_table[] = { [6244] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1353), 1, + STATE(1365), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(2480), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147298,7 +148555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2409), 49, + ACTIONS(2478), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147351,17 +148608,17 @@ static const uint16_t ts_small_parse_table[] = { [6317] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1354), 1, + STATE(1366), 1, sym_comment, - STATE(1355), 1, + STATE(1370), 1, aux_sym__block_body_repeat1, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3052), 2, + ACTIONS(3060), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3048), 10, + ACTIONS(3056), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147372,7 +148629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3050), 46, + ACTIONS(3058), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147419,16 +148676,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6395] = 5, + [6395] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3058), 2, - sym__newline, - anon_sym_SEMI, - STATE(1355), 2, + STATE(1367), 1, sym_comment, + STATE(1370), 1, aux_sym__block_body_repeat1, - ACTIONS(3054), 10, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3062), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3056), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147439,7 +148700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3056), 48, + ACTIONS(3058), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147468,9 +148729,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, @@ -147488,20 +148747,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6469] = 7, + [6473] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1355), 1, - aux_sym__block_body_repeat1, - STATE(1356), 1, + STATE(1368), 1, sym_comment, + STATE(1370), 1, + aux_sym__block_body_repeat1, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3061), 2, + ACTIONS(3064), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3048), 10, + ACTIONS(3056), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147512,7 +148771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3050), 46, + ACTIONS(3058), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147559,104 +148818,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6547] = 42, + [6551] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(1943), 1, + ACTIONS(1951), 1, aux_sym_unquoted_token1, - ACTIONS(2688), 1, + ACTIONS(2766), 1, anon_sym_LPAREN, - ACTIONS(2930), 1, + ACTIONS(2890), 1, anon_sym_null, - ACTIONS(2934), 1, + ACTIONS(2894), 1, sym__newline, - ACTIONS(2936), 1, + ACTIONS(2896), 1, anon_sym_LBRACK, - ACTIONS(2938), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR, - ACTIONS(2940), 1, + ACTIONS(2900), 1, anon_sym_LBRACE, - ACTIONS(2944), 1, + ACTIONS(2904), 1, anon_sym__, - ACTIONS(2946), 1, + ACTIONS(2906), 1, anon_sym_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2910), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2952), 1, + ACTIONS(2912), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2956), 1, + ACTIONS(2916), 1, sym_val_date, - STATE(710), 1, + STATE(744), 1, sym__val_number, - STATE(1357), 1, + STATE(1369), 1, sym_comment, - STATE(1381), 1, + STATE(1400), 1, aux_sym__ctrl_match_body_repeat1, - STATE(2273), 1, + STATE(2279), 1, aux_sym__types_body_repeat1, - STATE(3638), 1, + STATE(3707), 1, sym__val_number_decimal, - STATE(3872), 1, - sym_val_variable, - STATE(3917), 1, + STATE(3880), 1, sym_expr_parenthesized, - STATE(4156), 1, + STATE(3881), 1, + sym_val_variable, + STATE(4120), 1, sym__match_pattern, - STATE(4286), 1, + STATE(4344), 1, sym_val_bool, - STATE(4612), 1, + STATE(4468), 1, sym__match_pattern_expression, - STATE(4619), 1, + STATE(4480), 1, sym__match_pattern_list, - STATE(4621), 1, + STATE(4507), 1, sym_unquoted, - STATE(5314), 1, + STATE(5108), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2928), 2, + ACTIONS(2888), 2, anon_sym_true, anon_sym_false, - ACTIONS(2948), 2, + ACTIONS(2908), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2954), 2, + ACTIONS(2914), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4618), 2, + STATE(4475), 2, sym__match_pattern_value, sym_val_range, - STATE(4827), 2, + STATE(4891), 2, sym_match_arm, sym_default_arm, - STATE(5288), 2, + STATE(5398), 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(2932), 3, + ACTIONS(2892), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4620), 8, + STATE(4490), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -147665,89 +148924,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [6695] = 5, + [6699] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3063), 1, + ACTIONS(3070), 2, sym__newline, - STATE(1358), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1867), 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(1862), 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_finally, - anon_sym_match, - anon_sym_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, - [6769] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1355), 1, - aux_sym__block_body_repeat1, - STATE(1359), 1, + STATE(1370), 2, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3066), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3048), 10, + aux_sym__block_body_repeat1, + ACTIONS(3066), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147758,7 +148944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3050), 46, + ACTIONS(3068), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147787,7 +148973,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147805,7 +148993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6847] = 38, + [6773] = 38, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -147814,87 +149002,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(1943), 1, + ACTIONS(1951), 1, aux_sym_unquoted_token1, - ACTIONS(2686), 1, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(2764), 1, anon_sym_LBRACK, - ACTIONS(2688), 1, + ACTIONS(2766), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, + ACTIONS(2768), 1, anon_sym_DOLLAR, - ACTIONS(2692), 1, + ACTIONS(2770), 1, anon_sym_LBRACE, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(3070), 1, + ACTIONS(3075), 1, anon_sym_null, - ACTIONS(3074), 1, + ACTIONS(3079), 1, anon_sym_DOT_DOT, - ACTIONS(3082), 1, + ACTIONS(3087), 1, sym_val_date, - STATE(710), 1, + STATE(744), 1, sym__val_number, - STATE(808), 1, - sym__inter_single_quotes, STATE(809), 1, + sym__inter_single_quotes, + STATE(810), 1, sym__inter_double_quotes, - STATE(1360), 1, + STATE(1371), 1, sym_comment, - STATE(3905), 1, + STATE(3895), 1, sym__val_number_decimal, - STATE(4366), 1, - sym_val_variable, - STATE(4583), 1, + STATE(4543), 1, sym_expr_parenthesized, - STATE(4925), 1, + STATE(4622), 1, + sym_val_variable, + STATE(5059), 1, sym_val_bool, - STATE(5211), 1, + STATE(5227), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3068), 2, + ACTIONS(3073), 2, anon_sym_true, anon_sym_false, - ACTIONS(3076), 2, + ACTIONS(3081), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3078), 2, + ACTIONS(3083), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3080), 2, + ACTIONS(3085), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5210), 2, + STATE(5226), 2, sym_val_range, sym__value, - STATE(5288), 2, + STATE(5398), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2600), 3, + ACTIONS(2648), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3072), 3, + ACTIONS(3077), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(970), 12, + STATE(945), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -147907,19 +149095,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6987] = 7, + [6913] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3052), 1, - ts_builtin_sym_end, - STATE(1361), 1, - sym_comment, - STATE(1374), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, + ACTIONS(3089), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(3048), 10, + STATE(1372), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1883), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147930,7 +149114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3050), 46, + ACTIONS(1878), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147956,10 +149140,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, @@ -147977,19 +149164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7064] = 7, + [6987] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3066), 1, + ACTIONS(3060), 1, ts_builtin_sym_end, - STATE(1362), 1, + STATE(1373), 1, sym_comment, - STATE(1374), 1, + STATE(1382), 1, aux_sym__block_body_repeat1, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3048), 10, + ACTIONS(3056), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148000,7 +149187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3050), 46, + ACTIONS(3058), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148047,74 +149234,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7141] = 4, + [7064] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1363), 1, - sym_comment, - ACTIONS(3084), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1428), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1498), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_LBRACK, + ACTIONS(3094), 1, + anon_sym_null, + ACTIONS(3098), 1, anon_sym_DOT_DOT, + ACTIONS(3102), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(3104), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3108), 1, + sym_val_date, + ACTIONS(3110), 1, + aux_sym__unquoted_in_record_token1, + STATE(1374), 1, + sym_comment, + STATE(3699), 1, + sym__val_number_decimal, + STATE(4025), 1, + sym_val_variable, + STATE(4210), 1, + sym_expr_parenthesized, + STATE(4442), 1, + sym_val_bool, + STATE(4444), 1, + sym__val_number, + STATE(4463), 1, + sym__unquoted_in_record, + STATE(4830), 1, + sym__inter_single_quotes, + STATE(4844), 1, + sym__inter_double_quotes, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3086), 50, - 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_finally, - anon_sym_match, + ACTIONS(3092), 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_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3100), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3106), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4764), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1414), 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, - [7212] = 37, + ACTIONS(3096), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(5029), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4772), 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, + [7201] = 37, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -148123,85 +149343,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(1943), 1, + ACTIONS(1951), 1, aux_sym_unquoted_token1, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2686), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - ACTIONS(2688), 1, + ACTIONS(2766), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, + ACTIONS(2768), 1, anon_sym_DOLLAR, - ACTIONS(2692), 1, + ACTIONS(2770), 1, anon_sym_LBRACE, - ACTIONS(3070), 1, + ACTIONS(3075), 1, anon_sym_null, - ACTIONS(3074), 1, + ACTIONS(3079), 1, anon_sym_DOT_DOT, - ACTIONS(3082), 1, + ACTIONS(3087), 1, sym_val_date, - STATE(710), 1, + STATE(744), 1, sym__val_number, - STATE(808), 1, - sym__inter_single_quotes, STATE(809), 1, + sym__inter_single_quotes, + STATE(810), 1, sym__inter_double_quotes, - STATE(1364), 1, + STATE(1375), 1, sym_comment, - STATE(3905), 1, + STATE(3895), 1, sym__val_number_decimal, - STATE(4366), 1, - sym_val_variable, - STATE(4583), 1, + STATE(4543), 1, sym_expr_parenthesized, - STATE(4925), 1, + STATE(4622), 1, + sym_val_variable, + STATE(5059), 1, sym_val_bool, - STATE(5211), 1, + STATE(5227), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3068), 2, + ACTIONS(3073), 2, anon_sym_true, anon_sym_false, - ACTIONS(3076), 2, + ACTIONS(3081), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3078), 2, + ACTIONS(3083), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3080), 2, + ACTIONS(3085), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5210), 2, + STATE(5226), 2, sym_val_range, sym__value, - STATE(5288), 2, + STATE(5398), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2600), 3, + ACTIONS(2648), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3072), 3, + ACTIONS(3077), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(970), 12, + STATE(945), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -148214,20 +149434,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7349] = 8, + [7338] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2602), 1, + ACTIONS(3116), 1, sym__newline, - ACTIONS(3092), 1, + ACTIONS(3119), 1, anon_sym_SEMI, - STATE(1365), 1, + STATE(4838), 1, + aux_sym__repeat_newline, + STATE(1376), 2, sym_comment, - STATE(1372), 1, aux_sym__parenthesized_body_repeat1, - STATE(1389), 1, - aux_sym__repeat_newline, - ACTIONS(3088), 10, + ACTIONS(3112), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148238,7 +149457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3090), 46, + ACTIONS(3114), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148285,16 +149504,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7428] = 6, - ACTIONS(103), 1, + [7415] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1966), 1, - anon_sym_POUND_BANG, - ACTIONS(2766), 1, - sym__newline, - STATE(1366), 1, + ACTIONS(1965), 1, + anon_sym_PIPE, + STATE(1377), 1, sym_comment, - ACTIONS(3084), 10, + ACTIONS(2751), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148305,9 +149522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3086), 48, + ACTIONS(2748), 49, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148332,11 +149548,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, @@ -148354,12 +149572,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7503] = 4, + [7488] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1367), 1, + ACTIONS(2650), 1, + sym__newline, + ACTIONS(3126), 1, + anon_sym_SEMI, + STATE(1376), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1378), 1, sym_comment, - ACTIONS(1968), 10, + STATE(1396), 1, + aux_sym__repeat_newline, + ACTIONS(3122), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148370,7 +149596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1966), 50, + ACTIONS(3124), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148396,14 +149622,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, @@ -148421,7 +149643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7574] = 37, + [7567] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1396), 1, @@ -148442,73 +149664,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1486), 1, + ACTIONS(1498), 1, anon_sym_LBRACE, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_LBRACK, - ACTIONS(3096), 1, + ACTIONS(3094), 1, anon_sym_null, - ACTIONS(3100), 1, + ACTIONS(3098), 1, anon_sym_DOT_DOT, - ACTIONS(3104), 1, + ACTIONS(3102), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3106), 1, + ACTIONS(3104), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3110), 1, + ACTIONS(3108), 1, sym_val_date, - ACTIONS(3112), 1, + ACTIONS(3110), 1, aux_sym__unquoted_in_record_token1, - STATE(1368), 1, + STATE(1379), 1, sym_comment, - STATE(3655), 1, + STATE(3699), 1, sym__val_number_decimal, - STATE(4050), 1, + STATE(4025), 1, sym_val_variable, - STATE(4296), 1, + STATE(4214), 1, sym_expr_parenthesized, - STATE(4485), 1, - sym__unquoted_in_record, - STATE(4488), 1, + STATE(4442), 1, sym_val_bool, - STATE(4628), 1, + STATE(4444), 1, sym__val_number, - STATE(4846), 1, + STATE(4484), 1, + sym__unquoted_in_record, + STATE(4830), 1, sym__inter_single_quotes, - STATE(4847), 1, + STATE(4844), 1, sym__inter_double_quotes, ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3094), 2, + ACTIONS(3092), 2, anon_sym_true, anon_sym_false, - ACTIONS(3102), 2, + ACTIONS(3100), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3108), 2, + ACTIONS(3106), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4768), 2, + STATE(4764), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1414), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3098), 3, + ACTIONS(3096), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4987), 3, + STATE(4946), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4862), 12, + STATE(4772), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -148521,107 +149743,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7711] = 37, + [7704] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, + ACTIONS(3062), 1, + ts_builtin_sym_end, + STATE(1380), 1, + sym_comment, + STATE(1382), 1, + aux_sym__block_body_repeat1, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3056), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(1416), 1, - anon_sym_0b, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1428), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(1486), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(3096), 1, - anon_sym_null, - ACTIONS(3100), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3104), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3106), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3110), 1, - sym_val_date, - ACTIONS(3112), 1, - aux_sym__unquoted_in_record_token1, - STATE(1369), 1, - sym_comment, - STATE(3655), 1, - sym__val_number_decimal, - STATE(4050), 1, - sym_val_variable, - STATE(4260), 1, - sym_expr_parenthesized, - STATE(4488), 1, - sym_val_bool, - STATE(4506), 1, - sym__unquoted_in_record, - STATE(4628), 1, - sym__val_number, - STATE(4846), 1, - sym__inter_single_quotes, - STATE(4847), 1, - sym__inter_double_quotes, - ACTIONS(1418), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3094), 2, + ACTIONS(3058), 46, + 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_finally, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3102), 2, + 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, - ACTIONS(3108), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4768), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1414), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3098), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(5044), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3725), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4862), 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, - [7848] = 37, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [7781] = 37, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -148630,185 +149822,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(1943), 1, + ACTIONS(1951), 1, aux_sym_unquoted_token1, - ACTIONS(2686), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - ACTIONS(2688), 1, + ACTIONS(2766), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, + ACTIONS(2768), 1, anon_sym_DOLLAR, - ACTIONS(2692), 1, + ACTIONS(2770), 1, anon_sym_LBRACE, - ACTIONS(2822), 1, + ACTIONS(2933), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3070), 1, + ACTIONS(3075), 1, anon_sym_null, - ACTIONS(3074), 1, + ACTIONS(3079), 1, anon_sym_DOT_DOT, - ACTIONS(3082), 1, + ACTIONS(3087), 1, sym_val_date, - STATE(710), 1, + STATE(744), 1, sym__val_number, - STATE(808), 1, - sym__inter_single_quotes, STATE(809), 1, + sym__inter_single_quotes, + STATE(810), 1, sym__inter_double_quotes, - STATE(1370), 1, + STATE(1381), 1, sym_comment, - STATE(3905), 1, + STATE(3895), 1, sym__val_number_decimal, - STATE(4366), 1, - sym_val_variable, - STATE(4445), 1, + STATE(4571), 1, sym_expr_parenthesized, - STATE(4925), 1, + STATE(4622), 1, + sym_val_variable, + STATE(5059), 1, sym_val_bool, - STATE(5203), 1, + STATE(5325), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3068), 2, + ACTIONS(3073), 2, anon_sym_true, anon_sym_false, - ACTIONS(3076), 2, + ACTIONS(3081), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3078), 2, + ACTIONS(3083), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3080), 2, + ACTIONS(3085), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5163), 2, + STATE(5122), 2, sym_val_range, sym__value, - STATE(5288), 2, + STATE(5398), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2600), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3072), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(970), 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, - [7985] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, - anon_sym_0b, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1428), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(1486), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(3096), 1, - anon_sym_null, - ACTIONS(3100), 1, - anon_sym_DOT_DOT, - ACTIONS(3104), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3106), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3110), 1, - sym_val_date, - ACTIONS(3112), 1, - aux_sym__unquoted_in_record_token1, - STATE(1371), 1, - sym_comment, - STATE(3655), 1, - sym__val_number_decimal, - STATE(4050), 1, - sym_val_variable, - STATE(4217), 1, - sym_expr_parenthesized, - STATE(4363), 1, - sym__unquoted_in_record, - STATE(4488), 1, - sym_val_bool, - STATE(4628), 1, - sym__val_number, - STATE(4846), 1, - sym__inter_single_quotes, - STATE(4847), 1, - sym__inter_double_quotes, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3094), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3102), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3108), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4768), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1414), 3, + ACTIONS(2648), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3098), 3, + ACTIONS(3077), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(5031), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3725), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4862), 12, + STATE(945), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -148821,19 +149913,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8122] = 7, + [7918] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3128), 2, sym__newline, - ACTIONS(3121), 1, anon_sym_SEMI, - STATE(4654), 1, - aux_sym__repeat_newline, - STATE(1372), 2, + STATE(1382), 2, sym_comment, - aux_sym__parenthesized_body_repeat1, - ACTIONS(3114), 10, + aux_sym__block_body_repeat1, + ACTIONS(3066), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148844,8 +149933,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3116), 46, + ACTIONS(3068), 47, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148891,19 +149981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8199] = 7, - ACTIONS(3), 1, + [7991] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3061), 1, - ts_builtin_sym_end, - STATE(1373), 1, - sym_comment, - STATE(1374), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, + ACTIONS(1965), 1, + anon_sym_POUND_BANG, + ACTIONS(2748), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(3048), 10, + STATE(1383), 1, + sym_comment, + ACTIONS(3133), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148914,8 +150001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3050), 46, + ACTIONS(3131), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148940,6 +150028,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_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148961,16 +150050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8276] = 5, + [8066] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3124), 2, - sym__newline, - anon_sym_SEMI, - STATE(1374), 2, + STATE(1384), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3054), 10, + ACTIONS(1967), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148981,9 +150066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3056), 47, + ACTIONS(1965), 50, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -149008,10 +150092,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, @@ -149029,14 +150117,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8349] = 5, + [8137] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1966), 1, - anon_sym_PIPE, - STATE(1375), 1, + STATE(1385), 1, sym_comment, - ACTIONS(2769), 10, + ACTIONS(3133), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149047,7 +150133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2766), 49, + ACTIONS(3131), 50, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149078,6 +150164,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, @@ -149097,93 +150184,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8422] = 36, + [8208] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(918), 1, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, anon_sym_DOLLAR, - ACTIONS(934), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(940), 1, + ACTIONS(1416), 1, anon_sym_0b, - ACTIONS(960), 1, - aux_sym_unquoted_token1, - ACTIONS(962), 1, - sym_raw_string_begin, - ACTIONS(3129), 1, - anon_sym_null, - ACTIONS(3133), 1, - anon_sym_LBRACK, - ACTIONS(3135), 1, - anon_sym_LPAREN, - ACTIONS(3137), 1, - anon_sym_LBRACE, - ACTIONS(3139), 1, - anon_sym_DOT_DOT, - ACTIONS(3141), 1, - anon_sym_LPAREN2, - ACTIONS(3145), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3151), 1, - sym_val_date, - ACTIONS(3153), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3155), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(3157), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(3159), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3161), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1376), 1, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1498), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_LBRACK, + ACTIONS(3094), 1, + anon_sym_null, + ACTIONS(3098), 1, + anon_sym_DOT_DOT, + ACTIONS(3102), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3104), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3108), 1, + sym_val_date, + ACTIONS(3110), 1, + aux_sym__unquoted_in_record_token1, + STATE(1386), 1, sym_comment, - STATE(2509), 1, + STATE(3699), 1, sym__val_number_decimal, - STATE(3015), 1, + STATE(4025), 1, + sym_val_variable, + STATE(4336), 1, + sym_expr_parenthesized, + STATE(4442), 1, sym_val_bool, - STATE(3253), 1, - sym_unquoted, - STATE(3271), 1, + STATE(4444), 1, sym__val_number, - STATE(3334), 1, + STATE(4449), 1, + sym__unquoted_in_record, + STATE(4830), 1, sym__inter_single_quotes, - STATE(3335), 1, + STATE(4844), 1, sym__inter_double_quotes, - ACTIONS(942), 2, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3127), 2, + ACTIONS(3092), 2, anon_sym_true, anon_sym_false, - ACTIONS(3143), 2, + ACTIONS(3100), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3147), 2, + ACTIONS(3106), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3251), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5489), 2, + STATE(4764), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3131), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3149), 3, + ACTIONS(1414), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2547), 4, + ACTIONS(3096), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(5006), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3270), 13, + STATE(4772), 12, sym_val_nothing, - sym_val_variable, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -149195,17 +150284,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8556] = 6, + [8345] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1355), 1, + ACTIONS(3064), 1, + ts_builtin_sym_end, + STATE(1382), 1, aux_sym__block_body_repeat1, - STATE(1377), 1, + STATE(1387), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3048), 10, + ACTIONS(3056), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149216,7 +150307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3050), 46, + ACTIONS(3058), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149263,91 +150354,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8630] = 36, + [8422] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2994), 1, + ACTIONS(815), 1, + anon_sym_DOLLAR, + ACTIONS(837), 1, anon_sym_0b, - ACTIONS(3006), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3008), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3165), 1, + ACTIONS(857), 1, + aux_sym_unquoted_token1, + ACTIONS(859), 1, + sym_raw_string_begin, + ACTIONS(1256), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3137), 1, anon_sym_null, - ACTIONS(3169), 1, + ACTIONS(3141), 1, anon_sym_LBRACK, - ACTIONS(3171), 1, + ACTIONS(3143), 1, anon_sym_LPAREN, - ACTIONS(3173), 1, - anon_sym_DOLLAR, - ACTIONS(3175), 1, + ACTIONS(3145), 1, anon_sym_LBRACE, - ACTIONS(3177), 1, + ACTIONS(3147), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3185), 1, + ACTIONS(3153), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3189), 1, + ACTIONS(3159), 1, sym_val_date, - ACTIONS(3191), 1, - aux_sym_unquoted_token1, - STATE(1378), 1, + ACTIONS(3161), 1, + anon_sym_DQUOTE, + ACTIONS(3163), 1, + anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_BQUOTE, + ACTIONS(3167), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3169), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1388), 1, sym_comment, - STATE(3046), 1, + STATE(3098), 1, sym__val_number, - STATE(3074), 1, + STATE(3135), 1, sym__inter_single_quotes, - STATE(3075), 1, + STATE(3139), 1, sym__inter_double_quotes, - STATE(3724), 1, + STATE(3184), 1, + sym_unquoted, + STATE(3822), 1, sym__val_number_decimal, - STATE(4648), 1, + STATE(4321), 1, sym_val_bool, - STATE(4741), 1, - sym_unquoted, - ACTIONS(2996), 2, + ACTIONS(839), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3163), 2, + ACTIONS(3135), 2, anon_sym_true, anon_sym_false, - ACTIONS(3181), 2, + ACTIONS(3151), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3187), 2, + ACTIONS(3155), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4734), 2, + STATE(3177), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5502), 2, + STATE(5337), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2992), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3167), 3, + ACTIONS(3139), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2274), 4, + ACTIONS(3157), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2476), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3044), 13, + STATE(3097), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -149361,12 +150452,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8764] = 4, + [8556] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1379), 1, + STATE(1389), 1, sym_comment, - ACTIONS(3084), 10, + ACTIONS(3133), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149377,7 +150468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3086), 49, + ACTIONS(3131), 49, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -149427,12 +150518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8834] = 4, + [8626] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1380), 1, + STATE(1390), 1, sym_comment, - ACTIONS(3195), 10, + ACTIONS(3171), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149443,9 +150534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3193), 49, + ACTIONS(3173), 49, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -149476,6 +150566,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, @@ -149493,294 +150584,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8904] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(1943), 1, - aux_sym_unquoted_token1, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_null, - ACTIONS(2936), 1, - anon_sym_LBRACK, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - ACTIONS(2940), 1, - anon_sym_LBRACE, - ACTIONS(2944), 1, - anon_sym__, - ACTIONS(2946), 1, - anon_sym_DOT_DOT, - ACTIONS(2950), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2952), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2956), 1, - sym_val_date, - STATE(710), 1, - sym__val_number, - STATE(1381), 1, - sym_comment, - STATE(1382), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(3638), 1, - sym__val_number_decimal, - STATE(3872), 1, - sym_val_variable, - STATE(3917), 1, - sym_expr_parenthesized, - STATE(4156), 1, - sym__match_pattern, - STATE(4286), 1, - sym_val_bool, - STATE(4612), 1, - sym__match_pattern_expression, - STATE(4619), 1, - sym__match_pattern_list, - STATE(4621), 1, - sym_unquoted, - STATE(5314), 1, - sym_match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2928), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2948), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2954), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4618), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4663), 2, - sym_match_arm, - sym_default_arm, - STATE(5288), 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(2932), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4620), 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, - [9046] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3200), 1, - anon_sym_null, - ACTIONS(3206), 1, - anon_sym_LBRACK, - ACTIONS(3209), 1, - anon_sym_LPAREN, - ACTIONS(3212), 1, - anon_sym_DOLLAR, - ACTIONS(3215), 1, - anon_sym_LBRACE, - ACTIONS(3218), 1, - anon_sym__, - ACTIONS(3221), 1, - anon_sym_DOT_DOT, - ACTIONS(3227), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3230), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3239), 1, - anon_sym_0b, - ACTIONS(3245), 1, - sym_val_date, - ACTIONS(3248), 1, - anon_sym_DQUOTE, - ACTIONS(3251), 1, - anon_sym_SQUOTE, - ACTIONS(3254), 1, - anon_sym_BQUOTE, - ACTIONS(3257), 1, - aux_sym_unquoted_token1, - ACTIONS(3260), 1, - sym_raw_string_begin, - STATE(710), 1, - sym__val_number, - STATE(3638), 1, - sym__val_number_decimal, - STATE(3872), 1, - sym_val_variable, - STATE(3917), 1, - sym_expr_parenthesized, - STATE(4156), 1, - sym__match_pattern, - STATE(4286), 1, - sym_val_bool, - STATE(4612), 1, - sym__match_pattern_expression, - STATE(4619), 1, - sym__match_pattern_list, - STATE(4621), 1, - sym_unquoted, - STATE(5314), 1, - sym_match_pattern, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3224), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3233), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3242), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1382), 2, - sym_comment, - aux_sym__ctrl_match_body_repeat1, - STATE(4618), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4929), 2, - sym_match_arm, - sym_default_arm, - STATE(5288), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3203), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3236), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4620), 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, - [9186] = 36, + [8696] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3265), 1, + ACTIONS(3177), 1, anon_sym_null, - ACTIONS(3269), 1, + ACTIONS(3181), 1, anon_sym_LBRACK, - ACTIONS(3271), 1, + ACTIONS(3183), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3185), 1, anon_sym_DOLLAR, - ACTIONS(3275), 1, + ACTIONS(3187), 1, anon_sym_LBRACE, - ACTIONS(3277), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3191), 1, anon_sym_LPAREN2, - ACTIONS(3283), 1, + ACTIONS(3195), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3285), 1, + ACTIONS(3197), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3291), 1, + ACTIONS(3203), 1, anon_sym_0b, - ACTIONS(3295), 1, + ACTIONS(3207), 1, sym_val_date, - ACTIONS(3297), 1, + ACTIONS(3209), 1, anon_sym_DQUOTE, - ACTIONS(3299), 1, + ACTIONS(3211), 1, anon_sym_SQUOTE, - ACTIONS(3301), 1, + ACTIONS(3213), 1, anon_sym_BQUOTE, - ACTIONS(3303), 1, + ACTIONS(3215), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3305), 1, + ACTIONS(3217), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3307), 1, + ACTIONS(3219), 1, aux_sym_unquoted_token1, - ACTIONS(3309), 1, + ACTIONS(3221), 1, sym_raw_string_begin, - STATE(1383), 1, + STATE(1391), 1, sym_comment, - STATE(1854), 1, + STATE(1834), 1, sym__val_number_decimal, - STATE(2093), 1, + STATE(2040), 1, sym_val_bool, - STATE(2194), 1, - sym_unquoted, - STATE(2198), 1, - sym__inter_single_quotes, - STATE(2199), 1, + STATE(2178), 1, sym__inter_double_quotes, - STATE(2206), 1, + STATE(2184), 1, sym__val_number, - ACTIONS(3263), 2, + STATE(2190), 1, + sym__inter_single_quotes, + STATE(2215), 1, + sym_unquoted, + ACTIONS(3175), 2, anon_sym_true, anon_sym_false, - ACTIONS(3281), 2, + ACTIONS(3193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3287), 2, + ACTIONS(3199), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3293), 2, + ACTIONS(3205), 2, anon_sym_0o, anon_sym_0x, - STATE(2155), 2, + STATE(2180), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5328), 2, + STATE(5188), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3267), 3, + ACTIONS(3179), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3289), 3, + ACTIONS(3201), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2187), 4, + STATE(2175), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2204), 13, + STATE(2182), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -149794,12 +150682,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9320] = 4, + [8830] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1384), 1, + STATE(1392), 1, sym_comment, - ACTIONS(3311), 10, + ACTIONS(3225), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149810,8 +150698,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3313), 49, + ACTIONS(3223), 49, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -149842,7 +150731,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, @@ -149860,180 +150748,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9390] = 4, + [8900] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1385), 1, - sym_comment, - ACTIONS(3317), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(815), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(831), 1, aux_sym__val_number_decimal_token1, + ACTIONS(837), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3315), 49, + ACTIONS(857), 1, + aux_sym_unquoted_token1, + ACTIONS(859), 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_finally, - anon_sym_match, - anon_sym_true, - anon_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, + ACTIONS(3141), 1, anon_sym_LBRACK, + ACTIONS(3143), 1, anon_sym_LPAREN, + ACTIONS(3145), 1, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3147), 1, + anon_sym_DOT_DOT, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3161), 1, + anon_sym_DQUOTE, + ACTIONS(3163), 1, + anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_BQUOTE, + ACTIONS(3167), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3169), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3229), 1, + anon_sym_null, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3237), 1, + sym_val_date, + STATE(1393), 1, + sym_comment, + STATE(2480), 1, + sym__val_number_decimal, + STATE(2788), 1, + sym_val_bool, + STATE(3098), 1, + sym__val_number, + STATE(3135), 1, + sym__inter_single_quotes, + STATE(3139), 1, + sym__inter_double_quotes, + STATE(3184), 1, + sym_unquoted, + ACTIONS(839), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3151), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3227), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3235), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(3177), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5337), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3157), 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, - [9460] = 40, + ACTIONS(3231), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2476), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3097), 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, + [9034] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(1943), 1, - aux_sym_unquoted_token1, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, + ACTIONS(3002), 1, + anon_sym_0b, + ACTIONS(3014), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3016), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3241), 1, anon_sym_null, - ACTIONS(2936), 1, + ACTIONS(3245), 1, anon_sym_LBRACK, - ACTIONS(2938), 1, + ACTIONS(3247), 1, + anon_sym_LPAREN, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(2940), 1, + ACTIONS(3251), 1, anon_sym_LBRACE, - ACTIONS(2944), 1, - anon_sym__, - ACTIONS(2946), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(3255), 1, + anon_sym_LPAREN2, + ACTIONS(3259), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2952), 1, + ACTIONS(3261), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2956), 1, + ACTIONS(3265), 1, sym_val_date, - STATE(710), 1, - sym__val_number, - STATE(1382), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(1386), 1, + ACTIONS(3267), 1, + aux_sym_unquoted_token1, + STATE(1394), 1, sym_comment, - STATE(3638), 1, + STATE(3129), 1, + sym__val_number, + STATE(3214), 1, + sym__inter_single_quotes, + STATE(3215), 1, + sym__inter_double_quotes, + STATE(3796), 1, sym__val_number_decimal, - STATE(3872), 1, - sym_val_variable, - STATE(3917), 1, - sym_expr_parenthesized, - STATE(4156), 1, - sym__match_pattern, - STATE(4286), 1, + STATE(4501), 1, sym_val_bool, - STATE(4612), 1, - sym__match_pattern_expression, - STATE(4619), 1, - sym__match_pattern_list, - STATE(4621), 1, + STATE(4898), 1, sym_unquoted, - STATE(5314), 1, - sym_match_pattern, - ACTIONS(193), 2, + ACTIONS(3004), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2928), 2, + ACTIONS(3239), 2, anon_sym_true, anon_sym_false, - ACTIONS(2948), 2, + ACTIONS(3257), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2954), 2, + ACTIONS(3263), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4618), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4827), 2, - sym_match_arm, - sym_default_arm, - STATE(5288), 2, + STATE(4896), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5106), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, + ACTIONS(3000), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2932), 3, + ACTIONS(3243), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4620), 8, - sym__match_pattern_record, + STATE(3128), 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, - [9602] = 4, + sym_val_closure, + [9168] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1387), 1, + STATE(1395), 1, sym_comment, - ACTIONS(3319), 10, + ACTIONS(3271), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150044,8 +150960,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3321), 49, + ACTIONS(3269), 49, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150076,7 +150993,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, @@ -150094,12 +151010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9672] = 4, + [9238] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1388), 1, + ACTIONS(2650), 1, + sym__newline, + ACTIONS(3277), 1, + anon_sym_SEMI, + STATE(1372), 1, + aux_sym__repeat_newline, + STATE(1396), 1, sym_comment, - ACTIONS(3323), 10, + ACTIONS(3273), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150110,7 +151032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3325), 49, + ACTIONS(3275), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150136,13 +151058,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_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -150160,18 +151079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9742] = 7, + [9314] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2602), 1, + ACTIONS(3131), 1, + anon_sym_RPAREN, + STATE(1397), 1, + sym_comment, + ACTIONS(3283), 2, sym__newline, - ACTIONS(3331), 1, anon_sym_SEMI, - STATE(1358), 1, - aux_sym__repeat_newline, - STATE(1389), 1, - sym_comment, - ACTIONS(3327), 10, + ACTIONS(3279), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150182,7 +151100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3329), 46, + ACTIONS(3281), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150229,189 +151147,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9818] = 36, + [9388] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, - anon_sym_DOLLAR, - ACTIONS(821), 1, - anon_sym_0b, - ACTIONS(841), 1, - aux_sym_unquoted_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(1250), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_null, - ACTIONS(3339), 1, + ACTIONS(3295), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3298), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3301), 1, + anon_sym_DOLLAR, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3345), 1, + ACTIONS(3307), 1, + anon_sym__, + ACTIONS(3310), 1, anon_sym_DOT_DOT, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(3351), 1, + ACTIONS(3316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3357), 1, + ACTIONS(3328), 1, + anon_sym_0b, + ACTIONS(3334), 1, sym_val_date, - ACTIONS(3359), 1, + ACTIONS(3337), 1, anon_sym_DQUOTE, - ACTIONS(3361), 1, + ACTIONS(3340), 1, anon_sym_SQUOTE, - ACTIONS(3363), 1, + ACTIONS(3343), 1, anon_sym_BQUOTE, - ACTIONS(3365), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3367), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1390), 1, - sym_comment, - STATE(3047), 1, - sym__inter_single_quotes, - STATE(3048), 1, - sym__inter_double_quotes, - STATE(3202), 1, + ACTIONS(3346), 1, + aux_sym_unquoted_token1, + ACTIONS(3349), 1, + sym_raw_string_begin, + STATE(744), 1, + sym__val_number, + STATE(3707), 1, + sym__val_number_decimal, + STATE(3880), 1, + sym_expr_parenthesized, + STATE(3881), 1, + sym_val_variable, + STATE(4120), 1, + sym__match_pattern, + STATE(4344), 1, + sym_val_bool, + STATE(4468), 1, + sym__match_pattern_expression, + STATE(4480), 1, + sym__match_pattern_list, + STATE(4507), 1, sym_unquoted, - STATE(3229), 1, + STATE(5108), 1, + sym_match_pattern, + ACTIONS(3286), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3313), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3322), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3331), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1398), 2, + sym_comment, + aux_sym__ctrl_match_body_repeat1, + STATE(4475), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4974), 2, + sym_match_arm, + sym_default_arm, + STATE(5398), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3292), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3325), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4490), 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, + [9528] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(1951), 1, + aux_sym_unquoted_token1, + ACTIONS(2766), 1, + anon_sym_LPAREN, + ACTIONS(2890), 1, + anon_sym_null, + ACTIONS(2896), 1, + anon_sym_LBRACK, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + ACTIONS(2900), 1, + anon_sym_LBRACE, + ACTIONS(2904), 1, + anon_sym__, + ACTIONS(2906), 1, + anon_sym_DOT_DOT, + ACTIONS(2910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2916), 1, + sym_val_date, + STATE(744), 1, sym__val_number, - STATE(3737), 1, + STATE(1398), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(1399), 1, + sym_comment, + STATE(3707), 1, sym__val_number_decimal, - STATE(4233), 1, + STATE(3880), 1, + sym_expr_parenthesized, + STATE(3881), 1, + sym_val_variable, + STATE(4120), 1, + sym__match_pattern, + STATE(4344), 1, sym_val_bool, - ACTIONS(823), 2, + STATE(4468), 1, + sym__match_pattern_expression, + STATE(4480), 1, + sym__match_pattern_list, + STATE(4507), 1, + sym_unquoted, + STATE(5108), 1, + sym_match_pattern, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3333), 2, + ACTIONS(2888), 2, anon_sym_true, anon_sym_false, - ACTIONS(3349), 2, + ACTIONS(2908), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3353), 2, + ACTIONS(2914), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3201), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5250), 2, + STATE(4475), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4891), 2, + sym_match_arm, + sym_default_arm, + STATE(5398), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3337), 3, + ACTIONS(189), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(2892), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3355), 3, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4490), 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, + [9670] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(1951), 1, + aux_sym_unquoted_token1, + ACTIONS(2766), 1, + anon_sym_LPAREN, + ACTIONS(2890), 1, + anon_sym_null, + ACTIONS(2896), 1, + anon_sym_LBRACK, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + ACTIONS(2900), 1, + anon_sym_LBRACE, + ACTIONS(2904), 1, + anon_sym__, + ACTIONS(2906), 1, + anon_sym_DOT_DOT, + ACTIONS(2910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2916), 1, + sym_val_date, + STATE(744), 1, + sym__val_number, + STATE(1398), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(1400), 1, + sym_comment, + STATE(3707), 1, + sym__val_number_decimal, + STATE(3880), 1, + sym_expr_parenthesized, + STATE(3881), 1, + sym_val_variable, + STATE(4120), 1, + sym__match_pattern, + STATE(4344), 1, + sym_val_bool, + STATE(4468), 1, + sym__match_pattern_expression, + STATE(4480), 1, + sym__match_pattern_list, + STATE(4507), 1, + sym_unquoted, + STATE(5108), 1, + sym_match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2888), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2908), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2914), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4475), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4742), 2, + sym_match_arm, + sym_default_arm, + STATE(5398), 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, - STATE(2477), 4, + ACTIONS(2892), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3228), 13, + STATE(4490), 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, - [9952] = 36, + [9812] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, + ACTIONS(920), 1, anon_sym_DOLLAR, - ACTIONS(815), 1, + ACTIONS(936), 1, aux_sym__val_number_decimal_token1, - ACTIONS(821), 1, + ACTIONS(942), 1, anon_sym_0b, - ACTIONS(841), 1, + ACTIONS(962), 1, aux_sym_unquoted_token1, - ACTIONS(843), 1, + ACTIONS(964), 1, sym_raw_string_begin, - ACTIONS(3339), 1, + ACTIONS(3354), 1, + anon_sym_null, + ACTIONS(3358), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3360), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3362), 1, anon_sym_LBRACE, - ACTIONS(3345), 1, + ACTIONS(3364), 1, anon_sym_DOT_DOT, - ACTIONS(3347), 1, + ACTIONS(3366), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3376), 1, + sym_val_date, + ACTIONS(3378), 1, anon_sym_DQUOTE, - ACTIONS(3361), 1, + ACTIONS(3380), 1, anon_sym_SQUOTE, - ACTIONS(3363), 1, + ACTIONS(3382), 1, anon_sym_BQUOTE, - ACTIONS(3365), 1, + ACTIONS(3384), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3367), 1, + ACTIONS(3386), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3371), 1, - anon_sym_null, - ACTIONS(3375), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3379), 1, - sym_val_date, - STATE(1391), 1, + STATE(1401), 1, sym_comment, - STATE(2465), 1, + STATE(2530), 1, sym__val_number_decimal, - STATE(2841), 1, + STATE(3000), 1, sym_val_bool, - STATE(3047), 1, + STATE(3322), 1, + sym_unquoted, + STATE(3366), 1, sym__inter_single_quotes, - STATE(3048), 1, + STATE(3367), 1, sym__inter_double_quotes, - STATE(3202), 1, - sym_unquoted, - STATE(3229), 1, + STATE(3368), 1, sym__val_number, - ACTIONS(823), 2, + ACTIONS(944), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3349), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3369), 2, + ACTIONS(3352), 2, anon_sym_true, anon_sym_false, - ACTIONS(3377), 2, + ACTIONS(3368), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3372), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3201), 2, + STATE(3371), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5250), 2, + STATE(5239), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3355), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3373), 3, + ACTIONS(3356), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2477), 4, + ACTIONS(3374), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2564), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3228), 13, + STATE(3356), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -150425,17 +151550,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10086] = 6, + [9946] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3086), 1, - anon_sym_RPAREN, - STATE(1392), 1, + STATE(1370), 1, + aux_sym__block_body_repeat1, + STATE(1402), 1, sym_comment, - ACTIONS(3385), 2, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3381), 10, + ACTIONS(3056), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150446,7 +151571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3383), 46, + ACTIONS(3058), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150493,129 +151618,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10160] = 12, + [10020] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(3388), 1, - anon_sym_DOT, - STATE(1393), 1, + STATE(1403), 1, sym_comment, - STATE(1448), 1, - sym__immediate_decimal, - ACTIONS(3390), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3392), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(703), 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), 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, - [10245] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3407), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3410), 1, - aux_sym__val_number_decimal_token2, - STATE(2113), 1, - sym__val_number_decimal, - STATE(4794), 1, - sym_env_var, - STATE(5257), 1, - sym_cmd_identifier, - ACTIONS(3394), 2, + ACTIONS(3388), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3413), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1394), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3405), 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(3403), 17, + ACTIONS(3390), 49, 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(3397), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150640,12 +151660,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [10332] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_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, + [10090] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1395), 1, + STATE(1404), 1, sym_comment, - ACTIONS(3381), 10, + ACTIONS(3392), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150656,7 +151700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3383), 48, + ACTIONS(3394), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150688,6 +151732,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, @@ -150705,38 +151750,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10401] = 13, + [10160] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3402), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3429), 1, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3432), 1, + ACTIONS(3412), 1, aux_sym__val_number_decimal_token2, - STATE(2113), 1, + STATE(2117), 1, sym__val_number_decimal, - STATE(5036), 1, + STATE(5018), 1, sym_env_var, - STATE(5257), 1, + STATE(5397), 1, sym_cmd_identifier, - ACTIONS(3416), 2, + ACTIONS(3396), 2, anon_sym_export, anon_sym_in, - ACTIONS(3435), 2, + ACTIONS(3415), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1396), 2, + STATE(1405), 2, sym_comment, aux_sym_pipe_element_repeat2, - ACTIONS(3427), 6, + ACTIONS(3407), 6, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3425), 17, + ACTIONS(3405), 17, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -150754,49 +151799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3419), 24, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [10488] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1397), 1, - sym_comment, - ACTIONS(3114), 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(3116), 48, - sym_raw_string_begin, + ACTIONS(3399), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150821,59 +151824,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_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, - [10557] = 11, + [10247] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1695), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(1398), 1, + ACTIONS(3418), 1, + anon_sym_DOT, + STATE(1406), 1, sym_comment, - STATE(1485), 1, + STATE(1456), 1, sym__immediate_decimal, - ACTIONS(3438), 2, + ACTIONS(3420), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3440), 2, + ACTIONS(3422), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(807), 2, + STATE(727), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 6, + ACTIONS(1622), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1681), 41, + ACTIONS(1620), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150915,25 +151897,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10639] = 6, - ACTIONS(103), 1, + [10332] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3444), 1, - sym__newline, - ACTIONS(3447), 1, - sym__space, - ACTIONS(3450), 1, - sym_raw_string_begin, - STATE(1399), 2, + STATE(1407), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3442), 53, + ACTIONS(3279), 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(3281), 48, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -150948,32 +151933,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [10401] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3430), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3437), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token2, + STATE(2117), 1, + sym__val_number_decimal, + STATE(4687), 1, + sym_env_var, + STATE(5397), 1, + sym_cmd_identifier, + ACTIONS(3424), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3443), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1408), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat2, + ACTIONS(3435), 6, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, + ACTIONS(3433), 17, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -150981,26 +152011,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10711] = 7, - ACTIONS(103), 1, + ACTIONS(3427), 24, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [10488] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, - sym_raw_string_begin, - ACTIONS(3452), 1, - sym__newline, - ACTIONS(3454), 1, - sym__space, - STATE(1399), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(1400), 1, + STATE(1409), 1, sym_comment, - ACTIONS(3405), 53, + ACTIONS(3112), 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(3114), 48, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -151015,32 +152072,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, @@ -151048,38 +152101,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10785] = 12, + [10557] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(1685), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR, - ACTIONS(1687), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - ACTIONS(3456), 1, + ACTIONS(3446), 1, anon_sym_DOT, - STATE(1401), 1, + STATE(1410), 1, sym_comment, - STATE(1454), 1, + STATE(1466), 1, sym__immediate_decimal, - ACTIONS(3458), 2, + ACTIONS(3448), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3460), 2, + ACTIONS(3450), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(919), 2, + STATE(943), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1622), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 40, + ACTIONS(1620), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151120,36 +152173,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10869] = 11, + [10641] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1637), 1, + ACTIONS(1653), 1, sym__unquoted_pattern, - STATE(1402), 1, + STATE(1411), 1, sym_comment, - STATE(1483), 1, + STATE(1502), 1, sym__immediate_decimal, - ACTIONS(3438), 2, + ACTIONS(3452), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3440), 2, + ACTIONS(3454), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(788), 2, + STATE(805), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1647), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 41, + ACTIONS(1645), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151191,80 +152244,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10951] = 6, - ACTIONS(3), 1, + [10723] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3462), 1, - anon_sym_DOT, + ACTIONS(3458), 1, + sym__newline, + ACTIONS(3461), 1, + sym__space, ACTIONS(3464), 1, - aux_sym__immediate_decimal_token5, - STATE(1403), 1, + sym_raw_string_begin, + STATE(1412), 2, 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, - [11022] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1404), 1, - sym_comment, - ACTIONS(3466), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(880), 54, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3456), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -151292,7 +152284,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, @@ -151319,18 +152310,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11089] = 6, + [10795] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(1413), 1, + sym_comment, + STATE(1499), 1, + sym__immediate_decimal, + ACTIONS(3452), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3454), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(768), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1620), 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, + [10877] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3425), 1, + ACTIONS(3433), 1, sym_raw_string_begin, + ACTIONS(3466), 1, + sym__newline, ACTIONS(3468), 1, sym__space, - STATE(1405), 1, + STATE(1412), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(1414), 1, sym_comment, - STATE(1413), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(3427), 53, + ACTIONS(3435), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -151384,99 +152448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11160] = 33, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, - anon_sym_0b, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1428), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(1492), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1494), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(3470), 1, - anon_sym_null, - ACTIONS(3472), 1, - anon_sym_LBRACE, - ACTIONS(3474), 1, - anon_sym_DOT_DOT, - ACTIONS(3478), 1, - sym_val_date, - STATE(1406), 1, - sym_comment, - STATE(3910), 1, - sym__val_number_decimal, - STATE(4050), 1, - sym_val_variable, - STATE(4211), 1, - sym_expr_parenthesized, - STATE(4628), 1, - sym__val_number, - STATE(4846), 1, - sym__inter_single_quotes, - STATE(4847), 1, - sym__inter_double_quotes, - STATE(5039), 1, - sym_block, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1472), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1496), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3476), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4913), 2, - sym_val_range, - sym__value, - STATE(3725), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1414), 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(4862), 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, - [11285] = 37, + [10951] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -151501,33 +152473,33 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1570), 1, anon_sym_DOT_DOT, - ACTIONS(2720), 1, + ACTIONS(2706), 1, anon_sym_DOLLAR, - ACTIONS(2722), 1, + ACTIONS(2708), 1, anon_sym_LBRACE, - ACTIONS(2724), 1, + ACTIONS(2712), 1, sym_val_date, - ACTIONS(3480), 1, + ACTIONS(3470), 1, sym__newline, - ACTIONS(3482), 1, + ACTIONS(3472), 1, anon_sym_LBRACK, - STATE(1407), 1, + STATE(1415), 1, sym_comment, - STATE(1424), 1, + STATE(1444), 1, aux_sym__match_pattern_list_body_repeat1, - STATE(2282), 1, + STATE(2294), 1, aux_sym__types_body_repeat1, - STATE(3795), 1, + STATE(3770), 1, sym__val_number_decimal, - STATE(3964), 1, + STATE(4065), 1, sym_expr_parenthesized, - STATE(3965), 1, + STATE(4066), 1, sym_val_variable, - STATE(4347), 1, - sym_val_bool, - STATE(4628), 1, + STATE(4444), 1, sym__val_number, - STATE(4805), 1, + STATE(4509), 1, + sym_val_bool, + STATE(4912), 1, sym__match_pattern_list, ACTIONS(1384), 2, anon_sym_true, @@ -151541,13 +152513,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - STATE(4339), 2, + STATE(4456), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(4686), 2, + STATE(4911), 2, sym__match_pattern_value, sym_val_range, - STATE(5330), 2, + STATE(5274), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1388), 3, @@ -151558,12 +152530,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(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4754), 8, + STATE(4913), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -151572,7 +152544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [11418] = 33, + [11084] = 33, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1396), 1, @@ -151593,52 +152565,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1492), 1, + ACTIONS(1504), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1494), 1, + ACTIONS(1506), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_LBRACK, - ACTIONS(3470), 1, + ACTIONS(3474), 1, anon_sym_null, - ACTIONS(3472), 1, + ACTIONS(3476), 1, anon_sym_LBRACE, - ACTIONS(3474), 1, - anon_sym_DOT_DOT, ACTIONS(3478), 1, + anon_sym_DOT_DOT, + ACTIONS(3482), 1, sym_val_date, - STATE(1408), 1, + STATE(1416), 1, sym_comment, - STATE(3910), 1, + STATE(3893), 1, sym__val_number_decimal, - STATE(4050), 1, + STATE(4025), 1, sym_val_variable, - STATE(4202), 1, + STATE(4317), 1, sym_expr_parenthesized, - STATE(4628), 1, + STATE(4444), 1, sym__val_number, - STATE(4846), 1, + STATE(4830), 1, sym__inter_single_quotes, - STATE(4847), 1, + STATE(4844), 1, sym__inter_double_quotes, - STATE(5004), 1, + STATE(5040), 1, sym_block, ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1472), 2, + ACTIONS(1484), 2, anon_sym_true, anon_sym_false, - ACTIONS(1496), 2, + ACTIONS(1508), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3476), 2, + ACTIONS(3480), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(5025), 2, + STATE(4973), 2, sym_val_range, sym__value, - STATE(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, @@ -151650,7 +152622,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(4862), 13, + STATE(4772), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -151664,37 +152636,152 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11543] = 11, - ACTIONS(3), 1, + [11209] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1685), 1, - anon_sym_DOLLAR, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - STATE(1409), 1, + STATE(1417), 1, sym_comment, - STATE(1523), 1, - sym__immediate_decimal, ACTIONS(3484), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(864), 54, + 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_finally, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [11276] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + sym__newline, + STATE(1418), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1883), 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(1878), 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_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [11345] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3489), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3486), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1351), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(3491), 1, + aux_sym__immediate_decimal_token5, + STATE(1419), 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(1631), 40, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151707,6 +152794,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, @@ -151725,6 +152815,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, @@ -151734,36 +152825,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11624] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11416] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(1655), 1, anon_sym_DOLLAR, - ACTIONS(1687), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - ACTIONS(1695), 1, - sym__unquoted_pattern, - STATE(1410), 1, + STATE(1420), 1, sym_comment, - STATE(1525), 1, + STATE(1540), 1, sym__immediate_decimal, - ACTIONS(3484), 2, + ACTIONS(3493), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3486), 2, + ACTIONS(3495), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1288), 2, + STATE(1324), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 6, + ACTIONS(1647), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1681), 40, + ACTIONS(1645), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151804,96 +152898,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11705] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3488), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3490), 1, - aux_sym__immediate_decimal_token5, - STATE(1411), 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, - [11776] = 5, + [11497] = 33, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3492), 1, - sym__newline, - STATE(1412), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1867), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, + ACTIONS(1416), 1, anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1428), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1504), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1506), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1616), 1, + anon_sym_LBRACK, + ACTIONS(3474), 1, + anon_sym_null, + ACTIONS(3476), 1, + anon_sym_LBRACE, + ACTIONS(3478), 1, + anon_sym_DOT_DOT, + ACTIONS(3482), 1, + sym_val_date, + STATE(1421), 1, + sym_comment, + STATE(3893), 1, + sym__val_number_decimal, + STATE(4025), 1, + sym_val_variable, + STATE(4308), 1, + sym_expr_parenthesized, + STATE(4444), 1, + sym__val_number, + STATE(4830), 1, + sym__inter_single_quotes, + STATE(4844), 1, + sym__inter_double_quotes, + STATE(5014), 1, + sym_block, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1862), 44, + ACTIONS(1484), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1508), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3480), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5037), 2, + sym_val_range, + sym__value, + STATE(3780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1414), 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(4772), 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, + [11622] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3405), 1, sym_raw_string_begin, + ACTIONS(3497), 1, + sym__space, + STATE(1422), 1, + sym_comment, + STATE(1424), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(3407), 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, @@ -151908,6 +153022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -151916,16 +153031,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, @@ -151933,17 +153055,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11845] = 5, + [11693] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(1655), 1, + anon_sym_DOLLAR, + ACTIONS(1657), 1, + anon_sym_LPAREN2, + STATE(1423), 1, + sym_comment, + STATE(1514), 1, + sym__immediate_decimal, + ACTIONS(3493), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3495), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1297), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1620), 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, + [11774] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3497), 1, + ACTIONS(3501), 1, sym__space, - ACTIONS(3500), 1, + ACTIONS(3504), 1, sym_raw_string_begin, - STATE(1413), 2, + STATE(1424), 2, sym_comment, aux_sym_pipe_element_repeat1, - ACTIONS(3495), 53, + ACTIONS(3499), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -151997,33 +153189,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11914] = 11, + [11843] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(1828), 1, - sym__unquoted_pattern, - ACTIONS(3502), 1, - anon_sym_DOT_DOT2, ACTIONS(3506), 1, - sym_filesize_unit, + anon_sym_DOT, ACTIONS(3508), 1, - sym_duration_unit, - STATE(1414), 1, + aux_sym__immediate_decimal_token5, + STATE(1425), 1, sym_comment, - STATE(5072), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3504), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(847), 5, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152057,6 +153241,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, @@ -152066,12 +153251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11994] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11914] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3464), 1, + ACTIONS(3510), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3512), 1, aux_sym__immediate_decimal_token5, - STATE(1415), 1, + STATE(1426), 1, sym_comment, ACTIONS(747), 8, anon_sym_GT2, @@ -152082,7 +153272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(749), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152095,9 +153286,7 @@ static const uint16_t ts_small_parse_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, @@ -152129,16 +153318,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12062] = 6, + [11984] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3510), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + sym__unquoted_pattern, + ACTIONS(3514), 1, + anon_sym_DOT_DOT2, + ACTIONS(3518), 1, + sym_filesize_unit, + ACTIONS(3520), 1, + sym_duration_unit, + STATE(1427), 1, + sym_comment, + STATE(5075), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3516), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(785), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(884), 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, + [12064] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3522), 1, anon_sym_DOT, - ACTIONS(3512), 1, + ACTIONS(3524), 1, aux_sym__immediate_decimal_token5, - STATE(1416), 1, + STATE(1428), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152147,7 +153405,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, @@ -152193,14 +153451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12132] = 6, + [12134] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3514), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3516), 1, + ACTIONS(3508), 1, aux_sym__immediate_decimal_token5, - STATE(1417), 1, + STATE(1429), 1, sym_comment, ACTIONS(739), 8, anon_sym_GT2, @@ -152211,8 +153467,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, @@ -152225,7 +153480,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, @@ -152260,11 +153517,11 @@ static const uint16_t ts_small_parse_table[] = { [12202] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, + ACTIONS(3526), 1, aux_sym__immediate_decimal_token5, - STATE(1418), 1, + STATE(1430), 1, sym_comment, - ACTIONS(767), 8, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152273,7 +153530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(769), 46, + ACTIONS(777), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152321,27 +153578,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_duration_unit, [12270] = 4, - ACTIONS(3), 1, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1419), 1, + STATE(1431), 1, sym_comment, - ACTIONS(1968), 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(1966), 45, + ACTIONS(3530), 2, sym_raw_string_begin, + sym__space, + ACTIONS(3528), 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, @@ -152356,25 +153606,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, @@ -152383,20 +153640,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, [12336] = 4, - ACTIONS(103), 1, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1420), 1, + STATE(1432), 1, sym_comment, - ACTIONS(3522), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(3520), 53, + ACTIONS(1967), 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(1965), 45, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -152411,32 +153675,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, @@ -152444,21 +153701,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12402] = 4, + [12402] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1421), 1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(1951), 1, + aux_sym_unquoted_token1, + ACTIONS(2766), 1, + anon_sym_LPAREN, + ACTIONS(2896), 1, + anon_sym_LBRACK, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + ACTIONS(2900), 1, + anon_sym_LBRACE, + ACTIONS(3534), 1, + anon_sym_null, + ACTIONS(3538), 1, + anon_sym_DOT_DOT, + ACTIONS(3542), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3544), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3548), 1, + sym_val_date, + STATE(744), 1, + sym__val_number, + STATE(1433), 1, + sym_comment, + STATE(3764), 1, + sym__val_number_decimal, + STATE(3880), 1, + sym_expr_parenthesized, + STATE(3881), 1, + sym_val_variable, + STATE(4468), 1, + sym__match_pattern_expression, + STATE(4480), 1, + sym__match_pattern_list, + STATE(4507), 1, + sym_unquoted, + STATE(4569), 1, + sym_val_bool, + STATE(4727), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3532), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3546), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4475), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5398), 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(3536), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4490), 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, + [12531] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3550), 1, + anon_sym_DOT, + ACTIONS(3552), 1, + aux_sym__immediate_decimal_token5, + STATE(1434), 1, sym_comment, - ACTIONS(863), 8, + ACTIONS(1786), 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(865), 46, + ACTIONS(1784), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152504,17 +153857,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [12600] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3554), 1, + aux_sym__immediate_decimal_token5, + STATE(1435), 1, + sym_comment, + ACTIONS(775), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12467] = 6, + [12667] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3524), 1, - anon_sym_DOT, - ACTIONS(3526), 1, aux_sym__immediate_decimal_token5, - STATE(1422), 1, + STATE(1436), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + 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, + [12734] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3556), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3558), 1, + aux_sym__immediate_decimal_token5, + STATE(1437), 1, sym_comment, - ACTIONS(1792), 7, + ACTIONS(1732), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152522,7 +153998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1790), 45, + ACTIONS(1730), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152568,210 +154044,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [12536] = 36, + [12803] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(1943), 1, - aux_sym_unquoted_token1, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2936), 1, - anon_sym_LBRACK, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - ACTIONS(2940), 1, - anon_sym_LBRACE, - ACTIONS(3530), 1, - anon_sym_null, - ACTIONS(3534), 1, - anon_sym_DOT_DOT, - ACTIONS(3538), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3540), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3544), 1, - sym_val_date, - STATE(710), 1, - sym__val_number, - STATE(1423), 1, - sym_comment, - STATE(3759), 1, - sym__val_number_decimal, - STATE(3872), 1, - sym_val_variable, - STATE(3917), 1, - sym_expr_parenthesized, - STATE(4378), 1, - sym_val_bool, - STATE(4612), 1, - sym__match_pattern_expression, - STATE(4619), 1, - sym__match_pattern_list, - STATE(4621), 1, - sym_unquoted, - STATE(4871), 1, - sym__match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3528), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3536), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3542), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4618), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5288), 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(3532), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4620), 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, - [12665] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_null, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1408), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1410), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1416), 1, - anon_sym_0b, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1434), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(1570), 1, - anon_sym_DOT_DOT, - ACTIONS(2720), 1, - anon_sym_DOLLAR, - ACTIONS(2722), 1, - anon_sym_LBRACE, - ACTIONS(2724), 1, - sym_val_date, - ACTIONS(3482), 1, - anon_sym_LBRACK, - STATE(1424), 1, - sym_comment, - STATE(1426), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(3795), 1, - sym__val_number_decimal, - STATE(3964), 1, - sym_expr_parenthesized, - STATE(3965), 1, - sym_val_variable, - STATE(4347), 1, - sym_val_bool, - STATE(4622), 1, - sym__match_pattern_expression, - STATE(4623), 1, - sym__unquoted_in_list, - STATE(4628), 1, - sym__val_number, - STATE(4805), 1, - sym__match_pattern_list, - ACTIONS(1384), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1406), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1412), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4686), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5330), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1388), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1414), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3725), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4754), 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, - [12794] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3546), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3548), 1, - aux_sym__immediate_decimal_token5, - STATE(1425), 1, + STATE(1438), 1, sym_comment, - ACTIONS(1732), 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(1730), 45, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152817,182 +154104,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [12863] = 34, + sym_duration_unit, + [12868] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3553), 1, + ACTIONS(3563), 1, anon_sym_null, - ACTIONS(3559), 1, + ACTIONS(3569), 1, anon_sym_LBRACK, - ACTIONS(3562), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3575), 1, anon_sym_DOLLAR, - ACTIONS(3568), 1, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3571), 1, + ACTIONS(3581), 1, anon_sym_DOT_DOT, - ACTIONS(3577), 1, + ACTIONS(3587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3580), 1, + ACTIONS(3590), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3589), 1, + ACTIONS(3599), 1, anon_sym_0b, - ACTIONS(3595), 1, + ACTIONS(3605), 1, sym_val_date, - ACTIONS(3598), 1, + ACTIONS(3608), 1, anon_sym_DQUOTE, - ACTIONS(3601), 1, + ACTIONS(3611), 1, anon_sym_SQUOTE, - ACTIONS(3604), 1, + ACTIONS(3614), 1, anon_sym_BQUOTE, - ACTIONS(3607), 1, + ACTIONS(3617), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3610), 1, + ACTIONS(3620), 1, sym_raw_string_begin, - STATE(3850), 1, + STATE(3923), 1, sym__val_number_decimal, - STATE(4383), 1, + STATE(4385), 1, sym_expr_parenthesized, - STATE(4384), 1, + STATE(4386), 1, sym_val_variable, - STATE(4628), 1, + STATE(4444), 1, sym__val_number, - STATE(4805), 1, + STATE(4912), 1, sym__match_pattern_list, - STATE(4967), 1, + STATE(4988), 1, sym_val_bool, - ACTIONS(3550), 2, + ACTIONS(3560), 2, anon_sym_true, anon_sym_false, - ACTIONS(3574), 2, + ACTIONS(3584), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3583), 2, + ACTIONS(3593), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3592), 2, + ACTIONS(3602), 2, anon_sym_0o, anon_sym_0x, - STATE(1426), 2, + STATE(1439), 2, sym_comment, aux_sym__match_pattern_list_body_repeat1, - STATE(4686), 2, + STATE(4911), 2, sym__match_pattern_value, sym_val_range, - STATE(5042), 2, + STATE(5034), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(5330), 2, + STATE(5274), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3556), 3, + ACTIONS(3566), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3586), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3725), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4754), 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, - [12988] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(1943), 1, - aux_sym_unquoted_token1, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2936), 1, - anon_sym_LBRACK, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - ACTIONS(2940), 1, - anon_sym_LBRACE, - ACTIONS(3530), 1, - anon_sym_null, - ACTIONS(3534), 1, - anon_sym_DOT_DOT, - ACTIONS(3538), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3540), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3544), 1, - sym_val_date, - STATE(710), 1, - sym__val_number, - STATE(1427), 1, - sym_comment, - STATE(3759), 1, - sym__val_number_decimal, - STATE(3872), 1, - sym_val_variable, - STATE(3917), 1, - sym_expr_parenthesized, - STATE(4378), 1, - sym_val_bool, - STATE(4612), 1, - sym__match_pattern_expression, - STATE(4619), 1, - sym__match_pattern_list, - STATE(4621), 1, - sym_unquoted, - STATE(4875), 1, - sym__match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3528), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3536), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3542), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4618), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5288), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, + ACTIONS(3596), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3532), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2274), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4620), 8, + STATE(4913), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -153001,14 +154196,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13117] = 5, + [12993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3613), 1, - aux_sym__immediate_decimal_token5, - STATE(1428), 1, + STATE(1440), 1, sym_comment, - ACTIONS(767), 8, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153017,8 +154210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(769), 45, - ts_builtin_sym_end, + ACTIONS(777), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153031,7 +154223,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, @@ -153063,14 +154257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13184] = 5, + [13058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3512), 1, - aux_sym__immediate_decimal_token5, - STATE(1429), 1, + STATE(1441), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(866), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153079,8 +154271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, - ts_builtin_sym_end, + ACTIONS(868), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153093,7 +154284,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, @@ -153125,68 +154318,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13251] = 4, + [13123] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1430), 1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(1951), 1, + aux_sym_unquoted_token1, + ACTIONS(2766), 1, + anon_sym_LPAREN, + ACTIONS(2896), 1, + anon_sym_LBRACK, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + ACTIONS(2900), 1, + anon_sym_LBRACE, + ACTIONS(3534), 1, + anon_sym_null, + ACTIONS(3538), 1, + anon_sym_DOT_DOT, + ACTIONS(3542), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3544), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3548), 1, + sym_val_date, + STATE(744), 1, + sym__val_number, + STATE(1442), 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, - [13316] = 36, + STATE(3764), 1, + sym__val_number_decimal, + STATE(3880), 1, + sym_expr_parenthesized, + STATE(3881), 1, + sym_val_variable, + STATE(4468), 1, + sym__match_pattern_expression, + STATE(4480), 1, + sym__match_pattern_list, + STATE(4507), 1, + sym_unquoted, + STATE(4569), 1, + sym_val_bool, + STATE(4735), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3532), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3546), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4475), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5398), 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(3536), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4490), 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, + [13252] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -153211,33 +154436,33 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1570), 1, anon_sym_DOT_DOT, - ACTIONS(2720), 1, + ACTIONS(2706), 1, anon_sym_DOLLAR, - ACTIONS(2722), 1, + ACTIONS(2708), 1, anon_sym_LBRACE, - ACTIONS(2724), 1, + ACTIONS(2712), 1, sym_val_date, - ACTIONS(3482), 1, + ACTIONS(3472), 1, anon_sym_LBRACK, - STATE(1426), 1, + STATE(1439), 1, aux_sym__match_pattern_list_body_repeat1, - STATE(1431), 1, + STATE(1443), 1, sym_comment, - STATE(3795), 1, + STATE(3770), 1, sym__val_number_decimal, - STATE(3964), 1, + STATE(4065), 1, sym_expr_parenthesized, - STATE(3965), 1, + STATE(4066), 1, sym_val_variable, - STATE(4340), 1, + STATE(4444), 1, + sym__val_number, + STATE(4469), 1, sym__match_pattern_expression, - STATE(4341), 1, + STATE(4471), 1, sym__unquoted_in_list, - STATE(4347), 1, + STATE(4509), 1, sym_val_bool, - STATE(4628), 1, - sym__val_number, - STATE(4805), 1, + STATE(4912), 1, sym__match_pattern_list, ACTIONS(1384), 2, anon_sym_true, @@ -153251,10 +154476,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - STATE(4686), 2, + STATE(4911), 2, sym__match_pattern_value, sym_val_range, - STATE(5330), 2, + STATE(5274), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1388), 3, @@ -153265,12 +154490,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(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4754), 8, + STATE(4913), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -153279,150 +154504,126 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13445] = 4, + [13381] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1432), 1, + ACTIONS(1386), 1, + anon_sym_null, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1410), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1434), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1570), 1, + anon_sym_DOT_DOT, + ACTIONS(2706), 1, + anon_sym_DOLLAR, + ACTIONS(2708), 1, + anon_sym_LBRACE, + ACTIONS(2712), 1, + sym_val_date, + ACTIONS(3472), 1, + anon_sym_LBRACK, + STATE(1439), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(1444), 1, sym_comment, - ACTIONS(767), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(769), 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, + STATE(3770), 1, + sym__val_number_decimal, + STATE(4065), 1, + sym_expr_parenthesized, + STATE(4066), 1, + sym_val_variable, + STATE(4444), 1, + sym__val_number, + STATE(4509), 1, + sym_val_bool, + STATE(4612), 1, + sym__match_pattern_expression, + STATE(4613), 1, + sym__unquoted_in_list, + STATE(4912), 1, + sym__match_pattern_list, + ACTIONS(1384), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1406), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1412), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1418), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4911), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5274), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1388), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1414), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4913), 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, [13510] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(1840), 1, + ACTIONS(1846), 1, sym__unquoted_pattern, - ACTIONS(3615), 1, + ACTIONS(3623), 1, anon_sym_DOT_DOT2, - ACTIONS(3619), 1, + ACTIONS(3627), 1, sym_filesize_unit, - ACTIONS(3621), 1, + ACTIONS(3629), 1, sym_duration_unit, - STATE(1433), 1, + STATE(1445), 1, sym_comment, - STATE(4972), 1, + STATE(5070), 1, sym__expr_parenthesized_immediate, - ACTIONS(3617), 2, + ACTIONS(3625), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(847), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [13589] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1434), 1, - sym_comment, - ACTIONS(863), 8, + ACTIONS(785), 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(865), 45, + ACTIONS(884), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153455,7 +154656,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, @@ -153465,17 +154665,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, - [13653] = 5, + [13589] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3623), 1, + ACTIONS(3552), 1, aux_sym__immediate_decimal_token5, - STATE(1435), 1, + STATE(1446), 1, sym_comment, - ACTIONS(1848), 7, + ACTIONS(1786), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153483,7 +154680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 45, + ACTIONS(1784), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153529,12 +154726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13719] = 4, + [13655] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1436), 1, + STATE(1447), 1, sym_comment, - ACTIONS(767), 8, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153543,7 +154740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(769), 45, + ACTIONS(777), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153589,14 +154786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13783] = 5, + [13719] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3526), 1, + ACTIONS(3631), 1, + anon_sym_DOT, + ACTIONS(3633), 1, aux_sym__immediate_decimal_token5, - STATE(1437), 1, + STATE(1448), 1, sym_comment, - ACTIONS(1792), 7, + ACTIONS(1786), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153604,7 +154803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1790), 45, + ACTIONS(1784), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153617,9 +154817,7 @@ static const uint16_t ts_small_parse_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, @@ -153650,12 +154848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13849] = 4, + [13787] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1438), 1, + STATE(1449), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153664,7 +154862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 45, + ACTIONS(749), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153710,24 +154908,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13913] = 6, + [13851] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3625), 1, - anon_sym_DOT, - ACTIONS(3627), 1, - aux_sym__immediate_decimal_token5, - STATE(1439), 1, + STATE(1450), 1, sym_comment, - ACTIONS(1792), 7, + ACTIONS(866), 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(1790), 44, + ACTIONS(868), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153772,16 +154967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13981] = 6, + sym_duration_unit, + [13915] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3629), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym__immediate_decimal_token5, - STATE(1440), 1, + STATE(1451), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(1834), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153789,8 +154983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1730), 44, - ts_builtin_sym_end, + ACTIONS(1832), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153803,7 +154996,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, @@ -153834,14 +155029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14049] = 5, + [13981] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3627), 1, + ACTIONS(3637), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3639), 1, aux_sym__immediate_decimal_token5, - STATE(1441), 1, + STATE(1452), 1, sym_comment, - ACTIONS(1792), 7, + ACTIONS(1732), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153849,7 +155046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1790), 44, + ACTIONS(1730), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153894,136 +155091,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14114] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3641), 1, - anon_sym_LBRACK, - ACTIONS(3643), 1, - anon_sym_STAR2, - STATE(1442), 1, - sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(4499), 1, - sym__command_name, - STATE(4502), 1, - sym_wild_card, - STATE(4503), 1, - sym_command_list, - STATE(4649), 1, - sym_scope_pattern, - ACTIONS(3633), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3645), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3639), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 24, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [14213] = 22, + [14049] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3641), 1, + ACTIONS(3649), 1, anon_sym_LBRACK, - ACTIONS(3643), 1, + ACTIONS(3651), 1, anon_sym_STAR2, - STATE(1443), 1, + STATE(1453), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(4499), 1, + STATE(4516), 1, sym__command_name, - STATE(4501), 1, + STATE(4522), 1, sym_scope_pattern, - STATE(4502), 1, + STATE(4524), 1, sym_wild_card, - STATE(4503), 1, + STATE(4528), 1, sym_command_list, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3649), 4, + ACTIONS(3647), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -154048,12 +155168,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [14312] = 4, + [14148] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1444), 1, + STATE(1454), 1, sym_comment, - ACTIONS(1848), 7, + ACTIONS(1921), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154061,7 +155181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 45, + ACTIONS(1919), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154107,12 +155227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14375] = 4, + [14211] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1445), 1, + STATE(1455), 1, sym_comment, - ACTIONS(1897), 7, + ACTIONS(1732), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154120,7 +155240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1895), 45, + ACTIONS(1730), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154166,27 +155286,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14438] = 8, + [14274] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1976), 1, + ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(3651), 1, + ACTIONS(1963), 1, + sym__unquoted_pattern, + ACTIONS(3657), 1, anon_sym_DOT_DOT2, - STATE(1446), 1, + STATE(1456), 1, sym_comment, - ACTIONS(3653), 2, + ACTIONS(3659), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 5, + ACTIONS(1955), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1972), 42, + ACTIONS(1953), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154229,12 +155349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14509] = 4, + [14345] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1447), 1, + STATE(1457), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(1834), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154242,7 +155362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1730), 45, + ACTIONS(1832), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154288,27 +155408,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14572] = 8, + [14408] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(3655), 1, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + ACTIONS(3661), 1, anon_sym_DOT_DOT2, - STATE(1448), 1, + STATE(1458), 1, sym_comment, - ACTIONS(3657), 2, + ACTIONS(3663), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1984), 5, + ACTIONS(2092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1982), 42, + ACTIONS(2090), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154351,14 +155471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14643] = 5, + [14479] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3659), 1, + ACTIONS(3633), 1, aux_sym__immediate_decimal_token5, - STATE(1449), 1, + STATE(1459), 1, sym_comment, - ACTIONS(1848), 7, + ACTIONS(1786), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154366,7 +155486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 44, + ACTIONS(1784), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154411,56 +155531,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14708] = 20, + [14544] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3359), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(3361), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(3363), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(3365), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3367), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - STATE(1450), 1, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3649), 1, + anon_sym_LBRACK, + ACTIONS(3651), 1, + anon_sym_STAR2, + STATE(1460), 1, sym_comment, - STATE(2099), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3047), 1, - sym__inter_single_quotes, - STATE(3048), 1, - sym__inter_double_quotes, - ACTIONS(277), 2, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(4477), 1, + sym_scope_pattern, + STATE(4516), 1, + sym__command_name, + STATE(4524), 1, + sym_wild_card, + STATE(4528), 1, + sym_command_list, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2477), 4, + ACTIONS(3665), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3189), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(271), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -154485,12 +155608,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [14802] = 4, + [14643] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1451), 1, + ACTIONS(3667), 1, + aux_sym__immediate_decimal_token5, + STATE(1461), 1, sym_comment, - ACTIONS(1848), 7, + ACTIONS(1834), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154498,7 +155623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 44, + ACTIONS(1832), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154543,7 +155668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14864] = 22, + [14708] = 22, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -154554,47 +155679,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3669), 1, + ACTIONS(3673), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3677), 1, anon_sym_STAR2, - STATE(1452), 1, + STATE(1462), 1, sym_comment, - STATE(2018), 1, + STATE(2023), 1, sym__val_number_decimal, - STATE(4376), 1, + STATE(4474), 1, sym_cmd_identifier, - STATE(4379), 1, + STATE(4478), 1, sym_val_string, - STATE(4772), 1, + STATE(4683), 1, sym__command_name, - STATE(4780), 1, + STATE(4692), 1, sym_scope_pattern, - STATE(4783), 1, + STATE(4696), 1, sym_wild_card, - STATE(4784), 1, + STATE(4697), 1, sym_command_list, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + ACTIONS(3669), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 3, + ACTIONS(3647), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(502), 4, + STATE(505), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3667), 24, + ACTIONS(3671), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -154619,91 +155744,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [14962] = 8, + [14806] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(3675), 1, - anon_sym_DOT_DOT2, - STATE(1453), 1, + ACTIONS(251), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(859), 1, + sym_raw_string_begin, + ACTIONS(3161), 1, + anon_sym_DQUOTE, + ACTIONS(3163), 1, + anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_BQUOTE, + ACTIONS(3167), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3169), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3679), 1, + anon_sym_LPAREN, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + STATE(1463), 1, sym_comment, - ACTIONS(3677), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1972), 41, - ts_builtin_sym_end, + STATE(2113), 1, + sym__val_number_decimal, + STATE(3135), 1, + sym__inter_single_quotes, + STATE(3139), 1, + sym__inter_double_quotes, + ACTIONS(277), 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_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, - [15032] = 8, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2476), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3130), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(271), 24, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [14900] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(3679), 1, - anon_sym_DOT_DOT2, - STATE(1454), 1, + ACTIONS(1870), 1, + anon_sym_DOT2, + STATE(430), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(470), 1, + sym_path, + STATE(954), 1, + sym_cell_path, + STATE(1464), 1, sym_comment, - ACTIONS(3681), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1984), 5, + ACTIONS(1875), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1982), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(3683), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -154715,6 +155849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1872), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -154743,56 +155881,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15102] = 20, + [14972] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, + ACTIONS(19), 1, aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, + ACTIONS(964), 1, sym_raw_string_begin, - ACTIONS(3359), 1, + ACTIONS(3378), 1, anon_sym_DQUOTE, - ACTIONS(3361), 1, + ACTIONS(3380), 1, anon_sym_SQUOTE, - ACTIONS(3363), 1, + ACTIONS(3382), 1, anon_sym_BQUOTE, - ACTIONS(3365), 1, + ACTIONS(3384), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3367), 1, + ACTIONS(3386), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, + ACTIONS(3687), 1, anon_sym_LPAREN, - ACTIONS(3663), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - STATE(1455), 1, + STATE(1465), 1, sym_comment, - STATE(2099), 1, + STATE(2143), 1, sym__val_number_decimal, - STATE(3047), 1, + STATE(3366), 1, sym__inter_single_quotes, - STATE(3048), 1, + STATE(3367), 1, sym__inter_double_quotes, - ACTIONS(277), 2, + ACTIONS(45), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2477), 4, + STATE(2564), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3014), 5, + STATE(3229), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(271), 24, + ACTIONS(39), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -154817,97 +155955,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15196] = 22, + [15066] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_STAR2, - STATE(1456), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + ACTIONS(3691), 1, + anon_sym_DOT_DOT2, + STATE(1466), 1, sym_comment, - STATE(2018), 1, - sym__val_number_decimal, - STATE(4376), 1, - sym_cmd_identifier, - STATE(4379), 1, - sym_val_string, - STATE(4772), 1, - sym__command_name, - STATE(4783), 1, - sym_wild_card, - STATE(4784), 1, - sym_command_list, - STATE(4881), 1, - sym_scope_pattern, - ACTIONS(3645), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3639), 3, + ACTIONS(3693), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1955), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1953), 41, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, - STATE(502), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 24, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [15294] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [15136] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1457), 1, + ACTIONS(3695), 1, + anon_sym_DOT, + ACTIONS(3697), 1, + aux_sym__immediate_decimal_token5, + STATE(1467), 1, sym_comment, - ACTIONS(1897), 7, + ACTIONS(1786), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1895), 44, - ts_builtin_sym_end, + ACTIONS(1784), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154920,7 +156046,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, @@ -154949,25 +156077,21 @@ 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, - [15356] = 6, + [15202] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1458), 1, + STATE(1468), 1, sym_comment, - ACTIONS(1792), 6, + ACTIONS(1834), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1790), 43, + ACTIONS(1832), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154980,9 +156104,7 @@ static const uint16_t ts_small_parse_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, @@ -155011,56 +156133,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15422] = 20, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15264] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(251), 1, aux_sym_cmd_identifier_token1, - ACTIONS(962), 1, + ACTIONS(859), 1, sym_raw_string_begin, - ACTIONS(3153), 1, + ACTIONS(3161), 1, anon_sym_DQUOTE, - ACTIONS(3155), 1, + ACTIONS(3163), 1, anon_sym_SQUOTE, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_BQUOTE, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3161), 1, + ACTIONS(3169), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3687), 1, + ACTIONS(3679), 1, anon_sym_LPAREN, - ACTIONS(3689), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - STATE(1459), 1, + STATE(1469), 1, sym_comment, - STATE(2011), 1, + STATE(2113), 1, sym__val_number_decimal, - STATE(3334), 1, + STATE(3135), 1, sym__inter_single_quotes, - STATE(3335), 1, + STATE(3139), 1, sym__inter_double_quotes, - ACTIONS(45), 2, + ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2547), 4, + STATE(2476), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3102), 5, + STATE(3037), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(39), 24, + ACTIONS(271), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -155085,26 +156209,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15516] = 9, + [15358] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, - anon_sym_DOT2, - STATE(428), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(458), 1, - sym_path, - STATE(927), 1, - sym_cell_path, - STATE(1460), 1, + STATE(1470), 1, sym_comment, - ACTIONS(1874), 5, + ACTIONS(1732), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3691), 13, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 44, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155116,10 +156236,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(1871), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -155139,6 +156255,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, @@ -155148,14 +156265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15588] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15420] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3695), 1, + ACTIONS(3699), 1, aux_sym__immediate_decimal_token1, - ACTIONS(3697), 1, + ACTIONS(3701), 1, aux_sym__immediate_decimal_token5, - STATE(1461), 1, + STATE(1471), 1, sym_comment, ACTIONS(1732), 6, anon_sym_GT2, @@ -155208,20 +156327,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15654] = 4, + [15486] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1462), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + ACTIONS(3703), 1, + anon_sym_DOT_DOT2, + STATE(1472), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(3705), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 44, + ACTIONS(2090), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155254,7 +156380,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, @@ -155264,28 +156389,62 @@ 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, - [15716] = 7, - ACTIONS(103), 1, + [15556] = 22, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(3701), 1, - anon_sym_RBRACE, - ACTIONS(3703), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(105), 1, sym_raw_string_begin, - STATE(1463), 1, + ACTIONS(3673), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3675), 1, + anon_sym_LBRACK, + ACTIONS(3677), 1, + anon_sym_STAR2, + STATE(1473), 1, sym_comment, - STATE(1464), 1, - aux_sym__types_body_repeat2, - ACTIONS(3699), 46, + STATE(2023), 1, + sym__val_number_decimal, + STATE(4474), 1, + sym_cmd_identifier, + STATE(4478), 1, + sym_val_string, + STATE(4683), 1, + sym__command_name, + STATE(4696), 1, + sym_wild_card, + STATE(4697), 1, + sym_command_list, + STATE(4762), 1, + sym_scope_pattern, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3669), 2, anon_sym_export, + anon_sym_in, + ACTIONS(3665), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(505), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3671), 24, 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, @@ -155300,43 +156459,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, + [15654] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1474), 1, + sym_comment, + ACTIONS(1921), 7, + 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, - [15783] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1919), 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, + [15716] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3707), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3710), 1, + ACTIONS(3709), 1, + anon_sym_RBRACE, + ACTIONS(3711), 1, sym_raw_string_begin, - STATE(1464), 2, + STATE(1475), 1, sym_comment, + STATE(1484), 1, aux_sym__types_body_repeat2, - ACTIONS(3705), 47, + ACTIONS(3707), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155367,7 +156567,6 @@ 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, @@ -155384,20 +156583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [15846] = 7, + [15783] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3715), 1, - anon_sym_RBRACE, - ACTIONS(3718), 1, + ACTIONS(3711), 1, sym_raw_string_begin, - STATE(1464), 1, - aux_sym__types_body_repeat2, - STATE(1465), 1, + ACTIONS(3713), 1, + anon_sym_RBRACE, + STATE(1476), 1, sym_comment, - ACTIONS(3712), 46, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3707), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155444,20 +156643,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [15913] = 7, + [15850] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2362), 1, + anon_sym_DOT2, + STATE(669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(703), 1, + sym_path, + STATE(1364), 1, + sym_cell_path, + STATE(1477), 1, + sym_comment, + ACTIONS(1875), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3683), 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(1872), 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, + [15921] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3723), 1, + ACTIONS(3718), 1, anon_sym_RBRACE, - ACTIONS(3725), 1, + ACTIONS(3721), 1, sym_raw_string_begin, - STATE(1464), 1, - aux_sym__types_body_repeat2, - STATE(1466), 1, + STATE(1478), 1, sym_comment, - ACTIONS(3721), 46, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3715), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155504,20 +156765,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [15980] = 7, + [15988] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3723), 1, - anon_sym_RBRACE, - ACTIONS(3725), 1, + ACTIONS(3711), 1, sym_raw_string_begin, - STATE(1464), 1, - aux_sym__types_body_repeat2, - STATE(1467), 1, + ACTIONS(3724), 1, + anon_sym_RBRACE, + STATE(1479), 1, sym_comment, - ACTIONS(3721), 46, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3707), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155564,20 +156825,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16047] = 7, + [16055] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3726), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3728), 1, + aux_sym__immediate_decimal_token5, + STATE(1480), 1, + sym_comment, + ACTIONS(1732), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1730), 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, + [16120] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3718), 1, - sym_raw_string_begin, - ACTIONS(3727), 1, + ACTIONS(3732), 1, anon_sym_RBRACE, - STATE(1464), 1, - aux_sym__types_body_repeat2, - STATE(1468), 1, + ACTIONS(3734), 1, + sym_raw_string_begin, + STATE(1481), 1, sym_comment, - ACTIONS(3712), 46, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3730), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155624,20 +156944,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16114] = 7, + [16187] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3738), 1, + aux_sym__immediate_decimal_token5, + STATE(1482), 1, + sym_comment, + ACTIONS(1786), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1784), 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, + [16252] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3725), 1, - sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3732), 1, anon_sym_RBRACE, - STATE(1464), 1, - aux_sym__types_body_repeat2, - STATE(1469), 1, + ACTIONS(3734), 1, + sym_raw_string_begin, + STATE(1483), 1, sym_comment, - ACTIONS(3721), 46, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3730), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155684,20 +157063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16181] = 7, + [16319] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(3742), 1, sym__entry_separator, - ACTIONS(3725), 1, + ACTIONS(3745), 1, sym_raw_string_begin, - ACTIONS(3732), 1, - anon_sym_RBRACE, - STATE(1464), 1, - aux_sym__types_body_repeat2, - STATE(1470), 1, + STATE(1484), 2, sym_comment, - ACTIONS(3721), 46, + aux_sym__types_body_repeat2, + ACTIONS(3740), 47, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155728,6 +157104,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, @@ -155744,20 +157121,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16248] = 7, + [16382] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3747), 1, + aux_sym__immediate_decimal_token5, + STATE(1485), 1, + sym_comment, + ACTIONS(1834), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1832), 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, + [16445] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3725), 1, + ACTIONS(3734), 1, sym_raw_string_begin, - ACTIONS(3732), 1, + ACTIONS(3749), 1, anon_sym_RBRACE, - STATE(1464), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, - STATE(1471), 1, + STATE(1486), 1, sym_comment, - ACTIONS(3721), 46, + ACTIONS(3730), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155804,20 +157239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16315] = 7, + [16512] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3703), 1, - sym_raw_string_begin, ACTIONS(3734), 1, + sym_raw_string_begin, + ACTIONS(3751), 1, anon_sym_RBRACE, - STATE(1464), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, - STATE(1472), 1, + STATE(1487), 1, sym_comment, - ACTIONS(3699), 46, + ACTIONS(3730), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155864,20 +157299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16382] = 7, + [16579] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3703), 1, + ACTIONS(3711), 1, sym_raw_string_begin, - ACTIONS(3736), 1, + ACTIONS(3753), 1, anon_sym_RBRACE, - STATE(1464), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, - STATE(1473), 1, + STATE(1488), 1, sym_comment, - ACTIONS(3699), 46, + ACTIONS(3707), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155924,138 +157359,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16449] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3738), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3740), 1, - aux_sym__immediate_decimal_token5, - STATE(1474), 1, - sym_comment, - ACTIONS(1732), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1730), 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, - [16514] = 5, + [16646] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1475), 1, - sym_comment, - ACTIONS(1792), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1790), 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, - [16577] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3697), 1, aux_sym__immediate_decimal_token5, - STATE(1476), 1, + STATE(1489), 1, sym_comment, - ACTIONS(1848), 6, + ACTIONS(1786), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1846), 43, + ACTIONS(1784), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156099,82 +157417,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16640] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2358), 1, - anon_sym_DOT2, - STATE(526), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(715), 1, - sym_path, - STATE(1298), 1, - sym_cell_path, - STATE(1477), 1, - sym_comment, - ACTIONS(1874), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3691), 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(1871), 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, - [16711] = 7, + [16709] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3703), 1, + ACTIONS(3734), 1, sym_raw_string_begin, - ACTIONS(3744), 1, + ACTIONS(3749), 1, anon_sym_RBRACE, - STATE(1464), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, - STATE(1478), 1, + STATE(1490), 1, sym_comment, - ACTIONS(3699), 46, + ACTIONS(3730), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156221,79 +157477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16778] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3746), 1, - anon_sym_DOT, - ACTIONS(3748), 1, - aux_sym__immediate_decimal_token5, - STATE(1479), 1, - sym_comment, - ACTIONS(1792), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1790), 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, - [16843] = 7, + [16776] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3725), 1, + ACTIONS(3734), 1, sym_raw_string_begin, - ACTIONS(3750), 1, + ACTIONS(3755), 1, anon_sym_RBRACE, - STATE(1464), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, - STATE(1480), 1, + STATE(1491), 1, sym_comment, - ACTIONS(3721), 46, + ACTIONS(3730), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156340,18 +157537,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16910] = 6, + [16843] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(3703), 1, + ACTIONS(3721), 1, sym_raw_string_begin, - STATE(1464), 1, + ACTIONS(3757), 1, + anon_sym_RBRACE, + STATE(1484), 1, aux_sym__types_body_repeat2, - STATE(1481), 1, + STATE(1492), 1, sym_comment, - ACTIONS(3699), 46, + ACTIONS(3715), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156398,22 +157597,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16974] = 6, + [16910] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, + ACTIONS(2606), 1, anon_sym_LPAREN2, - ACTIONS(1992), 1, + ACTIONS(2608), 1, sym__unquoted_pattern, - STATE(1482), 1, + STATE(1493), 1, sym_comment, - ACTIONS(2654), 5, + ACTIONS(1226), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2652), 42, + ACTIONS(1234), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156456,22 +157655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17038] = 6, + [16974] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(1992), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(1483), 1, + STATE(1494), 1, sym_comment, - ACTIONS(1984), 5, + ACTIONS(2600), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1982), 42, + ACTIONS(2598), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156514,22 +157713,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17102] = 6, + [17038] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2576), 1, + ACTIONS(2606), 1, anon_sym_LPAREN2, - STATE(1484), 1, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(1495), 1, sym_comment, - ACTIONS(2574), 5, + ACTIONS(1218), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2572), 42, + ACTIONS(1216), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156572,22 +157771,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17166] = 6, + [17102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, + ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(2614), 1, + ACTIONS(1963), 1, sym__unquoted_pattern, - STATE(1485), 1, + STATE(1496), 1, sym_comment, - ACTIONS(2610), 5, + ACTIONS(2576), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2608), 42, + ACTIONS(2574), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156630,21 +157829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17230] = 5, + [17166] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3738), 1, aux_sym__immediate_decimal_token5, - STATE(1486), 1, + STATE(1497), 1, sym_comment, - ACTIONS(1792), 6, + ACTIONS(1786), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1790), 42, + ACTIONS(1784), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156687,19 +157886,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17292] = 4, + [17228] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1487), 1, + ACTIONS(3764), 1, + sym__newline, + STATE(1498), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3760), 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(3762), 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_finally, + anon_sym_match, + anon_sym_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, + [17290] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + STATE(1499), 1, sym_comment, - ACTIONS(2362), 6, + ACTIONS(1955), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2360), 43, + ACTIONS(1953), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156733,7 +157992,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, @@ -156743,21 +158001,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17352] = 5, + [17354] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1596), 1, + sym__entry_separator, + ACTIONS(3711), 1, + sym_raw_string_begin, + STATE(1484), 1, + aux_sym__types_body_repeat2, + STATE(1500), 1, + sym_comment, + ACTIONS(3707), 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_finally, + 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, + [17418] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3752), 1, + ACTIONS(3767), 1, aux_sym__immediate_decimal_token5, - STATE(1488), 1, + STATE(1501), 1, sym_comment, - ACTIONS(1848), 6, + ACTIONS(1834), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1846), 42, + ACTIONS(1832), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156800,22 +158116,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17414] = 6, + [17480] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2620), 1, + ACTIONS(2594), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2596), 1, sym__unquoted_pattern, - STATE(1489), 1, + STATE(1502), 1, sym_comment, - ACTIONS(2618), 5, + ACTIONS(2592), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2616), 42, + ACTIONS(2590), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156858,19 +158174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17478] = 4, + [17544] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1490), 1, + STATE(1503), 1, sym_comment, - ACTIONS(1732), 6, + ACTIONS(2572), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1730), 43, + ACTIONS(2570), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156914,22 +158230,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17538] = 6, + [17604] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1596), 1, + sym__entry_separator, + ACTIONS(3734), 1, + sym_raw_string_begin, + STATE(1484), 1, + aux_sym__types_body_repeat2, + STATE(1504), 1, + sym_comment, + ACTIONS(3730), 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_finally, + 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, + [17668] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(1491), 1, + STATE(1505), 1, sym_comment, - ACTIONS(1012), 5, + ACTIONS(1834), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1226), 42, + sym__unquoted_pattern, + ACTIONS(1832), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156963,6 +158334,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, @@ -156972,19 +158344,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17602] = 4, + [17728] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1492), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2588), 1, + anon_sym_LPAREN2, + STATE(1506), 1, sym_comment, - ACTIONS(1848), 6, + ACTIONS(2586), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1846), 43, + ACTIONS(2584), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157018,7 +158393,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, @@ -157028,19 +158402,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17662] = 4, + [17792] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1493), 1, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern, + STATE(1507), 1, sym_comment, - ACTIONS(1897), 6, + ACTIONS(1588), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1895), 43, + ACTIONS(1714), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157074,7 +158451,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, @@ -157084,22 +158460,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17722] = 6, + [17856] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1508), 1, + sym_comment, + ACTIONS(3771), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3769), 47, + 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_finally, + 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, + [17916] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(1494), 1, + STATE(1509), 1, sym_comment, - ACTIONS(1020), 5, + ACTIONS(1921), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1234), 42, + sym__unquoted_pattern, + ACTIONS(1919), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157133,6 +158562,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, @@ -157142,22 +158572,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17786] = 6, + [17976] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(1495), 1, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + STATE(1510), 1, sym_comment, - ACTIONS(1615), 5, + ACTIONS(2092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 42, + ACTIONS(2090), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157200,78 +158630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17850] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1496), 1, - sym_comment, - ACTIONS(3756), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3754), 47, - 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_finally, - 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, - [17910] = 6, + [18040] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - STATE(1497), 1, + STATE(1511), 1, sym_comment, - ACTIONS(1974), 5, + ACTIONS(1732), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1972), 42, + sym__unquoted_pattern, + ACTIONS(1730), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157305,6 +158676,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, @@ -157314,270 +158686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17974] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(3725), 1, - sym_raw_string_begin, - STATE(1464), 1, - aux_sym__types_body_repeat2, - STATE(1498), 1, - sym_comment, - ACTIONS(3721), 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_finally, - 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, - [18038] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3762), 1, - sym__newline, - STATE(1499), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3758), 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(3760), 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_finally, - anon_sym_match, - anon_sym_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, - [18100] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3769), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3771), 1, - anon_sym_LBRACK, - ACTIONS(3773), 1, - anon_sym_DOLLAR, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(1500), 1, - sym_comment, - STATE(2120), 1, - sym__val_number_decimal, - ACTIONS(3645), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, - anon_sym_export, - anon_sym_in, - STATE(5013), 2, - sym_cmd_identifier, - sym_val_string, - STATE(5014), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3725), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3767), 24, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [18187] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3769), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3777), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_RBRACK, - STATE(1501), 1, - sym_comment, - STATE(1696), 1, - aux_sym__types_body_repeat1, - STATE(1771), 1, - aux_sym__command_list_body_repeat1, - STATE(2120), 1, - sym__val_number_decimal, - STATE(4791), 1, - sym__command_name, - STATE(5054), 1, - sym_cmd_identifier, - STATE(5055), 1, - sym_val_string, - STATE(5497), 1, - sym__command_list_body, - ACTIONS(3645), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, - anon_sym_export, - anon_sym_in, - STATE(3725), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3767), 24, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [18280] = 5, + [18100] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - STATE(1502), 1, + STATE(1512), 1, sym_comment, - ACTIONS(968), 18, + ACTIONS(884), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -157596,7 +158712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(847), 29, + ACTIONS(785), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -157626,22 +158742,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18341] = 6, + [18161] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, + STATE(1513), 1, + sym_comment, + ACTIONS(2572), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2570), 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, + [18220] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(2634), 1, + ACTIONS(1963), 1, sym__unquoted_pattern, - STATE(1503), 1, + STATE(1514), 1, sym_comment, - ACTIONS(1012), 5, + ACTIONS(1955), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1226), 41, + ACTIONS(1953), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -157683,19 +158854,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18404] = 4, + [18283] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1504), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(1515), 1, sym_comment, - ACTIONS(2362), 6, + ACTIONS(2600), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2360), 42, + ACTIONS(2598), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -157728,7 +158902,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, @@ -157738,51 +158911,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18463] = 18, + [18346] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3000), 1, - anon_sym_DQUOTE, - ACTIONS(3002), 1, - anon_sym_SQUOTE, - ACTIONS(3004), 1, - anon_sym_BQUOTE, - ACTIONS(3012), 1, - sym_raw_string_begin, - ACTIONS(3785), 1, + ACTIONS(3673), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3787), 1, + ACTIONS(3773), 1, anon_sym_LBRACK, - ACTIONS(3789), 1, + ACTIONS(3775), 1, anon_sym_DOLLAR, - ACTIONS(3791), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1505), 1, + ACTIONS(3779), 1, + anon_sym_DQUOTE, + ACTIONS(3781), 1, + anon_sym_SQUOTE, + ACTIONS(3783), 1, + anon_sym_BQUOTE, + ACTIONS(3785), 1, + sym_raw_string_begin, + STATE(1516), 1, sym_comment, - STATE(2127), 1, + STATE(2023), 1, sym__val_number_decimal, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3781), 2, + ACTIONS(3669), 2, anon_sym_export, anon_sym_in, - STATE(3523), 2, + STATE(3292), 2, sym_cmd_identifier, sym_val_string, - STATE(3524), 3, + STATE(3303), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2643), 4, + STATE(2389), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3783), 24, + ACTIONS(3671), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -157807,7 +158980,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [18550] = 21, + [18433] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -157818,43 +158991,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3769), 1, + ACTIONS(3791), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3777), 1, - sym__newline, ACTIONS(3793), 1, + sym__newline, + ACTIONS(3795), 1, anon_sym_RBRACK, - STATE(1506), 1, + STATE(1517), 1, sym_comment, - STATE(1696), 1, + STATE(1710), 1, aux_sym__types_body_repeat1, - STATE(1771), 1, + STATE(1766), 1, aux_sym__command_list_body_repeat1, - STATE(2120), 1, + STATE(2121), 1, sym__val_number_decimal, - STATE(4791), 1, + STATE(4903), 1, sym__command_name, - STATE(5054), 1, + STATE(4999), 1, sym_cmd_identifier, - STATE(5055), 1, + STATE(5002), 1, sym_val_string, - STATE(5259), 1, + STATE(5501), 1, sym__command_list_body, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, + ACTIONS(3787), 2, anon_sym_export, anon_sym_in, - STATE(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3767), 24, + ACTIONS(3789), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -157879,108 +159052,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [18643] = 5, + [18526] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(1507), 1, - sym_comment, - ACTIONS(2553), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3795), 14, - anon_sym_finally, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - 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(2551), 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, - [18704] = 20, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(3637), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3798), 1, - anon_sym_DASH_DASH, - STATE(1508), 1, + ACTIONS(3797), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_LBRACE, + STATE(1518), 1, sym_comment, - STATE(1694), 1, - aux_sym_decl_def_repeat1, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(2188), 1, - sym_long_flag, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(3949), 1, - sym__command_name, - ACTIONS(3800), 2, + ACTIONS(3641), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2984), 2, + sym_cmd_identifier, + sym_val_string, + STATE(2985), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3633), 26, - anon_sym_export, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -157999,58 +159115,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, - [18795] = 18, + [18613] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3669), 1, + ACTIONS(3791), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3804), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(3806), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR, - ACTIONS(3808), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - STATE(1509), 1, + STATE(1519), 1, sym_comment, - STATE(2018), 1, + STATE(2121), 1, sym__val_number_decimal, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + ACTIONS(3787), 2, anon_sym_export, anon_sym_in, - STATE(3300), 2, + STATE(4980), 2, sym_cmd_identifier, sym_val_string, - STATE(3301), 3, + STATE(5007), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(502), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3667), 24, + ACTIONS(3789), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -158075,51 +159190,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [18882] = 18, + [18700] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3810), 1, + ACTIONS(3807), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3809), 1, anon_sym_DOLLAR, - ACTIONS(3814), 1, + ACTIONS(3811), 1, anon_sym_LBRACE, - STATE(1510), 1, + STATE(1520), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3031), 2, + STATE(2984), 2, sym_cmd_identifier, sym_val_string, - STATE(3021), 3, + STATE(2985), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -158144,21 +159259,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [18969] = 4, + [18787] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1511), 1, + STATE(1521), 1, sym_comment, - ACTIONS(1732), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1730), 42, - ts_builtin_sym_end, + ACTIONS(2754), 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(2756), 41, + 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_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [18846] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + STATE(1522), 1, + sym_comment, + ACTIONS(2570), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158170,7 +159333,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(2572), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -158181,39 +159355,29 @@ 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_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, - [19028] = 4, - ACTIONS(3), 1, + [18907] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1512), 1, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + STATE(1523), 1, sym_comment, - ACTIONS(1848), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1846), 42, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2598), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158225,7 +159389,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(2600), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -158236,37 +159411,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_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_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, - [19087] = 4, + [18968] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1513), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2588), 1, + anon_sym_LPAREN2, + STATE(1524), 1, sym_comment, - ACTIONS(1897), 6, + ACTIONS(2586), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1895), 42, + ACTIONS(2584), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -158299,7 +159474,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, @@ -158309,22 +159483,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19146] = 6, + [19031] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2672), 1, + ACTIONS(2578), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2580), 1, sym__unquoted_pattern, - STATE(1514), 1, + STATE(1525), 1, sym_comment, - ACTIONS(1615), 5, + ACTIONS(1588), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 41, + ACTIONS(1714), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -158366,20 +159540,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19209] = 5, + [19094] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - sym__unquoted_pattern, - STATE(1515), 1, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3809), 1, + anon_sym_DOLLAR, + ACTIONS(3813), 1, + anon_sym_LBRACK, + ACTIONS(3815), 1, + anon_sym_LBRACE, + STATE(1526), 1, + sym_comment, + STATE(2057), 1, + sym__val_number_decimal, + ACTIONS(3641), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2984), 2, + sym_cmd_identifier, + sym_val_string, + STATE(2985), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3643), 24, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [19181] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3791), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3817), 1, + anon_sym_LBRACK, + ACTIONS(3819), 1, + anon_sym_DOLLAR, + ACTIONS(3821), 1, + anon_sym_LBRACE, + STATE(1527), 1, + sym_comment, + STATE(2121), 1, + sym__val_number_decimal, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3787), 2, + anon_sym_export, + anon_sym_in, + STATE(4980), 2, + sym_cmd_identifier, + sym_val_string, + STATE(5007), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3789), 24, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [19268] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1528), 1, sym_comment, - ACTIONS(847), 5, + ACTIONS(1732), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + sym__unquoted_pattern, + ACTIONS(1730), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158392,9 +159704,7 @@ static const uint16_t ts_small_parse_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, @@ -158413,6 +159723,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, @@ -158422,22 +159733,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19270] = 6, + [19327] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(1976), 1, + ACTIONS(2094), 1, anon_sym_LPAREN2, - STATE(1516), 1, + STATE(1529), 1, sym_comment, - ACTIONS(1974), 5, + ACTIONS(2092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1972), 41, + ACTIONS(2090), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -158479,70 +159790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19333] = 5, - ACTIONS(103), 1, + [19390] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - STATE(1517), 1, + STATE(1530), 1, sym_comment, - ACTIONS(2360), 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(2362), 29, - anon_sym_in, + ACTIONS(2428), 5, 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, - [19394] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - STATE(1518), 1, - sym_comment, - ACTIONS(2616), 18, + ACTIONS(3823), 14, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158556,16 +159816,9 @@ static const uint16_t ts_small_parse_table[] = { 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(2618), 29, + ACTIONS(2426), 29, anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -158576,37 +159829,108 @@ 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, - [19455] = 6, + [19451] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - STATE(1519), 1, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3791), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3793), 1, + sym__newline, + ACTIONS(3826), 1, + anon_sym_RBRACK, + STATE(1531), 1, + sym_comment, + STATE(1710), 1, + aux_sym__types_body_repeat1, + STATE(1766), 1, + aux_sym__command_list_body_repeat1, + STATE(2121), 1, + sym__val_number_decimal, + STATE(4903), 1, + sym__command_name, + STATE(4999), 1, + sym_cmd_identifier, + STATE(5002), 1, + sym_val_string, + STATE(5205), 1, + sym__command_list_body, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3787), 2, + anon_sym_export, + anon_sym_in, + STATE(3780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3789), 24, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [19544] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1532), 1, sym_comment, - ACTIONS(2654), 5, + ACTIONS(1834), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2652), 41, + sym__unquoted_pattern, + ACTIONS(1832), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -158639,6 +159963,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, @@ -158648,51 +159973,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19518] = 18, + [19603] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3673), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3812), 1, - anon_sym_DOLLAR, - ACTIONS(3816), 1, + ACTIONS(3828), 1, anon_sym_LBRACK, - ACTIONS(3818), 1, + ACTIONS(3830), 1, + anon_sym_DOLLAR, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(1520), 1, + STATE(1533), 1, sym_comment, - STATE(2150), 1, + STATE(2023), 1, sym__val_number_decimal, - ACTIONS(3633), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3031), 2, + ACTIONS(3669), 2, + anon_sym_export, + anon_sym_in, + STATE(3292), 2, sym_cmd_identifier, sym_val_string, - STATE(3021), 3, + STATE(3303), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2274), 4, + STATE(505), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3671), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -158717,120 +160042,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [19605] = 18, + [19690] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_DOLLAR, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3826), 1, - anon_sym_DQUOTE, - ACTIONS(3828), 1, - anon_sym_SQUOTE, - ACTIONS(3830), 1, - anon_sym_BQUOTE, - ACTIONS(3832), 1, - sym_raw_string_begin, - STATE(1521), 1, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(1534), 1, sym_comment, - STATE(2018), 1, - sym__val_number_decimal, - ACTIONS(3645), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, - anon_sym_export, + ACTIONS(1218), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1216), 41, + ts_builtin_sym_end, anon_sym_in, - STATE(3300), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3301), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2394), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 24, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [19692] = 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_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, + [19753] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(3008), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(3010), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(3012), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(3020), 1, sym_raw_string_begin, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - ACTIONS(3637), 1, + ACTIONS(3838), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3834), 1, + ACTIONS(3840), 1, anon_sym_LBRACK, - ACTIONS(3836), 1, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(1535), 1, sym_comment, - STATE(2150), 1, + STATE(2122), 1, sym__val_number_decimal, - ACTIONS(3633), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3031), 2, + ACTIONS(3834), 2, + anon_sym_export, + anon_sym_in, + STATE(3506), 2, sym_cmd_identifier, sym_val_string, - STATE(3021), 3, + STATE(3507), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2274), 4, + STATE(2607), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3836), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -158855,23 +160168,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [19779] = 6, + [19840] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, + ACTIONS(1806), 1, sym__unquoted_pattern, - STATE(1523), 1, + STATE(1536), 1, sym_comment, - ACTIONS(1984), 5, + ACTIONS(785), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1982), 41, - ts_builtin_sym_end, + ACTIONS(884), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158884,7 +160194,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, @@ -158912,22 +160224,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19842] = 6, + [19901] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, + STATE(1537), 1, + sym_comment, + ACTIONS(1921), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2576), 1, + ACTIONS(1919), 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(1524), 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, + [19960] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(1538), 1, sym_comment, - ACTIONS(2574), 5, + ACTIONS(1226), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2572), 41, + ACTIONS(1234), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -158969,22 +160336,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19905] = 6, + [20023] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, + ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(2614), 1, + ACTIONS(1963), 1, sym__unquoted_pattern, - STATE(1525), 1, + STATE(1539), 1, sym_comment, - ACTIONS(2610), 5, + ACTIONS(2576), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2608), 41, + ACTIONS(2574), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -159026,51 +160393,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19968] = 18, + [20086] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(1540), 1, + sym_comment, + ACTIONS(2592), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2590), 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, + [20149] = 20, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3769), 1, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3838), 1, - anon_sym_LBRACK, - ACTIONS(3840), 1, - anon_sym_DOLLAR, - ACTIONS(3842), 1, - anon_sym_LBRACE, - STATE(1526), 1, + ACTIONS(3846), 1, + anon_sym_DASH_DASH, + STATE(1541), 1, sym_comment, - STATE(2120), 1, + STATE(1706), 1, + aux_sym_decl_def_repeat1, + STATE(2057), 1, sym__val_number_decimal, - ACTIONS(3645), 2, + STATE(2168), 1, + sym_long_flag, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(3949), 1, + sym__command_name, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, - anon_sym_export, - anon_sym_in, - STATE(5013), 2, - sym_cmd_identifier, - sym_val_string, - STATE(5014), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3725), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3767), 24, + ACTIONS(3641), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -159089,28 +160514,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, - [20055] = 6, + [20240] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, + ACTIONS(2928), 1, + sym__newline, + STATE(1542), 1, + sym_comment, + STATE(1657), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2690), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2688), 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, + [20308] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1543), 1, + sym_comment, + STATE(4810), 1, + sym_block, + STATE(5043), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20388] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1846), 1, sym__unquoted_pattern, - STATE(1527), 1, + STATE(1544), 1, sym_comment, - ACTIONS(1020), 5, + ACTIONS(785), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1234), 41, + ACTIONS(884), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -159152,348 +160700,2345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20118] = 4, + [20448] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1528), 1, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1545), 1, sym_comment, - ACTIONS(2772), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, + STATE(4823), 1, + sym_block, + STATE(5077), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20528] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1546), 1, + sym_comment, + STATE(4755), 1, + sym_block, + STATE(5056), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20608] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1547), 1, + sym_comment, + STATE(4758), 1, + sym_block, + STATE(4935), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20688] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1548), 1, + sym_comment, + ACTIONS(2428), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3823), 13, + ts_builtin_sym_end, + anon_sym_finally, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + 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(2426), 29, anon_sym_in, - anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20748] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + STATE(1549), 1, + sym_comment, + ACTIONS(2570), 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(2572), 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, - aux_sym__val_number_decimal_token1, - ACTIONS(2774), 41, - 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_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20808] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + STATE(1550), 1, + sym_comment, + ACTIONS(2598), 17, + ts_builtin_sym_end, 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, - [20177] = 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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(2600), 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, + [20868] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1551), 1, + sym_comment, + STATE(4760), 1, + sym_block, + STATE(4947), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20948] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1552), 1, + sym_comment, + STATE(4761), 1, + sym_block, + STATE(4953), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21028] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + STATE(1553), 1, + sym_comment, + ACTIONS(884), 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(785), 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, + [21088] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1554), 1, + sym_comment, + STATE(4928), 1, + sym_block, + STATE(5058), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21168] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1555), 1, + sym_comment, + STATE(4813), 1, + sym_block, + STATE(5066), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21248] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1556), 1, + sym_comment, + STATE(4814), 1, + sym_block, + STATE(5068), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21328] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1557), 1, + sym_comment, + STATE(4815), 1, + sym_block, + STATE(5072), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21408] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3846), 1, + anon_sym_DASH_DASH, + STATE(1558), 1, + sym_comment, + STATE(1706), 1, + aux_sym_decl_def_repeat1, + STATE(2057), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(3949), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3641), 26, + 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_finally, + 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, + [21496] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3846), 1, + anon_sym_DASH_DASH, + STATE(1559), 1, + sym_comment, + STATE(1729), 1, + aux_sym_decl_def_repeat1, + STATE(2057), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(3964), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3641), 26, + 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_finally, + 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, + [21584] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1560), 1, + sym_comment, + STATE(4493), 1, + sym_block, + STATE(4941), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21664] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1561), 1, + sym_comment, + STATE(4494), 1, + sym_block, + STATE(4945), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21744] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(3874), 1, + anon_sym_DOT, + STATE(1562), 1, + sym_comment, + STATE(1881), 1, + sym__immediate_decimal, + ACTIONS(3876), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3878), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(727), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1620), 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, + [21818] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1563), 1, + sym_comment, + STATE(4575), 1, + sym_block, + STATE(5078), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21898] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1564), 1, + sym_comment, + STATE(4577), 1, + sym_block, + STATE(5081), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21978] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1565), 1, + sym_comment, + STATE(4595), 1, + sym_block, + STATE(4990), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22058] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1566), 1, + sym_comment, + STATE(4596), 1, + sym_block, + STATE(5032), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22138] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1567), 1, + sym_comment, + STATE(4598), 1, + sym_block, + STATE(4992), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22218] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1568), 1, + sym_comment, + STATE(4599), 1, + sym_block, + STATE(5003), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22298] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1569), 1, + sym_comment, + STATE(4631), 1, + sym_block, + STATE(5021), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22378] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1570), 1, + sym_comment, + STATE(4632), 1, + sym_block, + STATE(4940), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22458] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1571), 1, + sym_comment, + STATE(4633), 1, + sym_block, + STATE(4954), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22538] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1572), 1, + sym_comment, + STATE(4635), 1, + sym_block, + STATE(4958), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22618] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1573), 1, + sym_comment, + STATE(4665), 1, + sym_block, + STATE(4971), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22698] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1574), 1, + sym_comment, + STATE(4666), 1, + sym_block, + STATE(4972), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22778] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1575), 1, + sym_comment, + STATE(4827), 1, + sym_block, + STATE(4931), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22858] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1576), 1, + sym_comment, + STATE(4834), 1, + sym_block, + STATE(4937), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22938] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - sym__unquoted_pattern, - STATE(1529), 1, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1577), 1, sym_comment, - ACTIONS(2618), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2616), 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, - [20240] = 13, + STATE(4836), 1, + sym_block, + STATE(4949), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23018] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, ACTIONS(3858), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1530), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1578), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3844), 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(2810), 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, - [20316] = 16, + STATE(4363), 1, + sym_block, + STATE(5086), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23098] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - STATE(1531), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1579), 1, sym_comment, - STATE(1562), 1, - aux_sym__repeat_newline, + STATE(4364), 1, + sym_block, + STATE(5093), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3880), 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(3872), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3862), 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(2798), 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, - [20398] = 17, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23178] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - STATE(1532), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(1580), 1, sym_comment, - STATE(1564), 1, - aux_sym__repeat_newline, + STATE(4372), 1, + sym_block, + STATE(4938), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3880), 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(3872), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3862), 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(2798), 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, - [20482] = 15, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23258] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3898), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(1533), 1, + STATE(1581), 1, sym_comment, - STATE(4608), 1, + STATE(4373), 1, sym_block, - STATE(4920), 1, + STATE(4939), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159525,40 +163070,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20562] = 15, + [23338] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3898), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(1534), 1, + STATE(1582), 1, sym_comment, - STATE(4609), 1, + STATE(4842), 1, sym_block, - STATE(4921), 1, + STATE(4956), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159590,102 +163135,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20642] = 12, + [23418] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(3900), 1, - anon_sym_DOT, - STATE(1535), 1, - sym_comment, - STATE(1876), 1, - sym__immediate_decimal, - ACTIONS(3902), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3904), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(703), 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, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3872), 1, 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, - [20716] = 15, + STATE(1583), 1, + sym_comment, + STATE(4399), 1, + sym_block, + STATE(4977), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23498] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3906), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(1536), 1, + STATE(1584), 1, sym_comment, - STATE(4908), 1, + STATE(4400), 1, sym_block, - STATE(5063), 1, + STATE(4978), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159717,40 +163265,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20796] = 15, + [23578] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3906), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(1585), 1, sym_comment, - STATE(4758), 1, + STATE(4401), 1, sym_block, - STATE(4998), 1, + STATE(4979), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159782,40 +163330,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20876] = 15, + [23658] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3906), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(1538), 1, + STATE(1586), 1, sym_comment, - STATE(4802), 1, + STATE(4402), 1, sym_block, - STATE(5046), 1, + STATE(4983), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159847,40 +163395,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20956] = 15, + [23738] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3906), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(1539), 1, + STATE(1587), 1, sym_comment, - STATE(4706), 1, + STATE(4415), 1, sym_block, - STATE(4940), 1, + STATE(4991), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159912,40 +163460,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21036] = 15, + [23818] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3906), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(1540), 1, + STATE(1588), 1, sym_comment, - STATE(4795), 1, + STATE(4421), 1, sym_block, - STATE(4919), 1, + STATE(4993), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159977,277 +163525,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21116] = 13, + [23898] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - sym__newline, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1541), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1589), 1, sym_comment, - STATE(1581), 1, - aux_sym__repeat_newline, + STATE(4829), 1, + sym_block, + STATE(4936), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3880), 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(2788), 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, - [21192] = 12, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23978] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, ACTIONS(3858), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1542), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1590), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2794), 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, - [21266] = 12, + STATE(4855), 1, + sym_block, + STATE(4951), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [24058] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(1543), 1, + STATE(1591), 1, sym_comment, - STATE(1582), 1, + STATE(1604), 1, aux_sym__repeat_newline, - ACTIONS(2790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2788), 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, - [21340] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, - ACTIONS(3858), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1544), 1, - sym_comment, - ACTIONS(2796), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2794), 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, + ACTIONS(3884), 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_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [21412] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2874), 1, - sym__newline, - STATE(1545), 1, - sym_comment, - STATE(1583), 1, - aux_sym__repeat_newline, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2790), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2788), 36, + ACTIONS(2734), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160260,7 +163701,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, @@ -160271,27 +163711,30 @@ 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, - [21480] = 8, + [24134] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1546), 1, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3882), 1, + anon_sym_DASH2, + ACTIONS(3886), 1, + anon_sym_PLUS2, + STATE(1592), 1, sym_comment, - ACTIONS(3850), 2, + STATE(1606), 1, + aux_sym__repeat_newline, + ACTIONS(2736), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -160300,13 +163743,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2796), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2794), 37, + ACTIONS(3888), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2734), 33, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160318,7 +163759,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, @@ -160337,30 +163777,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, - [21546] = 7, + [24208] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2832), 1, sym__newline, - STATE(1547), 1, + STATE(1593), 1, sym_comment, - STATE(1584), 1, + STATE(1608), 1, aux_sym__repeat_newline, - ACTIONS(3874), 2, + ACTIONS(3852), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2790), 5, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2736), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2788), 38, + ACTIONS(2734), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160392,32 +163834,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, - [21610] = 6, + [24276] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1548), 1, + ACTIONS(2832), 1, + sym__newline, + STATE(1594), 1, sym_comment, + STATE(1610), 1, + aux_sym__repeat_newline, ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2796), 5, + ACTIONS(2736), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2794), 39, + ACTIONS(2734), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160455,51 +163896,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [21672] = 18, + [24340] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, + ACTIONS(3898), 1, anon_sym_bit_DASHor2, - STATE(1549), 1, + STATE(1595), 1, sym_comment, - STATE(1585), 1, + STATE(1612), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160508,7 +163949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2788), 14, + ACTIONS(2734), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160523,27 +163964,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [21758] = 17, + [24426] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3914), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, + ACTIONS(3898), 1, anon_sym_bit_DASHor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1550), 1, + ACTIONS(3900), 1, + anon_sym_and2, + STATE(1596), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1614), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -160552,20 +163994,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160574,8 +164019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2794), 15, - sym__newline, + ACTIONS(2734), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160587,56 +164031,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, - [21842] = 19, + [24514] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, + ACTIONS(3898), 1, anon_sym_bit_DASHor2, - ACTIONS(3918), 1, + ACTIONS(3900), 1, anon_sym_and2, - STATE(1551), 1, + ACTIONS(3902), 1, + anon_sym_xor2, + STATE(1597), 1, sym_comment, - STATE(1586), 1, + STATE(1616), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160645,7 +164090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2788), 13, + ACTIONS(2734), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160657,31 +164102,146 @@ static 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, - [21930] = 18, + [24604] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + STATE(1598), 1, + sym_comment, + STATE(1618), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3884), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3890), 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(2734), 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, - ACTIONS(3914), 1, anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, anon_sym_bit_DASHor2, - ACTIONS(3920), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1552), 1, + [24682] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3882), 1, + anon_sym_DASH2, + ACTIONS(3886), 1, + anon_sym_PLUS2, + STATE(1599), 1, sym_comment, - ACTIONS(3846), 2, + STATE(1620), 1, + aux_sym__repeat_newline, + ACTIONS(2736), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3852), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2734), 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, + [24754] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3882), 1, + anon_sym_DASH2, + ACTIONS(3886), 1, + anon_sym_PLUS2, + STATE(1600), 1, + sym_comment, + STATE(1622), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -160690,20 +164250,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160712,8 +164275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2794), 14, - sym__newline, + ACTIONS(2734), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160725,57 +164287,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, - [22016] = 20, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24834] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, - anon_sym_bit_DASHor2, - ACTIONS(3918), 1, - anon_sym_and2, - ACTIONS(3922), 1, - anon_sym_xor2, - STATE(1553), 1, + STATE(1601), 1, sym_comment, - STATE(1587), 1, + STATE(1624), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160784,7 +164342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2788), 12, + ACTIONS(2734), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160796,32 +164354,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [22106] = 19, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24916] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3914), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, - anon_sym_bit_DASHor2, - ACTIONS(3920), 1, - anon_sym_and2, - ACTIONS(3924), 1, - anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1554), 1, + STATE(1602), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1626), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -160830,20 +164385,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160852,8 +164410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2794), 13, - sym__newline, + ACTIONS(2734), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160865,50 +164422,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [22194] = 14, + anon_sym_bit_DASHor2, + [25000] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(1555), 1, + STATE(1603), 1, sym_comment, - STATE(1588), 1, + STATE(1640), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3862), 8, + ACTIONS(2822), 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(2788), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160923,6 +164475,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, @@ -160930,47 +164489,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22272] = 13, + [25076] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1556), 1, + STATE(1604), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3844), 8, + ACTIONS(2826), 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(2794), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160986,6 +164537,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, @@ -160993,32 +164551,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22348] = 11, + [25150] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(1557), 1, + STATE(1605), 1, sym_comment, - STATE(1589), 1, + STATE(1641), 1, aux_sym__repeat_newline, - ACTIONS(2790), 2, + ACTIONS(2824), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2788), 35, + ACTIONS(3888), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2822), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161049,35 +164610,36 @@ 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, - [22420] = 10, + [25224] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1558), 1, + STATE(1606), 1, sym_comment, - ACTIONS(2796), 2, + ACTIONS(2828), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2794), 36, + ACTIONS(3918), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2826), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161109,59 +164671,33 @@ 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, - [22490] = 15, + [25296] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1559), 1, + STATE(1607), 1, sym_comment, - STATE(1590), 1, + STATE(1642), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 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(3872), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(2824), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2822), 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(2788), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161173,58 +164709,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_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, - [22570] = 14, + [25364] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, - ACTIONS(3858), 1, - anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1560), 1, + STATE(1608), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3910), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(2828), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2826), 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(2794), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161237,62 +164767,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, - [22648] = 16, + [25430] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - STATE(1561), 1, + STATE(1609), 1, sym_comment, - STATE(1591), 1, + STATE(1643), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2824), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3880), 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(3872), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + anon_sym_PLUS2, + ACTIONS(2822), 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(2788), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161304,59 +164822,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_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22730] = 15, + [25494] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, - ACTIONS(3858), 1, - anon_sym_PLUS2, - ACTIONS(3912), 1, - anon_sym_bit_DASHand2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1562), 1, + STATE(1610), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(3912), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2828), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3910), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + anon_sym_PLUS2, + ACTIONS(2826), 39, anon_sym_in, - anon_sym_not_DASHin2, - anon_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(2794), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161369,54 +164878,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, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, - [22810] = 17, + [25556] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - STATE(1563), 1, + ACTIONS(3898), 1, + anon_sym_bit_DASHor2, + STATE(1611), 1, sym_comment, - STATE(1592), 1, + STATE(1644), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161425,7 +164957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2788), 15, + ACTIONS(2822), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161440,48 +164972,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [22894] = 16, + [25642] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - ACTIONS(3914), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHxor2, - STATE(485), 1, + ACTIONS(3928), 1, + anon_sym_bit_DASHor2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1564), 1, + STATE(1612), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161490,7 +165023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2794), 16, + ACTIONS(2826), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161506,107 +165039,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [22976] = 15, + [25726] = 19, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(3882), 1, + anon_sym_DASH2, ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, + anon_sym_PLUS2, ACTIONS(3894), 1, - anon_sym_list, + anon_sym_bit_DASHand2, ACTIONS(3896), 1, - anon_sym_oneof, + anon_sym_bit_DASHxor2, ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1565), 1, - sym_comment, - STATE(4523), 1, - sym_block, - STATE(4912), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23056] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1566), 1, + anon_sym_bit_DASHor2, + ACTIONS(3900), 1, + anon_sym_and2, + STATE(1613), 1, sym_comment, - STATE(1594), 1, + STATE(1645), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2776), 29, + ACTIONS(3892), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3890), 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(2822), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161618,189 +165106,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [23132] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1567), 1, - sym_comment, - STATE(4436), 1, - sym_block, - STATE(4976), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23212] = 12, + [25814] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(1568), 1, - sym_comment, - STATE(1596), 1, + ACTIONS(3924), 1, + anon_sym_bit_DASHand2, + ACTIONS(3926), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3928), 1, + anon_sym_bit_DASHor2, + ACTIONS(3930), 1, + anon_sym_and2, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(2778), 2, + STATE(1614), 1, + sym_comment, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2776), 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, + 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, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [23286] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - STATE(1569), 1, - sym_comment, - STATE(1598), 1, - aux_sym__repeat_newline, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2778), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2776), 36, + ACTIONS(3920), 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, @@ -161808,39 +165161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [23354] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(2826), 14, sym__newline, - STATE(1570), 1, - sym_comment, - STATE(1600), 1, - aux_sym__repeat_newline, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2778), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2776), 38, - anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161852,77 +165174,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_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, - [23418] = 18, + [25900] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, + ACTIONS(3898), 1, anon_sym_bit_DASHor2, - STATE(1571), 1, + ACTIONS(3900), 1, + anon_sym_and2, + ACTIONS(3902), 1, + anon_sym_xor2, + STATE(1615), 1, sym_comment, - STATE(1602), 1, + STATE(1646), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161931,7 +165233,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(2822), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161943,56 +165245,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, - [23504] = 19, + [25990] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHor2, - ACTIONS(3918), 1, + ACTIONS(3930), 1, anon_sym_and2, - STATE(1572), 1, - sym_comment, - STATE(1604), 1, + ACTIONS(3932), 1, + anon_sym_xor2, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, + STATE(1616), 1, + sym_comment, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162001,7 +165301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2776), 13, + ACTIONS(2826), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162013,122 +165314,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [23592] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1573), 1, - sym_comment, - STATE(4705), 1, - sym_block, - STATE(4945), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23672] = 20, + [26078] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, - anon_sym_bit_DASHor2, - ACTIONS(3918), 1, - anon_sym_and2, - ACTIONS(3922), 1, - anon_sym_xor2, - STATE(1574), 1, + ACTIONS(3882), 1, + anon_sym_DASH2, + ACTIONS(3886), 1, + anon_sym_PLUS2, + STATE(1617), 1, sym_comment, - STATE(1606), 1, + STATE(1647), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162137,7 +165357,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(2822), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162149,41 +165369,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_and2, + anon_sym_xor2, anon_sym_or2, - [23762] = 14, + 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, + [26156] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(1530), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1575), 1, + STATE(1618), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3862), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162192,7 +165419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2776), 21, + ACTIONS(2826), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162214,98 +165442,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23840] = 15, + [26232] = 11, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(3882), 1, + anon_sym_DASH2, ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1576), 1, + anon_sym_PLUS2, + STATE(1619), 1, sym_comment, - STATE(4684), 1, - sym_block, - STATE(4934), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23920] = 11, + STATE(1648), 1, + aux_sym__repeat_newline, + ACTIONS(2824), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3852), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2822), 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, + [26304] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(1577), 1, - sym_comment, - STATE(1610), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(2778), 2, + STATE(1620), 1, + sym_comment, + ACTIONS(2828), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2776), 35, + ACTIONS(2826), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162340,45 +165563,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23992] = 15, + [26374] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(1578), 1, + STATE(1621), 1, sym_comment, - STATE(1612), 1, + STATE(1649), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162387,7 +165610,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, + ACTIONS(2822), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162405,47 +165628,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24072] = 16, + [26454] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - STATE(1579), 1, - sym_comment, - STATE(1614), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, + STATE(1622), 1, + sym_comment, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162454,7 +165673,8 @@ 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(2826), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162469,51 +165689,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, - [24154] = 17, + [26532] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - STATE(1580), 1, + STATE(1623), 1, sym_comment, - STATE(1616), 1, + STATE(1650), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162522,7 +165741,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, + ACTIONS(2822), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162537,40 +165756,56 @@ 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, - [24238] = 12, + [26614] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(485), 1, + ACTIONS(3924), 1, + anon_sym_bit_DASHand2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1581), 1, + STATE(1624), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2784), 30, + 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(2826), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -162586,6 +165821,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [26694] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(3882), 1, + anon_sym_DASH2, + ACTIONS(3886), 1, + anon_sym_PLUS2, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + ACTIONS(3896), 1, + anon_sym_bit_DASHxor2, + STATE(1625), 1, + sym_comment, + STATE(1651), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3884), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3892), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3890), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -162593,28 +165874,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2822), 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, + [26778] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3906), 1, + anon_sym_DASH2, + ACTIONS(3916), 1, + anon_sym_PLUS2, + ACTIONS(3924), 1, + anon_sym_bit_DASHand2, + ACTIONS(3926), 1, + anon_sym_bit_DASHxor2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1626), 1, + sym_comment, + ACTIONS(3904), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3908), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3912), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3914), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3918), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3910), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + 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(2826), 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, - [24312] = 11, + [26860] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1582), 1, + STATE(1627), 1, sym_comment, - ACTIONS(2786), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1653), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -162623,12 +165978,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2784), 34, + ACTIONS(3884), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2688), 29, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162650,10 +166012,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, @@ -162661,14 +166019,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24384] = 8, + [26936] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1583), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(3882), 1, + anon_sym_DASH2, + ACTIONS(3886), 1, + anon_sym_PLUS2, + STATE(1628), 1, sym_comment, - ACTIONS(3850), 2, + STATE(1655), 1, + aux_sym__repeat_newline, + ACTIONS(2690), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -162677,13 +166044,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2786), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2784), 37, + ACTIONS(3888), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2688), 33, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162695,7 +166060,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, @@ -162714,30 +166078,29 @@ 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, - [24450] = 6, + [27010] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1584), 1, + ACTIONS(2928), 1, + sym__newline, + STATE(1629), 1, sym_comment, + STATE(1659), 1, + aux_sym__repeat_newline, ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2786), 5, + ACTIONS(2690), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2784), 39, + ACTIONS(2688), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162775,96 +166138,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24512] = 17, + [27074] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, ACTIONS(3858), 1, - anon_sym_PLUS2, - ACTIONS(3912), 1, - anon_sym_bit_DASHand2, - ACTIONS(3914), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, - anon_sym_bit_DASHor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1585), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1630), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3910), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3844), 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(2784), 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, - [24596] = 18, + STATE(4759), 1, + sym_block, + STATE(5083), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27154] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3914), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, + ACTIONS(3898), 1, anon_sym_bit_DASHor2, - ACTIONS(3920), 1, + ACTIONS(3900), 1, anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1586), 1, + STATE(1631), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1663), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -162873,20 +166233,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162895,8 +166258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2784), 14, - sym__newline, + ACTIONS(2688), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162910,31 +166272,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [24682] = 19, + [27242] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3914), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, + ACTIONS(3898), 1, anon_sym_bit_DASHor2, - ACTIONS(3920), 1, + ACTIONS(3900), 1, anon_sym_and2, - ACTIONS(3924), 1, + ACTIONS(3902), 1, anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1587), 1, + STATE(1632), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1665), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -162943,20 +166304,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162965,8 +166329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2784), 13, - sym__newline, + ACTIONS(2688), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162979,21 +166342,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [24770] = 13, + [27332] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1588), 1, + STATE(1633), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1667), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -163002,15 +166364,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163019,8 +166384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2784), 22, - sym__newline, + ACTIONS(2688), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163042,21 +166406,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24846] = 10, + [27410] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1589), 1, + STATE(1634), 1, sym_comment, - ACTIONS(2786), 2, + STATE(1669), 1, + aux_sym__repeat_newline, + ACTIONS(2690), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -163065,9 +166431,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2784), 36, + ACTIONS(2688), 35, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163102,21 +166467,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24916] = 14, + [27482] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1635), 1, + sym_comment, + STATE(4918), 1, + sym_block, + STATE(5033), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27562] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(3882), 1, + anon_sym_DASH2, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1590), 1, + STATE(1636), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1671), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -163125,20 +166554,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163147,8 +166579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2784), 18, - sym__newline, + ACTIONS(2688), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163166,23 +166597,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24994] = 15, + [27642] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1591), 1, + STATE(1637), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1673), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -163191,20 +166621,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163213,8 +166646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2784), 17, - sym__newline, + ACTIONS(2688), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163231,25 +166663,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25074] = 16, + [27724] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3914), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1592), 1, + STATE(1638), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1675), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -163258,20 +166689,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163280,8 +166714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2784), 16, - sym__newline, + ACTIONS(2688), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163297,41 +166730,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [25156] = 13, + [27808] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, - sym__newline, + ACTIONS(3858), 1, + anon_sym_COLON, + ACTIONS(3860), 1, + anon_sym_LBRACK, ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(1639), 1, + sym_comment, + STATE(4706), 1, + sym_block, + STATE(5011), 1, + sym_returns, + STATE(5164), 1, + sym__one_type, + STATE(5323), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27888] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(1593), 1, - sym_comment, - STATE(1619), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, + STATE(1640), 1, + sym_comment, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2806), 29, + ACTIONS(2790), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163360,38 +166857,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25232] = 12, + [27962] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1594), 1, + STATE(1641), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(2792), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2810), 30, + ACTIONS(2790), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163415,6 +166907,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, @@ -163422,36 +166918,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25306] = 12, + [28034] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, - sym__newline, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1595), 1, - sym_comment, - STATE(1620), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(2808), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + STATE(1642), 1, + sym_comment, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2806), 33, + ACTIONS(2792), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2790), 37, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163463,6 +166952,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, @@ -163481,36 +166971,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, - [25380] = 11, + [28100] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, - ACTIONS(3858), 1, - anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1596), 1, + STATE(1643), 1, sym_comment, - ACTIONS(2812), 2, + ACTIONS(3912), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2792), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2810), 34, + anon_sym_PLUS2, + ACTIONS(2790), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163524,6 +167006,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, @@ -163542,33 +167025,66 @@ 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, - [25452] = 9, + [28162] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, - sym__newline, - STATE(1597), 1, - sym_comment, - STATE(1621), 1, + ACTIONS(3906), 1, + anon_sym_DASH2, + ACTIONS(3916), 1, + anon_sym_PLUS2, + ACTIONS(3924), 1, + anon_sym_bit_DASHand2, + ACTIONS(3926), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3928), 1, + anon_sym_bit_DASHor2, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(3868), 2, + STATE(1644), 1, + sym_comment, + ACTIONS(3904), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2808), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2806), 36, + 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(2790), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163580,52 +167096,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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, + [28246] = 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, - [25520] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(485), 1, + ACTIONS(3930), 1, + anon_sym_and2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1598), 1, + STATE(1645), 1, sym_comment, - ACTIONS(3850), 2, + ACTIONS(3904), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2812), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2810), 37, + 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(2790), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163638,50 +167165,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_xor2, + anon_sym_or2, + [28332] = 19, + 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, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_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(503), 1, + aux_sym__repeat_newline, + STATE(1646), 1, + sym_comment, + ACTIONS(3904), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3908), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3912), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3914), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3918), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [25586] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2869), 1, - sym__newline, - STATE(1599), 1, - sym_comment, - STATE(1622), 1, - aux_sym__repeat_newline, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2808), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2806), 38, + 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(2790), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163693,10 +167235,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, + [28420] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3906), 1, + anon_sym_DASH2, + ACTIONS(3916), 1, + anon_sym_PLUS2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1647), 1, + sym_comment, + ACTIONS(3904), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3908), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3912), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3914), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3918), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3910), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3920), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -163704,38 +167276,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(2790), 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_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25650] = 6, + [28496] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + ACTIONS(3906), 1, + anon_sym_DASH2, + ACTIONS(3916), 1, + anon_sym_PLUS2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1600), 1, + STATE(1648), 1, sym_comment, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2812), 5, + ACTIONS(2792), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3908), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2810), 39, + ACTIONS(3912), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3914), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2790), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163749,7 +167336,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, @@ -163768,58 +167354,48 @@ 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, - [25712] = 18, + [28566] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, - anon_sym_bit_DASHor2, - STATE(1601), 1, - sym_comment, - STATE(1623), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, + STATE(1649), 1, + sym_comment, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163828,7 +167404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2806), 14, + ACTIONS(2790), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163843,49 +167420,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25798] = 17, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28644] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - ACTIONS(3914), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, - anon_sym_bit_DASHor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1602), 1, + STATE(1650), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163894,7 +167470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2810), 15, + ACTIONS(2790), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163910,53 +167486,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25882] = 19, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28724] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, - anon_sym_bit_DASHor2, - ACTIONS(3918), 1, - anon_sym_and2, - STATE(1603), 1, - sym_comment, - STATE(1624), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, + STATE(1651), 1, + sym_comment, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163965,7 +167537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2806), 13, + ACTIONS(2790), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163977,31 +167550,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25970] = 18, + anon_sym_bit_DASHor2, + [28806] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2861), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, - anon_sym_bit_DASHand2, - ACTIONS(3914), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, - anon_sym_bit_DASHor2, - ACTIONS(3920), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1604), 1, + STATE(1652), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1676), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -164010,30 +167576,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(2692), 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(2810), 14, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164045,66 +167600,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, - [26056] = 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_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28882] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, - anon_sym_bit_DASHor2, - ACTIONS(3918), 1, - anon_sym_and2, - ACTIONS(3922), 1, - anon_sym_xor2, - STATE(1605), 1, - sym_comment, - STATE(1625), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, + STATE(1653), 1, + sym_comment, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(2696), 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(2806), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164116,32 +167662,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_and2, + anon_sym_xor2, anon_sym_or2, - [26146] = 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_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28956] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2861), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, - anon_sym_bit_DASHand2, - ACTIONS(3914), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, - anon_sym_bit_DASHor2, - ACTIONS(3920), 1, - anon_sym_and2, - ACTIONS(3924), 1, - anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1606), 1, + STATE(1654), 1, sym_comment, - ACTIONS(3846), 2, + STATE(1677), 1, + aux_sym__repeat_newline, + ACTIONS(2694), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -164150,29 +167704,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(2692), 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, - ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29030] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3906), 1, + anon_sym_DASH2, + ACTIONS(3916), 1, + anon_sym_PLUS2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1655), 1, + sym_comment, + ACTIONS(2698), 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(2696), 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(2810), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164185,42 +167781,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [26234] = 14, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29102] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2861), 1, sym__newline, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1607), 1, + STATE(1656), 1, sym_comment, - STATE(1626), 1, + STATE(1678), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 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(3862), 8, + ACTIONS(2694), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2692), 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, @@ -164228,7 +167848,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2806), 21, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [29170] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1657), 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(2698), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2696), 37, + anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164240,107 +167895,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, - [26312] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1608), 1, - sym_comment, - STATE(4435), 1, - sym_block, - STATE(4974), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [26392] = 11, + [29236] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2861), 1, sym__newline, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1609), 1, + STATE(1658), 1, sym_comment, - STATE(1627), 1, + STATE(1679), 1, aux_sym__repeat_newline, - ACTIONS(2808), 2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2694), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2806), 35, + anon_sym_PLUS2, + ACTIONS(2692), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164353,6 +167950,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, @@ -164371,35 +167969,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, - [26464] = 10, + [29300] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, - ACTIONS(3858), 1, - anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1610), 1, + STATE(1659), 1, sym_comment, - ACTIONS(2812), 2, + ACTIONS(3912), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2698), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2810), 36, + anon_sym_PLUS2, + ACTIONS(2696), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164413,6 +168006,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, @@ -164431,50 +168025,58 @@ 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, - [26534] = 15, + [29362] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2861), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(1611), 1, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + ACTIONS(3896), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3898), 1, + anon_sym_bit_DASHor2, + STATE(1660), 1, sym_comment, - STATE(1628), 1, + STATE(1680), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164483,7 +168085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2806), 17, + ACTIONS(2692), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164498,46 +168100,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, - [26614] = 14, + [29448] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(485), 1, + ACTIONS(3924), 1, + anon_sym_bit_DASHand2, + ACTIONS(3926), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3928), 1, + anon_sym_bit_DASHor2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1612), 1, + STATE(1661), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164546,7 +168151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2810), 18, + ACTIONS(2696), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164562,50 +168167,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, - [26692] = 16, + [29532] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2861), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - STATE(1613), 1, + ACTIONS(3896), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3898), 1, + anon_sym_bit_DASHor2, + ACTIONS(3900), 1, + anon_sym_and2, + STATE(1662), 1, sym_comment, - STATE(1629), 1, + STATE(1681), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164614,7 +168222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2806), 16, + ACTIONS(2692), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164626,50 +168234,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_DASHxor2, - anon_sym_bit_DASHor2, - [26774] = 15, + [29620] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - STATE(485), 1, + ACTIONS(3926), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3928), 1, + anon_sym_bit_DASHor2, + ACTIONS(3930), 1, + anon_sym_and2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1614), 1, + STATE(1663), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164678,7 +168289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2810), 17, + ACTIONS(2696), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164691,54 +168302,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, - [26854] = 17, + [29706] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(3866), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - STATE(1615), 1, + ACTIONS(3898), 1, + anon_sym_bit_DASHor2, + ACTIONS(3900), 1, + anon_sym_and2, + ACTIONS(3902), 1, + anon_sym_xor2, + STATE(1664), 1, sym_comment, - STATE(1630), 1, + STATE(1682), 1, aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164747,7 +168361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2806), 15, + ACTIONS(2692), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164759,51 +168373,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_DASHor2, - [26938] = 16, + [29796] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - ACTIONS(3914), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHxor2, - STATE(485), 1, + ACTIONS(3928), 1, + anon_sym_bit_DASHor2, + ACTIONS(3930), 1, + anon_sym_and2, + ACTIONS(3932), 1, + anon_sym_xor2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1616), 1, + STATE(1665), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164812,7 +168429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2810), 16, + ACTIONS(2696), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164825,155 +168442,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, - anon_sym_bit_DASHor2, - [27020] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1617), 1, - sym_comment, - STATE(4527), 1, - sym_block, - STATE(4923), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27100] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1618), 1, - sym_comment, - STATE(4688), 1, - sym_block, - STATE(4936), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27180] = 12, + [29884] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2861), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1619), 1, + STATE(1666), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1683), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -164982,17 +168465,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2818), 30, + ACTIONS(3890), 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(2692), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165007,13 +168500,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, @@ -165021,34 +168507,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27254] = 11, + [29962] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1620), 1, + STATE(1667), 1, sym_comment, - ACTIONS(2820), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2818), 34, + ACTIONS(3910), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3920), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2696), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165064,17 +168563,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, @@ -165082,14 +168570,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27326] = 8, + [30038] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1621), 1, + ACTIONS(2861), 1, + sym__newline, + ACTIONS(3882), 1, + anon_sym_DASH2, + ACTIONS(3886), 1, + anon_sym_PLUS2, + STATE(1668), 1, sym_comment, - ACTIONS(3850), 2, + STATE(1684), 1, + aux_sym__repeat_newline, + ACTIONS(2694), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -165098,13 +168595,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2820), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2818), 37, + ACTIONS(2692), 35, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165116,7 +168608,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, @@ -165140,23 +168631,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27392] = 6, + [30110] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + ACTIONS(3906), 1, + anon_sym_DASH2, + ACTIONS(3916), 1, + anon_sym_PLUS2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1622), 1, + STATE(1669), 1, sym_comment, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2820), 5, + ACTIONS(2698), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3908), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2818), 39, + ACTIONS(3912), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3914), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2696), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165170,7 +168668,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, @@ -165189,34 +168686,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, - [27454] = 17, + [30180] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2861), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, - anon_sym_bit_DASHand2, - ACTIONS(3914), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, - anon_sym_bit_DASHor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1623), 1, + STATE(1670), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1685), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -165225,20 +168713,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165247,8 +168738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2818), 15, - sym__newline, + ACTIONS(2692), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165263,175 +168753,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [27538] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, - ACTIONS(3858), 1, - anon_sym_PLUS2, - ACTIONS(3912), 1, anon_sym_bit_DASHand2, - ACTIONS(3914), 1, anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, anon_sym_bit_DASHor2, - ACTIONS(3920), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1624), 1, - sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3910), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3844), 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(2818), 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, - [27624] = 19, + [30260] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, - anon_sym_PLUS2, - ACTIONS(3912), 1, - anon_sym_bit_DASHand2, - ACTIONS(3914), 1, - anon_sym_bit_DASHxor2, ACTIONS(3916), 1, - anon_sym_bit_DASHor2, - ACTIONS(3920), 1, - anon_sym_and2, - ACTIONS(3924), 1, - anon_sym_xor2, - STATE(485), 1, + anon_sym_PLUS2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1625), 1, + STATE(1671), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 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(2818), 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, - [27712] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, - ACTIONS(3858), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1626), 1, - sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3844), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165440,7 +168801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2818), 22, + ACTIONS(2696), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165456,88 +168817,25 @@ 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, - [27788] = 10, + [30338] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, - anon_sym_DASH2, - ACTIONS(3858), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1627), 1, - sym_comment, - ACTIONS(2820), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2818), 36, - anon_sym_in, + ACTIONS(2861), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [27858] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1628), 1, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + STATE(1672), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1686), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -165546,20 +168844,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165568,8 +168869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2818), 18, - sym__newline, + ACTIONS(2692), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165584,48 +168884,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27936] = 15, + [30420] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(1629), 1, + STATE(1673), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3850), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3854), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165634,7 +168933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2818), 17, + ACTIONS(2696), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165652,25 +168951,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28016] = 16, + [30500] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3848), 1, + ACTIONS(2861), 1, + sym__newline, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(3858), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(3912), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3914), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(1630), 1, + STATE(1674), 1, sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, + STATE(1687), 1, + aux_sym__repeat_newline, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3854), 2, @@ -165679,20 +168977,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3910), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3844), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165701,8 +169002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2818), 16, - sym__newline, + ACTIONS(2692), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165718,159 +169018,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [28098] = 15, + [30584] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1631), 1, - sym_comment, - STATE(4817), 1, - sym_block, - STATE(5005), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28178] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - STATE(1632), 1, + anon_sym_DASH2, + ACTIONS(3916), 1, + anon_sym_PLUS2, + ACTIONS(3924), 1, + anon_sym_bit_DASHand2, + ACTIONS(3926), 1, + anon_sym_bit_DASHxor2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1675), 1, sym_comment, - ACTIONS(2360), 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(2362), 29, - anon_sym_in, + ACTIONS(3904), 2, 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, + ACTIONS(3908), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28238] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - STATE(1633), 1, - sym_comment, - ACTIONS(2616), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(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, - ACTIONS(2618), 29, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3920), 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, @@ -165878,102 +169067,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_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, - [28298] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1634), 1, - sym_comment, - STATE(4759), 1, - sym_block, - STATE(4978), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28378] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1840), 1, - sym__unquoted_pattern, - STATE(1635), 1, - sym_comment, - ACTIONS(847), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2696), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165985,844 +169079,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_DASH2, + 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_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28438] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1636), 1, - sym_comment, - STATE(4822), 1, - sym_block, - STATE(5010), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28518] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1637), 1, - sym_comment, - STATE(4769), 1, - sym_block, - STATE(4985), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28598] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1638), 1, - sym_comment, - STATE(4773), 1, - sym_block, - STATE(4988), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28678] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1639), 1, - sym_comment, - STATE(4528), 1, - sym_block, - STATE(4995), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28758] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1640), 1, - sym_comment, - STATE(4529), 1, - sym_block, - STATE(5026), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28838] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1641), 1, - sym_comment, - STATE(4651), 1, - sym_block, - STATE(4931), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28918] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1642), 1, - sym_comment, - STATE(4457), 1, - sym_block, - STATE(4986), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28998] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1643), 1, - sym_comment, - STATE(4541), 1, - sym_block, - STATE(4957), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29078] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1644), 1, - sym_comment, - STATE(4458), 1, - sym_block, - STATE(4989), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29158] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1645), 1, - sym_comment, - STATE(4687), 1, - sym_block, - STATE(4932), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29238] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1646), 1, - sym_comment, - STATE(4673), 1, - sym_block, - STATE(4960), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29318] = 15, + [30666] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1647), 1, - sym_comment, - STATE(4746), 1, - sym_block, - STATE(4963), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29398] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(1648), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1676), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3940), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3932), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2648), 31, + ACTIONS(2720), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166836,7 +169129,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, @@ -166854,31 +169146,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29470] = 10, + [30740] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3928), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(1649), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1677), 1, sym_comment, - ACTIONS(2650), 2, + ACTIONS(2722), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3940), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2648), 35, + ACTIONS(2720), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166892,7 +169186,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, @@ -166914,25 +169207,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29540] = 7, + [30812] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1650), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1678), 1, sym_comment, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2650), 3, + ACTIONS(2722), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2648), 38, + ACTIONS(2720), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166947,7 +169242,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, @@ -166971,21 +169265,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29604] = 5, + [30878] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1651), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1679), 1, sym_comment, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2650), 5, + ACTIONS(2722), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2648), 40, + ACTIONS(2720), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -167000,7 +169296,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, @@ -167026,47 +169321,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29664] = 16, + [30940] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3928), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3946), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - ACTIONS(3948), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHxor2, - ACTIONS(3950), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHor2, - STATE(1652), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1680), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3940), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3932), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3944), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3942), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167075,7 +169372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 16, + ACTIONS(2720), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167088,53 +169385,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, - [29746] = 17, + [31024] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3928), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3946), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - ACTIONS(3948), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHxor2, - ACTIONS(3950), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHor2, - ACTIONS(3952), 1, + ACTIONS(3930), 1, anon_sym_and2, - STATE(1653), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1681), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3940), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3932), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3944), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3942), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167143,7 +169441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 15, + ACTIONS(2720), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167156,54 +169454,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, - [29830] = 18, + [31110] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3928), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3946), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - ACTIONS(3948), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHxor2, - ACTIONS(3950), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHor2, - ACTIONS(3952), 1, + ACTIONS(3930), 1, anon_sym_and2, - ACTIONS(3954), 1, + ACTIONS(3932), 1, anon_sym_xor2, - STATE(1654), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1682), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3940), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3932), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3944), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3942), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167212,7 +169511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 14, + ACTIONS(2720), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167225,38 +169524,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, - [29916] = 12, + [31198] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3928), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(1655), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1683), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3940), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3932), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3942), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167265,7 +169565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 23, + ACTIONS(2720), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167278,7 +169578,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, @@ -167289,28 +169588,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29990] = 9, + [31274] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3928), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(1656), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1684), 1, sym_comment, - ACTIONS(2650), 2, + ACTIONS(2722), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2648), 37, + ACTIONS(2720), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -167324,7 +169625,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, @@ -167348,41 +169648,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30058] = 13, + [31344] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3928), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(1657), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1685), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3940), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3932), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3944), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3942), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167391,7 +169693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 19, + ACTIONS(2720), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167404,50 +169706,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, - [30134] = 14, + [31422] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3928), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3946), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - STATE(1658), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1686), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3940), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3932), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3944), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3942), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167456,7 +169759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 18, + ACTIONS(2720), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167469,51 +169772,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30212] = 15, + [31502] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3928), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(3946), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - ACTIONS(3948), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHxor2, - STATE(1659), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(1687), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(3904), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3940), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3932), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3944), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3942), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167522,7 +169826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 17, + ACTIONS(2720), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167535,45 +169839,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, anon_sym_bit_DASHor2, - [30292] = 15, + [31584] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3906), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(1660), 1, + STATE(1688), 1, sym_comment, - STATE(4731), 1, + STATE(4902), 1, sym_block, - STATE(4962), 1, + STATE(5013), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167605,109 +169908,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [30372] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3798), 1, - anon_sym_DASH_DASH, - STATE(1661), 1, - sym_comment, - STATE(1702), 1, - aux_sym_decl_def_repeat1, - STATE(2150), 1, - sym__val_number_decimal, - STATE(2188), 1, - sym_long_flag, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(3859), 1, - sym__command_name, - ACTIONS(3800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3633), 26, - 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_finally, - 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, - [30460] = 15, + [31664] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3906), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(1662), 1, + STATE(1689), 1, sym_comment, - STATE(4880), 1, + STATE(4694), 1, sym_block, - STATE(4992), 1, + STATE(4987), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167739,40 +169973,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [30540] = 15, + [31744] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3906), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(1663), 1, + STATE(1690), 1, sym_comment, - STATE(4664), 1, + STATE(4737), 1, sym_block, - STATE(4950), 1, + STATE(5036), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167804,103 +170038,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [30620] = 13, + [31824] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1542), 1, - aux_sym__repeat_newline, - STATE(1664), 1, - sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3880), 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(2798), 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, - [30696] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3898), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(1665), 1, + STATE(1691), 1, sym_comment, - STATE(4543), 1, + STATE(4776), 1, sym_block, - STATE(4958), 1, + STATE(5025), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167932,15 +170103,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [30776] = 5, - ACTIONS(103), 1, + [31904] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - STATE(1666), 1, + ACTIONS(3936), 1, + anon_sym_DASH2, + ACTIONS(3946), 1, + anon_sym_PLUS2, + STATE(1692), 1, sym_comment, - ACTIONS(968), 17, - ts_builtin_sym_end, + ACTIONS(3934), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3938), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3942), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3944), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3948), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3940), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2656), 31, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167952,16 +170145,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(847), 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, @@ -167972,51 +170157,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_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, - [30836] = 12, + [31976] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3936), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3946), 1, anon_sym_PLUS2, - STATE(1544), 1, - aux_sym__repeat_newline, - STATE(1667), 1, + STATE(1693), 1, sym_comment, - ACTIONS(2800), 2, + ACTIONS(2658), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3938), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3942), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3944), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3948), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2798), 33, + ACTIONS(2656), 35, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168028,6 +170202,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, @@ -168049,30 +170224,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30910] = 9, + [32046] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, - STATE(1546), 1, - aux_sym__repeat_newline, - STATE(1668), 1, + STATE(1694), 1, sym_comment, - ACTIONS(3868), 2, + ACTIONS(3938), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3942), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3944), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2800), 3, + ACTIONS(2658), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2798), 36, + ACTIONS(2656), 38, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168085,6 +170257,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, @@ -168108,26 +170281,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30978] = 7, + [32110] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, - STATE(1548), 1, - aux_sym__repeat_newline, - STATE(1669), 1, + STATE(1695), 1, sym_comment, - ACTIONS(3874), 2, + ACTIONS(3942), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2800), 5, + ACTIONS(2658), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2798), 38, + ACTIONS(2656), 40, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168140,6 +170310,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, @@ -168165,181 +170336,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31042] = 15, + [32170] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1670), 1, - sym_comment, - STATE(4553), 1, - sym_block, - STATE(4952), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31122] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1671), 1, - sym_comment, - STATE(4557), 1, - sym_block, - STATE(4953), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31202] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3936), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3946), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3954), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3956), 1, anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, - anon_sym_bit_DASHor2, - STATE(1550), 1, - aux_sym__repeat_newline, - STATE(1672), 1, + ACTIONS(3958), 1, + anon_sym_bit_DASHor2, + STATE(1696), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3934), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3938), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3942), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3944), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3948), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3952), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3950), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168348,7 +170385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2798), 14, + ACTIONS(2656), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168360,56 +170398,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, - [31288] = 19, + [32252] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3936), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3946), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3954), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3956), 1, anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, + ACTIONS(3958), 1, anon_sym_bit_DASHor2, - ACTIONS(3918), 1, + ACTIONS(3960), 1, anon_sym_and2, - STATE(1552), 1, - aux_sym__repeat_newline, - STATE(1673), 1, + STATE(1697), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3934), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3938), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3942), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3944), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3948), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3952), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3950), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168418,7 +170453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2798), 13, + ACTIONS(2656), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168430,122 +170466,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, - [31376] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1674), 1, - sym_comment, - STATE(4570), 1, - sym_block, - STATE(4965), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31456] = 20, + [32336] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3936), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3946), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3954), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3956), 1, anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, + ACTIONS(3958), 1, anon_sym_bit_DASHor2, - ACTIONS(3918), 1, + ACTIONS(3960), 1, anon_sym_and2, - ACTIONS(3922), 1, + ACTIONS(3962), 1, anon_sym_xor2, - STATE(1554), 1, - aux_sym__repeat_newline, - STATE(1675), 1, + STATE(1698), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3934), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3938), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3942), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3944), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3948), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3952), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3950), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168554,7 +170522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2798), 12, + ACTIONS(2656), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168566,171 +170535,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, - [31546] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1676), 1, - sym_comment, - STATE(4572), 1, - sym_block, - STATE(4970), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31626] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1677), 1, - sym_comment, - STATE(4460), 1, - sym_block, - STATE(4990), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31706] = 14, + [32422] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3936), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3946), 1, anon_sym_PLUS2, - STATE(1556), 1, - aux_sym__repeat_newline, - STATE(1678), 1, + STATE(1699), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3934), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3938), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3942), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3944), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3948), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3862), 8, + ACTIONS(3950), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168739,7 +170575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2798), 21, + ACTIONS(2656), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168751,6 +170588,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, @@ -168761,20 +170599,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31784] = 5, + [32496] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1679), 1, + ACTIONS(3936), 1, + anon_sym_DASH2, + ACTIONS(3946), 1, + anon_sym_PLUS2, + STATE(1700), 1, sym_comment, - ACTIONS(2553), 5, + ACTIONS(2658), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3938), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3795), 13, - ts_builtin_sym_end, - anon_sym_finally, + ACTIONS(3942), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3944), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2656), 37, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -168786,9 +170633,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(2551), 29, - anon_sym_in, - anon_sym_DASH2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168807,237 +170653,56 @@ 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, - [31844] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1680), 1, - sym_comment, - STATE(4595), 1, - sym_block, - STATE(5052), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31924] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1681), 1, - sym_comment, - STATE(4596), 1, - sym_block, - STATE(5060), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32004] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1682), 1, - sym_comment, - STATE(4597), 1, - sym_block, - STATE(5070), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32084] = 11, + [32564] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3936), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3946), 1, anon_sym_PLUS2, - STATE(1558), 1, - aux_sym__repeat_newline, - STATE(1683), 1, + STATE(1701), 1, sym_comment, - ACTIONS(2800), 2, + ACTIONS(3934), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3938), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3942), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3944), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2798), 35, + ACTIONS(3948), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3940), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3952), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3950), 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(2656), 19, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -169049,202 +170714,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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [32156] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1684), 1, - sym_comment, - STATE(4752), 1, - sym_block, - STATE(4975), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32236] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3798), 1, - anon_sym_DASH_DASH, - STATE(1685), 1, - sym_comment, - STATE(1694), 1, - aux_sym_decl_def_repeat1, - STATE(2150), 1, - sym__val_number_decimal, - STATE(2188), 1, - sym_long_flag, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(3949), 1, - sym__command_name, - ACTIONS(3800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3633), 26, - 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_finally, - 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, - [32324] = 15, + [32640] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, - ACTIONS(3866), 1, + ACTIONS(3936), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3946), 1, anon_sym_PLUS2, - STATE(1560), 1, - aux_sym__repeat_newline, - STATE(1686), 1, + ACTIONS(3954), 1, + anon_sym_bit_DASHand2, + STATE(1702), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3934), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3938), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3942), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3944), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3948), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3872), 4, + ACTIONS(3952), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3862), 8, + ACTIONS(3950), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169253,7 +170766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2798), 17, + ACTIONS(2656), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -169265,436 +170779,111 @@ static const 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, - [32404] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1687), 1, - sym_comment, - STATE(4600), 1, - sym_block, - STATE(5076), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32484] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1688), 1, - sym_comment, - STATE(4493), 1, - sym_block, - STATE(4914), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32564] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1689), 1, - sym_comment, - STATE(4500), 1, - sym_block, - STATE(4917), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32644] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1690), 1, - sym_comment, - STATE(4742), 1, - sym_block, - STATE(5008), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32724] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(1691), 1, - sym_comment, - STATE(4848), 1, - sym_block, - STATE(5009), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32804] = 15, + [32718] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1692), 1, + ACTIONS(3936), 1, + anon_sym_DASH2, + ACTIONS(3946), 1, + anon_sym_PLUS2, + ACTIONS(3954), 1, + anon_sym_bit_DASHand2, + ACTIONS(3956), 1, + anon_sym_bit_DASHxor2, + STATE(1703), 1, sym_comment, - STATE(4462), 1, - sym_block, - STATE(4994), 1, - sym_returns, - STATE(5155), 1, - sym__one_type, - STATE(5162), 1, - sym__multiple_types, - STATE(5165), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32884] = 15, + ACTIONS(3934), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3938), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3942), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3944), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3948), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3940), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3952), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3950), 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(2656), 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, + [32798] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(3858), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(3906), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(1693), 1, + STATE(1704), 1, sym_comment, - STATE(4725), 1, + STATE(4746), 1, sym_block, - STATE(4944), 1, + STATE(5097), 1, sym_returns, - STATE(5155), 1, + STATE(5164), 1, sym__one_type, - STATE(5162), 1, + STATE(5323), 1, sym__multiple_types, - STATE(5165), 1, + STATE(5363), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -169726,50 +170915,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, + [32878] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(3882), 1, + anon_sym_DASH2, + ACTIONS(3886), 1, + anon_sym_PLUS2, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + ACTIONS(3896), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3898), 1, + anon_sym_bit_DASHor2, + STATE(1661), 1, + aux_sym__repeat_newline, + STATE(1705), 1, + sym_comment, + ACTIONS(3852), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3884), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3892), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3890), 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, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, [32964] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3956), 1, + ACTIONS(3964), 1, anon_sym_DASH_DASH, - STATE(1694), 1, + STATE(1706), 1, sym_comment, - STATE(1984), 1, + STATE(1986), 1, aux_sym_decl_def_repeat1, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(2188), 1, + STATE(2168), 1, sym_long_flag, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(3855), 1, + STATE(3953), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169794,113 +171051,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33051] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3958), 1, - sym__newline, - ACTIONS(3960), 1, - anon_sym_RBRACK, - STATE(1695), 1, - sym_comment, - STATE(1776), 1, - aux_sym__types_body_repeat1, - STATE(1838), 1, - aux_sym__types_body_repeat3, - STATE(4781), 1, - sym__one_type, - STATE(5230), 1, - sym__types_body, - STATE(5241), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [33128] = 19, + [33051] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3769), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3777), 1, - sym__newline, - STATE(1696), 1, + ACTIONS(3964), 1, + anon_sym_DASH_DASH, + STATE(1707), 1, sym_comment, - STATE(1759), 1, - aux_sym__command_list_body_repeat1, - STATE(2014), 1, - aux_sym__types_body_repeat1, - STATE(2120), 1, + STATE(1732), 1, + aux_sym_decl_def_repeat1, + STATE(2057), 1, sym__val_number_decimal, - STATE(4788), 1, - sym__command_name, - STATE(5054), 1, + STATE(2168), 1, + sym_long_flag, + STATE(3753), 1, sym_cmd_identifier, - STATE(5055), 1, + STATE(3791), 1, sym_val_string, - ACTIONS(3645), 2, + STATE(3957), 1, + sym__command_name, + ACTIONS(3641), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, - anon_sym_export, - anon_sym_in, - STATE(3725), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3767), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169925,231 +171119,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33215] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1637), 1, - sym__unquoted_pattern, - STATE(1697), 1, - sym_comment, - STATE(1972), 1, - sym__immediate_decimal, - ACTIONS(3962), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3964), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(788), 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, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [33286] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(3966), 1, - anon_sym_DOT, - STATE(1698), 1, - sym_comment, - STATE(1907), 1, - sym__immediate_decimal, - ACTIONS(3968), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3970), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1986), 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, - [33359] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1695), 1, - sym__unquoted_pattern, - STATE(1699), 1, - sym_comment, - STATE(2000), 1, - sym__immediate_decimal, - ACTIONS(3962), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3964), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1683), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1681), 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, - [33430] = 19, + [33138] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3956), 1, + ACTIONS(3964), 1, anon_sym_DASH_DASH, - STATE(1700), 1, + STATE(1708), 1, sym_comment, - STATE(1703), 1, + STATE(1727), 1, aux_sym_decl_def_repeat1, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(2188), 1, + STATE(2168), 1, sym_long_flag, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(3946), 1, + STATE(3926), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170174,50 +171187,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33517] = 19, + [33225] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(3966), 1, + sym__newline, + ACTIONS(3968), 1, + anon_sym_RBRACK, + STATE(1709), 1, + sym_comment, + STATE(1748), 1, + aux_sym__types_body_repeat1, + STATE(1857), 1, + aux_sym__types_body_repeat3, + STATE(4787), 1, + sym__one_type, + STATE(5257), 1, + sym__type_annotation, + STATE(5379), 1, + sym__types_body, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [33302] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3791), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3956), 1, - anon_sym_DASH_DASH, - STATE(1701), 1, + ACTIONS(3793), 1, + sym__newline, + STATE(1710), 1, sym_comment, - STATE(1714), 1, - aux_sym_decl_def_repeat1, - STATE(2150), 1, + STATE(1765), 1, + aux_sym__command_list_body_repeat1, + STATE(2121), 1, sym__val_number_decimal, - STATE(2188), 1, - sym_long_flag, - STATE(3755), 1, + STATE(2149), 1, + aux_sym__types_body_repeat1, + STATE(4819), 1, + sym__command_name, + STATE(4999), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(5002), 1, sym_val_string, - STATE(3907), 1, - sym__command_name, - ACTIONS(3633), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + ACTIONS(3787), 2, + anon_sym_export, + anon_sym_in, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3789), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170242,50 +171318,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33604] = 19, + [33389] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3956), 1, + ACTIONS(3964), 1, anon_sym_DASH_DASH, - STATE(1702), 1, + STATE(1711), 1, sym_comment, - STATE(1984), 1, + STATE(1712), 1, aux_sym_decl_def_repeat1, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(2188), 1, + STATE(2168), 1, sym_long_flag, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(3896), 1, + STATE(3898), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170310,50 +171386,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33691] = 19, + [33476] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3956), 1, + ACTIONS(3964), 1, anon_sym_DASH_DASH, - STATE(1703), 1, + STATE(1712), 1, sym_comment, - STATE(1984), 1, + STATE(1986), 1, aux_sym_decl_def_repeat1, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(2188), 1, + STATE(2168), 1, sym_long_flag, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(3889), 1, + STATE(3918), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170378,36 +171454,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33778] = 11, + [33563] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - STATE(1704), 1, + STATE(1713), 1, sym_comment, - ACTIONS(3972), 2, + ACTIONS(3970), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3986), 2, + ACTIONS(3984), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3978), 4, + ACTIONS(3976), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2648), 30, + ACTIONS(2656), 30, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -170438,31 +171514,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33849] = 10, + [33634] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - STATE(1705), 1, + STATE(1714), 1, sym_comment, - ACTIONS(2650), 2, + ACTIONS(2658), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3986), 2, + ACTIONS(3984), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2648), 34, + ACTIONS(2656), 34, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -170497,25 +171573,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33918] = 7, + [33703] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1715), 1, sym_comment, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2650), 3, + ACTIONS(2658), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2648), 37, + ACTIONS(2656), 37, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -170553,21 +171629,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33981] = 5, + [33766] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1707), 1, + STATE(1716), 1, sym_comment, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2650), 5, + ACTIONS(2658), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2648), 39, + ACTIONS(2656), 39, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -170607,47 +171683,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34040] = 16, + [33825] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - ACTIONS(3992), 1, + ACTIONS(3990), 1, anon_sym_bit_DASHand2, - ACTIONS(3994), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHxor2, - ACTIONS(3996), 1, + ACTIONS(3994), 1, anon_sym_bit_DASHor2, - STATE(1708), 1, + STATE(1717), 1, sym_comment, - ACTIONS(3972), 2, + ACTIONS(3970), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3986), 2, + ACTIONS(3984), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3978), 4, + ACTIONS(3976), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3990), 4, + ACTIONS(3988), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3988), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170656,7 +171732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 15, + ACTIONS(2656), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -170672,49 +171748,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [34121] = 17, + [33906] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - ACTIONS(3992), 1, + ACTIONS(3990), 1, anon_sym_bit_DASHand2, - ACTIONS(3994), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHxor2, - ACTIONS(3996), 1, + ACTIONS(3994), 1, anon_sym_bit_DASHor2, - ACTIONS(3998), 1, + ACTIONS(3996), 1, anon_sym_and2, - STATE(1709), 1, + STATE(1718), 1, sym_comment, - ACTIONS(3972), 2, + ACTIONS(3970), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3986), 2, + ACTIONS(3984), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3978), 4, + ACTIONS(3976), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3990), 4, + ACTIONS(3988), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3988), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170723,7 +171799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 14, + ACTIONS(2656), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -170738,51 +171814,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [34204] = 18, + [33989] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - ACTIONS(3992), 1, + ACTIONS(3990), 1, anon_sym_bit_DASHand2, - ACTIONS(3994), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHxor2, - ACTIONS(3996), 1, + ACTIONS(3994), 1, anon_sym_bit_DASHor2, - ACTIONS(3998), 1, + ACTIONS(3996), 1, anon_sym_and2, - ACTIONS(4000), 1, + ACTIONS(3998), 1, anon_sym_xor2, - STATE(1710), 1, + STATE(1719), 1, sym_comment, - ACTIONS(3972), 2, + ACTIONS(3970), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3986), 2, + ACTIONS(3984), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3978), 4, + ACTIONS(3976), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3990), 4, + ACTIONS(3988), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3988), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170791,7 +171867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 13, + ACTIONS(2656), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -170805,36 +171881,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [34289] = 12, + [34074] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - STATE(1711), 1, + STATE(1720), 1, sym_comment, - ACTIONS(3972), 2, + ACTIONS(3970), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3986), 2, + ACTIONS(3984), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3978), 4, + ACTIONS(3976), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3988), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170843,7 +171919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 22, + ACTIONS(2656), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -170866,28 +171942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34362] = 9, + [34147] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - STATE(1712), 1, + STATE(1721), 1, sym_comment, - ACTIONS(2650), 2, + ACTIONS(2658), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2648), 36, + ACTIONS(2656), 36, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -170924,41 +172000,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34429] = 13, + [34214] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - STATE(1713), 1, + STATE(1722), 1, sym_comment, - ACTIONS(3972), 2, + ACTIONS(3970), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3986), 2, + ACTIONS(3984), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3978), 4, + ACTIONS(3976), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3990), 4, + ACTIONS(3988), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3988), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170967,7 +172043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 18, + ACTIONS(2656), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -170986,111 +172062,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34504] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3956), 1, - anon_sym_DASH_DASH, - STATE(1714), 1, - sym_comment, - STATE(1984), 1, - aux_sym_decl_def_repeat1, - STATE(2150), 1, - sym__val_number_decimal, - STATE(2188), 1, - sym_long_flag, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(3902), 1, - sym__command_name, - ACTIONS(3633), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3645), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 24, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [34591] = 14, + [34289] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - ACTIONS(3992), 1, + ACTIONS(3990), 1, anon_sym_bit_DASHand2, - STATE(1715), 1, + STATE(1723), 1, sym_comment, - ACTIONS(3972), 2, + ACTIONS(3970), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3986), 2, + ACTIONS(3984), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3978), 4, + ACTIONS(3976), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3990), 4, + ACTIONS(3988), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3988), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -171099,7 +172107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 17, + ACTIONS(2656), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -171117,45 +172125,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34668] = 15, + [34366] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - ACTIONS(3992), 1, + ACTIONS(3990), 1, anon_sym_bit_DASHand2, - ACTIONS(3994), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHxor2, - STATE(1716), 1, + STATE(1724), 1, sym_comment, - ACTIONS(3972), 2, + ACTIONS(3970), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3986), 2, + ACTIONS(3984), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3978), 4, + ACTIONS(3976), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3990), 4, + ACTIONS(3988), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3988), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -171164,7 +172172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 16, + ACTIONS(2656), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -171181,50 +172189,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, + [34445] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(4000), 1, + anon_sym_DOT, + STATE(1725), 1, + sym_comment, + STATE(1937), 1, + sym__immediate_decimal, + ACTIONS(4002), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4004), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2013), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1620), 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, + [34518] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(1726), 1, + sym_comment, + STATE(1971), 1, + sym__immediate_decimal, + ACTIONS(4006), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4008), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(768), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1620), 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, + [34589] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3964), 1, + anon_sym_DASH_DASH, + STATE(1727), 1, + sym_comment, + STATE(1986), 1, + aux_sym_decl_def_repeat1, + STATE(2057), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(3901), 1, + sym__command_name, + ACTIONS(3641), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3643), 24, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [34676] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1653), 1, + sym__unquoted_pattern, + STATE(1728), 1, + sym_comment, + STATE(1999), 1, + sym__immediate_decimal, + ACTIONS(4006), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4008), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1647), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1645), 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, [34747] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3956), 1, + ACTIONS(3964), 1, anon_sym_DASH_DASH, - STATE(1717), 1, + STATE(1729), 1, sym_comment, - STATE(1984), 1, + STATE(1986), 1, aux_sym_decl_def_repeat1, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(2188), 1, + STATE(2168), 1, sym_long_flag, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(3871), 1, + STATE(3891), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171252,47 +172509,47 @@ static const uint16_t ts_small_parse_table[] = { [34834] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3956), 1, + ACTIONS(3964), 1, anon_sym_DASH_DASH, - STATE(1718), 1, + STATE(1730), 1, sym_comment, - STATE(1719), 1, + STATE(1731), 1, aux_sym_decl_def_repeat1, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(2188), 1, + STATE(2168), 1, sym_long_flag, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(3853), 1, + STATE(3951), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171320,47 +172577,47 @@ static const uint16_t ts_small_parse_table[] = { [34921] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3956), 1, + ACTIONS(3964), 1, anon_sym_DASH_DASH, - STATE(1719), 1, + STATE(1731), 1, sym_comment, - STATE(1984), 1, + STATE(1986), 1, aux_sym_decl_def_repeat1, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(2188), 1, + STATE(2168), 1, sym_long_flag, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(3861), 1, + STATE(3955), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171388,47 +172645,170 @@ static const uint16_t ts_small_parse_table[] = { [35008] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3956), 1, + ACTIONS(3964), 1, anon_sym_DASH_DASH, - STATE(1717), 1, + STATE(1732), 1, + sym_comment, + STATE(1986), 1, aux_sym_decl_def_repeat1, - STATE(1720), 1, + STATE(2057), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(3960), 1, + sym__command_name, + ACTIONS(3641), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3643), 24, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [35095] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1624), 1, + anon_sym_DOT, + STATE(1733), 1, + sym_comment, + STATE(2006), 1, + sym__immediate_decimal, + ACTIONS(4002), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4004), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2013), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1620), 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, + [35165] = 17, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + STATE(1734), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(2188), 1, - sym_long_flag, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(3865), 1, + STATE(5381), 1, sym__command_name, - ACTIONS(3633), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3641), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171447,42 +172827,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, - [35095] = 11, + [35247] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1695), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(1721), 1, + STATE(1735), 1, sym_comment, - STATE(2024), 1, + STATE(2080), 1, sym__immediate_decimal, - ACTIONS(4002), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(807), 2, + STATE(768), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 6, + ACTIONS(1622), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1681), 29, + ACTIONS(1620), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -171512,70 +172893,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35165] = 8, + [35317] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4006), 1, - anon_sym_DOT2, - STATE(1722), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1653), 1, + sym__unquoted_pattern, + STATE(1736), 1, sym_comment, - STATE(1756), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1834), 1, - sym_path, - STATE(1872), 1, - sym_cell_path, - ACTIONS(1454), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1456), 38, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_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, + STATE(2083), 1, + sym__immediate_decimal, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1647), 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, - [35229] = 6, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1645), 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, + [35387] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_DOT, - ACTIONS(4010), 1, + ACTIONS(4014), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4016), 1, aux_sym__immediate_decimal_token5, - STATE(1723), 1, + STATE(1737), 1, sym_comment, ACTIONS(747), 8, anon_sym_GT2, @@ -171622,45 +173006,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [35289] = 17, + [35447] = 17, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(2754), 1, + ACTIONS(2732), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, + ACTIONS(2738), 1, anon_sym_COLON2, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1724), 1, + STATE(1738), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(5500), 1, + STATE(4615), 1, sym__command_name, - ACTIONS(3800), 2, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3633), 26, + ACTIONS(3641), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171687,46 +173071,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35371] = 17, - ACTIONS(103), 1, + [35529] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1725), 1, + ACTIONS(4018), 1, + anon_sym_DOT2, + STATE(1739), 1, sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(4365), 1, - sym__command_name, - ACTIONS(3800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3633), 26, + STATE(1783), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1860), 1, + sym_path, + STATE(1900), 1, + sym_cell_path, + ACTIONS(1691), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1689), 38, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171745,43 +173108,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, - [35453] = 11, + 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, + [35593] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1607), 1, + ACTIONS(1608), 1, anon_sym_DOT, - STATE(1726), 1, + STATE(1740), 1, sym_comment, - STATE(1985), 1, + STATE(2012), 1, sym__immediate_decimal, - ACTIONS(3968), 2, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3970), 2, + ACTIONS(4004), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1956), 2, + STATE(2011), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1603), 6, + ACTIONS(1604), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1599), 29, + ACTIONS(1600), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -171811,46 +173186,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35523] = 17, - ACTIONS(103), 1, + [35663] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1727), 1, + ACTIONS(4018), 1, + anon_sym_DOT2, + STATE(1741), 1, sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(4047), 1, - sym__command_name, - ACTIONS(3800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3633), 26, + STATE(1783), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1860), 1, + sym_path, + STATE(1883), 1, + sym_cell_path, + ACTIONS(1442), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1444), 38, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171869,30 +173223,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, - [35605] = 7, + 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, + [35727] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4012), 1, - anon_sym_QMARK2, - ACTIONS(4014), 1, - anon_sym_BANG, - STATE(1728), 1, + ACTIONS(4018), 1, + anon_sym_DOT2, + STATE(1742), 1, sym_comment, - STATE(1847), 1, - sym__path_suffix, - ACTIONS(1442), 4, + STATE(1783), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1860), 1, + sym_path, + STATE(1886), 1, + sym_cell_path, + ACTIONS(1677), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1444), 38, + ACTIONS(1675), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171931,25 +173298,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [35667] = 8, - ACTIONS(3), 1, + [35791] = 17, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4006), 1, - anon_sym_DOT2, - STATE(1729), 1, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + STATE(1743), 1, sym_comment, - STATE(1756), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1834), 1, - sym_path, - STATE(1885), 1, - sym_cell_path, - ACTIONS(1655), 3, + STATE(2057), 1, + sym__val_number_decimal, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(4023), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3641), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1653), 38, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171968,33 +173356,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [35731] = 6, + [35873] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4016), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4018), 1, + ACTIONS(4020), 1, + anon_sym_DOT, + ACTIONS(4022), 1, aux_sym__immediate_decimal_token5, - STATE(1730), 1, + STATE(1744), 1, sym_comment, ACTIONS(739), 8, anon_sym_GT2, @@ -172041,24 +173417,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [35791] = 8, + [35933] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4006), 1, - anon_sym_DOT2, - STATE(1731), 1, + ACTIONS(4024), 1, + anon_sym_QMARK2, + ACTIONS(4026), 1, + anon_sym_BANG, + STATE(1745), 1, sym_comment, - STATE(1756), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1834), 1, - sym_path, - STATE(1889), 1, - sym_cell_path, - ACTIONS(1649), 3, + STATE(1866), 1, + sym__path_suffix, + ACTIONS(1448), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1647), 38, + anon_sym_DOT2, + ACTIONS(1450), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172097,97 +173472,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [35855] = 11, + [35995] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - anon_sym_DOT, - STATE(1732), 1, + ACTIONS(4028), 1, + anon_sym_DOT2, + STATE(1860), 1, + sym_path, + STATE(1746), 2, sym_comment, - STATE(1977), 1, - sym__immediate_decimal, - ACTIONS(3968), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3970), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1986), 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, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1536), 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, - [35925] = 11, + ACTIONS(1538), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [36054] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1637), 1, - sym__unquoted_pattern, - STATE(1733), 1, + ACTIONS(4031), 1, + aux_sym__immediate_decimal_token5, + STATE(1747), 1, sym_comment, - STATE(2022), 1, - sym__immediate_decimal, - ACTIONS(4002), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(788), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(775), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 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, @@ -172206,6 +173564,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, @@ -172215,34 +173574,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35995] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36111] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3958), 1, - sym__newline, - ACTIONS(4024), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(4026), 1, + ACTIONS(3868), 1, anon_sym_oneof, - STATE(1734), 1, + ACTIONS(3966), 1, + sym__newline, + STATE(1748), 1, sym_comment, - STATE(1780), 1, + STATE(1850), 1, + aux_sym__types_body_repeat3, + STATE(1988), 1, aux_sym__types_body_repeat1, - STATE(1871), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4703), 1, - sym__all_type, - STATE(5472), 1, - sym__composite_argument_body, - ACTIONS(4022), 2, + STATE(4693), 1, + sym__one_type, + STATE(5257), 1, + sym__type_annotation, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(4685), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4020), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -172274,34 +173636,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36066] = 10, + [36182] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - STATE(966), 1, + STATE(972), 1, sym__immediate_decimal, - STATE(1735), 1, + STATE(1749), 1, sym_comment, - ACTIONS(4002), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(788), 2, + STATE(768), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1622), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(1620), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -172331,12 +173693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36133] = 5, + [36249] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4010), 1, + ACTIONS(4033), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4035), 1, aux_sym__immediate_decimal_token5, - STATE(1736), 1, + STATE(1750), 1, sym_comment, ACTIONS(747), 8, anon_sym_GT2, @@ -172347,11 +173711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 35, + 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, @@ -172383,75 +173746,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36190] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(944), 1, - sym__immediate_decimal, - STATE(1737), 1, - sym_comment, - ACTIONS(4002), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1683), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1681), 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, - [36257] = 4, + [36308] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1738), 1, + ACTIONS(4037), 1, + anon_sym_DOT2, + STATE(1751), 1, sym_comment, - ACTIONS(1508), 4, + STATE(1792), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1893), 1, + sym_path, + STATE(1911), 1, + sym_cell_path, + ACTIONS(1691), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1510), 40, + ACTIONS(1689), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172479,8 +173793,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, @@ -172489,28 +173801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [36312] = 8, + [36371] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4028), 1, - anon_sym_DOT2, - STATE(1739), 1, + STATE(1752), 1, sym_comment, - STATE(1782), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1891), 1, - sym_path, - STATE(1927), 1, - sym_cell_path, - ACTIONS(1454), 3, + ACTIONS(1468), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1456), 37, + anon_sym_DOT2, + ACTIONS(1470), 40, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172538,6 +173840,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, @@ -172546,18 +173850,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36375] = 4, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [36426] = 16, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1740), 1, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + STATE(1753), 1, sym_comment, - ACTIONS(1512), 4, + STATE(2057), 1, + sym__val_number_decimal, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(5394), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3641), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1514), 40, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172576,57 +173908,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [36430] = 10, + [36505] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(784), 1, - sym__immediate_decimal, - STATE(1741), 1, + ACTIONS(4022), 1, + aux_sym__immediate_decimal_token5, + STATE(1754), 1, sym_comment, - ACTIONS(4002), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(783), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 6, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1599), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 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, @@ -172645,6 +173954,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, @@ -172654,18 +173964,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36497] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36562] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1742), 1, + ACTIONS(4039), 1, + anon_sym_QMARK2, + ACTIONS(4041), 1, + anon_sym_BANG, + STATE(1755), 1, sym_comment, - ACTIONS(1520), 4, + STATE(1899), 1, + sym__path_suffix, + ACTIONS(1448), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1522), 40, + ACTIONS(1450), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172693,8 +174013,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, @@ -172703,346 +174021,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [36552] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1743), 1, - sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(5500), 1, - sym__command_name, - ACTIONS(3800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3633), 26, - 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_finally, - 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, - [36631] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1744), 1, - sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(4365), 1, - sym__command_name, - ACTIONS(3800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3633), 26, - 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_finally, - 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, - [36710] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1745), 1, - sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(4047), 1, - sym__command_name, - ACTIONS(3800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3633), 26, - 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_finally, - 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, - [36789] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1746), 1, - sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(5353), 1, - sym__command_name, - ACTIONS(3800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3633), 26, - 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_finally, - 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, - [36868] = 10, + [36623] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(802), 1, - sym__immediate_decimal, - STATE(1747), 1, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + aux_sym__immediate_decimal_token5, + STATE(1756), 1, sym_comment, - ACTIONS(4002), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(801), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1679), 6, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1677), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 34, 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, - [36935] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(804), 1, - sym__immediate_decimal, - STATE(1748), 1, - sym_comment, - ACTIONS(4002), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(803), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1661), 6, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1659), 29, - anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -173062,63 +174061,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, - [37002] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(806), 1, - sym__immediate_decimal, - STATE(1749), 1, - sym_comment, - ACTIONS(4002), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(805), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1669), 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, @@ -173128,17 +174071,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [37069] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36682] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1750), 1, + STATE(1757), 1, sym_comment, - ACTIONS(1528), 4, + ACTIONS(1522), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1530), 40, + ACTIONS(1524), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173179,18 +174125,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37124] = 4, + [36737] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1751), 1, + ACTIONS(4037), 1, + anon_sym_DOT2, + STATE(1758), 1, sym_comment, - ACTIONS(1500), 4, + STATE(1792), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1893), 1, + sym_path, + STATE(1919), 1, + sym_cell_path, + ACTIONS(1442), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1502), 40, + ACTIONS(1444), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173218,8 +174172,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, @@ -173228,19 +174180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37179] = 4, + [36800] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1752), 1, + STATE(1759), 1, sym_comment, - ACTIONS(1504), 4, + ACTIONS(1530), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1506), 40, + ACTIONS(1532), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173281,23 +174231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37234] = 6, + [36855] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4030), 1, - anon_sym_DOT, - ACTIONS(4032), 1, - aux_sym__immediate_decimal_token5, - STATE(1753), 1, + STATE(1760), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(1472), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 36, + anon_sym_DOT2, + ACTIONS(1474), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173323,100 +174267,39 @@ 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, - [37293] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1754), 1, - sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(4482), 1, - sym__command_name, - ACTIONS(3800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3633), 26, - 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_finally, - 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, - [37372] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [36910] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4028), 1, - anon_sym_DOT2, - STATE(1755), 1, + ACTIONS(4047), 1, + anon_sym_DOT, + ACTIONS(4049), 1, + aux_sym__immediate_decimal_token5, + STATE(1761), 1, sym_comment, - STATE(1782), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1891), 1, - sym_path, - STATE(1915), 1, - sym_cell_path, - ACTIONS(1649), 3, + ACTIONS(739), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1647), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 36, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173441,33 +174324,28 @@ 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, - [37435] = 7, + [36969] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4006), 1, - anon_sym_DOT2, - STATE(1756), 1, + STATE(1762), 1, sym_comment, - STATE(1775), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1834), 1, - sym_path, - ACTIONS(1524), 3, + ACTIONS(1480), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 38, + anon_sym_DOT2, + ACTIONS(1482), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173506,27 +174384,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37496] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [37024] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4034), 1, - aux_sym__immediate_decimal_token5, - STATE(1757), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(980), 1, + sym__immediate_decimal, + STATE(1763), 1, sym_comment, - ACTIONS(767), 8, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1647), 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(769), 35, + ACTIONS(1645), 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, @@ -173545,7 +174434,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, @@ -173555,19 +174443,16 @@ 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, - [37553] = 6, + [37091] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4036), 1, + ACTIONS(4051), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4038), 1, + ACTIONS(4053), 1, aux_sym__immediate_decimal_token5, - STATE(1758), 1, + STATE(1764), 1, sym_comment, - ACTIONS(739), 7, + ACTIONS(747), 7, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -173575,7 +174460,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(749), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173611,7 +174496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37612] = 17, + [37150] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -173622,35 +174507,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3769), 1, + ACTIONS(3791), 1, aux_sym_cmd_identifier_token1, - STATE(1759), 1, + STATE(1765), 1, sym_comment, - STATE(1760), 1, + STATE(1786), 1, aux_sym__command_list_body_repeat1, - STATE(2120), 1, + STATE(2121), 1, sym__val_number_decimal, - STATE(4722), 1, + STATE(4729), 1, sym__command_name, - STATE(5054), 1, + STATE(4999), 1, sym_cmd_identifier, - STATE(5055), 1, + STATE(5002), 1, sym_val_string, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, + ACTIONS(3787), 2, anon_sym_export, anon_sym_in, - STATE(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3767), 24, + ACTIONS(3789), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173675,45 +174560,171 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37693] = 16, + [37231] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4046), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4055), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(4058), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(4061), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(4064), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - STATE(2120), 1, + ACTIONS(3791), 1, + aux_sym_cmd_identifier_token1, + STATE(1766), 1, + sym_comment, + STATE(1786), 1, + aux_sym__command_list_body_repeat1, + STATE(2121), 1, sym__val_number_decimal, - STATE(4977), 1, + STATE(4825), 1, sym__command_name, - STATE(5054), 1, + STATE(4999), 1, sym_cmd_identifier, - STATE(5055), 1, + STATE(5002), 1, sym_val_string, - ACTIONS(4040), 2, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3787), 2, anon_sym_export, anon_sym_in, - ACTIONS(4049), 2, + STATE(3780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3789), 24, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [37312] = 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, + sym_raw_string_begin, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3673), 1, + aux_sym_cmd_identifier_token1, + STATE(1767), 1, + sym_comment, + STATE(2023), 1, + sym__val_number_decimal, + STATE(4303), 1, + sym__command_name, + STATE(4474), 1, + sym_cmd_identifier, + STATE(4478), 1, + sym_val_string, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4052), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1760), 2, + STATE(505), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3669), 26, + 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_finally, + 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, + [37391] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + STATE(1768), 1, sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3725), 4, + STATE(2057), 1, + sym__val_number_decimal, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(4652), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4043), 24, + ACTIONS(3641), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173732,39 +174743,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, - [37772] = 11, + [37470] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1806), 1, sym__unquoted_pattern, - ACTIONS(4067), 1, + ACTIONS(4055), 1, anon_sym_DOT_DOT2, - ACTIONS(4071), 1, + ACTIONS(4059), 1, sym_filesize_unit, - ACTIONS(4073), 1, + ACTIONS(4061), 1, sym_duration_unit, - STATE(1761), 1, + STATE(1769), 1, sym_comment, - STATE(5072), 1, + STATE(5075), 1, sym__expr_parenthesized_immediate, - ACTIONS(4069), 2, + ACTIONS(4057), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(847), 5, + ACTIONS(785), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + ACTIONS(884), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -173796,26 +174808,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [37841] = 8, - ACTIONS(3), 1, + [37539] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4028), 1, - anon_sym_DOT2, - STATE(1762), 1, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + STATE(1770), 1, sym_comment, - STATE(1782), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1891), 1, - sym_path, - STATE(1905), 1, - sym_cell_path, - ACTIONS(1655), 3, + STATE(2057), 1, + sym__val_number_decimal, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(5381), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3641), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1653), 37, - sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173834,42 +174864,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, + [37618] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(765), 1, + sym__immediate_decimal, + STATE(1771), 1, + sym_comment, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(764), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1604), 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_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1600), 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, + [37685] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, anon_sym_DQUOTE, + ACTIONS(1760), 1, anon_sym_SQUOTE, + ACTIONS(1762), 1, anon_sym_BQUOTE, - [37904] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4075), 1, - anon_sym_QMARK2, - ACTIONS(4077), 1, - anon_sym_BANG, - STATE(1763), 1, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + STATE(1772), 1, sym_comment, - STATE(1865), 1, - sym__path_suffix, - ACTIONS(1442), 4, + STATE(2057), 1, + sym__val_number_decimal, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(4615), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3641), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1444), 37, - sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173888,51 +174984,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, - [37965] = 12, + [37764] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym__newline, - ACTIONS(4024), 1, + ACTIONS(4067), 1, anon_sym_list, - ACTIONS(4026), 1, + ACTIONS(4069), 1, anon_sym_oneof, - STATE(1764), 1, + STATE(1773), 1, sym_comment, - STATE(1780), 1, + STATE(1821), 1, aux_sym__types_body_repeat1, - STATE(1871), 1, + STATE(1896), 1, aux_sym__composite_argument_body_repeat1, - STATE(4703), 1, + STATE(4877), 1, sym__all_type, - STATE(5274), 1, + STATE(5388), 1, sym__composite_argument_body, - ACTIONS(4022), 2, + ACTIONS(4065), 2, anon_sym_table, anon_sym_record, - STATE(4685), 4, + STATE(4718), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4020), 31, + ACTIONS(4063), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173964,43 +175050,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38036] = 16, - ACTIONS(91), 1, + [37835] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + STATE(1774), 1, + sym_comment, + STATE(2057), 1, + sym__val_number_decimal, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(4023), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3641), 26, + 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_finally, + 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, + [37914] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4037), 1, + anon_sym_DOT2, + STATE(1775), 1, + sym_comment, + STATE(1792), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1893), 1, + sym_path, + STATE(1945), 1, + sym_cell_path, + ACTIONS(1677), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1675), 37, + 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_finally, + anon_sym_match, + anon_sym_true, + anon_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, - ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, anon_sym_BQUOTE, + [37977] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(786), 1, + sym__immediate_decimal, + STATE(1776), 1, + sym_comment, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(785), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1671), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1669), 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, + [38044] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(802), 1, + sym__immediate_decimal, + STATE(1777), 1, + sym_comment, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(801), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1683), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1681), 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, + [38111] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(804), 1, + sym__immediate_decimal, + STATE(1778), 1, + sym_comment, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(803), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1687), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1685), 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, + [38178] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(2822), 1, + ACTIONS(2933), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3669), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1765), 1, + STATE(1779), 1, sym_comment, - STATE(2018), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(4216), 1, - sym__command_name, - STATE(4376), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(4379), 1, + STATE(3791), 1, sym_val_string, - ACTIONS(3800), 2, + STATE(5220), 1, + sym__command_name, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(502), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3665), 26, + ACTIONS(3641), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -174027,34 +175402,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38115] = 12, + [38257] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym__newline, - ACTIONS(4024), 1, + ACTIONS(4067), 1, anon_sym_list, - ACTIONS(4026), 1, + ACTIONS(4069), 1, anon_sym_oneof, - STATE(1766), 1, - sym_comment, STATE(1780), 1, + sym_comment, + STATE(1821), 1, aux_sym__types_body_repeat1, - STATE(1871), 1, + STATE(1896), 1, aux_sym__composite_argument_body_repeat1, - STATE(4703), 1, + STATE(4877), 1, sym__all_type, - STATE(5247), 1, + STATE(5330), 1, sym__composite_argument_body, - ACTIONS(4022), 2, + ACTIONS(4065), 2, anon_sym_table, anon_sym_record, - STATE(4685), 4, + STATE(4718), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4020), 31, + ACTIONS(4063), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174086,43 +175461,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38186] = 16, + [38328] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(2822), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1767), 1, + STATE(1781), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(5473), 1, + STATE(5244), 1, sym__command_name, - ACTIONS(3800), 2, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3633), 26, + ACTIONS(3641), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -174149,43 +175524,156 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38265] = 16, + [38407] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3966), 1, + sym__newline, + ACTIONS(4067), 1, + anon_sym_list, + ACTIONS(4069), 1, + anon_sym_oneof, + STATE(1782), 1, + sym_comment, + STATE(1821), 1, + aux_sym__types_body_repeat1, + STATE(1896), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4877), 1, + sym__all_type, + STATE(5409), 1, + sym__composite_argument_body, + ACTIONS(4065), 2, + anon_sym_table, + anon_sym_record, + STATE(4718), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4063), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [38478] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4018), 1, + anon_sym_DOT2, + STATE(1746), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1783), 1, + sym_comment, + STATE(1860), 1, + sym_path, + ACTIONS(1526), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1528), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [38539] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1768), 1, + STATE(1784), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(5337), 1, + STATE(5158), 1, sym__command_name, - ACTIONS(3800), 2, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3633), 26, + ACTIONS(3641), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -174212,34 +175700,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38344] = 12, + [38618] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym__newline, - ACTIONS(4024), 1, + ACTIONS(4067), 1, anon_sym_list, - ACTIONS(4026), 1, + ACTIONS(4069), 1, anon_sym_oneof, - STATE(1769), 1, + STATE(1785), 1, sym_comment, - STATE(1780), 1, + STATE(1821), 1, aux_sym__types_body_repeat1, - STATE(1871), 1, + STATE(1896), 1, aux_sym__composite_argument_body_repeat1, - STATE(4703), 1, + STATE(4877), 1, sym__all_type, - STATE(5466), 1, + STATE(5480), 1, sym__composite_argument_body, - ACTIONS(4022), 2, + ACTIONS(4065), 2, anon_sym_table, anon_sym_record, - STATE(4685), 4, + STATE(4718), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4020), 31, + ACTIONS(4063), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174271,43 +175759,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38415] = 16, + [38689] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4077), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4086), 1, + anon_sym_DQUOTE, + ACTIONS(4089), 1, + anon_sym_SQUOTE, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4095), 1, + sym_raw_string_begin, + STATE(2121), 1, + sym__val_number_decimal, + STATE(4999), 1, + sym_cmd_identifier, + STATE(5002), 1, + sym_val_string, + STATE(5046), 1, + sym__command_name, + ACTIONS(4071), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4080), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4083), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1786), 2, + sym_comment, + aux_sym__command_list_body_repeat1, + STATE(3780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4074), 24, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38768] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1770), 1, + STATE(1787), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(5321), 1, + STATE(5248), 1, sym__command_name, - ACTIONS(3800), 2, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3633), 26, + ACTIONS(3641), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -174334,46 +175885,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38494] = 17, + [38847] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1788), 1, + sym_comment, + ACTIONS(1516), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1518), 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_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [38902] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3769), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1760), 1, - aux_sym__command_list_body_repeat1, - STATE(1771), 1, + STATE(1789), 1, sym_comment, - STATE(2120), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(4793), 1, - sym__command_name, - STATE(5054), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(5055), 1, + STATE(3791), 1, sym_val_string, - ACTIONS(3645), 2, + STATE(4393), 1, + sym__command_name, + ACTIONS(3641), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, - anon_sym_export, - anon_sym_in, - STATE(3725), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3767), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174398,28 +175998,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38575] = 6, + [38980] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(4098), 1, + anon_sym_GT2, + ACTIONS(4100), 1, + anon_sym_AT2, + STATE(1790), 1, + sym_comment, + STATE(4876), 1, + sym__all_type, + STATE(5334), 1, + sym_param_completer, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(5012), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [39048] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4079), 1, + ACTIONS(4102), 1, anon_sym_DOT, - ACTIONS(4081), 1, + ACTIONS(4104), 1, aux_sym__immediate_decimal_token5, - STATE(1772), 1, + STATE(1791), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(1786), 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), 34, + ACTIONS(1784), 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, @@ -174450,45 +176107,24 @@ 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, - [38634] = 16, - ACTIONS(103), 1, + [39106] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1773), 1, + ACTIONS(4037), 1, + anon_sym_DOT2, + STATE(1792), 1, sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(5232), 1, - sym__command_name, - ACTIONS(3800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3802), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3633), 26, + STATE(1793), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1893), 1, + sym_path, + ACTIONS(1526), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1528), 37, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174507,82 +176143,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, - [38713] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4083), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4085), 1, - aux_sym__immediate_decimal_token5, - STATE(1774), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, 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, - [38772] = 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, + [39166] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4087), 1, + ACTIONS(4106), 1, anon_sym_DOT2, - STATE(1834), 1, + STATE(1893), 1, sym_path, - STATE(1775), 2, + STATE(1793), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1532), 3, + ACTIONS(1536), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1534), 38, + ACTIONS(1538), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174610,8 +176204,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, @@ -174620,103 +176212,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [38831] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(3958), 1, - sym__newline, - STATE(1776), 1, - sym_comment, - STATE(1843), 1, - aux_sym__types_body_repeat3, - STATE(1995), 1, - aux_sym__types_body_repeat1, - STATE(4889), 1, - sym__one_type, - STATE(5241), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [38902] = 16, + [39224] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1777), 1, + STATE(1794), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(5158), 1, + STATE(5487), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174741,198 +176274,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38980] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4090), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4092), 1, - aux_sym__immediate_decimal_token5, - STATE(1778), 1, - sym_comment, - ACTIONS(1732), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 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, - [39038] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(4094), 1, - anon_sym_GT2, - ACTIONS(4096), 1, - anon_sym_AT2, - STATE(1779), 1, - sym_comment, - STATE(4693), 1, - sym__all_type, - STATE(5101), 1, - sym_param_completer, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(4956), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [39106] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3958), 1, - sym__newline, - ACTIONS(4024), 1, - anon_sym_list, - ACTIONS(4026), 1, - anon_sym_oneof, - STATE(1780), 1, - sym_comment, - STATE(1873), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1995), 1, - aux_sym__types_body_repeat1, - STATE(4813), 1, - sym__all_type, - ACTIONS(4022), 2, - anon_sym_table, - anon_sym_record, - STATE(4685), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4020), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [39174] = 11, + [39302] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AT2, - ACTIONS(4098), 1, + ACTIONS(4109), 1, anon_sym_GT2, - STATE(1781), 1, + STATE(1795), 1, sym_comment, - STATE(4891), 1, + STATE(4722), 1, sym__all_type, - STATE(5471), 1, + STATE(5327), 1, sym_param_completer, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(4956), 4, + STATE(5012), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174964,24 +176331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39242] = 7, + [39370] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4028), 1, - anon_sym_DOT2, - STATE(1782), 1, + ACTIONS(4049), 1, + aux_sym__immediate_decimal_token5, + STATE(1796), 1, sym_comment, - STATE(1784), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1891), 1, - sym_path, - ACTIONS(1524), 3, + ACTIONS(739), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 36, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175006,55 +176371,55 @@ 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, - [39302] = 16, + [39426] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1783), 1, + STATE(1797), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(4480), 1, + STATE(4377), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175079,85 +176444,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39380] = 6, + [39504] = 11, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, ACTIONS(4100), 1, - anon_sym_DOT2, - STATE(1891), 1, - sym_path, - STATE(1784), 2, + anon_sym_AT2, + ACTIONS(4111), 1, + anon_sym_GT2, + STATE(1798), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1532), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1534), 37, - 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_finally, - anon_sym_match, - anon_sym_true, - anon_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, - [39438] = 11, + STATE(4753), 1, + sym__all_type, + STATE(5478), 1, + sym_param_completer, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(5012), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [39572] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1806), 1, sym__unquoted_pattern, - ACTIONS(4103), 1, + ACTIONS(4113), 1, anon_sym_DOT_DOT2, - ACTIONS(4107), 1, + ACTIONS(4117), 1, sym_filesize_unit, - ACTIONS(4109), 1, + ACTIONS(4119), 1, sym_duration_unit, - STATE(1785), 1, + STATE(1799), 1, sym_comment, - STATE(5072), 1, + STATE(5075), 1, sym__expr_parenthesized_immediate, - ACTIONS(4105), 2, + ACTIONS(4115), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(847), 5, + ACTIONS(785), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 30, + ACTIONS(884), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -175188,101 +176558,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [39506] = 11, + [39640] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3888), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - STATE(1786), 1, + ACTIONS(4121), 1, + aux_sym__immediate_decimal_token5, + STATE(1800), 1, sym_comment, - STATE(5124), 1, - sym__one_type, - STATE(5165), 1, - sym__type_annotation, - STATE(5205), 1, - sym__multiple_types, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [39574] = 16, + ACTIONS(775), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 34, + anon_sym_in, + 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, + [39696] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1787), 1, + STATE(1801), 1, sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(4531), 1, - sym__command_name, - ACTIONS(3633), 2, + ACTIONS(1522), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3645), 2, + anon_sym_DOT2, + ACTIONS(1524), 39, + 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_finally, + anon_sym_match, + anon_sym_true, + anon_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(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 24, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [39750] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1802), 1, + sym_comment, + ACTIONS(1530), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1532), 39, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175307,44 +176696,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39652] = 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, + [39804] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1788), 1, + STATE(1803), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(5189), 1, + STATE(5500), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175369,24 +176771,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39730] = 6, + [39882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4111), 1, - anon_sym_DOT, - ACTIONS(4113), 1, - aux_sym__immediate_decimal_token5, - STATE(1789), 1, + STATE(1804), 1, sym_comment, - ACTIONS(1792), 7, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1790), 34, + ACTIONS(777), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175421,21 +176820,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [39788] = 4, + sym_duration_unit, + [39936] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1790), 1, + ACTIONS(4123), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4125), 1, + aux_sym__immediate_decimal_token5, + STATE(1805), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(1732), 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), 35, + ACTIONS(1730), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175470,20 +176873,44 @@ 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, - [39842] = 4, + [39994] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1791), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3673), 1, + aux_sym_cmd_identifier_token1, + STATE(1806), 1, sym_comment, - ACTIONS(1504), 4, + STATE(2023), 1, + sym__val_number_decimal, + STATE(4207), 1, + sym__command_name, + STATE(4474), 1, + sym_cmd_identifier, + STATE(4478), 1, + sym_val_string, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3669), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1506), 39, - sym_raw_string_begin, - ts_builtin_sym_end, + STATE(505), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3671), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175508,32 +176935,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, + [40072] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1758), 1, anon_sym_DQUOTE, + ACTIONS(1760), 1, anon_sym_SQUOTE, + ACTIONS(1762), 1, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39896] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1792), 1, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + STATE(1807), 1, sym_comment, - ACTIONS(1508), 4, + STATE(2057), 1, + sym__val_number_decimal, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(4559), 1, + sym__command_name, + ACTIONS(3641), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1510), 39, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175558,32 +176997,20 @@ 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, - [39950] = 4, + [40150] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1793), 1, + ACTIONS(4127), 1, + anon_sym_BANG, + STATE(1808), 1, sym_comment, - ACTIONS(1500), 4, + ACTIONS(1462), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1502), 39, + ACTIONS(1464), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175611,6 +177038,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, @@ -175619,21 +177048,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40004] = 4, + [40206] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1794), 1, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(4100), 1, + anon_sym_AT2, + ACTIONS(4129), 1, + anon_sym_GT2, + STATE(1809), 1, sym_comment, - ACTIONS(1512), 4, + STATE(4688), 1, + sym__all_type, + STATE(5406), 1, + sym_param_completer, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(5012), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [40274] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4127), 1, + anon_sym_QMARK2, + STATE(1810), 1, + sym_comment, + ACTIONS(1462), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1514), 39, + ACTIONS(1464), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175661,6 +177146,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, @@ -175669,19 +177156,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40058] = 4, + [40330] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1795), 1, + STATE(1811), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1516), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1522), 39, + ACTIONS(1518), 39, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -175721,106 +177206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [40112] = 16, + [40384] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1796), 1, + STATE(1812), 1, sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(5327), 1, - sym__command_name, - ACTIONS(3633), 2, + ACTIONS(1468), 4, anon_sym_export, - anon_sym_in, - ACTIONS(3645), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 24, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [40190] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - STATE(1797), 1, - sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(4426), 1, - sym__command_name, - ACTIONS(3633), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3645), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 24, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1470), 39, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175845,20 +177243,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40268] = 5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40438] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4115), 1, - anon_sym_QMARK2, - STATE(1798), 1, + STATE(1813), 1, sym_comment, - ACTIONS(1460), 4, + ACTIONS(1472), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1462), 38, + ACTIONS(1474), 39, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175886,8 +177296,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, @@ -175896,44 +177304,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40324] = 16, + anon_sym_QMARK2, + anon_sym_BANG, + [40492] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1799), 1, + STATE(1814), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(4576), 1, + STATE(5297), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175958,32 +177368,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40402] = 11, + [40570] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4096), 1, - anon_sym_AT2, - ACTIONS(4117), 1, - anon_sym_GT2, - STATE(1800), 1, + STATE(1815), 1, sym_comment, - STATE(4702), 1, - sym__all_type, - STATE(5465), 1, - sym_param_completer, - ACTIONS(3892), 2, + STATE(5335), 1, + sym__one_type, + STATE(5338), 1, + sym__multiple_types, + STATE(5363), 1, + sym__type_annotation, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(4956), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176015,143 +177425,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40470] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(3637), 1, - aux_sym_cmd_identifier_token1, - STATE(1801), 1, - sym_comment, - STATE(2150), 1, - sym__val_number_decimal, - STATE(3755), 1, - sym_cmd_identifier, - STATE(3763), 1, - sym_val_string, - STATE(4082), 1, - sym__command_name, - ACTIONS(3633), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3645), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 24, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [40548] = 16, + [40638] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1802), 1, + STATE(1816), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(5367), 1, + STATE(5135), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [40626] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1803), 1, - sym_comment, - ACTIONS(1528), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1530), 39, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176176,25 +177487,12 @@ 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, - [40680] = 4, + [40716] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1804), 1, + STATE(1817), 1, sym_comment, - ACTIONS(767), 8, + ACTIONS(866), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176203,7 +177501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(769), 35, + ACTIONS(868), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -176239,95 +177537,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [40734] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4115), 1, - anon_sym_BANG, - STATE(1805), 1, - sym_comment, - ACTIONS(1460), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1462), 38, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_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, - [40790] = 16, + [40770] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1806), 1, + STATE(1818), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(5370), 1, + STATE(5320), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176352,14 +177599,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40868] = 5, + [40848] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4045), 1, aux_sym__immediate_decimal_token5, - STATE(1807), 1, + STATE(1819), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176368,7 +177615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(741), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176403,21 +177650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [40924] = 5, + [40904] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4119), 1, + ACTIONS(4131), 1, aux_sym__immediate_decimal_token5, - STATE(1808), 1, + STATE(1820), 1, sym_comment, - ACTIONS(767), 6, + ACTIONS(775), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT_DOT2, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(769), 36, + ACTIONS(777), 36, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176454,73 +177701,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40980] = 5, + [40960] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4121), 1, - aux_sym__immediate_decimal_token5, - STATE(1809), 1, + ACTIONS(3966), 1, + sym__newline, + ACTIONS(4067), 1, + anon_sym_list, + ACTIONS(4069), 1, + anon_sym_oneof, + STATE(1821), 1, sym_comment, - ACTIONS(767), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(769), 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, - [41036] = 5, + STATE(1902), 1, + aux_sym__composite_argument_body_repeat1, + STATE(1988), 1, + aux_sym__types_body_repeat1, + STATE(4873), 1, + sym__all_type, + ACTIONS(4065), 2, + anon_sym_table, + anon_sym_record, + STATE(4718), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4063), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41028] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4032), 1, - aux_sym__immediate_decimal_token5, - STATE(1810), 1, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + STATE(1822), 1, sym_comment, - ACTIONS(747), 6, + STATE(2057), 1, + sym__val_number_decimal, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(4034), 1, + sym__command_name, + ACTIONS(3641), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 36, - sym_raw_string_begin, + ACTIONS(3653), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3655), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176545,55 +177820,106 @@ 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, + [41106] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(3645), 1, + aux_sym_cmd_identifier_token1, + STATE(1823), 1, + sym_comment, + STATE(2057), 1, + sym__val_number_decimal, + STATE(3753), 1, + sym_cmd_identifier, + STATE(3791), 1, + sym_val_string, + STATE(5259), 1, + sym__command_name, + ACTIONS(3641), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3655), 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, - [41092] = 16, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3643), 24, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [41184] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(1774), 1, + ACTIONS(1760), 1, anon_sym_SQUOTE, - ACTIONS(1776), 1, + ACTIONS(1762), 1, anon_sym_BQUOTE, - ACTIONS(1778), 1, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(3637), 1, + ACTIONS(3645), 1, aux_sym_cmd_identifier_token1, - STATE(1811), 1, + STATE(1824), 1, sym_comment, - STATE(2150), 1, + STATE(2057), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3753), 1, sym_cmd_identifier, - STATE(3763), 1, + STATE(3791), 1, sym_val_string, - STATE(5243), 1, + STATE(4462), 1, sym__command_name, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_export, anon_sym_in, - ACTIONS(3645), 2, + ACTIONS(3653), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, + ACTIONS(3655), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2274), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 24, + ACTIONS(3643), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176618,69 +177944,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41170] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(4096), 1, - anon_sym_AT2, - ACTIONS(4123), 1, - anon_sym_GT2, - STATE(1812), 1, - sym_comment, - STATE(4887), 1, - sym__all_type, - STATE(5389), 1, - sym_param_completer, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(4956), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41238] = 4, + [41262] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1813), 1, + STATE(1825), 1, sym_comment, - ACTIONS(863), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176689,7 +177958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(865), 35, + ACTIONS(749), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -176725,44 +177994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [41292] = 16, + [41316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - STATE(1814), 1, + STATE(1826), 1, sym_comment, - STATE(2018), 1, - sym__val_number_decimal, - STATE(4297), 1, - sym__command_name, - STATE(4376), 1, - sym_cmd_identifier, - STATE(4379), 1, - sym_val_string, - ACTIONS(3645), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + ACTIONS(1480), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(502), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 24, + anon_sym_DOT2, + ACTIONS(1482), 39, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176787,30 +178031,43 @@ 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, [41370] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - ACTIONS(4131), 1, + ACTIONS(4139), 1, anon_sym_list, - ACTIONS(4133), 1, + ACTIONS(4141), 1, anon_sym_oneof, - STATE(1815), 1, + STATE(1827), 1, sym_comment, STATE(1863), 1, aux_sym__repeat_newline, - STATE(2910), 1, + STATE(3111), 1, sym__type_annotation, - ACTIONS(4129), 2, + ACTIONS(4137), 2, anon_sym_table, anon_sym_record, - STATE(3127), 4, + STATE(3077), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4127), 31, + ACTIONS(4135), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176842,19 +178099,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41435] = 4, + [41435] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + ACTIONS(4133), 1, + sym__newline, + STATE(1828), 1, + sym_comment, + STATE(1842), 1, + aux_sym__repeat_newline, + STATE(4889), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41500] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1829), 1, + sym_comment, + ACTIONS(4143), 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, + [41551] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1830), 1, sym_comment, - ACTIONS(863), 6, + ACTIONS(775), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT_DOT2, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(865), 36, + ACTIONS(777), 36, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176891,25 +178251,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41488] = 10, + [41604] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, ACTIONS(4139), 1, anon_sym_list, ACTIONS(4141), 1, anon_sym_oneof, - STATE(1817), 1, + STATE(1831), 1, sym_comment, - STATE(2031), 1, + STATE(2032), 1, aux_sym__repeat_newline, - STATE(3182), 1, + STATE(2932), 1, sym__type_annotation, ACTIONS(4137), 2, anon_sym_table, anon_sym_record, - STATE(3299), 4, + STATE(3077), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -176946,30 +178306,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41553] = 10, + [41669] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - ACTIONS(4139), 1, + ACTIONS(4149), 1, anon_sym_list, - ACTIONS(4141), 1, + ACTIONS(4151), 1, anon_sym_oneof, - STATE(1818), 1, + STATE(1832), 1, sym_comment, - STATE(1825), 1, + STATE(2032), 1, aux_sym__repeat_newline, - STATE(3204), 1, + STATE(3081), 1, sym__type_annotation, - ACTIONS(4137), 2, + ACTIONS(4147), 2, anon_sym_table, anon_sym_record, - STATE(3299), 4, + STATE(3285), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(4145), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177001,17 +178361,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41618] = 3, + [41734] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1819), 1, - sym_comment, - ACTIONS(4143), 42, + ACTIONS(4133), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(4149), 1, + anon_sym_list, + ACTIONS(4151), 1, + anon_sym_oneof, + STATE(1833), 1, + sym_comment, + STATE(1837), 1, + aux_sym__repeat_newline, + STATE(3208), 1, + sym__type_annotation, + ACTIONS(4147), 2, + anon_sym_table, + anon_sym_record, + STATE(3285), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4145), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177041,29 +178414,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [41669] = 5, + [41799] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4145), 1, - anon_sym_BANG, - STATE(1820), 1, + ACTIONS(4153), 1, + anon_sym_DOT_DOT2, + ACTIONS(4157), 1, + sym_filesize_unit, + ACTIONS(4159), 1, + sym_duration_unit, + ACTIONS(4161), 1, + sym__unquoted_pattern, + STATE(1834), 1, sym_comment, - ACTIONS(1460), 4, + ACTIONS(4155), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(785), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1462), 37, + ACTIONS(884), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177088,10 +178462,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, @@ -177099,60 +178470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41724] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1821), 1, - sym_comment, - ACTIONS(4147), 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, - [41775] = 4, + [41862] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1822), 1, + STATE(1835), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -177161,7 +178484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 34, + ACTIONS(749), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -177196,17 +178519,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [41828] = 3, + [41915] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1823), 1, - sym_comment, - ACTIONS(4149), 42, + ACTIONS(4133), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(4139), 1, + anon_sym_list, + ACTIONS(4141), 1, + anon_sym_oneof, + STATE(1836), 1, + sym_comment, + STATE(1854), 1, + aux_sym__repeat_newline, + STATE(2933), 1, + sym__type_annotation, + ACTIONS(4137), 2, + anon_sym_table, + anon_sym_record, + STATE(3077), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4135), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177236,87 +178572,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, - [41879] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1824), 1, - sym_comment, - ACTIONS(767), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(769), 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, - [41932] = 10, + [41980] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - ACTIONS(4139), 1, + ACTIONS(4149), 1, anon_sym_list, - ACTIONS(4141), 1, + ACTIONS(4151), 1, anon_sym_oneof, - STATE(1825), 1, + STATE(1837), 1, sym_comment, - STATE(2031), 1, + STATE(2032), 1, aux_sym__repeat_newline, - STATE(3205), 1, + STATE(3216), 1, sym__type_annotation, - ACTIONS(4137), 2, + ACTIONS(4147), 2, anon_sym_table, anon_sym_record, - STATE(3299), 4, + STATE(3285), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(4145), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177348,24 +178629,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41997] = 4, + [42045] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1826), 1, + ACTIONS(4104), 1, + aux_sym__immediate_decimal_token5, + STATE(1838), 1, sym_comment, - ACTIONS(863), 8, + ACTIONS(1786), 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(865), 34, + ACTIONS(1784), 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, @@ -177396,13 +178679,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, - [42050] = 3, + [42100] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1827), 1, + STATE(1839), 1, sym_comment, - ACTIONS(4151), 42, + ACTIONS(4163), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -177445,64 +178727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [42101] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4113), 1, - aux_sym__immediate_decimal_token5, - STATE(1828), 1, - sym_comment, - ACTIONS(1792), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1790), 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, - [42156] = 5, + [42151] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4153), 1, + ACTIONS(4165), 1, aux_sym__immediate_decimal_token5, - STATE(1829), 1, + STATE(1840), 1, sym_comment, - ACTIONS(1848), 7, + ACTIONS(1834), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -177510,7 +178742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 34, + ACTIONS(1832), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -177545,14 +178777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42211] = 6, + [42206] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, + ACTIONS(4167), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4157), 1, + ACTIONS(4169), 1, aux_sym__immediate_decimal_token5, - STATE(1830), 1, + STATE(1841), 1, sym_comment, ACTIONS(1732), 7, anon_sym_GT2, @@ -177596,129 +178828,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42268] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1831), 1, - sym_comment, - ACTIONS(4159), 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, - [42319] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_DOT, - ACTIONS(4163), 1, - aux_sym__immediate_decimal_token5, - STATE(1832), 1, - sym_comment, - ACTIONS(1792), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1790), 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, - [42376] = 10, + [42263] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, - sym__newline, - ACTIONS(4139), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(4141), 1, + ACTIONS(3868), 1, anon_sym_oneof, - STATE(1817), 1, - aux_sym__repeat_newline, - STATE(1833), 1, + ACTIONS(4133), 1, + sym__newline, + STATE(1842), 1, sym_comment, - STATE(3175), 1, + STATE(2032), 1, + aux_sym__repeat_newline, + STATE(4695), 1, sym__type_annotation, - ACTIONS(4137), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(3299), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4135), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177750,128 +178883,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42441] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1834), 1, - sym_comment, - ACTIONS(1543), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 38, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_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, - [42494] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1835), 1, - sym_comment, - 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), 36, - 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_finally, - anon_sym_match, - anon_sym_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, - [42547] = 10, + [42328] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - STATE(1836), 1, + STATE(1843), 1, sym_comment, - STATE(1845), 1, + STATE(1848), 1, aux_sym__repeat_newline, - STATE(4834), 1, + STATE(4698), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177903,12 +178938,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42612] = 3, + [42393] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1837), 1, + STATE(1844), 1, + sym_comment, + ACTIONS(775), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 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, + [42446] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1845), 1, sym_comment, - ACTIONS(4165), 42, + ACTIONS(4171), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -177951,30 +179035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [42663] = 10, + [42497] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - STATE(1838), 1, + STATE(1846), 1, sym_comment, - STATE(1848), 1, - aux_sym__types_body_repeat3, - STATE(4899), 1, - sym__one_type, - STATE(5241), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(4173), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178004,180 +179075,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, + anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42728] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4145), 1, - anon_sym_QMARK2, - STATE(1839), 1, - sym_comment, - ACTIONS(1460), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1462), 37, - 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_finally, - anon_sym_match, - anon_sym_true, - anon_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, - [42783] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1840), 1, - sym_comment, - ACTIONS(1468), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1470), 38, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, - anon_sym_true, - anon_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_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, 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, - [42836] = 4, + [42548] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1841), 1, + ACTIONS(4175), 1, + anon_sym_DOT, + ACTIONS(4177), 1, + aux_sym__immediate_decimal_token5, + STATE(1847), 1, sym_comment, - ACTIONS(767), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1786), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_duration_unit, sym__unquoted_pattern, - ACTIONS(769), 36, - 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_finally, - anon_sym_match, - anon_sym_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, + ACTIONS(1784), 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, - 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, - [42889] = 10, + [42605] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - STATE(1842), 1, + STATE(1848), 1, sym_comment, - STATE(2031), 1, + STATE(2032), 1, aux_sym__repeat_newline, - STATE(4690), 1, + STATE(4720), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178209,30 +179189,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42954] = 10, + [42670] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(4133), 1, + sym__newline, + ACTIONS(4139), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(4141), 1, anon_sym_oneof, - STATE(1843), 1, + STATE(1849), 1, sym_comment, - STATE(1848), 1, - aux_sym__types_body_repeat3, - STATE(4818), 1, - sym__one_type, - STATE(5241), 1, + STATE(1875), 1, + aux_sym__repeat_newline, + STATE(3158), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(4137), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(3077), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(4135), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178264,30 +179244,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43019] = 10, + [42735] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, - sym__newline, - ACTIONS(4131), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(4133), 1, + ACTIONS(3868), 1, anon_sym_oneof, - STATE(1844), 1, + STATE(1850), 1, sym_comment, - STATE(1851), 1, - aux_sym__repeat_newline, - STATE(3183), 1, + STATE(1852), 1, + aux_sym__types_body_repeat3, + STATE(4919), 1, + sym__one_type, + STATE(5257), 1, sym__type_annotation, - ACTIONS(4129), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(3127), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4127), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178319,30 +179299,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43084] = 10, + [42800] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - STATE(1845), 1, + STATE(1851), 1, sym_comment, - STATE(2031), 1, + STATE(2032), 1, aux_sym__repeat_newline, - STATE(4666), 1, + STATE(2793), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178374,30 +179354,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43149] = 10, + [42865] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(4185), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(4188), 1, anon_sym_oneof, - ACTIONS(4125), 1, - sym__newline, - STATE(1842), 1, - aux_sym__repeat_newline, - STATE(1846), 1, - sym_comment, - STATE(4679), 1, + STATE(5027), 1, + sym__one_type, + STATE(5257), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(4182), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(1852), 2, + sym_comment, + aux_sym__types_body_repeat3, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(4179), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178429,17 +179408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43214] = 4, + [42928] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1847), 1, + STATE(1853), 1, sym_comment, - ACTIONS(1551), 4, + ACTIONS(866), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1553), 38, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(868), 36, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178465,42 +179446,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, - [43267] = 9, + [42981] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4173), 1, + ACTIONS(4133), 1, + sym__newline, + ACTIONS(4139), 1, anon_sym_list, - ACTIONS(4176), 1, + ACTIONS(4141), 1, anon_sym_oneof, - STATE(5024), 1, - sym__one_type, - STATE(5241), 1, + STATE(1854), 1, + sym_comment, + STATE(2032), 1, + aux_sym__repeat_newline, + STATE(2992), 1, sym__type_annotation, - ACTIONS(4170), 2, + ACTIONS(4137), 2, anon_sym_table, anon_sym_record, - STATE(1848), 2, - sym_comment, - aux_sym__types_body_repeat3, - STATE(2656), 4, + STATE(3077), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4167), 31, + ACTIONS(4135), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178532,30 +179512,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43330] = 10, + [43046] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, - sym__newline, - ACTIONS(4131), 1, + STATE(1855), 1, + sym_comment, + ACTIONS(866), 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(868), 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, + [43099] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(4133), 1, + ACTIONS(3868), 1, anon_sym_oneof, - STATE(1849), 1, + ACTIONS(4133), 1, + sym__newline, + STATE(1856), 1, sym_comment, - STATE(1855), 1, + STATE(1869), 1, aux_sym__repeat_newline, - STATE(2938), 1, + STATE(3012), 1, sym__type_annotation, - ACTIONS(4129), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(3127), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4127), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178587,30 +179616,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43395] = 10, + [43164] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, - sym__newline, - ACTIONS(4131), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(4133), 1, + ACTIONS(3868), 1, anon_sym_oneof, - STATE(1850), 1, - sym_comment, STATE(1852), 1, - aux_sym__repeat_newline, - STATE(3150), 1, + aux_sym__types_body_repeat3, + STATE(1857), 1, + sym_comment, + STATE(4791), 1, + sym__one_type, + STATE(5257), 1, sym__type_annotation, - ACTIONS(4129), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(3127), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4127), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178642,30 +179671,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43460] = 10, + [43229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, + STATE(1858), 1, + sym_comment, + ACTIONS(1512), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1514), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - ACTIONS(4131), 1, - anon_sym_list, + 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, + [43282] = 10, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(4133), 1, + sym__newline, + ACTIONS(4149), 1, + anon_sym_list, + ACTIONS(4151), 1, anon_sym_oneof, - STATE(1851), 1, - sym_comment, - STATE(2031), 1, + STATE(1832), 1, aux_sym__repeat_newline, - STATE(3186), 1, + STATE(1859), 1, + sym_comment, + STATE(3048), 1, sym__type_annotation, - ACTIONS(4129), 2, + ACTIONS(4147), 2, anon_sym_table, anon_sym_record, - STATE(3127), 4, + STATE(3285), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4127), 31, + ACTIONS(4145), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178697,30 +179775,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43525] = 10, + [43347] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, + STATE(1860), 1, + sym_comment, + ACTIONS(1545), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1547), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - ACTIONS(4131), 1, + 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, + [43400] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1861), 1, + sym_comment, + ACTIONS(4191), 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, + [43451] = 10, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(4133), 1, + sym__newline, + ACTIONS(4139), 1, + anon_sym_list, + ACTIONS(4141), 1, anon_sym_oneof, - STATE(1852), 1, - sym_comment, - STATE(2031), 1, + STATE(1831), 1, aux_sym__repeat_newline, - STATE(3157), 1, + STATE(1862), 1, + sym_comment, + STATE(2976), 1, sym__type_annotation, - ACTIONS(4129), 2, + ACTIONS(4137), 2, anon_sym_table, anon_sym_record, - STATE(3127), 4, + STATE(3077), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4127), 31, + ACTIONS(4135), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178752,30 +179927,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43590] = 10, + [43516] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(4133), 1, + sym__newline, + ACTIONS(4139), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(4141), 1, anon_sym_oneof, - ACTIONS(4125), 1, - sym__newline, - STATE(1853), 1, + STATE(1863), 1, sym_comment, - STATE(1856), 1, + STATE(2032), 1, aux_sym__repeat_newline, - STATE(2947), 1, + STATE(3188), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(4137), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(3077), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(4135), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178807,28 +179982,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43655] = 9, + [43581] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4179), 1, + STATE(1864), 1, + sym_comment, + ACTIONS(747), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOT_DOT2, - ACTIONS(4183), 1, - sym_filesize_unit, - ACTIONS(4185), 1, sym_duration_unit, - ACTIONS(4187), 1, sym__unquoted_pattern, - STATE(1854), 1, - sym_comment, - ACTIONS(4181), 2, + ACTIONS(749), 36, + 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_finally, + anon_sym_match, + anon_sym_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(847), 3, + 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, + [43634] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4193), 1, + anon_sym_QMARK2, + STATE(1865), 1, + sym_comment, + ACTIONS(1462), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 33, + anon_sym_DOT2, + ACTIONS(1464), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178853,7 +180070,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, @@ -178861,85 +180081,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43718] = 10, + [43689] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, - sym__newline, - ACTIONS(4131), 1, - anon_sym_list, - ACTIONS(4133), 1, - anon_sym_oneof, - STATE(1855), 1, + STATE(1866), 1, sym_comment, - STATE(2031), 1, - aux_sym__repeat_newline, - STATE(2971), 1, - sym__type_annotation, - ACTIONS(4129), 2, - anon_sym_table, - anon_sym_record, - STATE(3127), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4127), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [43783] = 10, + ACTIONS(1476), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1478), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [43742] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - ACTIONS(4125), 1, + ACTIONS(4193), 1, + anon_sym_BANG, + STATE(1867), 1, + sym_comment, + ACTIONS(1462), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1464), 37, + 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_finally, + anon_sym_match, + anon_sym_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(1856), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [43797] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1868), 1, sym_comment, - STATE(2031), 1, - aux_sym__repeat_newline, - STATE(2953), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(4195), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178969,32 +180220,38 @@ 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, [43848] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - STATE(1857), 1, + STATE(1869), 1, sym_comment, - STATE(1858), 1, + STATE(2032), 1, aux_sym__repeat_newline, - STATE(2954), 1, + STATE(3016), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179029,27 +180286,27 @@ static const uint16_t ts_small_parse_table[] = { [43913] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - STATE(1858), 1, + STATE(1870), 1, sym_comment, - STATE(2031), 1, + STATE(1871), 1, aux_sym__repeat_newline, - STATE(2955), 1, + STATE(3017), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179084,27 +180341,27 @@ static const uint16_t ts_small_parse_table[] = { [43978] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - STATE(1859), 1, + STATE(1871), 1, sym_comment, - STATE(1860), 1, + STATE(2032), 1, aux_sym__repeat_newline, - STATE(2892), 1, + STATE(3018), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179139,27 +180396,27 @@ static const uint16_t ts_small_parse_table[] = { [44043] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - STATE(1860), 1, + STATE(1872), 1, sym_comment, - STATE(2031), 1, + STATE(1873), 1, aux_sym__repeat_newline, - STATE(2894), 1, + STATE(2915), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179194,27 +180451,27 @@ static const uint16_t ts_small_parse_table[] = { [44108] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - STATE(1861), 1, + STATE(1873), 1, sym_comment, - STATE(1862), 1, + STATE(2032), 1, aux_sym__repeat_newline, - STATE(2895), 1, + STATE(2916), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179249,27 +180506,27 @@ static const uint16_t ts_small_parse_table[] = { [44173] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_list, - ACTIONS(3896), 1, + ACTIONS(3868), 1, anon_sym_oneof, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - STATE(1862), 1, - sym_comment, - STATE(2031), 1, + STATE(1851), 1, aux_sym__repeat_newline, - STATE(2896), 1, + STATE(1874), 1, + sym_comment, + STATE(2917), 1, sym__type_annotation, - ACTIONS(3892), 2, + ACTIONS(3864), 2, anon_sym_table, anon_sym_record, - STATE(2656), 4, + STATE(2693), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3890), 31, + ACTIONS(3862), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179304,27 +180561,27 @@ static const uint16_t ts_small_parse_table[] = { [44238] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, + ACTIONS(4133), 1, sym__newline, - ACTIONS(4131), 1, + ACTIONS(4139), 1, anon_sym_list, - ACTIONS(4133), 1, + ACTIONS(4141), 1, anon_sym_oneof, - STATE(1863), 1, + STATE(1875), 1, sym_comment, - STATE(2031), 1, + STATE(2032), 1, aux_sym__repeat_newline, - STATE(3027), 1, + STATE(3169), 1, sym__type_annotation, - ACTIONS(4129), 2, + ACTIONS(4137), 2, anon_sym_table, anon_sym_record, - STATE(3127), 4, + STATE(3077), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4127), 31, + ACTIONS(4135), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179359,13 +180616,13 @@ static const uint16_t ts_small_parse_table[] = { [44303] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1864), 1, + STATE(1876), 1, sym_comment, - ACTIONS(1528), 3, + ACTIONS(1516), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1530), 38, + ACTIONS(1518), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179407,16 +180664,14 @@ static const uint16_t ts_small_parse_table[] = { [44355] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1865), 1, + STATE(1877), 1, sym_comment, - ACTIONS(1551), 4, + ACTIONS(2472), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1553), 37, + ACTIONS(2470), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179444,6 +180699,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, @@ -179455,7 +180712,55 @@ static const uint16_t ts_small_parse_table[] = { [44407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1878), 1, + sym_comment, + ACTIONS(2552), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2550), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [44459] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1879), 1, sym_comment, ACTIONS(1732), 7, anon_sym_GT2, @@ -179500,20 +180805,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44459] = 4, + [44511] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1880), 1, + sym_comment, + ACTIONS(1512), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1514), 37, + 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_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [44563] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + ACTIONS(4197), 1, + anon_sym_DOT_DOT2, + STATE(1881), 1, sym_comment, - ACTIONS(1848), 7, + ACTIONS(4199), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1955), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1846), 34, + ACTIONS(1953), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -179536,7 +180896,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, @@ -179546,14 +180905,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, - [44511] = 4, + [44623] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1868), 1, + STATE(1882), 1, sym_comment, - ACTIONS(1897), 7, + ACTIONS(1834), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -179561,7 +180918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1895), 34, + ACTIONS(1832), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -179596,14 +180953,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44563] = 5, + [44675] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4163), 1, - aux_sym__immediate_decimal_token5, - STATE(1869), 1, + STATE(1883), 1, + sym_comment, + ACTIONS(1580), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1582), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [44727] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1884), 1, sym_comment, - ACTIONS(1792), 7, + ACTIONS(1921), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -179611,10 +181014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1790), 33, + ACTIONS(1919), 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, @@ -179645,14 +181049,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44617] = 5, + [44779] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(793), 1, + anon_sym_DOT_DOT2, + ACTIONS(4201), 1, + sym_filesize_unit, + ACTIONS(4203), 1, + sym_duration_unit, + STATE(1885), 1, + sym_comment, + ACTIONS(795), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(785), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(884), 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, + [44839] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1886), 1, + sym_comment, + ACTIONS(1856), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1854), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [44891] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4189), 1, + ACTIONS(4177), 1, aux_sym__immediate_decimal_token5, - STATE(1870), 1, + STATE(1887), 1, sym_comment, - ACTIONS(1848), 7, + ACTIONS(1786), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -179660,7 +181164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 33, + ACTIONS(1784), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -179694,69 +181198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44671] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4024), 1, - anon_sym_list, - ACTIONS(4026), 1, - anon_sym_oneof, - STATE(1871), 1, - sym_comment, - STATE(1874), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4815), 1, - sym__all_type, - ACTIONS(4022), 2, - anon_sym_table, - anon_sym_record, - STATE(4685), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4020), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [44733] = 4, + [44945] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1872), 1, + STATE(1888), 1, sym_comment, - ACTIONS(1578), 3, + ACTIONS(2338), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1580), 38, + ACTIONS(2336), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179795,132 +181246,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44785] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4024), 1, - anon_sym_list, - ACTIONS(4026), 1, - anon_sym_oneof, - STATE(1873), 1, - sym_comment, - STATE(1874), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4716), 1, - sym__all_type, - ACTIONS(4022), 2, - anon_sym_table, - anon_sym_record, - STATE(4685), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4020), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [44847] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4197), 1, - anon_sym_list, - ACTIONS(4200), 1, - anon_sym_oneof, - STATE(4980), 1, - sym__all_type, - ACTIONS(4194), 2, - anon_sym_table, - anon_sym_record, - STATE(1874), 2, - sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4685), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4191), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [44907] = 8, + [44997] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(1976), 1, + ACTIONS(2094), 1, anon_sym_LPAREN2, - ACTIONS(4203), 1, + ACTIONS(4205), 1, anon_sym_DOT_DOT2, - STATE(1875), 1, + STATE(1889), 1, sym_comment, - ACTIONS(4205), 2, + ACTIONS(4207), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 5, + ACTIONS(2092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1972), 31, + ACTIONS(2090), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -179952,31 +181298,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44967] = 8, + [45057] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(4207), 1, - anon_sym_DOT_DOT2, - STATE(1876), 1, + STATE(1890), 1, sym_comment, - ACTIONS(4209), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1984), 5, + ACTIONS(2476), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2474), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [45109] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4209), 1, + aux_sym__immediate_decimal_token5, + STATE(1891), 1, + sym_comment, + ACTIONS(1834), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1982), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1832), 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, @@ -179995,6 +181383,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, @@ -180004,16 +181393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45027] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [45163] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1877), 1, + STATE(1892), 1, sym_comment, - ACTIONS(2158), 3, + ACTIONS(2480), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2156), 38, + ACTIONS(2478), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180052,16 +181443,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45079] = 4, + [45215] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1878), 1, + STATE(1893), 1, + sym_comment, + ACTIONS(1545), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1547), 37, + 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_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [45267] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1894), 1, sym_comment, - ACTIONS(1500), 3, + ACTIONS(1468), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1502), 38, + ACTIONS(1470), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180100,16 +181539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45131] = 4, + [45319] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1879), 1, + STATE(1895), 1, sym_comment, - ACTIONS(1504), 3, + ACTIONS(1530), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1506), 38, + ACTIONS(1532), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180148,16 +181587,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45183] = 4, + [45371] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1880), 1, + ACTIONS(4067), 1, + anon_sym_list, + ACTIONS(4069), 1, + anon_sym_oneof, + STATE(1896), 1, + sym_comment, + STATE(1904), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4897), 1, + sym__all_type, + ACTIONS(4065), 2, + anon_sym_table, + anon_sym_record, + STATE(4718), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4063), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45433] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1897), 1, sym_comment, - ACTIONS(2479), 3, + ACTIONS(2118), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2477), 38, + ACTIONS(2116), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180196,16 +181688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45235] = 4, + [45485] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(1898), 1, sym_comment, - ACTIONS(2479), 3, + ACTIONS(1472), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2477), 38, + ACTIONS(1474), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180244,16 +181736,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45287] = 4, + [45537] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1882), 1, + STATE(1899), 1, + sym_comment, + ACTIONS(1476), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1478), 37, + 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_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [45589] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1900), 1, sym_comment, - ACTIONS(2328), 3, + ACTIONS(1677), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2326), 38, + ACTIONS(1675), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180292,16 +181832,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45339] = 4, + [45641] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1883), 1, + STATE(1901), 1, sym_comment, - ACTIONS(2483), 3, + ACTIONS(1522), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2481), 38, + ACTIONS(1524), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180340,16 +181880,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45391] = 4, + [45693] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1884), 1, + ACTIONS(4067), 1, + anon_sym_list, + ACTIONS(4069), 1, + anon_sym_oneof, + STATE(1902), 1, + sym_comment, + STATE(1904), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4691), 1, + sym__all_type, + ACTIONS(4065), 2, + anon_sym_table, + anon_sym_record, + STATE(4718), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4063), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45755] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1903), 1, + sym_comment, + ACTIONS(2472), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2470), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [45807] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4217), 1, + anon_sym_list, + ACTIONS(4220), 1, + anon_sym_oneof, + STATE(4984), 1, + sym__all_type, + ACTIONS(4214), 2, + anon_sym_table, + anon_sym_record, + STATE(1904), 2, + sym_comment, + aux_sym__composite_argument_body_repeat1, + STATE(4718), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4211), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45867] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1905), 1, + sym_comment, + ACTIONS(2356), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2354), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [45919] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1906), 1, + sym_comment, + ACTIONS(1480), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1482), 38, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [45971] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4223), 1, + anon_sym_QMARK2, + ACTIONS(4225), 1, + anon_sym_BANG, + STATE(1907), 1, + sym_comment, + STATE(2123), 1, + sym__path_suffix, + ACTIONS(1448), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1450), 33, + 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_finally, + anon_sym_match, + anon_sym_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, + [46028] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4227), 1, + anon_sym_DOT, + ACTIONS(4229), 1, + aux_sym__immediate_decimal_token5, + STATE(1908), 1, + sym_comment, + ACTIONS(1786), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1784), 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, + [46083] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1909), 1, + sym_comment, + ACTIONS(1522), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1524), 37, + 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_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [46134] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4231), 1, + anon_sym_DOT2, + STATE(1910), 1, sym_comment, - ACTIONS(2487), 3, + STATE(1964), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2119), 1, + sym_path, + STATE(2208), 1, + sym_cell_path, + ACTIONS(1887), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2485), 38, + ACTIONS(1885), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180375,12 +182318,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, @@ -180388,17 +182326,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45443] = 4, + [46193] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1885), 1, + STATE(1911), 1, sym_comment, - ACTIONS(1649), 3, + ACTIONS(1677), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1647), 38, + ACTIONS(1675), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180426,8 +182365,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, @@ -180436,31 +182373,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45495] = 8, + [46244] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(855), 1, + STATE(1912), 1, + sym_comment, + ACTIONS(1732), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(4211), 1, - sym_filesize_unit, - ACTIONS(4213), 1, - sym_duration_unit, - STATE(1886), 1, + sym__unquoted_pattern, + ACTIONS(1730), 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, + [46295] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1913), 1, sym_comment, - ACTIONS(857), 2, + ACTIONS(1834), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1832), 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, - ACTIONS(847), 5, + [46346] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1914), 1, + sym_comment, + ACTIONS(1921), 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(1919), 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, @@ -180479,6 +182502,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, @@ -180488,17 +182512,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45555] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [46397] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1887), 1, + ACTIONS(3866), 1, + anon_sym_list, + ACTIONS(3868), 1, + anon_sym_oneof, + STATE(1915), 1, + sym_comment, + STATE(5356), 1, + sym__type_annotation, + ACTIONS(3864), 2, + anon_sym_table, + anon_sym_record, + STATE(2693), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3862), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [46456] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1916), 1, sym_comment, - ACTIONS(2529), 3, + ACTIONS(2476), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2527), 38, + ACTIONS(2474), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180526,8 +182604,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, @@ -180536,17 +182612,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45607] = 4, + [46507] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1888), 1, + STATE(1917), 1, sym_comment, - ACTIONS(2533), 3, + ACTIONS(1530), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2531), 38, + ACTIONS(1532), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180574,8 +182651,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, @@ -180584,17 +182659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45659] = 4, + [46558] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(1918), 1, sym_comment, - ACTIONS(1844), 3, + ACTIONS(2480), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1842), 38, + ACTIONS(2478), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180622,8 +182698,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, @@ -180632,17 +182706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45711] = 4, + [46609] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1919), 1, sym_comment, - ACTIONS(1508), 3, + ACTIONS(1580), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1510), 38, + ACTIONS(1582), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180670,8 +182745,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, @@ -180680,17 +182753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45763] = 4, + [46660] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1891), 1, + STATE(1920), 1, sym_comment, - ACTIONS(1543), 4, + ACTIONS(2118), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 37, + ACTIONS(2116), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -180728,17 +182800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45815] = 4, + [46711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1892), 1, + STATE(1921), 1, sym_comment, - ACTIONS(1512), 3, + ACTIONS(2356), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1514), 38, + ACTIONS(2354), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180766,8 +182839,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, @@ -180776,17 +182847,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45867] = 4, + [46762] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1893), 1, + STATE(1922), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1480), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1522), 38, + ACTIONS(1482), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180814,8 +182886,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, @@ -180824,17 +182894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45919] = 4, + [46813] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1894), 1, + STATE(1923), 1, sym_comment, - ACTIONS(1468), 4, + ACTIONS(2552), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1470), 37, + ACTIONS(2550), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -180872,16 +182941,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45971] = 4, + [46864] = 28, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(4233), 1, + anon_sym_null, + ACTIONS(4237), 1, + anon_sym_LPAREN, + ACTIONS(4239), 1, + anon_sym_DOLLAR, + ACTIONS(4241), 1, + anon_sym_DOT_DOT, + ACTIONS(4245), 1, + sym_val_date, + ACTIONS(4247), 1, + anon_sym_DQUOTE, + ACTIONS(4249), 1, + anon_sym_SQUOTE, + ACTIONS(4251), 1, + anon_sym_BQUOTE, + ACTIONS(4253), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4255), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4257), 1, + aux_sym_unquoted_token1, + ACTIONS(4259), 1, + sym_raw_string_begin, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(1903), 1, + sym__inter_single_quotes, + STATE(1924), 1, + sym_comment, + STATE(4176), 1, + sym__val_number_decimal, + STATE(5351), 1, + sym_val_bool, + ACTIONS(3073), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3083), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3085), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4243), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5254), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4235), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1901), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1453), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [46963] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1895), 1, + STATE(1925), 1, sym_comment, - ACTIONS(1512), 3, + ACTIONS(1516), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1514), 37, + ACTIONS(1518), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -180919,16 +183059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46022] = 4, + [47014] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1896), 1, + STATE(1926), 1, sym_comment, - ACTIONS(1528), 3, + ACTIONS(1468), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1530), 37, + ACTIONS(1470), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -180966,67 +183106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46073] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_list, - ACTIONS(3896), 1, - anon_sym_oneof, - STATE(1897), 1, - sym_comment, - STATE(5503), 1, - sym__type_annotation, - ACTIONS(3892), 2, - anon_sym_table, - anon_sym_record, - STATE(2656), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3890), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [46132] = 4, + [47065] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1898), 1, + STATE(1927), 1, sym_comment, - ACTIONS(2328), 3, + ACTIONS(1472), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2326), 37, + ACTIONS(1474), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -181064,18 +183153,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46183] = 4, + [47116] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1899), 1, + ACTIONS(4231), 1, + anon_sym_DOT2, + STATE(1928), 1, sym_comment, - ACTIONS(1500), 3, + STATE(1964), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2119), 1, + sym_path, + STATE(2185), 1, + sym_cell_path, + ACTIONS(1875), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1502), 37, + ACTIONS(1872), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181100,10 +183196,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, @@ -181111,25 +183204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46234] = 8, + [47175] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DOT2, - STATE(1900), 1, + STATE(1929), 1, sym_comment, - STATE(1941), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2050), 1, - sym_path, - STATE(2159), 1, - sym_cell_path, - ACTIONS(1893), 3, + ACTIONS(2472), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1891), 33, + ACTIONS(2470), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181154,7 +183240,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, @@ -181162,25 +183251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46293] = 8, + [47226] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DOT2, - STATE(1901), 1, + STATE(1930), 1, sym_comment, - STATE(1941), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2050), 1, - sym_path, - STATE(2166), 1, - sym_cell_path, - ACTIONS(1909), 3, + ACTIONS(2472), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1907), 33, + ACTIONS(2470), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181205,7 +183287,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, @@ -181213,98 +183298,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46352] = 28, + [47277] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, + ACTIONS(4261), 1, + anon_sym_DOT, + ACTIONS(4263), 1, + aux_sym__immediate_decimal_token5, + STATE(1931), 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(4217), 1, - anon_sym_null, - ACTIONS(4221), 1, - anon_sym_LPAREN, - ACTIONS(4223), 1, - anon_sym_DOLLAR, - ACTIONS(4225), 1, - anon_sym_DOT_DOT, - ACTIONS(4229), 1, - sym_val_date, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4233), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, - anon_sym_BQUOTE, - ACTIONS(4237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4241), 1, - aux_sym_unquoted_token1, - ACTIONS(4243), 1, - sym_raw_string_begin, - STATE(1880), 1, - sym__inter_single_quotes, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1902), 1, + 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, + [47332] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4265), 1, + sym__entry_separator, + STATE(1932), 2, sym_comment, - STATE(3982), 1, - sym__val_number_decimal, - STATE(5364), 1, - sym_val_bool, - ACTIONS(3068), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3078), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3080), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4227), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5477), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4219), 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(1443), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46451] = 8, + aux_sym__types_body_repeat2, + ACTIONS(3740), 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, + [47383] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(1976), 1, + ACTIONS(2094), 1, anon_sym_LPAREN2, - ACTIONS(4245), 1, + ACTIONS(4268), 1, anon_sym_DOT_DOT2, - STATE(1903), 1, + STATE(1933), 1, sym_comment, - ACTIONS(4247), 2, + ACTIONS(4270), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 5, + ACTIONS(2092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1972), 30, + ACTIONS(2090), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181335,16 +183445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46510] = 6, + [47442] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4272), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4251), 1, + ACTIONS(4274), 1, aux_sym__immediate_decimal_token5, - STATE(1904), 1, + STATE(1934), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(747), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -181353,7 +183463,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(741), 30, + ACTIONS(749), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -181384,18 +183494,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [46565] = 4, + [47497] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1905), 1, + ACTIONS(4231), 1, + anon_sym_DOT2, + STATE(1935), 1, sym_comment, - ACTIONS(1649), 3, + STATE(1964), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2119), 1, + sym_path, + STATE(2204), 1, + sym_cell_path, + ACTIONS(1891), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1647), 37, + ACTIONS(1889), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181420,10 +183537,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, @@ -181431,18 +183545,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46616] = 4, + [47556] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + ACTIONS(4231), 1, + anon_sym_DOT2, + STATE(1936), 1, sym_comment, - ACTIONS(1504), 3, + STATE(1964), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2119), 1, + sym_path, + STATE(2212), 1, + sym_cell_path, + ACTIONS(1895), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1506), 37, + ACTIONS(1893), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181467,10 +183588,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, @@ -181478,27 +183596,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46667] = 8, + [47615] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, + ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(1992), 1, + ACTIONS(1963), 1, sym__unquoted_pattern, - ACTIONS(4253), 1, + ACTIONS(4276), 1, anon_sym_DOT_DOT2, - STATE(1907), 1, + STATE(1937), 1, sym_comment, - ACTIONS(4255), 2, + ACTIONS(4278), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1984), 5, + ACTIONS(1955), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1982), 30, + ACTIONS(1953), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181529,24 +183647,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46726] = 8, + [47674] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1938), 1, + sym_comment, + ACTIONS(2338), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2336), 37, + 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_finally, + anon_sym_match, + anon_sym_true, + anon_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, + [47725] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_DOT2, - STATE(1908), 1, + STATE(1939), 1, sym_comment, - STATE(1941), 1, + STATE(1964), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2050), 1, + STATE(2119), 1, sym_path, - STATE(2169), 1, + STATE(2174), 1, sym_cell_path, - ACTIONS(1913), 3, + ACTIONS(1903), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1911), 33, + ACTIONS(1901), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181580,26 +183745,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46785] = 8, + [47784] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4024), 1, + ACTIONS(4067), 1, anon_sym_list, - ACTIONS(4026), 1, + ACTIONS(4069), 1, anon_sym_oneof, - STATE(1909), 1, + STATE(1940), 1, sym_comment, - STATE(4446), 1, - sym__all_type, - ACTIONS(4022), 2, + STATE(4960), 1, + sym__type_annotation, + ACTIONS(4065), 2, anon_sym_table, anon_sym_record, - STATE(4685), 4, + STATE(4982), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4020), 31, + ACTIONS(4063), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -181631,158 +183796,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [46844] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1910), 1, - sym_comment, - ACTIONS(2158), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2156), 37, - 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_finally, - anon_sym_match, - anon_sym_true, - anon_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, - [46895] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1911), 1, - sym_comment, - ACTIONS(1897), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1895), 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, - [46946] = 4, + [47843] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1912), 1, - sym_comment, - ACTIONS(2487), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2485), 37, - 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_finally, - anon_sym_match, - anon_sym_true, - anon_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, - [46997] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4257), 1, - sym__entry_separator, - STATE(1913), 2, + ACTIONS(4067), 1, + anon_sym_list, + ACTIONS(4069), 1, + anon_sym_oneof, + STATE(1941), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3705), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(4644), 1, + sym__all_type, + ACTIONS(4065), 2, + anon_sym_table, + anon_sym_record, + STATE(4718), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4063), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -181812,222 +183845,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_GT2, - anon_sym_oneof, - [47048] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DOT2, - STATE(1914), 1, - sym_comment, - STATE(1941), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2050), 1, - sym_path, - STATE(2172), 1, - sym_cell_path, - ACTIONS(1454), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1456), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [47107] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1915), 1, - sym_comment, - ACTIONS(1844), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1842), 37, - 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_finally, - anon_sym_match, - anon_sym_true, - anon_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, - [47158] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1916), 1, - sym_comment, - ACTIONS(1520), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1522), 37, - 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_finally, - anon_sym_match, - anon_sym_true, - anon_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, - [47209] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1917), 1, - sym_comment, - ACTIONS(2483), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2481), 37, - 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_finally, - anon_sym_match, - anon_sym_true, - anon_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, - [47260] = 4, + [47902] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1918), 1, + ACTIONS(4280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4282), 1, + aux_sym__immediate_decimal_token5, + STATE(1942), 1, sym_comment, - ACTIONS(1732), 7, + ACTIONS(1732), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1730), 33, + ACTIONS(1730), 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, @@ -182056,76 +183896,24 @@ 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, - [47311] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4260), 1, - anon_sym_QMARK2, - ACTIONS(4262), 1, - anon_sym_BANG, - STATE(1919), 1, - sym_comment, - STATE(2052), 1, - sym__path_suffix, - ACTIONS(1442), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1444), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [47368] = 8, + [47957] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_DOT2, - STATE(1920), 1, + STATE(1943), 1, sym_comment, - STATE(1941), 1, + STATE(1964), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2050), 1, + STATE(2119), 1, sym_path, - STATE(2192), 1, + STATE(2193), 1, sym_cell_path, - ACTIONS(1885), 3, + ACTIONS(1442), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1883), 33, + ACTIONS(1444), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182159,27 +183947,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47427] = 8, + [48016] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4211), 1, + ACTIONS(4201), 1, sym_filesize_unit, - ACTIONS(4213), 1, + ACTIONS(4203), 1, sym_duration_unit, - ACTIONS(4264), 1, + ACTIONS(4284), 1, anon_sym_DOT_DOT2, - STATE(1921), 1, + STATE(1944), 1, sym_comment, - ACTIONS(4266), 2, + ACTIONS(4286), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(847), 5, + ACTIONS(785), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 30, + ACTIONS(884), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182210,16 +183998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47486] = 4, + [48075] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1922), 1, + STATE(1945), 1, sym_comment, - ACTIONS(2529), 3, + ACTIONS(1856), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2527), 37, + ACTIONS(1854), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -182257,67 +184045,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47537] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4268), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4270), 1, - aux_sym__immediate_decimal_token5, - STATE(1923), 1, - sym_comment, - ACTIONS(1732), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1730), 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, - [47592] = 4, + [48126] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1924), 1, + ACTIONS(4231), 1, + anon_sym_DOT2, + STATE(1946), 1, sym_comment, - ACTIONS(1508), 3, + STATE(1964), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2119), 1, + sym_path, + STATE(2177), 1, + sym_cell_path, + ACTIONS(1868), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1510), 37, + ACTIONS(1866), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182342,10 +184088,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, @@ -182353,24 +184096,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47643] = 8, + [48185] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DOT2, - STATE(1925), 1, + ACTIONS(4067), 1, + anon_sym_list, + ACTIONS(4069), 1, + anon_sym_oneof, + STATE(1947), 1, sym_comment, - STATE(1941), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2050), 1, - sym_path, - STATE(2179), 1, - sym_cell_path, - ACTIONS(1889), 3, + STATE(4859), 1, + sym__all_type, + ACTIONS(4065), 2, + anon_sym_table, + anon_sym_record, + STATE(4718), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4063), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [48244] = 27, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4233), 1, + anon_sym_null, + ACTIONS(4237), 1, + anon_sym_LPAREN, + ACTIONS(4239), 1, + anon_sym_DOLLAR, + ACTIONS(4241), 1, + anon_sym_DOT_DOT, + ACTIONS(4245), 1, + sym_val_date, + ACTIONS(4247), 1, + anon_sym_DQUOTE, + ACTIONS(4249), 1, + anon_sym_SQUOTE, + ACTIONS(4251), 1, + anon_sym_BQUOTE, + ACTIONS(4253), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4255), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4257), 1, + aux_sym_unquoted_token1, + ACTIONS(4259), 1, + sym_raw_string_begin, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(1903), 1, + sym__inter_single_quotes, + STATE(1948), 1, + sym_comment, + STATE(4176), 1, + sym__val_number_decimal, + STATE(5351), 1, + sym_val_bool, + ACTIONS(3073), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3083), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3085), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4243), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5254), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4235), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1901), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1453), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [48340] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1949), 1, + sym_comment, + ACTIONS(1468), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1887), 33, + anon_sym_DOT2, + ACTIONS(1470), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182404,18 +184260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47702] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [48390] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1926), 1, + STATE(1950), 1, sym_comment, - ACTIONS(2479), 3, + ACTIONS(1472), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2477), 37, + anon_sym_DOT2, + ACTIONS(1474), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182440,10 +184298,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, @@ -182451,18 +184306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47753] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [48440] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1927), 1, + STATE(1951), 1, sym_comment, - ACTIONS(1578), 3, + ACTIONS(1516), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1580), 37, + anon_sym_DOT2, + ACTIONS(1518), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182487,10 +184344,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, @@ -182498,16 +184352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47804] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [48490] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4272), 1, - anon_sym_DOT, - ACTIONS(4274), 1, + ACTIONS(4263), 1, aux_sym__immediate_decimal_token5, - STATE(1928), 1, + STATE(1952), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -182516,7 +184370,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -182547,18 +184401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [47859] = 4, + [48542] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1929), 1, + STATE(1953), 1, sym_comment, - ACTIONS(2479), 3, + ACTIONS(1530), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2477), 37, + anon_sym_DOT2, + ACTIONS(1532), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182583,10 +184437,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, @@ -182594,29 +184445,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47910] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [48592] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DOT2, - STATE(1930), 1, + ACTIONS(4292), 1, + sym_long_flag_identifier, + ACTIONS(4294), 1, + anon_sym_EQ2, + STATE(1954), 1, sym_comment, - STATE(1941), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2050), 1, - sym_path, - STATE(2180), 1, - sym_cell_path, - ACTIONS(1874), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1871), 33, + STATE(2219), 1, + sym__flag_equals_value, + ACTIONS(4290), 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(4288), 27, + 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, @@ -182631,34 +184489,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, + [48648] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4296), 1, + anon_sym_DOT, + ACTIONS(4298), 1, + aux_sym__immediate_decimal_token5, + STATE(1955), 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, + [48702] = 27, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4233), 1, + anon_sym_null, + ACTIONS(4245), 1, + sym_val_date, + ACTIONS(4302), 1, + anon_sym_LPAREN, + ACTIONS(4304), 1, + anon_sym_DOLLAR, + ACTIONS(4306), 1, + anon_sym_DOT_DOT, + ACTIONS(4310), 1, anon_sym_DQUOTE, + ACTIONS(4312), 1, anon_sym_SQUOTE, + ACTIONS(4314), 1, anon_sym_BQUOTE, - [47969] = 4, + ACTIONS(4316), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4318), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4320), 1, + aux_sym_unquoted_token1, + ACTIONS(4322), 1, + sym_raw_string_begin, + STATE(1929), 1, + sym__inter_single_quotes, + STATE(1930), 1, + sym__inter_double_quotes, + STATE(1956), 1, + sym_comment, + STATE(4092), 1, + sym__val_number_decimal, + STATE(5351), 1, + sym_val_bool, + ACTIONS(3073), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3083), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3085), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4308), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5262), 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(1909), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1462), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [48798] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1931), 1, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + aux_sym__immediate_decimal_token5, + STATE(1957), 1, sym_comment, - ACTIONS(1848), 7, + ACTIONS(1786), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 33, + ACTIONS(1784), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182690,28 +184661,64 @@ 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, - [48020] = 8, - ACTIONS(3), 1, + [48852] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4024), 1, - anon_sym_list, - ACTIONS(4026), 1, - anon_sym_oneof, - STATE(1932), 1, + ACTIONS(4328), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4330), 1, + aux_sym__immediate_decimal_token5, + STATE(1958), 1, sym_comment, - STATE(4797), 1, - sym__all_type, - ACTIONS(4022), 2, - anon_sym_table, - anon_sym_record, - STATE(4685), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4020), 31, + 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, + [48906] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3771), 1, + sym__entry_separator, + STATE(1959), 1, + sym_comment, + ACTIONS(3769), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -182741,25 +184748,121 @@ 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, - [48079] = 6, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [48956] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4276), 1, - anon_sym_DOT, - ACTIONS(4278), 1, + STATE(1960), 1, + sym_comment, + ACTIONS(1522), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1524), 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_finally, + anon_sym_match, + anon_sym_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, + [49006] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4332), 1, aux_sym__immediate_decimal_token5, - STATE(1933), 1, + STATE(1961), 1, + sym_comment, + ACTIONS(775), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(777), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49058] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4229), 1, + aux_sym__immediate_decimal_token5, + STATE(1962), 1, sym_comment, - ACTIONS(1792), 6, + ACTIONS(1786), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1790), 32, + ACTIONS(1784), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -182792,115 +184895,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48134] = 4, + [49110] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1934), 1, + ACTIONS(4334), 1, + aux_sym__immediate_decimal_token5, + STATE(1963), 1, sym_comment, - ACTIONS(2533), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1834), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1832), 32, anon_sym_in, - ACTIONS(2531), 37, - 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_finally, - anon_sym_match, - anon_sym_true, - anon_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, - [48185] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4024), 1, - anon_sym_list, - ACTIONS(4026), 1, - anon_sym_oneof, - STATE(1935), 1, - sym_comment, - STATE(4943), 1, - sym__type_annotation, - ACTIONS(4022), 2, - anon_sym_table, - anon_sym_record, - STATE(5079), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4020), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [48244] = 4, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49162] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1936), 1, + ACTIONS(4231), 1, + anon_sym_DOT2, + STATE(1964), 1, sym_comment, - ACTIONS(1512), 4, + STATE(1965), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2119), 1, + sym_path, + ACTIONS(1526), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1514), 35, + ACTIONS(1528), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182934,68 +184991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48294] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4284), 1, - sym_long_flag_identifier, - ACTIONS(4286), 1, - anon_sym_EQ2, - STATE(1937), 1, - sym_comment, - STATE(2207), 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), 27, - 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_finally, - 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, - [48350] = 4, + [49218] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1938), 1, + ACTIONS(4336), 1, + anon_sym_DOT2, + STATE(2119), 1, + sym_path, + STATE(1965), 2, sym_comment, - ACTIONS(1520), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1536), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 35, + ACTIONS(1538), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -183029,27 +185039,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48400] = 5, + [49272] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4288), 1, + ACTIONS(4339), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4341), 1, aux_sym__immediate_decimal_token5, - STATE(1939), 1, + STATE(1966), 1, sym_comment, - ACTIONS(1848), 6, + ACTIONS(1732), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1846), 32, + ACTIONS(1730), 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, @@ -183078,17 +185087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48452] = 4, + [49326] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1940), 1, + STATE(1967), 1, sym_comment, - ACTIONS(1508), 4, + ACTIONS(1480), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1510), 35, + ACTIONS(1482), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -183124,75 +185133,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [48502] = 7, + [49376] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4345), 1, + anon_sym_GT2, + ACTIONS(4347), 1, + sym__entry_separator, + STATE(1932), 1, + aux_sym__types_body_repeat2, + STATE(1968), 1, + sym_comment, + ACTIONS(4343), 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, + [49429] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DOT2, - STATE(1941), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + STATE(1969), 1, sym_comment, - STATE(1950), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2050), 1, - sym_path, - ACTIONS(1524), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2576), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2574), 31, anon_sym_in, - ACTIONS(1526), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [48558] = 6, + 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, + [49482] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(4349), 1, + anon_sym_RBRACK, + STATE(1932), 1, + aux_sym__types_body_repeat2, + STATE(1970), 1, + sym_comment, + ACTIONS(4351), 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, + [49535] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4290), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4292), 1, - aux_sym__immediate_decimal_token5, - STATE(1942), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + STATE(1971), 1, sym_comment, - ACTIONS(1732), 6, + ACTIONS(1955), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1730), 31, + ACTIONS(1953), 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, @@ -183211,7 +185312,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, @@ -183221,130 +185321,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48612] = 5, + [49588] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4274), 1, - aux_sym__immediate_decimal_token5, - STATE(1943), 1, + ACTIONS(4355), 1, + anon_sym_RBRACK, + ACTIONS(4357), 1, + sym__entry_separator, + ACTIONS(4359), 1, + sym_raw_string_begin, + STATE(1972), 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, - [48664] = 27, + STATE(1979), 1, + aux_sym__types_body_repeat2, + ACTIONS(4353), 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_finally, + 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, + [49643] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4217), 1, + ACTIONS(4357), 1, + sym__entry_separator, + ACTIONS(4359), 1, + sym_raw_string_begin, + ACTIONS(4361), 1, + anon_sym_RBRACK, + STATE(1973), 1, + sym_comment, + STATE(1979), 1, + aux_sym__types_body_repeat2, + ACTIONS(4353), 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_finally, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(4221), 1, + 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, + [49698] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3083), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4237), 1, anon_sym_LPAREN, - ACTIONS(4223), 1, + ACTIONS(4239), 1, anon_sym_DOLLAR, - ACTIONS(4225), 1, + ACTIONS(4241), 1, anon_sym_DOT_DOT, - ACTIONS(4229), 1, - sym_val_date, - ACTIONS(4231), 1, + ACTIONS(4247), 1, anon_sym_DQUOTE, - ACTIONS(4233), 1, + ACTIONS(4249), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(4251), 1, anon_sym_BQUOTE, - ACTIONS(4237), 1, + ACTIONS(4253), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4239), 1, + ACTIONS(4255), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4241), 1, + ACTIONS(4257), 1, aux_sym_unquoted_token1, - ACTIONS(4243), 1, + ACTIONS(4259), 1, sym_raw_string_begin, - STATE(1880), 1, - sym__inter_single_quotes, - STATE(1881), 1, + ACTIONS(4365), 1, + anon_sym_null, + ACTIONS(4369), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4373), 1, + sym_val_date, + STATE(1877), 1, sym__inter_double_quotes, - STATE(1944), 1, + STATE(1903), 1, + sym__inter_single_quotes, + STATE(1974), 1, sym_comment, - STATE(3982), 1, + STATE(4176), 1, sym__val_number_decimal, - STATE(5364), 1, + STATE(5351), 1, sym_val_bool, - ACTIONS(3068), 2, + ACTIONS(4243), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4363), 2, anon_sym_true, anon_sym_false, - ACTIONS(3078), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3080), 2, + ACTIONS(4371), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(4227), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5477), 2, + STATE(5254), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4219), 3, + ACTIONS(4367), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(1890), 4, + STATE(1901), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(1443), 5, + STATE(1460), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - [48760] = 6, + [49793] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4294), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4296), 1, + ACTIONS(4298), 1, aux_sym__immediate_decimal_token5, - STATE(1945), 1, + STATE(1975), 1, sym_comment, ACTIONS(739), 7, anon_sym_STAR, @@ -183385,60 +185531,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [48814] = 4, + [49844] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1946), 1, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(1976), 1, sym_comment, - ACTIONS(1528), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1226), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1234), 31, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1530), 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_finally, - anon_sym_match, - anon_sym_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, - [48864] = 5, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49897] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4298), 1, - aux_sym__immediate_decimal_token5, - STATE(1947), 1, + STATE(1977), 1, sym_comment, - ACTIONS(767), 8, + ACTIONS(775), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -183447,7 +185592,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(769), 30, + ACTIONS(777), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -183478,62 +185623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [48916] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1948), 1, - sym_comment, - ACTIONS(1504), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1506), 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_finally, - anon_sym_match, - anon_sym_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, - [48966] = 4, + [49946] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(4347), 1, sym__entry_separator, - STATE(1949), 1, + ACTIONS(4375), 1, + anon_sym_GT2, + STATE(1932), 1, + aux_sym__types_body_repeat2, + STATE(1978), 1, sym_comment, - ACTIONS(3754), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4343), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -183568,28 +185669,24 @@ 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, - [49016] = 6, - ACTIONS(3), 1, + [49999] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4300), 1, - anon_sym_DOT2, - STATE(2050), 1, - sym_path, - STATE(1950), 2, + ACTIONS(3745), 1, + sym_raw_string_begin, + ACTIONS(4377), 1, + sym__entry_separator, + STATE(1979), 2, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1532), 3, + aux_sym__types_body_repeat2, + ACTIONS(3740), 35, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1534), 33, - 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, @@ -183604,13 +185701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, @@ -183618,180 +185716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49070] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - aux_sym__immediate_decimal_token5, - STATE(1951), 1, - sym_comment, - ACTIONS(1792), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1790), 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, - [49122] = 27, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4217), 1, - anon_sym_null, - ACTIONS(4229), 1, - sym_val_date, - ACTIONS(4305), 1, - anon_sym_LPAREN, - ACTIONS(4307), 1, - anon_sym_DOLLAR, - ACTIONS(4309), 1, - anon_sym_DOT_DOT, - ACTIONS(4313), 1, - anon_sym_DQUOTE, - ACTIONS(4315), 1, - anon_sym_SQUOTE, - ACTIONS(4317), 1, - anon_sym_BQUOTE, - ACTIONS(4319), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4321), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4323), 1, - aux_sym_unquoted_token1, - ACTIONS(4325), 1, - sym_raw_string_begin, - STATE(1926), 1, - sym__inter_single_quotes, - STATE(1929), 1, - sym__inter_double_quotes, - STATE(1952), 1, - sym_comment, - STATE(4173), 1, - sym__val_number_decimal, - STATE(5364), 1, - sym_val_bool, - ACTIONS(3068), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3078), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3080), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4311), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5299), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4303), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1924), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1452), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [49218] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4327), 1, - anon_sym_DOT, - ACTIONS(4329), 1, - aux_sym__immediate_decimal_token5, - STATE(1953), 1, - sym_comment, - ACTIONS(1792), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1790), 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, - [49272] = 6, + [50050] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4331), 1, - anon_sym_DOT, - ACTIONS(4333), 1, - aux_sym__immediate_decimal_token5, - STATE(1954), 1, + STATE(1980), 1, sym_comment, - ACTIONS(747), 7, + ACTIONS(866), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -183799,7 +185729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(749), 30, + anon_sym_COLON2, + ACTIONS(868), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -183830,115 +185761,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49326] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1955), 1, - sym_comment, - ACTIONS(1500), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1502), 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_finally, - anon_sym_match, - anon_sym_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, - [49376] = 6, - ACTIONS(3), 1, + [50099] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4335), 1, - anon_sym_DOT_DOT2, - STATE(1956), 1, - sym_comment, - ACTIONS(4337), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2106), 5, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(4380), 1, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2104), 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, - [49429] = 6, + STATE(1932), 1, + aux_sym__types_body_repeat2, + STATE(1981), 1, + sym_comment, + ACTIONS(4343), 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, + [50152] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1653), 1, sym__unquoted_pattern, - ACTIONS(1976), 1, + ACTIONS(2588), 1, anon_sym_LPAREN2, - STATE(1957), 1, + STATE(1982), 1, sym_comment, - ACTIONS(1974), 5, + ACTIONS(2586), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1972), 31, + ACTIONS(2584), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -183970,18 +185855,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49482] = 6, + [50205] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4341), 1, - anon_sym_GT2, - ACTIONS(4343), 1, + ACTIONS(4357), 1, sym__entry_separator, - STATE(1913), 1, + ACTIONS(4359), 1, + sym_raw_string_begin, + ACTIONS(4382), 1, + anon_sym_RBRACK, + STATE(1979), 1, aux_sym__types_body_repeat2, - STATE(1958), 1, + STATE(1983), 1, + sym_comment, + ACTIONS(4353), 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_finally, + 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, + [50260] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(4384), 1, + anon_sym_RBRACK, + STATE(1932), 1, + aux_sym__types_body_repeat2, + STATE(1984), 1, sym_comment, - ACTIONS(4339), 35, + ACTIONS(4351), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -184017,18 +185950,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [49535] = 6, + [50313] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(4347), 1, sym__entry_separator, - ACTIONS(4345), 1, - anon_sym_GT2, - STATE(1913), 1, + ACTIONS(4386), 1, + anon_sym_RBRACK, + STATE(1932), 1, aux_sym__types_body_repeat2, - STATE(1959), 1, + STATE(1985), 1, sym_comment, - ACTIONS(4339), 35, + ACTIONS(4351), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -184064,18 +185997,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [49588] = 6, + [50366] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4392), 1, + anon_sym_DASH_DASH, + STATE(2168), 1, + sym_long_flag, + STATE(1986), 2, + sym_comment, + aux_sym_decl_def_repeat1, + ACTIONS(4388), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4390), 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_finally, + anon_sym_match, + 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, + [50419] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(4357), 1, sym__entry_separator, - ACTIONS(4347), 1, + ACTIONS(4359), 1, + sym_raw_string_begin, + ACTIONS(4395), 1, anon_sym_RBRACK, - STATE(1913), 1, + STATE(1979), 1, aux_sym__types_body_repeat2, - STATE(1960), 1, + STATE(1987), 1, + sym_comment, + ACTIONS(4353), 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_finally, + 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, + [50474] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4397), 1, + sym__newline, + STATE(1988), 2, sym_comment, - ACTIONS(4349), 35, + aux_sym__types_body_repeat1, + ACTIONS(3762), 36, + anon_sym_LBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -184111,65 +186137,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [49641] = 4, - ACTIONS(103), 1, + [50523] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1961), 1, + STATE(1989), 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, - [49690] = 6, + ACTIONS(1732), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1730), 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, + [50572] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4286), 1, - anon_sym_EQ2, - STATE(1962), 1, + ACTIONS(4400), 1, + anon_sym_QMARK2, + STATE(1990), 1, sym_comment, - STATE(2186), 1, - sym__flag_equals_value, - ACTIONS(4351), 3, + ACTIONS(1462), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4353), 33, + anon_sym_DOT2, + ACTIONS(1464), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -184203,22 +186228,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49743] = 6, + [50623] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(785), 1, + anon_sym_COLON2, + ACTIONS(791), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4402), 1, + sym_filesize_unit, + ACTIONS(4404), 1, + sym_duration_unit, + STATE(1991), 1, + sym_comment, + ACTIONS(789), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(787), 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, + [50680] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4406), 1, + aux_sym__immediate_decimal_token5, + STATE(1992), 1, + sym_comment, + ACTIONS(775), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(777), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [50731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - sym__unquoted_pattern, - STATE(1963), 1, + STATE(1993), 1, sym_comment, - ACTIONS(2618), 5, + ACTIONS(1834), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2616), 31, + sym__unquoted_pattern, + ACTIONS(1832), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -184241,6 +186358,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, @@ -184250,69 +186368,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49796] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(4355), 1, - anon_sym_GT2, - STATE(1913), 1, - aux_sym__types_body_repeat2, - STATE(1964), 1, - sym_comment, - ACTIONS(4339), 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, - [49849] = 6, + [50780] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(1965), 1, + STATE(1994), 1, sym_comment, - ACTIONS(1615), 5, + ACTIONS(1921), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 31, + sym__unquoted_pattern, + ACTIONS(1919), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -184335,6 +186403,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, @@ -184344,14 +186413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49902] = 5, + [50829] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4357), 1, - aux_sym__immediate_decimal_token5, - STATE(1966), 1, + STATE(1995), 1, sym_comment, - ACTIONS(767), 7, + ACTIONS(747), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -184359,7 +186426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(769), 30, + anon_sym_COLON2, + ACTIONS(749), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -184390,70 +186458,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49953] = 6, + [50878] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(4408), 1, + anon_sym_GT2, + STATE(1932), 1, + aux_sym__types_body_repeat2, + STATE(1996), 1, + sym_comment, + ACTIONS(4343), 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, + [50931] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4359), 1, - anon_sym_DOT_DOT2, - STATE(1967), 1, + ACTIONS(4400), 1, + anon_sym_BANG, + STATE(1997), 1, sym_comment, - ACTIONS(4361), 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(1699), 30, + ACTIONS(1462), 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, - [50006] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3710), 1, + anon_sym_DOT2, + ACTIONS(1464), 33, sym_raw_string_begin, - ACTIONS(4363), 1, - sym__entry_separator, - STATE(1968), 2, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, + anon_sym_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, + [50982] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4294), 1, + anon_sym_EQ2, + STATE(1998), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3705), 35, + STATE(2179), 1, + sym__flag_equals_value, + ACTIONS(4410), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4412), 33, + 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, @@ -184468,14 +186584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -184483,22 +186598,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [50057] = 6, + [51035] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, + ACTIONS(2594), 1, anon_sym_LPAREN2, - ACTIONS(1992), 1, + ACTIONS(2596), 1, sym__unquoted_pattern, - STATE(1969), 1, + STATE(1999), 1, sym_comment, - ACTIONS(2654), 5, + ACTIONS(2592), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2652), 31, + ACTIONS(2590), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -184530,23 +186645,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50110] = 4, + [51088] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1970), 1, + ACTIONS(4414), 1, + anon_sym_DOT_DOT2, + STATE(2000), 1, sym_comment, - ACTIONS(2362), 6, + ACTIONS(4416), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1588), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2360), 32, + ACTIONS(1714), 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, @@ -184565,7 +186683,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, @@ -184575,74 +186692,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50159] = 7, - ACTIONS(103), 1, + [51141] = 27, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4368), 1, - anon_sym_RBRACK, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(4372), 1, + ACTIONS(3083), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4302), 1, + anon_sym_LPAREN, + ACTIONS(4304), 1, + anon_sym_DOLLAR, + ACTIONS(4306), 1, + anon_sym_DOT_DOT, + ACTIONS(4310), 1, + anon_sym_DQUOTE, + ACTIONS(4312), 1, + anon_sym_SQUOTE, + ACTIONS(4314), 1, + anon_sym_BQUOTE, + ACTIONS(4316), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4318), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4320), 1, + aux_sym_unquoted_token1, + ACTIONS(4322), 1, sym_raw_string_begin, - STATE(1968), 1, - aux_sym__types_body_repeat2, - STATE(1971), 1, + ACTIONS(4365), 1, + anon_sym_null, + ACTIONS(4369), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4373), 1, + sym_val_date, + STATE(1929), 1, + sym__inter_single_quotes, + STATE(1930), 1, + sym__inter_double_quotes, + STATE(2001), 1, sym_comment, - ACTIONS(4366), 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_finally, - anon_sym_match, - anon_sym_in, + STATE(4092), 1, + sym__val_number_decimal, + STATE(5351), 1, + sym_val_bool, + ACTIONS(4308), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4363), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(4371), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5262), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4418), 3, 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, - [50214] = 6, + STATE(1909), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1473), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [51236] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - STATE(1972), 1, + ACTIONS(4326), 1, + aux_sym__immediate_decimal_token5, + STATE(2002), 1, sym_comment, - ACTIONS(1984), 5, + ACTIONS(1786), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1982), 31, + sym__unquoted_pattern, + ACTIONS(1784), 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, @@ -184661,6 +186796,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, @@ -184670,18 +186806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50267] = 6, + [51287] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(4347), 1, sym__entry_separator, - ACTIONS(4374), 1, - anon_sym_GT2, - STATE(1913), 1, + ACTIONS(4420), 1, + anon_sym_RBRACK, + STATE(1932), 1, aux_sym__types_body_repeat2, - STATE(1973), 1, + STATE(2003), 1, sym_comment, - ACTIONS(4339), 35, + ACTIONS(4351), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -184717,25 +186853,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50320] = 7, + [51340] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, + ACTIONS(2346), 1, anon_sym_EQ_GT, - ACTIONS(4359), 1, + ACTIONS(4414), 1, anon_sym_DOT_DOT2, - STATE(1974), 1, + STATE(2004), 1, sym_comment, - ACTIONS(4361), 2, + ACTIONS(4416), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2134), 5, + ACTIONS(2229), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2132), 29, + ACTIONS(2227), 29, anon_sym_in, anon_sym_DASH2, anon_sym_and2, @@ -184765,23 +186901,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50375] = 6, + [51395] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4376), 1, + ACTIONS(4422), 1, anon_sym_DOT_DOT2, - STATE(1975), 1, + STATE(2005), 1, sym_comment, - ACTIONS(4378), 2, + ACTIONS(4424), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 5, + ACTIONS(2092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1972), 30, + ACTIONS(2090), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -184812,26 +186948,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50428] = 6, + [51448] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(1976), 1, + ACTIONS(4426), 1, + anon_sym_DOT_DOT2, + STATE(2006), 1, sym_comment, - ACTIONS(1012), 5, + ACTIONS(4428), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1955), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1226), 31, + ACTIONS(1953), 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, @@ -184859,26 +186995,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50481] = 6, + [51501] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4380), 1, - anon_sym_DOT_DOT2, - STATE(1977), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + STATE(2007), 1, sym_comment, - ACTIONS(4382), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1984), 5, + ACTIONS(2092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1982), 30, + ACTIONS(2090), 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, @@ -184906,26 +187042,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50534] = 6, + [51554] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(1978), 1, + ACTIONS(4414), 1, + anon_sym_DOT_DOT2, + STATE(2008), 1, sym_comment, - ACTIONS(1020), 5, + ACTIONS(4416), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1234), 31, + ACTIONS(2227), 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, @@ -184953,110 +187089,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50587] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1979), 1, - sym_comment, - ACTIONS(863), 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(865), 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, - [50636] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4384), 1, - anon_sym_QMARK2, - STATE(1980), 1, - sym_comment, - ACTIONS(1460), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1462), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [50687] = 4, + [51607] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1981), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2009), 1, sym_comment, - ACTIONS(1848), 6, + ACTIONS(2600), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1846), 32, + ACTIONS(2598), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185079,7 +187127,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, @@ -185089,21 +187136,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50736] = 5, + [51660] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4386), 1, - aux_sym__immediate_decimal_token5, - STATE(1982), 1, + ACTIONS(4430), 1, + anon_sym_DOT_DOT2, + STATE(2010), 1, sym_comment, - ACTIONS(1848), 6, + ACTIONS(4432), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2110), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1846), 31, + ACTIONS(2108), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185125,7 +187174,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, @@ -185135,23 +187183,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50787] = 6, + [51713] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4388), 1, + ACTIONS(4434), 1, anon_sym_DOT_DOT2, - STATE(1983), 1, + STATE(2011), 1, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4436), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2172), 5, + ACTIONS(2243), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2170), 30, + ACTIONS(2241), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185182,70 +187230,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50840] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4396), 1, - anon_sym_DASH_DASH, - STATE(2188), 1, - sym_long_flag, - STATE(1984), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(4392), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4394), 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_finally, - anon_sym_match, - 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, - [50893] = 6, + [51766] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4399), 1, + ACTIONS(4438), 1, anon_sym_DOT_DOT2, - STATE(1985), 1, + STATE(2012), 1, sym_comment, - ACTIONS(4401), 2, + ACTIONS(4440), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2114), 5, + ACTIONS(2251), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2112), 30, + ACTIONS(2249), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185276,23 +187277,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50946] = 6, + [51819] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4442), 1, anon_sym_DOT_DOT2, - STATE(1986), 1, + STATE(2013), 1, sym_comment, - ACTIONS(4405), 2, + ACTIONS(4444), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 5, + ACTIONS(2259), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2120), 30, + ACTIONS(2257), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185323,26 +187324,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50999] = 6, + [51872] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4359), 1, - anon_sym_DOT_DOT2, - STATE(1987), 1, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern, + STATE(2014), 1, sym_comment, - ACTIONS(4361), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2134), 5, + ACTIONS(1588), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2132), 30, + ACTIONS(1714), 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, @@ -185370,19 +187371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51052] = 4, + [51925] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1988), 1, + STATE(2015), 1, sym_comment, - ACTIONS(1897), 6, + ACTIONS(2572), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1895), 32, + ACTIONS(2570), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185415,181 +187416,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51101] = 27, + [51974] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3078), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4221), 1, - anon_sym_LPAREN, - ACTIONS(4223), 1, - anon_sym_DOLLAR, - ACTIONS(4225), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4233), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, - anon_sym_BQUOTE, - ACTIONS(4237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4241), 1, - aux_sym_unquoted_token1, - ACTIONS(4243), 1, - sym_raw_string_begin, - ACTIONS(4409), 1, - anon_sym_null, - ACTIONS(4413), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4417), 1, - sym_val_date, - STATE(1880), 1, - sym__inter_single_quotes, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1989), 1, - sym_comment, - STATE(3982), 1, - sym__val_number_decimal, - STATE(5364), 1, - sym_val_bool, - ACTIONS(4227), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4407), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4415), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5477), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4411), 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(1442), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [51196] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(4419), 1, - anon_sym_RBRACK, - STATE(1913), 1, - aux_sym__types_body_repeat2, - STATE(1990), 1, - sym_comment, - ACTIONS(4349), 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, - [51249] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(4421), 1, - anon_sym_RBRACK, - STATE(1913), 1, - aux_sym__types_body_repeat2, - STATE(1991), 1, + ACTIONS(4446), 1, + aux_sym__immediate_decimal_token5, + STATE(2016), 1, sym_comment, - ACTIONS(4349), 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, - [51302] = 4, + ACTIONS(1834), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1832), 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, + [52025] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1992), 1, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(2017), 1, sym_comment, - ACTIONS(1732), 6, + ACTIONS(1218), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1730), 32, + ACTIONS(1216), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185612,7 +187500,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, @@ -185622,163 +187509,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51351] = 5, + [52078] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4384), 1, - anon_sym_BANG, - STATE(1993), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2018), 1, sym_comment, - ACTIONS(1460), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2792), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2790), 24, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1462), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [51402] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4333), 1, - aux_sym__immediate_decimal_token5, - STATE(1994), 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, - [51453] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, sym__newline, - STATE(1995), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3760), 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, - [51502] = 6, + 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, + [52140] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2576), 1, - anon_sym_LPAREN2, - STATE(1996), 1, + STATE(2019), 1, sym_comment, - ACTIONS(2574), 5, + ACTIONS(1226), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2572), 31, + ACTIONS(1234), 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, @@ -185806,74 +187604,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51555] = 7, - ACTIONS(103), 1, + [52188] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(4372), 1, - sym_raw_string_begin, - ACTIONS(4426), 1, - anon_sym_RBRACK, - STATE(1968), 1, - aux_sym__types_body_repeat2, - STATE(1997), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2020), 1, sym_comment, - ACTIONS(4366), 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_finally, - anon_sym_match, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4466), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2696), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4460), 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, - aux_sym__val_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, - [51610] = 8, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [52258] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2861), 1, + sym__newline, + ACTIONS(4474), 1, + anon_sym_DASH2, + ACTIONS(4486), 1, + anon_sym_PLUS2, + ACTIONS(4490), 1, + anon_sym_bit_DASHand2, + ACTIONS(4492), 1, + anon_sym_bit_DASHxor2, + STATE(2021), 1, + sym_comment, + STATE(2049), 1, + aux_sym__repeat_newline, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4482), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4484), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4478), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4480), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2692), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4470), 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, + [52332] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + ACTIONS(4494), 1, + anon_sym_bit_DASHxor2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2022), 1, + sym_comment, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4466), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2696), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4460), 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, + [52404] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(847), 1, - anon_sym_COLON2, - ACTIONS(853), 1, + ACTIONS(4500), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4428), 1, + ACTIONS(4502), 1, sym_filesize_unit, - ACTIONS(4430), 1, + ACTIONS(4504), 1, sym_duration_unit, - STATE(1998), 1, + STATE(2023), 1, sym_comment, - ACTIONS(851), 5, + ACTIONS(4498), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(849), 29, + ACTIONS(4496), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -185903,74 +187819,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [51667] = 4, + [52458] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4506), 1, + sym__newline, + STATE(2024), 1, + sym_comment, + ACTIONS(4509), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2754), 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(2756), 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, + [52510] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2025), 1, + sym_comment, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4466), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2790), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4460), 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, + [52580] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(1999), 1, + ACTIONS(3745), 1, + sym_raw_string_begin, + ACTIONS(4511), 1, + sym__entry_separator, + STATE(2026), 2, sym_comment, - ACTIONS(767), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(769), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [51716] = 6, + aux_sym__types_body_repeat2, + ACTIONS(3740), 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, + [52630] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4514), 1, + sym__newline, + ACTIONS(4518), 1, + anon_sym_LBRACK, + STATE(2027), 1, + sym_comment, + ACTIONS(4509), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2754), 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(2756), 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, + [52684] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(2000), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + ACTIONS(4494), 1, + anon_sym_bit_DASHxor2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2028), 1, sym_comment, - ACTIONS(2610), 5, - anon_sym_GT2, + ACTIONS(4450), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2608), 31, - anon_sym_in, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4466), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2790), 6, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4460), 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, + [52756] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2362), 1, + anon_sym_DOT2, + STATE(443), 1, + sym_cell_path, + STATE(669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(703), 1, + sym_path, + STATE(2029), 1, + sym_comment, + ACTIONS(1442), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1444), 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, @@ -185986,27 +188116,109 @@ 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, - [51769] = 6, + [52812] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4523), 1, + anon_sym_RBRACK, + ACTIONS(4525), 1, + sym__entry_separator, + ACTIONS(4527), 1, + sym_raw_string_begin, + STATE(2026), 1, + aux_sym__types_body_repeat2, + STATE(2030), 1, + sym_comment, + ACTIONS(4521), 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, + [52866] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(4525), 1, sym__entry_separator, - ACTIONS(4432), 1, + ACTIONS(4527), 1, + sym_raw_string_begin, + ACTIONS(4529), 1, anon_sym_RBRACK, - STATE(1913), 1, + STATE(2026), 1, aux_sym__types_body_repeat2, - STATE(2001), 1, + STATE(2031), 1, + sym_comment, + ACTIONS(4521), 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, + [52920] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4531), 1, + sym__newline, + STATE(2032), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(4349), 35, + ACTIONS(1878), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -186042,188 +188254,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [51822] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3078), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4305), 1, - anon_sym_LPAREN, - ACTIONS(4307), 1, - anon_sym_DOLLAR, - ACTIONS(4309), 1, - anon_sym_DOT_DOT, - ACTIONS(4313), 1, - anon_sym_DQUOTE, - ACTIONS(4315), 1, - anon_sym_SQUOTE, - ACTIONS(4317), 1, - anon_sym_BQUOTE, - ACTIONS(4319), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4321), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4323), 1, - aux_sym_unquoted_token1, - ACTIONS(4325), 1, - sym_raw_string_begin, - ACTIONS(4409), 1, - anon_sym_null, - ACTIONS(4413), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4417), 1, - sym_val_date, - STATE(1926), 1, - sym__inter_single_quotes, - STATE(1929), 1, - sym__inter_double_quotes, - STATE(2002), 1, - sym_comment, - STATE(4173), 1, - sym__val_number_decimal, - STATE(5364), 1, - sym_val_bool, - ACTIONS(4311), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4407), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4415), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5299), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4434), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1924), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1456), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [51917] = 5, + [52968] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4329), 1, - aux_sym__immediate_decimal_token5, - STATE(2003), 1, - sym_comment, - ACTIONS(1792), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1790), 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, - [51968] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(4372), 1, - sym_raw_string_begin, - ACTIONS(4436), 1, - anon_sym_RBRACK, - STATE(1968), 1, - aux_sym__types_body_repeat2, - STATE(2004), 1, + ACTIONS(4534), 1, + anon_sym_LBRACK2, + STATE(2033), 1, sym_comment, - ACTIONS(4366), 34, + ACTIONS(2342), 3, 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_finally, - 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, - [52023] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(4372), 1, + ACTIONS(2340), 33, sym_raw_string_begin, - ACTIONS(4438), 1, - anon_sym_RBRACK, - STATE(1968), 1, - aux_sym__types_body_repeat2, - STATE(2005), 1, - sym_comment, - ACTIONS(4366), 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, @@ -186238,13 +188285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, @@ -186252,30 +188299,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [52078] = 10, + [53018] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, + ACTIONS(4448), 1, anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2034), 1, + sym_comment, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2720), 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, + [53082] = 11, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2006), 1, + STATE(2035), 1, sym_comment, - ACTIONS(2786), 2, + ACTIONS(2722), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2784), 26, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2720), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186297,27 +188399,34 @@ 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, - [52138] = 4, + [53144] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2007), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2036), 1, sym_comment, - ACTIONS(1848), 6, - anon_sym_GT2, + ACTIONS(4450), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2722), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1846), 31, + ACTIONS(2720), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186336,32 +188445,32 @@ 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, - [52186] = 4, + [53200] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2008), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2037), 1, sym_comment, - ACTIONS(1897), 6, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2722), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1895), 31, + ACTIONS(2720), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186380,9 +188489,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, @@ -186390,155 +188496,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52234] = 3, + [53252] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2009), 1, - sym_comment, - ACTIONS(2774), 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, - [52280] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2010), 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, - [52328] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(974), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4450), 1, - sym_filesize_unit, - ACTIONS(4452), 1, - sym_duration_unit, - STATE(2011), 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, - [52382] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2012), 1, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2038), 1, sym_comment, - ACTIONS(3756), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3754), 35, + ACTIONS(2600), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2598), 33, + 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, @@ -186553,14 +188527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -186568,25 +188541,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [52430] = 6, + [53302] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(1806), 1, sym__unquoted_pattern, - STATE(2013), 1, + STATE(2039), 1, sym_comment, - ACTIONS(1615), 5, + ACTIONS(785), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 30, + ACTIONS(884), 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, @@ -186614,19 +188586,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52482] = 5, + [53352] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4454), 1, - sym__newline, - STATE(2014), 2, + ACTIONS(2580), 1, + sym__unquoted_pattern, + STATE(2040), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3758), 3, + ACTIONS(1588), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3760), 32, + ACTIONS(1714), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -186652,6 +188623,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -186659,26 +188631,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [52532] = 4, + [53402] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2015), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + ACTIONS(4494), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4536), 1, + anon_sym_bit_DASHor2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2041), 1, sym_comment, - ACTIONS(2618), 5, - anon_sym_GT2, + ACTIONS(4450), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2616), 32, - anon_sym_in, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4466), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2720), 5, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4460), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -186686,88 +188688,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [53476] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + ACTIONS(4494), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4536), 1, + anon_sym_bit_DASHor2, + ACTIONS(4538), 1, + anon_sym_and2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2042), 1, + sym_comment, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2720), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(4460), 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, + [53552] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + ACTIONS(4494), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4536), 1, + anon_sym_bit_DASHor2, + ACTIONS(4538), 1, + anon_sym_and2, + ACTIONS(4540), 1, + anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2043), 1, + sym_comment, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [52580] = 7, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2720), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4466), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4460), 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, + [53630] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4457), 1, - sym__newline, - ACTIONS(4461), 1, - anon_sym_LBRACK, - STATE(2016), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2044), 1, sym_comment, - ACTIONS(4464), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2772), 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(2774), 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, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4460), 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(2720), 12, + 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, - [52634] = 6, + 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, + [53696] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - STATE(2017), 1, + STATE(2045), 1, sym_comment, - ACTIONS(1974), 5, + ACTIONS(2600), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1972), 30, + ACTIONS(2598), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -186796,86 +188902,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52686] = 7, - ACTIONS(103), 1, + [53744] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4470), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4472), 1, - sym_filesize_unit, - ACTIONS(4474), 1, - sym_duration_unit, - STATE(2018), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2046), 1, sym_comment, - ACTIONS(4468), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4466), 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, - [52740] = 8, + ACTIONS(2722), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2720), 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, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53804] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2358), 1, - anon_sym_DOT2, - STATE(432), 1, - sym_cell_path, - STATE(526), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(715), 1, - sym_path, - STATE(2019), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2047), 1, sym_comment, - ACTIONS(1454), 2, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(1456), 31, - ts_builtin_sym_end, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4466), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2720), 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(4460), 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, + [53872] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2048), 1, + sym_comment, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4466), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2720), 7, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4460), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -186883,78 +189061,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [53942] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + ACTIONS(4494), 1, + anon_sym_bit_DASHxor2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2049), 1, + sym_comment, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [52796] = 5, - ACTIONS(103), 1, + ACTIONS(2720), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4460), 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, + [54014] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3710), 1, - sym_raw_string_begin, - ACTIONS(4476), 1, - sym__entry_separator, - STATE(2020), 2, + ACTIONS(2861), 1, + sym__newline, + ACTIONS(4474), 1, + anon_sym_DASH2, + ACTIONS(4486), 1, + anon_sym_PLUS2, + STATE(2034), 1, + aux_sym__repeat_newline, + STATE(2050), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3705), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4482), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4484), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4478), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2692), 19, + anon_sym_in, 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, - [52846] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_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, + [54080] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - STATE(2021), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2051), 1, sym_comment, - ACTIONS(2654), 5, - anon_sym_GT2, + ACTIONS(4450), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2652), 30, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2696), 20, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186965,42 +189215,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, - [52898] = 6, + [54144] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - STATE(2022), 1, + ACTIONS(2861), 1, + sym__newline, + ACTIONS(4474), 1, + anon_sym_DASH2, + ACTIONS(4486), 1, + anon_sym_PLUS2, + STATE(2035), 1, + aux_sym__repeat_newline, + STATE(2052), 1, sym_comment, - ACTIONS(1984), 5, + ACTIONS(2694), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4476), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1982), 30, + ACTIONS(4482), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4484), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2692), 23, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187019,31 +189271,25 @@ 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, - [52950] = 6, + [54208] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(2576), 1, + ACTIONS(2094), 1, anon_sym_LPAREN2, - STATE(2023), 1, + STATE(2053), 1, sym_comment, - ACTIONS(2574), 5, + ACTIONS(2092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2572), 30, + ACTIONS(2090), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -187074,25 +189320,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53002] = 6, + [54260] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(2024), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2054), 1, sym_comment, - ACTIONS(2610), 5, + ACTIONS(2698), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4450), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2608), 30, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2696), 24, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187111,28 +189368,25 @@ 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, - [53054] = 4, + [54322] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2025), 1, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern, + STATE(2055), 1, sym_comment, - ACTIONS(2362), 6, + ACTIONS(1588), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2360), 31, + ACTIONS(1714), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -187154,7 +189408,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, @@ -187164,18 +189417,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53102] = 5, + [54374] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4525), 1, + sym__entry_separator, + ACTIONS(4527), 1, + sym_raw_string_begin, + ACTIONS(4542), 1, + anon_sym_RBRACK, + STATE(2026), 1, + aux_sym__types_body_repeat2, + STATE(2056), 1, + sym_comment, + ACTIONS(4521), 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, + [54428] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4548), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4550), 1, + sym_filesize_unit, + ACTIONS(4552), 1, + sym_duration_unit, + STATE(2057), 1, + sym_comment, + ACTIONS(4546), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4544), 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, + [54482] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4187), 1, + ACTIONS(2608), 1, sym__unquoted_pattern, - STATE(2026), 1, + STATE(2058), 1, sym_comment, - ACTIONS(847), 3, + ACTIONS(1218), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 33, + ACTIONS(1216), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -187209,17 +189556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [53152] = 4, + [54532] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2027), 1, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(2059), 1, sym_comment, - ACTIONS(2362), 4, + ACTIONS(1226), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2360), 33, + ACTIONS(1234), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -187253,208 +189601,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [53200] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4481), 1, - anon_sym_RBRACK, - ACTIONS(4483), 1, - sym__entry_separator, - ACTIONS(4485), 1, - sym_raw_string_begin, - STATE(2020), 1, - aux_sym__types_body_repeat2, - STATE(2028), 1, - sym_comment, - ACTIONS(4479), 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, - [53254] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4483), 1, - sym__entry_separator, - ACTIONS(4485), 1, - sym_raw_string_begin, - ACTIONS(4487), 1, - anon_sym_RBRACK, - STATE(2020), 1, - aux_sym__types_body_repeat2, - STATE(2029), 1, - sym_comment, - ACTIONS(4479), 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, - [53308] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4457), 1, - sym__newline, - ACTIONS(4461), 1, - anon_sym_LBRACK, - ACTIONS(4489), 1, - anon_sym_DOT_DOT, - STATE(2030), 1, - sym_comment, - ACTIONS(4464), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2772), 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(2774), 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, - [53364] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4492), 1, - sym__newline, - STATE(2031), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1862), 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, - [53412] = 6, + [54582] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2620), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(2032), 1, + STATE(2060), 1, sym_comment, - ACTIONS(2618), 5, + ACTIONS(2600), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2616), 30, + ACTIONS(2598), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -187485,25 +189647,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53464] = 6, + [54634] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(2033), 1, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(4474), 1, + anon_sym_DASH2, + ACTIONS(4486), 1, + anon_sym_PLUS2, + STATE(2061), 1, sym_comment, - ACTIONS(1012), 5, + STATE(2095), 1, + aux_sym__repeat_newline, + ACTIONS(4472), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4476), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1226), 30, + ACTIONS(4482), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4484), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4478), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2734), 19, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187514,57 +189693,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, - [53516] = 13, + [54700] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(2034), 1, + STATE(2062), 1, sym_comment, - STATE(2055), 1, + STATE(2097), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(2736), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2798), 19, + ACTIONS(2734), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -187577,6 +189741,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, @@ -187584,80 +189752,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53582] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2035), 1, - sym_comment, - ACTIONS(767), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(769), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [53630] = 12, + [54764] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - STATE(2036), 1, + STATE(2063), 1, sym_comment, - STATE(2057), 1, + STATE(2099), 1, aux_sym__repeat_newline, - ACTIONS(2800), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2798), 23, + ACTIONS(2736), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2734), 26, anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187677,32 +189796,34 @@ 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, - [53694] = 9, + [54822] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2861), 1, sym__newline, - STATE(2037), 1, - sym_comment, - STATE(2059), 1, + STATE(2036), 1, aux_sym__repeat_newline, - ACTIONS(4499), 2, + STATE(2064), 1, + sym_comment, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2800), 3, + ACTIONS(2694), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2798), 26, + ACTIONS(2692), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -187729,25 +189850,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53752] = 6, + [54880] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(2038), 1, + ACTIONS(2832), 1, + sym__newline, + STATE(2065), 1, sym_comment, - ACTIONS(1020), 5, + STATE(2101), 1, + aux_sym__repeat_newline, + ACTIONS(4482), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2736), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1234), 30, + ACTIONS(2734), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187766,8 +189890,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, @@ -187775,28 +189897,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53804] = 7, + [54934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__newline, - STATE(2039), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + STATE(2066), 1, sym_comment, - STATE(2061), 1, - aux_sym__repeat_newline, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2800), 5, + ACTIONS(2576), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2798), 28, + ACTIONS(2574), 30, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187815,6 +189934,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, @@ -187822,100 +189943,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53858] = 4, + [54986] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2040), 1, - sym_comment, - ACTIONS(1468), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1470), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [53906] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - STATE(2041), 1, + STATE(2067), 1, sym_comment, - STATE(2063), 1, + STATE(2103), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2798), 4, + ACTIONS(2734), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187924,57 +190001,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53982] = 19, + [55062] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - ACTIONS(4521), 1, + ACTIONS(4556), 1, anon_sym_and2, - STATE(2042), 1, + STATE(2068), 1, sym_comment, - STATE(2065), 1, + STATE(2105), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2798), 3, + ACTIONS(2734), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187983,103 +190060,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54060] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - STATE(1913), 1, - aux_sym__types_body_repeat2, - STATE(2043), 1, - sym_comment, - ACTIONS(4349), 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, - [54110] = 20, + [55140] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - ACTIONS(4521), 1, + ACTIONS(4556), 1, anon_sym_and2, - ACTIONS(4523), 1, + ACTIONS(4558), 1, anon_sym_xor2, - STATE(2044), 1, + STATE(2069), 1, sym_comment, - STATE(2067), 1, + STATE(2107), 1, aux_sym__repeat_newline, - ACTIONS(2798), 2, + ACTIONS(2734), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188088,40 +190120,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54190] = 14, + [55220] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(2045), 1, + STATE(2070), 1, sym_comment, - STATE(2069), 1, + STATE(2110), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188130,7 +190162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2798), 11, + ACTIONS(2734), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -188142,32 +190174,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54258] = 11, + [55288] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4514), 1, + sym__newline, + ACTIONS(4518), 1, + anon_sym_LBRACK, + ACTIONS(4560), 1, + anon_sym_DOT_DOT, + STATE(2071), 1, + sym_comment, + ACTIONS(4509), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2754), 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(2756), 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, + [55344] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(2046), 1, + STATE(2072), 1, sym_comment, - STATE(2071), 1, + STATE(2114), 1, aux_sym__repeat_newline, - ACTIONS(2800), 2, + ACTIONS(2736), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2798), 25, + ACTIONS(2734), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -188193,45 +190273,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54320] = 15, + [55406] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(2047), 1, - sym_comment, STATE(2073), 1, + sym_comment, + STATE(2116), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2798), 7, + ACTIONS(2734), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -188239,7 +190319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188248,54 +190328,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54390] = 16, + [55476] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - STATE(2048), 1, + STATE(2074), 1, sym_comment, - STATE(2075), 1, + STATE(2124), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2798), 6, + ACTIONS(2734), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188304,55 +190384,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54462] = 17, + [55548] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - STATE(2049), 1, + STATE(2075), 1, sym_comment, - STATE(2077), 1, + STATE(2126), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2798), 5, + ACTIONS(2734), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188361,221 +190441,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54536] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2050), 1, - sym_comment, - ACTIONS(1543), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [54584] = 5, + [55622] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4525), 1, - anon_sym_LBRACK2, - STATE(2051), 1, + STATE(2076), 1, sym_comment, - ACTIONS(2166), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2164), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [54634] = 4, + ACTIONS(2756), 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, + [55668] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2052), 1, - sym_comment, - ACTIONS(1551), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1553), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [54682] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(4372), 1, - sym_raw_string_begin, - STATE(1968), 1, - aux_sym__types_body_repeat2, - STATE(2053), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2077), 1, sym_comment, - ACTIONS(4366), 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_finally, - anon_sym_match, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2698), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2696), 27, 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, - [54734] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2874), 1, sym__newline, - ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - STATE(2054), 1, + 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, + [55724] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(2078), 1, sym_comment, - STATE(2094), 1, - aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(1218), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4503), 2, + anon_sym_PLUS2, + ACTIONS(1216), 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(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [55776] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2861), 1, + sym__newline, + STATE(2037), 1, + aux_sym__repeat_newline, + STATE(2079), 1, + sym_comment, + ACTIONS(4482), 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), 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, - ACTIONS(2788), 19, + 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, + [55830] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + STATE(2080), 1, + sym_comment, + ACTIONS(1955), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1953), 30, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188586,48 +190654,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, - [54800] = 12, + [55882] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2055), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2588), 1, + anon_sym_LPAREN2, + STATE(2081), 1, sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, + ACTIONS(2586), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2794), 20, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2584), 30, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188638,27 +190700,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_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, - [54864] = 7, + [55934] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4483), 1, + ACTIONS(4525), 1, sym__entry_separator, - ACTIONS(4485), 1, + ACTIONS(4527), 1, sym_raw_string_begin, - ACTIONS(4533), 1, + ACTIONS(4563), 1, anon_sym_RBRACK, - STATE(2020), 1, + STATE(2026), 1, aux_sym__types_body_repeat2, - STATE(2056), 1, + STATE(2082), 1, sym_comment, - ACTIONS(4479), 33, + ACTIONS(4521), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -188692,36 +190764,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [54918] = 11, + [55988] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2057), 1, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(2083), 1, sym_comment, - ACTIONS(2796), 2, + ACTIONS(2592), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4442), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2794), 24, + anon_sym_PLUS2, + ACTIONS(2590), 30, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188740,79 +190801,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54980] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2874), 1, - sym__newline, - STATE(2058), 1, - sym_comment, - STATE(2096), 1, - aux_sym__repeat_newline, - ACTIONS(4499), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2790), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2788), 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, - [55038] = 8, + [56040] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2059), 1, + STATE(2084), 1, sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2796), 3, + ACTIONS(2698), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2794), 27, + ACTIONS(2696), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -188835,33 +190849,29 @@ 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, - [55094] = 7, + [56092] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - sym__newline, - STATE(2060), 1, + STATE(2085), 1, sym_comment, - STATE(2097), 1, - aux_sym__repeat_newline, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2790), 5, + ACTIONS(2572), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2788), 28, + sym__unquoted_pattern, + ACTIONS(2570), 31, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188880,6 +190890,9 @@ 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, @@ -188887,27 +190900,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55148] = 6, + [56140] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2061), 1, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(2086), 1, sym_comment, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2796), 5, + ACTIONS(1226), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2794), 29, + ACTIONS(1234), 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, @@ -188926,6 +190937,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, @@ -188933,56 +190946,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55200] = 18, + [56192] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2861), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - STATE(2062), 1, - sym_comment, - STATE(2098), 1, + STATE(2041), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + STATE(2087), 1, + sym_comment, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2788), 4, + ACTIONS(2692), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188991,55 +191004,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55276] = 17, + [56268] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2088), 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, + [56316] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4468), 1, anon_sym_bit_DASHand2, - ACTIONS(4541), 1, + ACTIONS(4494), 1, anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, + ACTIONS(4536), 1, anon_sym_bit_DASHor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2063), 1, + STATE(2089), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2794), 5, + ACTIONS(2696), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4535), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189048,57 +191105,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55350] = 19, + [56390] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2861), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - ACTIONS(4521), 1, + ACTIONS(4556), 1, anon_sym_and2, - STATE(2064), 1, - sym_comment, - STATE(2100), 1, + STATE(2042), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + STATE(2090), 1, + sym_comment, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2788), 3, + ACTIONS(2692), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189107,56 +191164,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55428] = 18, + [56468] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4468), 1, anon_sym_bit_DASHand2, - ACTIONS(4541), 1, + ACTIONS(4494), 1, anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, + ACTIONS(4536), 1, anon_sym_bit_DASHor2, - ACTIONS(4545), 1, + ACTIONS(4538), 1, anon_sym_and2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2065), 1, + STATE(2091), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2794), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2696), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4529), 4, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4535), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189165,58 +191222,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55504] = 20, + [56544] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - ACTIONS(4521), 1, + ACTIONS(4556), 1, anon_sym_and2, - ACTIONS(4523), 1, + ACTIONS(4558), 1, anon_sym_xor2, - STATE(2066), 1, - sym_comment, - STATE(2101), 1, + STATE(2043), 1, aux_sym__repeat_newline, - ACTIONS(2788), 2, + STATE(2092), 1, + sym_comment, + ACTIONS(2692), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189225,57 +191282,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55584] = 19, + [56624] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4468), 1, anon_sym_bit_DASHand2, - ACTIONS(4541), 1, + ACTIONS(4494), 1, anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, + ACTIONS(4536), 1, anon_sym_bit_DASHor2, - ACTIONS(4545), 1, + ACTIONS(4538), 1, anon_sym_and2, - ACTIONS(4547), 1, + ACTIONS(4540), 1, anon_sym_xor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2067), 1, + STATE(2093), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2794), 3, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2696), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4529), 4, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4535), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189284,41 +191341,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55662] = 14, + [56702] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(2068), 1, + STATE(2094), 1, sym_comment, - STATE(2102), 1, + STATE(2157), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4511), 8, + ACTIONS(2822), 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, @@ -189326,11 +191387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2788), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -189338,39 +191394,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55730] = 13, + [56768] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2069), 1, + STATE(2095), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4535), 8, + ACTIONS(2826), 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, @@ -189378,12 +191439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2794), 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, @@ -189391,32 +191446,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55796] = 11, + [56832] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(2006), 1, + STATE(2018), 1, aux_sym__repeat_newline, - STATE(2070), 1, + STATE(2096), 1, sym_comment, - ACTIONS(2790), 2, + ACTIONS(2824), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2788), 25, + ACTIONS(4488), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2822), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -189437,35 +191495,36 @@ 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, - [55858] = 10, + [56896] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2071), 1, + STATE(2097), 1, sym_comment, - ACTIONS(2796), 2, + ACTIONS(2828), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2794), 26, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2826), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -189487,59 +191546,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, - [55918] = 15, + [56958] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - STATE(2072), 1, + STATE(2098), 1, sym_comment, - STATE(2104), 1, + STATE(2159), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4513), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2788), 7, + ACTIONS(2824), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2822), 26, + anon_sym_in, + 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(4511), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189547,109 +191585,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55988] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2073), 1, - sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2794), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4535), 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, - [56056] = 16, + [57016] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - ACTIONS(4515), 1, - anon_sym_bit_DASHand2, - STATE(2074), 1, - sym_comment, - STATE(2105), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, + STATE(2099), 1, + sym_comment, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4513), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2788), 6, + ACTIONS(2828), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2826), 27, + 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(4511), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189657,111 +191633,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56128] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - ACTIONS(4539), 1, - anon_sym_bit_DASHand2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2075), 1, - sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2794), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4535), 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, - [56198] = 17, + [57072] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - ACTIONS(4515), 1, - anon_sym_bit_DASHand2, - ACTIONS(4517), 1, - anon_sym_bit_DASHxor2, - STATE(2076), 1, + STATE(2100), 1, sym_comment, - STATE(2106), 1, + STATE(2160), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(4482), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2824), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4513), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2788), 5, + anon_sym_PLUS2, + ACTIONS(2822), 28, + anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4511), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189769,97 +191678,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56272] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - ACTIONS(4539), 1, - anon_sym_bit_DASHand2, - ACTIONS(4541), 1, - anon_sym_bit_DASHxor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2077), 1, - sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2794), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_mod2, + 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(4535), 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, - [56344] = 13, + [57126] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - STATE(2078), 1, - sym_comment, - STATE(2108), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + STATE(2101), 1, + sym_comment, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2828), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2776), 19, + anon_sym_PLUS2, + ACTIONS(2826), 29, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -189871,139 +191724,129 @@ 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, - [56410] = 12, + [57178] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(2079), 1, + ACTIONS(4490), 1, + anon_sym_bit_DASHand2, + ACTIONS(4492), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4554), 1, + anon_sym_bit_DASHor2, + STATE(2102), 1, sym_comment, - STATE(2110), 1, + STATE(2161), 1, aux_sym__repeat_newline, - ACTIONS(2778), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2776), 23, - anon_sym_in, + ACTIONS(2822), 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(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(4470), 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, + [57254] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, anon_sym_bit_DASHand2, + ACTIONS(4494), 1, anon_sym_bit_DASHxor2, + ACTIONS(4536), 1, anon_sym_bit_DASHor2, - [56474] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - STATE(2080), 1, - sym_comment, - STATE(2112), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(4499), 2, + STATE(2103), 1, + sym_comment, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2778), 3, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2776), 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, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4466), 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, - [56532] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(2826), 5, sym__newline, - STATE(2081), 1, - sym_comment, - STATE(2115), 1, - aux_sym__repeat_newline, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2778), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2776), 28, - anon_sym_in, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4460), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -190011,71 +191854,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56586] = 18, + [57328] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - STATE(2082), 1, + ACTIONS(4556), 1, + anon_sym_and2, + STATE(2104), 1, sym_comment, - STATE(2117), 1, + STATE(2162), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2776), 4, + ACTIONS(2822), 3, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190084,102 +191913,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56662] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - STATE(1913), 1, - aux_sym__types_body_repeat2, - STATE(2083), 1, - sym_comment, - ACTIONS(4339), 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, - [56712] = 19, + [57406] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - ACTIONS(4497), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4468), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4494), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4536), 1, anon_sym_bit_DASHor2, - ACTIONS(4521), 1, + ACTIONS(4538), 1, anon_sym_and2, - STATE(2084), 1, - sym_comment, - STATE(2119), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, + STATE(2105), 1, + sym_comment, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2776), 3, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2826), 4, + sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4501), 4, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190188,103 +191971,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56790] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2622), 1, - sym__unquoted_pattern, - STATE(2085), 1, - sym_comment, - ACTIONS(2618), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2616), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [56840] = 20, + [57482] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - ACTIONS(4521), 1, + ACTIONS(4556), 1, anon_sym_and2, - ACTIONS(4523), 1, + ACTIONS(4558), 1, anon_sym_xor2, - STATE(2086), 1, + STATE(2106), 1, sym_comment, - STATE(2122), 1, + STATE(2163), 1, aux_sym__repeat_newline, - ACTIONS(2776), 2, + ACTIONS(2822), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190293,85 +192031,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56920] = 5, + [57562] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - sym__unquoted_pattern, - STATE(2087), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + ACTIONS(4494), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4536), 1, + anon_sym_bit_DASHor2, + ACTIONS(4538), 1, + anon_sym_and2, + ACTIONS(4540), 1, + anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2107), 1, sym_comment, - ACTIONS(847), 5, - anon_sym_GT2, + ACTIONS(4450), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 31, - anon_sym_in, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2826), 3, 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, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4466), 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, - [56970] = 14, + ACTIONS(4460), 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, + [57640] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(2861), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(2088), 1, - sym_comment, - STATE(2124), 1, + STATE(2044), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + STATE(2108), 1, + sym_comment, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190380,7 +192132,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), 11, + ACTIONS(2692), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -190392,37 +192144,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57038] = 11, + [57708] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(2089), 1, + STATE(2109), 1, sym_comment, - STATE(2126), 1, + STATE(2164), 1, aux_sym__repeat_newline, - ACTIONS(2778), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2776), 25, + ACTIONS(4488), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4478), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4470), 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, @@ -190430,66 +192186,50 @@ 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(2822), 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_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57100] = 15, + [57776] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - ACTIONS(4497), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4456), 1, anon_sym_PLUS2, - STATE(2090), 1, - sym_comment, - STATE(2129), 1, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, + STATE(2110), 1, + sym_comment, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2776), 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(4511), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190498,55 +192238,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57170] = 16, + ACTIONS(2826), 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, + [57842] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, - anon_sym_bit_DASHand2, - STATE(2091), 1, + STATE(2111), 1, sym_comment, - STATE(2131), 1, + STATE(2158), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(2824), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4513), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2776), 6, + ACTIONS(2822), 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(4511), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -190554,80 +192289,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57242] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2887), 1, - sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - ACTIONS(4515), 1, - anon_sym_bit_DASHand2, - ACTIONS(4517), 1, - anon_sym_bit_DASHxor2, - STATE(2092), 1, - sym_comment, - STATE(2133), 1, - aux_sym__repeat_newline, - ACTIONS(4495), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2776), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4511), 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, - [57316] = 5, - ACTIONS(3), 1, + [57904] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(2093), 1, + ACTIONS(4357), 1, + sym__entry_separator, + ACTIONS(4359), 1, + sym_raw_string_begin, + STATE(1979), 1, + aux_sym__types_body_repeat2, + STATE(2112), 1, sym_comment, - ACTIONS(1615), 3, + ACTIONS(4353), 34, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1699), 33, - 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, @@ -190642,13 +192334,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_finally, 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, @@ -190656,85 +192348,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [57366] = 12, - ACTIONS(3), 1, + [57956] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2094), 1, + ACTIONS(904), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4565), 1, + sym_filesize_unit, + ACTIONS(4567), 1, + sym_duration_unit, + STATE(2113), 1, sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2784), 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, - [57430] = 11, + ACTIONS(902), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(900), 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, + [58010] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2095), 1, + STATE(2114), 1, sym_comment, - ACTIONS(2786), 2, + ACTIONS(2828), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2784), 24, + ACTIONS(2826), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -190756,81 +192440,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, - [57492] = 8, + [58070] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2096), 1, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(4474), 1, + anon_sym_DASH2, + ACTIONS(4486), 1, + anon_sym_PLUS2, + STATE(2115), 1, sym_comment, - ACTIONS(4442), 2, + STATE(2166), 1, + aux_sym__repeat_newline, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2786), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2784), 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, + ACTIONS(4488), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4480), 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, - [57548] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2097), 1, - sym_comment, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2786), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2784), 29, - anon_sym_in, - sym__newline, - anon_sym_DASH2, + ACTIONS(2822), 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(4470), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -190838,70 +192500,52 @@ 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, - [57600] = 17, + [58140] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, - anon_sym_bit_DASHand2, - ACTIONS(4541), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, - anon_sym_bit_DASHor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2098), 1, + STATE(2116), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2784), 5, + ACTIONS(2826), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4535), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190910,24 +192554,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57674] = 7, + [58208] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(888), 1, + ACTIONS(4573), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4549), 1, + ACTIONS(4575), 1, sym_filesize_unit, - ACTIONS(4551), 1, + ACTIONS(4577), 1, sym_duration_unit, - STATE(2099), 1, + STATE(2117), 1, sym_comment, - ACTIONS(886), 5, + ACTIONS(4571), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(884), 29, + ACTIONS(4569), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -190957,155 +192601,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [57728] = 18, + [58262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - ACTIONS(4539), 1, - anon_sym_bit_DASHand2, - ACTIONS(4541), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, - anon_sym_bit_DASHor2, - ACTIONS(4545), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2100), 1, + STATE(2118), 1, sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2784), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4529), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4537), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4535), 8, + ACTIONS(1512), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [57804] = 19, + anon_sym_DOT2, + ACTIONS(1514), 33, + 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_finally, + anon_sym_match, + anon_sym_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, + [58310] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2119), 1, + sym_comment, + ACTIONS(1545), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1547), 33, + 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_finally, + anon_sym_match, + anon_sym_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, + [58358] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4448), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4541), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, - anon_sym_bit_DASHor2, - ACTIONS(4545), 1, - anon_sym_and2, - ACTIONS(4547), 1, - anon_sym_xor2, - STATE(485), 1, + STATE(2025), 1, aux_sym__repeat_newline, - STATE(2101), 1, + STATE(2120), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2784), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4529), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4535), 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, - [57882] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2102), 1, - sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4535), 8, + ACTIONS(2822), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191114,33 +192745,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2784), 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, - [57948] = 4, + [58430] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2103), 1, + ACTIONS(4583), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4585), 1, + sym_filesize_unit, + ACTIONS(4587), 1, + sym_duration_unit, + STATE(2121), 1, sym_comment, - ACTIONS(863), 7, + ACTIONS(4581), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, + ACTIONS(4579), 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, + [58484] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4593), 1, aux_sym_cmd_identifier_token6, + ACTIONS(4595), 1, sym_filesize_unit, - ACTIONS(865), 30, + ACTIONS(4597), 1, + sym_duration_unit, + STATE(2122), 1, + sym_comment, + ACTIONS(4591), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4589), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -191170,53 +192839,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [57996] = 14, + [58538] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2123), 1, + sym_comment, + ACTIONS(1476), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1478), 33, + 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_finally, + anon_sym_match, + anon_sym_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, + [58586] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - STATE(485), 1, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2104), 1, + STATE(2124), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2784), 8, + ACTIONS(2826), 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(4535), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191225,53 +192938,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58064] = 15, + [58656] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4448), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - STATE(485), 1, + ACTIONS(4492), 1, + anon_sym_bit_DASHxor2, + STATE(2028), 1, aux_sym__repeat_newline, - STATE(2105), 1, + STATE(2125), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2784), 7, - sym__newline, + ACTIONS(2822), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4535), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191280,54 +192995,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58134] = 16, + [58730] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4468), 1, anon_sym_bit_DASHand2, - ACTIONS(4541), 1, + ACTIONS(4494), 1, anon_sym_bit_DASHxor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2106), 1, + STATE(2126), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2784), 6, + ACTIONS(2826), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4535), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191336,40 +193051,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58206] = 13, + [58802] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2928), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(2107), 1, - sym_comment, - STATE(2136), 1, + STATE(2051), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + STATE(2127), 1, + sym_comment, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2806), 19, + ACTIONS(2688), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -191389,44 +193104,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58272] = 12, + [58868] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2108), 1, + STATE(2128), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2810), 20, + ACTIONS(4460), 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, @@ -191434,58 +193144,12 @@ 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, - [58336] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2696), 12, sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - STATE(2109), 1, - sym_comment, - STATE(2137), 1, - aux_sym__repeat_newline, - ACTIONS(2808), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2806), 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, @@ -191493,35 +193157,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58400] = 11, + [58934] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4448), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(2054), 1, aux_sym__repeat_newline, - STATE(2110), 1, + STATE(2129), 1, sym_comment, - ACTIONS(2812), 2, + ACTIONS(2690), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4442), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4531), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2810), 24, + ACTIONS(2688), 23, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -191544,29 +193209,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58462] = 9, + [58998] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2928), 1, sym__newline, - STATE(2111), 1, - sym_comment, - STATE(2138), 1, + STATE(2077), 1, aux_sym__repeat_newline, - ACTIONS(4499), 2, + STATE(2130), 1, + sym_comment, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2808), 3, + ACTIONS(2690), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2806), 26, + ACTIONS(2688), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -191593,29 +193258,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58520] = 8, + [59056] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + ACTIONS(2928), 1, + sym__newline, + STATE(2084), 1, aux_sym__repeat_newline, - STATE(2112), 1, + STATE(2131), 1, sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2812), 3, + ACTIONS(2690), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2810), 27, + ACTIONS(2688), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -191636,79 +193298,85 @@ 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, - [58576] = 7, + [59110] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4557), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4559), 1, - sym_filesize_unit, - ACTIONS(4561), 1, - sym_duration_unit, - STATE(2113), 1, + ACTIONS(4347), 1, + sym__entry_separator, + STATE(1932), 1, + aux_sym__types_body_repeat2, + STATE(2132), 1, sym_comment, - ACTIONS(4555), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4553), 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, - [58630] = 7, + ACTIONS(4351), 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, + [59160] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2861), 1, sym__newline, - STATE(2114), 1, - sym_comment, - STATE(2139), 1, + ACTIONS(4474), 1, + anon_sym_DASH2, + ACTIONS(4486), 1, + anon_sym_PLUS2, + STATE(2046), 1, aux_sym__repeat_newline, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2808), 5, + STATE(2133), 1, + sym_comment, + ACTIONS(2694), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4476), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2806), 28, + ACTIONS(4482), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4484), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2692), 25, anon_sym_in, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -191728,33 +193396,37 @@ 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, - [58684] = 6, + [59222] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2115), 1, + STATE(2134), 1, sym_comment, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2812), 5, + ACTIONS(2698), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4450), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2810), 29, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2696), 26, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -191774,120 +193446,58 @@ 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, - [58736] = 18, + [59282] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2861), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, - anon_sym_bit_DASHand2, - ACTIONS(4517), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, - anon_sym_bit_DASHor2, - STATE(2116), 1, - sym_comment, - STATE(2140), 1, + STATE(2047), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + STATE(2135), 1, + sym_comment, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2806), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4501), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4513), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4511), 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, - [58812] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - ACTIONS(4539), 1, - anon_sym_bit_DASHand2, - ACTIONS(4541), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, - anon_sym_bit_DASHor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2117), 1, - sym_comment, - ACTIONS(4442), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2810), 5, - sym__newline, + ACTIONS(2692), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4535), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191896,57 +193506,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58886] = 19, + [59352] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2928), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - ACTIONS(4521), 1, - anon_sym_and2, - STATE(2118), 1, - sym_comment, - STATE(2141), 1, + STATE(2089), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + STATE(2136), 1, + sym_comment, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2806), 3, + ACTIONS(2688), 4, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191955,56 +193564,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58964] = 18, + [59428] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4448), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4541), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - ACTIONS(4545), 1, + ACTIONS(4556), 1, anon_sym_and2, - STATE(485), 1, + STATE(2091), 1, aux_sym__repeat_newline, - STATE(2119), 1, + STATE(2137), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2810), 4, - sym__newline, + ACTIONS(2688), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4529), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4535), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192013,105 +193623,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59040] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4567), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4569), 1, - sym_filesize_unit, - ACTIONS(4571), 1, - sym_duration_unit, - STATE(2120), 1, - sym_comment, - ACTIONS(4565), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4563), 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, - [59094] = 20, + [59506] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(4492), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_bit_DASHor2, - ACTIONS(4521), 1, + ACTIONS(4556), 1, anon_sym_and2, - ACTIONS(4523), 1, + ACTIONS(4558), 1, anon_sym_xor2, - STATE(2121), 1, - sym_comment, - STATE(2142), 1, + STATE(2093), 1, aux_sym__repeat_newline, - ACTIONS(2806), 2, + STATE(2138), 1, + sym_comment, + ACTIONS(2688), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192120,58 +193683,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59174] = 19, + [59586] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - ACTIONS(4539), 1, - anon_sym_bit_DASHand2, - ACTIONS(4541), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, - anon_sym_bit_DASHor2, - ACTIONS(4545), 1, - anon_sym_and2, - ACTIONS(4547), 1, - anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2122), 1, + STATE(2139), 1, sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, + ACTIONS(1732), 6, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2810), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4529), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4537), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4535), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1730), 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, @@ -192179,92 +193709,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59252] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2869), 1, - sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - STATE(2123), 1, - sym_comment, - STATE(2143), 1, - aux_sym__repeat_newline, - ACTIONS(4495), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4511), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2806), 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_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59320] = 13, + [59634] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4448), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(2128), 1, aux_sym__repeat_newline, - STATE(2124), 1, + STATE(2140), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4535), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192273,8 +193769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2810), 12, - sym__newline, + ACTIONS(2688), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -192286,83 +193781,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59386] = 11, + [59702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, - sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - STATE(2125), 1, + STATE(2141), 1, sym_comment, - STATE(2144), 1, - aux_sym__repeat_newline, - ACTIONS(2808), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2806), 25, + ACTIONS(2572), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [59448] = 10, + sym__unquoted_pattern, + ACTIONS(2570), 33, + 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_finally, + anon_sym_match, + anon_sym_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, + [59750] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4448), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - STATE(485), 1, + STATE(2134), 1, aux_sym__repeat_newline, - STATE(2126), 1, + STATE(2142), 1, sym_comment, - ACTIONS(2812), 2, + ACTIONS(2690), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4442), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2810), 26, + ACTIONS(2688), 25, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -192387,24 +193876,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59508] = 7, + [59812] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4577), 1, + ACTIONS(890), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4579), 1, + ACTIONS(4599), 1, sym_filesize_unit, - ACTIONS(4581), 1, + ACTIONS(4601), 1, sym_duration_unit, - STATE(2127), 1, + STATE(2143), 1, sym_comment, - ACTIONS(4575), 5, + ACTIONS(888), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 29, + ACTIONS(886), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -192422,175 +193911,110 @@ static const uint16_t ts_small_parse_table[] = { 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, - [59562] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2869), 1, - sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - STATE(2128), 1, - sym_comment, - STATE(2145), 1, - aux_sym__repeat_newline, - ACTIONS(4495), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4513), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2806), 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(4511), 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, - [59632] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2129), 1, - sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4537), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2810), 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(4535), 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, - [59700] = 16, + 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, + [59866] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4347), 1, + sym__entry_separator, + STATE(1932), 1, + aux_sym__types_body_repeat2, + STATE(2144), 1, + sym_comment, + ACTIONS(4343), 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, + [59916] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(2928), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, - anon_sym_bit_DASHand2, - STATE(2130), 1, + STATE(2145), 1, sym_comment, STATE(2146), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, + ACTIONS(4472), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2806), 6, + ACTIONS(2688), 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(4511), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192599,53 +194023,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59772] = 15, + [59986] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, - anon_sym_bit_DASHand2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2131), 1, + STATE(2146), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2810), 7, + ACTIONS(2696), 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(4535), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192654,111 +194077,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59842] = 17, - ACTIONS(3), 1, + [60054] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2869), 1, - sym__newline, - ACTIONS(4497), 1, - anon_sym_DASH2, - ACTIONS(4507), 1, - anon_sym_PLUS2, - ACTIONS(4515), 1, - anon_sym_bit_DASHand2, - ACTIONS(4517), 1, - anon_sym_bit_DASHxor2, - STATE(2132), 1, - sym_comment, STATE(2147), 1, - aux_sym__repeat_newline, - ACTIONS(4495), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4503), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4513), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2806), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4511), 8, + sym_comment, + ACTIONS(3771), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3769), 35, + 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_finally, + 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, - [59916] = 16, + anon_sym_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, + [60102] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4448), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4541), 1, - anon_sym_bit_DASHxor2, - STATE(485), 1, + STATE(2020), 1, aux_sym__repeat_newline, - STATE(2133), 1, + STATE(2148), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2810), 6, - sym__newline, + ACTIONS(2688), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4535), 8, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192767,18 +194177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59988] = 5, + [60174] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(2134), 1, + ACTIONS(4603), 1, + sym__newline, + STATE(2149), 2, sym_comment, - ACTIONS(1012), 3, + aux_sym__types_body_repeat1, + ACTIONS(3760), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1226), 33, + ACTIONS(3762), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192804,7 +194215,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, @@ -192812,18 +194222,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60038] = 5, + [60224] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2928), 1, + sym__newline, + ACTIONS(4474), 1, + anon_sym_DASH2, + ACTIONS(4486), 1, + anon_sym_PLUS2, + ACTIONS(4490), 1, + anon_sym_bit_DASHand2, + ACTIONS(4492), 1, + anon_sym_bit_DASHxor2, + STATE(2022), 1, + aux_sym__repeat_newline, + STATE(2150), 1, + sym_comment, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4482), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4484), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4478), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4480), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2688), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4470), 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, + [60298] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2151), 1, + sym_comment, + ACTIONS(866), 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(868), 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, + [60346] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, + ACTIONS(4161), 1, sym__unquoted_pattern, - STATE(2135), 1, + STATE(2152), 1, sym_comment, - ACTIONS(1020), 3, + ACTIONS(785), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1234), 33, + ACTIONS(884), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192857,88 +194368,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60088] = 12, - ACTIONS(3), 1, + [60396] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2136), 1, + STATE(2153), 1, sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2818), 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, - [60152] = 11, + ACTIONS(775), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(777), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [60444] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2137), 1, + STATE(2154), 1, sym_comment, - ACTIONS(2820), 2, + ACTIONS(1834), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4442), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2818), 24, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1832), 31, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -192957,78 +194446,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60214] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2138), 1, - sym_comment, - ACTIONS(4442), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4444), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2820), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2818), 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, - [60270] = 6, + [60492] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2139), 1, + STATE(2155), 1, sym_comment, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2820), 5, + ACTIONS(1921), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2818), 29, + sym__unquoted_pattern, + ACTIONS(1919), 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, @@ -193047,6 +194490,9 @@ 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, @@ -193054,55 +194500,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60322] = 17, + [60540] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, + ACTIONS(2861), 1, + sym__newline, + ACTIONS(4474), 1, anon_sym_DASH2, - ACTIONS(4448), 1, + ACTIONS(4486), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4490), 1, anon_sym_bit_DASHand2, - ACTIONS(4541), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, - anon_sym_bit_DASHor2, - STATE(485), 1, + STATE(2048), 1, aux_sym__repeat_newline, - STATE(2140), 1, + STATE(2156), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4482), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4484), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4488), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4478), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4480), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2818), 5, - sym__newline, + ACTIONS(2692), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4535), 8, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4470), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193111,57 +194556,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60396] = 18, + [60612] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, - anon_sym_bit_DASHand2, - ACTIONS(4541), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, - anon_sym_bit_DASHor2, - ACTIONS(4545), 1, - anon_sym_and2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2141), 1, + STATE(2157), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2818), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4535), 8, + ACTIONS(2790), 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, @@ -193169,98 +194601,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60472] = 19, + 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, + [60676] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, - anon_sym_bit_DASHand2, - ACTIONS(4541), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, - anon_sym_bit_DASHor2, - ACTIONS(4545), 1, - anon_sym_and2, - ACTIONS(4547), 1, - anon_sym_xor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2142), 1, + STATE(2158), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(2792), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2818), 3, + ACTIONS(2790), 26, + anon_sym_in, sym__newline, anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - ACTIONS(4529), 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(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4535), 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, - [60550] = 13, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60736] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2143), 1, + STATE(2159), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, + ACTIONS(2792), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4531), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4535), 8, + anon_sym_PLUS2, + ACTIONS(2790), 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, @@ -193268,45 +194693,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2818), 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_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60616] = 10, + [60792] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, - ACTIONS(4448), 1, - anon_sym_PLUS2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2144), 1, + STATE(2160), 1, sym_comment, - ACTIONS(2820), 2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2792), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4442), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4444), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2818), 26, + anon_sym_PLUS2, + ACTIONS(2790), 29, anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193326,57 +194745,62 @@ 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, - [60676] = 14, + [60844] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - STATE(485), 1, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + ACTIONS(4494), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4536), 1, + anon_sym_bit_DASHor2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2145), 1, + STATE(2161), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2818), 8, + ACTIONS(2790), 5, 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(4535), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193385,53 +194809,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60744] = 15, + [60918] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4468), 1, anon_sym_bit_DASHand2, - STATE(485), 1, + ACTIONS(4494), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4536), 1, + anon_sym_bit_DASHor2, + ACTIONS(4538), 1, + anon_sym_and2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2146), 1, + STATE(2162), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2790), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2818), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4535), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193440,54 +194867,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60814] = 16, + [60994] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_DASH2, ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(4468), 1, anon_sym_bit_DASHand2, - ACTIONS(4541), 1, + ACTIONS(4494), 1, anon_sym_bit_DASHxor2, - STATE(485), 1, + ACTIONS(4536), 1, + anon_sym_bit_DASHor2, + ACTIONS(4538), 1, + anon_sym_and2, + ACTIONS(4540), 1, + anon_sym_xor2, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2147), 1, + STATE(2163), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2790), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2818), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4535), 8, + ACTIONS(4460), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193496,70 +194926,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60886] = 4, + [61072] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2148), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4456), 1, + anon_sym_PLUS2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2164), 1, sym_comment, - ACTIONS(1012), 5, - anon_sym_GT2, + ACTIONS(4450), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1226), 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(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60934] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2149), 1, - sym_comment, - ACTIONS(1020), 5, + ACTIONS(4462), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1234), 32, + ACTIONS(4464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4460), 8, 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, @@ -193567,131 +194966,35 @@ 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(2790), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60982] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4587), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4589), 1, - sym_filesize_unit, - ACTIONS(4591), 1, - sym_duration_unit, - STATE(2150), 1, - sym_comment, - ACTIONS(4585), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4583), 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, - [61036] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4593), 1, - sym__newline, - STATE(2151), 1, - sym_comment, - ACTIONS(4464), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2772), 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(2774), 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, - [61088] = 4, + [61138] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2152), 1, + STATE(2165), 1, sym_comment, - ACTIONS(1732), 6, + ACTIONS(1218), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1730), 31, + ACTIONS(1216), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -193711,7 +195014,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, @@ -193721,199 +195023,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [61136] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4483), 1, - sym__entry_separator, - ACTIONS(4485), 1, - sym_raw_string_begin, - ACTIONS(4596), 1, - anon_sym_RBRACK, - STATE(2020), 1, - aux_sym__types_body_repeat2, - STATE(2153), 1, - sym_comment, - ACTIONS(4479), 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, - [61190] = 12, + [61186] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - sym__newline, - ACTIONS(4497), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(4456), 1, anon_sym_PLUS2, - STATE(2095), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2154), 1, + STATE(2166), 1, sym_comment, - ACTIONS(2790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(4450), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(4452), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(4454), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(4458), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2788), 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, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4466), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(2790), 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, - [61254] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2155), 1, - sym_comment, - ACTIONS(4598), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4460), 8, anon_sym_in, - ACTIONS(4600), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [61301] = 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, + [61254] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2855), 1, + ACTIONS(2837), 1, anon_sym_DASH2, - ACTIONS(2865), 1, - anon_sym_PLUS2, - ACTIONS(2877), 1, + ACTIONS(2841), 1, anon_sym_and2, - ACTIONS(2881), 1, + ACTIONS(2851), 1, + anon_sym_PLUS2, + ACTIONS(2855), 1, anon_sym_bit_DASHand2, - ACTIONS(2883), 1, + ACTIONS(2857), 1, anon_sym_bit_DASHxor2, - ACTIONS(2885), 1, + ACTIONS(2859), 1, anon_sym_bit_DASHor2, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(2924), 1, + ACTIONS(2937), 1, anon_sym_xor2, - ACTIONS(4602), 1, + ACTIONS(4606), 1, anon_sym_or2, - STATE(2156), 1, + STATE(2167), 1, sym_comment, - STATE(2174), 1, + STATE(2199), 1, aux_sym__repeat_newline, - ACTIONS(2853), 2, + ACTIONS(2835), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2857), 2, + ACTIONS(2839), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2861), 2, + ACTIONS(2847), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2863), 2, + ACTIONS(2849), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2867), 2, + ACTIONS(2853), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2859), 4, + ACTIONS(2843), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2879), 4, + ACTIONS(2845), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2872), 8, + ACTIONS(2830), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193922,59 +195136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61380] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2157), 1, - sym_comment, - ACTIONS(2772), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2774), 33, - 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_finally, - anon_sym_match, - anon_sym_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, - [61427] = 4, + [61333] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2158), 1, + STATE(2168), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(4608), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1522), 33, + ACTIONS(4610), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194008,16 +195179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61474] = 4, + [61380] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2159), 1, + STATE(2169), 1, sym_comment, - ACTIONS(2411), 3, + ACTIONS(1516), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2409), 33, + ACTIONS(1518), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194051,16 +195222,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61521] = 4, + [61427] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2160), 1, + STATE(2170), 1, sym_comment, - ACTIONS(2415), 3, + ACTIONS(1468), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2413), 33, + ACTIONS(1470), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194094,16 +195265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61568] = 4, + [61474] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2161), 1, + STATE(2171), 1, sym_comment, - ACTIONS(2419), 3, + ACTIONS(1472), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2417), 33, + ACTIONS(1474), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194137,59 +195308,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61615] = 4, - ACTIONS(3), 1, + [61521] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2162), 1, + STATE(2172), 1, sym_comment, - ACTIONS(2423), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2421), 33, + ACTIONS(3771), 2, 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_finally, - anon_sym_match, + sym__entry_separator, + ACTIONS(3769), 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, - [61662] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [61568] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(2173), 1, sym_comment, - ACTIONS(1528), 3, + ACTIONS(2338), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1530), 33, + ACTIONS(2336), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194223,16 +195394,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61709] = 4, + [61615] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(2174), 1, sym_comment, - ACTIONS(1500), 3, + ACTIONS(2400), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1502), 33, + ACTIONS(2398), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194266,16 +195437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61756] = 4, + [61662] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2165), 1, + STATE(2175), 1, sym_comment, - ACTIONS(1504), 3, + ACTIONS(1522), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1506), 33, + ACTIONS(1524), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194309,16 +195480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61803] = 4, + [61709] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2166), 1, + STATE(2176), 1, sym_comment, - ACTIONS(2580), 3, + ACTIONS(785), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2578), 33, + ACTIONS(884), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194352,16 +195523,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61850] = 4, + [61756] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, + STATE(2177), 1, sym_comment, - ACTIONS(1905), 3, + ACTIONS(1887), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1903), 33, + ACTIONS(1885), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194395,16 +195566,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61897] = 4, + [61803] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(2178), 1, sym_comment, - ACTIONS(2439), 3, + ACTIONS(2472), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2437), 33, + ACTIONS(2470), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194438,16 +195609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61944] = 4, + [61850] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2169), 1, + STATE(2179), 1, sym_comment, - ACTIONS(2443), 3, + ACTIONS(4612), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2441), 33, + ACTIONS(4614), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194481,16 +195652,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61991] = 4, + [61897] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2170), 1, + STATE(2180), 1, sym_comment, - ACTIONS(2547), 3, + ACTIONS(4616), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2545), 33, + ACTIONS(4618), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194524,16 +195695,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62038] = 4, + [61944] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(2181), 1, sym_comment, - ACTIONS(2626), 3, + ACTIONS(1530), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2624), 33, + ACTIONS(1532), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194567,16 +195738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62085] = 4, + [61991] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2172), 1, + STATE(2182), 1, sym_comment, - ACTIONS(1578), 3, + ACTIONS(1588), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1580), 33, + ACTIONS(1714), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194610,117 +195781,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62132] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2173), 1, - sym_comment, - ACTIONS(1966), 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, - [62177] = 20, - ACTIONS(3), 1, + [62038] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2828), 1, - anon_sym_DASH2, - ACTIONS(2840), 1, - anon_sym_PLUS2, - ACTIONS(2844), 1, - anon_sym_bit_DASHand2, - ACTIONS(2846), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2848), 1, - anon_sym_bit_DASHor2, - ACTIONS(2906), 1, - anon_sym_and2, - ACTIONS(2908), 1, - anon_sym_xor2, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(4604), 1, - anon_sym_or2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2174), 1, + ACTIONS(4525), 1, + sym__entry_separator, + ACTIONS(4527), 1, + sym_raw_string_begin, + STATE(2026), 1, + aux_sym__types_body_repeat2, + STATE(2183), 1, sym_comment, - ACTIONS(2826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2830), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2836), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2838), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2842), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2832), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2834), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2824), 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, - [62256] = 4, + ACTIONS(4521), 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, + [62089] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2175), 1, + STATE(2184), 1, sym_comment, - ACTIONS(2529), 3, + ACTIONS(2352), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2527), 33, + ACTIONS(2350), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194754,16 +195869,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62303] = 4, + [62136] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2185), 1, sym_comment, - ACTIONS(2447), 3, + ACTIONS(1895), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2445), 33, + ACTIONS(1893), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194797,16 +195912,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62350] = 4, + [62183] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2177), 1, + STATE(2186), 1, sym_comment, - ACTIONS(2533), 3, + ACTIONS(2374), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2531), 33, + ACTIONS(2372), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194840,16 +195955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62397] = 4, + [62230] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2187), 1, sym_comment, - ACTIONS(2158), 3, + ACTIONS(2404), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2156), 33, + ACTIONS(2402), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194883,16 +195998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62444] = 4, + [62277] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2188), 1, sym_comment, - ACTIONS(2666), 3, + ACTIONS(2428), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2664), 33, + ACTIONS(2426), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194926,16 +196041,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62491] = 4, + [62324] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2180), 1, + ACTIONS(4620), 1, + sym__newline, + STATE(2189), 2, sym_comment, - ACTIONS(1909), 3, + aux_sym__types_body_repeat1, + ACTIONS(3760), 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(3762), 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, + [62373] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2190), 1, + sym_comment, + ACTIONS(2472), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1907), 33, + ACTIONS(2470), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194969,16 +196128,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62538] = 4, + [62420] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(2181), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(4474), 1, + anon_sym_DASH2, + ACTIONS(4486), 1, + anon_sym_PLUS2, + ACTIONS(4490), 1, + anon_sym_bit_DASHand2, + ACTIONS(4492), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4554), 1, + anon_sym_bit_DASHor2, + ACTIONS(4556), 1, + anon_sym_and2, + ACTIONS(4558), 1, + anon_sym_xor2, + ACTIONS(4623), 1, + anon_sym_or2, + STATE(2191), 1, + sym_comment, + STATE(2195), 1, + aux_sym__repeat_newline, + ACTIONS(4472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4482), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4484), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4488), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4478), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4480), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4470), 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, + [62499] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2192), 1, sym_comment, - ACTIONS(2553), 3, + ACTIONS(2556), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2551), 33, + ACTIONS(2554), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195012,16 +196230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62585] = 4, + [62546] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2182), 1, + STATE(2193), 1, sym_comment, - ACTIONS(2560), 3, + ACTIONS(1580), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2558), 33, + ACTIONS(1582), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195055,16 +196273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62632] = 4, + [62593] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(2194), 1, sym_comment, - ACTIONS(2328), 3, + ACTIONS(2632), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2326), 33, + ACTIONS(2630), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195098,104 +196316,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62679] = 5, + [62640] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - sym__unquoted_pattern, - STATE(2184), 1, - sym_comment, - ACTIONS(847), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, - anon_sym_in, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(4448), 1, anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4456), 1, + anon_sym_PLUS2, + ACTIONS(4468), 1, + anon_sym_bit_DASHand2, + ACTIONS(4494), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4536), 1, + anon_sym_bit_DASHor2, + ACTIONS(4538), 1, anon_sym_and2, + ACTIONS(4540), 1, anon_sym_xor2, + ACTIONS(4625), 1, anon_sym_or2, - anon_sym_not_DASHin2, - anon_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(503), 1, + aux_sym__repeat_newline, + STATE(2195), 1, + sym_comment, + ACTIONS(4450), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4452), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4454), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4458), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4466), 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, - [62728] = 5, + ACTIONS(4460), 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, + [62719] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4606), 1, + STATE(2196), 1, + sym_comment, + ACTIONS(1965), 36, sym__newline, - STATE(2185), 2, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + 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, + [62764] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2197), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3758), 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(3760), 27, + ACTIONS(2476), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2474), 33, 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_finally, + anon_sym_match, anon_sym_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, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_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, - [62777] = 4, + [62811] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2186), 1, + STATE(2198), 1, sym_comment, - ACTIONS(4609), 3, + ACTIONS(1899), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4611), 33, + ACTIONS(1897), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195229,16 +196503,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62824] = 4, + [62858] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(2187), 1, + ACTIONS(2864), 1, + anon_sym_DASH2, + ACTIONS(2872), 1, + anon_sym_PLUS2, + ACTIONS(2884), 1, + anon_sym_bit_DASHand2, + ACTIONS(2886), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2922), 1, + anon_sym_bit_DASHor2, + ACTIONS(2924), 1, + anon_sym_and2, + ACTIONS(2926), 1, + anon_sym_xor2, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(4627), 1, + anon_sym_or2, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2199), 1, sym_comment, - ACTIONS(1508), 3, + ACTIONS(2866), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2868), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2870), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2882), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2878), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2880), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2874), 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, + [62937] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2200), 1, + sym_comment, + ACTIONS(2560), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1510), 33, + ACTIONS(2558), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195272,16 +196605,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62871] = 4, + [62984] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2188), 1, + STATE(2201), 1, sym_comment, - ACTIONS(4613), 3, + ACTIONS(2480), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4615), 33, + ACTIONS(2478), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195315,16 +196648,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62918] = 4, + [63031] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2189), 1, + STATE(2202), 1, sym_comment, - ACTIONS(1917), 3, + ACTIONS(2118), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1915), 33, + ACTIONS(2116), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195358,57 +196691,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62965] = 20, + [63078] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(4497), 1, + ACTIONS(3882), 1, anon_sym_DASH2, - ACTIONS(4507), 1, + ACTIONS(3886), 1, anon_sym_PLUS2, - ACTIONS(4515), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(4517), 1, + ACTIONS(3896), 1, anon_sym_bit_DASHxor2, - ACTIONS(4519), 1, + ACTIONS(3898), 1, anon_sym_bit_DASHor2, - ACTIONS(4521), 1, + ACTIONS(3900), 1, anon_sym_and2, - ACTIONS(4523), 1, + ACTIONS(3902), 1, anon_sym_xor2, - ACTIONS(4617), 1, + ACTIONS(4629), 1, anon_sym_or2, - STATE(2190), 1, + STATE(2203), 1, sym_comment, - STATE(2191), 1, + STATE(2205), 1, aux_sym__repeat_newline, - ACTIONS(4495), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4499), 2, + ACTIONS(3852), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4503), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4505), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4509), 2, + ACTIONS(3880), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3888), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4501), 4, + ACTIONS(3884), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4513), 4, + ACTIONS(3892), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4511), 8, + ACTIONS(3890), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -195417,57 +196750,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63044] = 20, + [63157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + STATE(2204), 1, + sym_comment, + ACTIONS(2380), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2378), 33, + 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_finally, + anon_sym_match, + anon_sym_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, + [63204] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, sym__newline, - ACTIONS(4440), 1, + ACTIONS(3906), 1, anon_sym_DASH2, - ACTIONS(4448), 1, + ACTIONS(3916), 1, anon_sym_PLUS2, - ACTIONS(4539), 1, + ACTIONS(3924), 1, anon_sym_bit_DASHand2, - ACTIONS(4541), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHxor2, - ACTIONS(4543), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHor2, - ACTIONS(4545), 1, + ACTIONS(3930), 1, anon_sym_and2, - ACTIONS(4547), 1, + ACTIONS(3932), 1, anon_sym_xor2, - ACTIONS(4619), 1, + ACTIONS(4631), 1, anon_sym_or2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2191), 1, + STATE(2205), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(3904), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3908), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4444), 2, + ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4446), 2, + ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4527), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4531), 2, + ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4529), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4537), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4535), 8, + ACTIONS(3920), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -195476,16 +196852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63123] = 4, + [63283] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2206), 1, sym_comment, - ACTIONS(1889), 3, + ACTIONS(2754), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1887), 33, + ACTIONS(2756), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195511,7 +196887,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -195519,16 +196895,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63170] = 4, + [63330] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(2207), 1, sym_comment, - ACTIONS(2564), 3, + ACTIONS(1480), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2562), 33, + ACTIONS(1482), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195562,16 +196938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63217] = 4, + [63377] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(2208), 1, sym_comment, - ACTIONS(4621), 3, + ACTIONS(2662), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4623), 33, + ACTIONS(2660), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195605,16 +196981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63264] = 4, + [63424] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2195), 1, + STATE(2209), 1, sym_comment, - ACTIONS(847), 3, + ACTIONS(2384), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 33, + ACTIONS(2382), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195648,134 +197024,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63311] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3908), 1, - anon_sym_bit_DASHor2, - ACTIONS(3918), 1, - anon_sym_and2, - ACTIONS(3922), 1, - anon_sym_xor2, - ACTIONS(4625), 1, - anon_sym_or2, - STATE(2196), 1, - sym_comment, - STATE(2197), 1, - aux_sym__repeat_newline, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3880), 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(3872), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3862), 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, - [63390] = 20, + [63471] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3848), 1, - anon_sym_DASH2, - ACTIONS(3858), 1, - anon_sym_PLUS2, - ACTIONS(3912), 1, - anon_sym_bit_DASHand2, - ACTIONS(3914), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3916), 1, - anon_sym_bit_DASHor2, - ACTIONS(3920), 1, - anon_sym_and2, - ACTIONS(3924), 1, - anon_sym_xor2, - ACTIONS(4627), 1, - anon_sym_or2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2197), 1, - sym_comment, - ACTIONS(3846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3850), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3854), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3856), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3860), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3852), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3910), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3844), 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, - [63469] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2198), 1, + STATE(2210), 1, sym_comment, - ACTIONS(2479), 3, + ACTIONS(2388), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2477), 33, + ACTIONS(2386), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195809,16 +197067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63516] = 4, + [63518] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2199), 1, + STATE(2211), 1, sym_comment, - ACTIONS(2479), 3, + ACTIONS(2392), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2477), 33, + ACTIONS(2390), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195852,16 +197110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63563] = 4, + [63565] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2200), 1, + STATE(2212), 1, sym_comment, - ACTIONS(2483), 3, + ACTIONS(2670), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2481), 33, + ACTIONS(2668), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195895,16 +197153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63610] = 4, + [63612] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2201), 1, + STATE(2213), 1, sym_comment, - ACTIONS(2487), 3, + ACTIONS(1907), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2485), 33, + ACTIONS(1905), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195938,59 +197196,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63657] = 4, - ACTIONS(103), 1, + [63659] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2202), 1, + STATE(2214), 1, sym_comment, - ACTIONS(3756), 2, + ACTIONS(2548), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2546), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3754), 34, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, anon_sym_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, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - 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, - [63704] = 4, + [63706] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2215), 1, sym_comment, - ACTIONS(1512), 3, + ACTIONS(4633), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1514), 33, + ACTIONS(4635), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196024,16 +197282,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63751] = 4, + [63753] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2204), 1, + ACTIONS(1806), 1, + sym__unquoted_pattern, + STATE(2216), 1, sym_comment, - ACTIONS(1615), 3, + ACTIONS(785), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(884), 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, + [63802] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2217), 1, + sym_comment, + ACTIONS(2356), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1699), 33, + ACTIONS(2354), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196067,61 +197369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63798] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4483), 1, - sym__entry_separator, - ACTIONS(4485), 1, - sym_raw_string_begin, - STATE(2020), 1, - aux_sym__types_body_repeat2, - STATE(2205), 1, - sym_comment, - ACTIONS(4479), 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, [63849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2218), 1, sym_comment, - ACTIONS(2150), 3, + ACTIONS(2552), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2148), 33, + ACTIONS(2550), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196158,13 +197415,13 @@ static const uint16_t ts_small_parse_table[] = { [63896] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(2219), 1, sym_comment, - ACTIONS(4629), 3, + ACTIONS(4637), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4631), 33, + ACTIONS(4639), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196198,143 +197455,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63943] = 5, - ACTIONS(103), 1, + [63943] = 27, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, - aux_sym_cmd_identifier_token6, - STATE(2208), 1, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3110), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4643), 1, + anon_sym_null, + ACTIONS(4647), 1, + sym__newline, + ACTIONS(4649), 1, + anon_sym_GT2, + ACTIONS(4651), 1, + anon_sym_DOT_DOT, + ACTIONS(4655), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4657), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4661), 1, + sym_val_date, + STATE(2220), 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, - [63991] = 9, + STATE(2270), 1, + aux_sym__types_body_repeat1, + STATE(2292), 1, + aux_sym__collection_body_repeat1, + STATE(4165), 1, + sym__val_number_decimal, + STATE(4860), 1, + sym__collection_entry, + STATE(5471), 1, + sym__collection_body, + STATE(5520), 1, + sym_val_bool, + ACTIONS(4641), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4653), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4659), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4586), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5277), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4645), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64035] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(4667), 1, anon_sym_DASH2, - ACTIONS(4641), 1, + ACTIONS(4679), 1, anon_sym_PLUS2, - STATE(2209), 1, + STATE(2221), 1, sym_comment, - ACTIONS(2650), 2, + ACTIONS(4665), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4635), 2, + ACTIONS(4669), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4637), 2, + ACTIONS(4675), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, + ACTIONS(4677), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2648), 25, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4681), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4673), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(2656), 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, - [64047] = 17, + ACTIONS(4663), 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, + [64099] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4647), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_and2, - ACTIONS(4661), 1, + ACTIONS(4699), 1, anon_sym_PLUS2, - ACTIONS(4665), 1, + ACTIONS(4703), 1, anon_sym_bit_DASHand2, - ACTIONS(4667), 1, + ACTIONS(4705), 1, anon_sym_bit_DASHxor2, - ACTIONS(4669), 1, - anon_sym_bit_DASHor2, - STATE(2210), 1, + STATE(2222), 1, sym_comment, - ACTIONS(4645), 2, + ACTIONS(4685), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4649), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4657), 2, + ACTIONS(4695), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, + ACTIONS(4697), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4663), 2, + ACTIONS(4701), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2648), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4653), 4, + ACTIONS(4691), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4655), 4, + ACTIONS(4693), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4643), 8, + ACTIONS(2656), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4683), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -196343,103 +197624,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64119] = 27, + [64167] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3112), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4673), 1, - anon_sym_null, - ACTIONS(4677), 1, + ACTIONS(4707), 1, sym__newline, - ACTIONS(4679), 1, - anon_sym_GT2, - ACTIONS(4681), 1, - anon_sym_DOT_DOT, - ACTIONS(4685), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4687), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4691), 1, - sym_val_date, - STATE(2211), 1, + STATE(2223), 2, + aux_sym__repeat_newline, sym_comment, - STATE(2257), 1, - aux_sym__types_body_repeat1, - STATE(2281), 1, - aux_sym__collection_body_repeat1, - STATE(3989), 1, - sym__val_number_decimal, - STATE(4809), 1, - sym__collection_entry, - STATE(5355), 1, - sym_val_bool, - STATE(5468), 1, - sym__collection_body, - ACTIONS(4671), 2, + ACTIONS(1883), 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(1878), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(4683), 2, + 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, - ACTIONS(4689), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4389), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5238), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4675), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3725), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [64211] = 11, + 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, + [64215] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(4667), 1, anon_sym_DASH2, - ACTIONS(4641), 1, + ACTIONS(4679), 1, anon_sym_PLUS2, - STATE(2212), 1, + ACTIONS(4710), 1, + anon_sym_bit_DASHand2, + STATE(2224), 1, sym_comment, - ACTIONS(4635), 2, + ACTIONS(4665), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4669), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4637), 2, + ACTIONS(4675), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, + ACTIONS(4677), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4693), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4697), 2, + ACTIONS(4681), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4695), 4, + ACTIONS(4671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2648), 19, + ACTIONS(4673), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2656), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4663), 8, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [64281] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2225), 1, + sym_comment, + ACTIONS(4675), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2658), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2656), 28, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -196450,31 +197747,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_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [64271] = 5, + [64329] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2213), 1, + STATE(2226), 1, sym_comment, - ACTIONS(4637), 2, + ACTIONS(4669), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4675), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2650), 5, + ACTIONS(4677), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2658), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2648), 28, + ACTIONS(2656), 26, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -196493,62 +197802,41 @@ 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, - [64319] = 18, + [64381] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4647), 1, + ACTIONS(4667), 1, anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_and2, - ACTIONS(4661), 1, + ACTIONS(4679), 1, anon_sym_PLUS2, - ACTIONS(4665), 1, - anon_sym_bit_DASHand2, - ACTIONS(4667), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4669), 1, - anon_sym_bit_DASHor2, - ACTIONS(4699), 1, - anon_sym_xor2, - STATE(2214), 1, + STATE(2227), 1, sym_comment, - ACTIONS(2648), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4645), 2, + ACTIONS(2658), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4649), 2, + ACTIONS(4669), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4657), 2, + ACTIONS(4675), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, + ACTIONS(4677), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4663), 2, + ACTIONS(4681), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4653), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4655), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4643), 8, + ACTIONS(2656), 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, @@ -196556,7 +197844,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64393] = 27, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [64439] = 27, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -196567,177 +197866,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3112), 1, + ACTIONS(3110), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4673), 1, + ACTIONS(4643), 1, anon_sym_null, - ACTIONS(4677), 1, + ACTIONS(4647), 1, sym__newline, - ACTIONS(4681), 1, + ACTIONS(4651), 1, anon_sym_DOT_DOT, - ACTIONS(4685), 1, + ACTIONS(4655), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4687), 1, + ACTIONS(4657), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4691), 1, + ACTIONS(4661), 1, sym_val_date, - ACTIONS(4701), 1, + ACTIONS(4712), 1, anon_sym_GT2, - STATE(2215), 1, + STATE(2228), 1, sym_comment, - STATE(2257), 1, + STATE(2270), 1, aux_sym__types_body_repeat1, - STATE(2281), 1, + STATE(2292), 1, aux_sym__collection_body_repeat1, - STATE(3989), 1, + STATE(4165), 1, sym__val_number_decimal, - STATE(4809), 1, + STATE(4860), 1, sym__collection_entry, - STATE(5355), 1, - sym_val_bool, - STATE(5457), 1, + STATE(5396), 1, sym__collection_body, - ACTIONS(4671), 2, + STATE(5520), 1, + sym_val_bool, + ACTIONS(4641), 2, anon_sym_true, anon_sym_false, - ACTIONS(4683), 2, + ACTIONS(4653), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4689), 2, + ACTIONS(4659), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4389), 2, + STATE(4586), 2, sym_val_string, sym__unquoted_in_record, - STATE(5238), 2, + STATE(5277), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4675), 3, + ACTIONS(4645), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [64485] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1232), 1, - aux_sym_cmd_identifier_token6, - STATE(2216), 1, - sym_comment, - ACTIONS(1230), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1228), 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, - [64533] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1224), 1, - aux_sym_cmd_identifier_token6, - STATE(2217), 1, - sym_comment, - ACTIONS(1222), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1220), 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, - [64581] = 12, + [64531] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4647), 1, + ACTIONS(4667), 1, anon_sym_DASH2, - ACTIONS(4661), 1, + ACTIONS(4679), 1, anon_sym_PLUS2, - STATE(2218), 1, + STATE(2229), 1, sym_comment, - ACTIONS(4645), 2, + ACTIONS(2658), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4649), 2, + ACTIONS(4669), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4657), 2, + ACTIONS(4675), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, + ACTIONS(4677), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4663), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4653), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4643), 8, + ACTIONS(2656), 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, @@ -196745,113 +197954,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 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, - [64643] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4633), 1, - anon_sym_DASH2, - ACTIONS(4641), 1, - anon_sym_PLUS2, - STATE(2219), 1, - sym_comment, - ACTIONS(4635), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4637), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4693), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4697), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4705), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2648), 7, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4703), 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, - [64707] = 14, + [64587] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(4667), 1, anon_sym_DASH2, - ACTIONS(4641), 1, + ACTIONS(4679), 1, anon_sym_PLUS2, - ACTIONS(4707), 1, + ACTIONS(4710), 1, anon_sym_bit_DASHand2, - STATE(2220), 1, + ACTIONS(4714), 1, + anon_sym_bit_DASHxor2, + STATE(2230), 1, sym_comment, - ACTIONS(4635), 2, + ACTIONS(4665), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4669), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4637), 2, + ACTIONS(4675), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, + ACTIONS(4677), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4693), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4697), 2, + ACTIONS(4681), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4695), 4, + ACTIONS(4671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4705), 4, + ACTIONS(4673), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2648), 6, - anon_sym_EQ_GT, + ACTIONS(2656), 5, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4703), 8, + ACTIONS(4663), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -196860,63 +198020,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64773] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4713), 1, - aux_sym_cmd_identifier_token6, - STATE(2221), 1, - sym_comment, - ACTIONS(4711), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4709), 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, - [64821] = 5, + [64655] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4719), 1, + ACTIONS(4720), 1, aux_sym_cmd_identifier_token6, - STATE(2222), 1, + STATE(2231), 1, sym_comment, - ACTIONS(4717), 5, + ACTIONS(4718), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4715), 29, + ACTIONS(4716), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -196946,52 +198063,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64869] = 15, + [64703] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4641), 1, + ACTIONS(4699), 1, anon_sym_PLUS2, - ACTIONS(4707), 1, - anon_sym_bit_DASHand2, - ACTIONS(4721), 1, - anon_sym_bit_DASHxor2, - STATE(2223), 1, + STATE(2232), 1, sym_comment, - ACTIONS(4635), 2, + ACTIONS(4685), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4637), 2, + ACTIONS(4695), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, + ACTIONS(4697), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4693), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4697), 2, + ACTIONS(4701), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4695), 4, + ACTIONS(4691), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4705), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2648), 5, + ACTIONS(2656), 19, + anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4703), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -196999,20 +198105,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64937] = 5, + 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, + [64763] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4727), 1, + ACTIONS(1232), 1, aux_sym_cmd_identifier_token6, - STATE(2224), 1, + STATE(2233), 1, sym_comment, - ACTIONS(4725), 5, + ACTIONS(1230), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4723), 29, + ACTIONS(1228), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -197042,30 +198155,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64985] = 9, + [64811] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4647), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4661), 1, + ACTIONS(4699), 1, anon_sym_PLUS2, - STATE(2225), 1, + STATE(2234), 1, sym_comment, - ACTIONS(2650), 2, + ACTIONS(2658), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4649), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4657), 2, + ACTIONS(4695), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, + ACTIONS(4697), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2648), 25, + ACTIONS(4701), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2656), 23, anon_sym_in, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -197084,25 +198200,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64869] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4667), 1, + anon_sym_DASH2, + ACTIONS(4679), 1, + anon_sym_PLUS2, + STATE(2235), 1, + sym_comment, + ACTIONS(4665), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4669), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4675), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4677), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4681), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(4671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4663), 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(2656), 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, - [65041] = 5, + [64931] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4733), 1, + ACTIONS(4726), 1, aux_sym_cmd_identifier_token6, - STATE(2226), 1, + STATE(2236), 1, sym_comment, - ACTIONS(4731), 5, + ACTIONS(4724), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 29, + ACTIONS(4722), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -197132,83 +198296,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [65089] = 13, + [64979] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4647), 1, - anon_sym_DASH2, - ACTIONS(4661), 1, - anon_sym_PLUS2, - STATE(2227), 1, + STATE(2237), 1, sym_comment, - ACTIONS(4645), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4649), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4657), 2, + ACTIONS(4695), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4663), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4653), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4655), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2648), 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(4643), 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, - [65153] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4633), 1, - anon_sym_DASH2, - ACTIONS(4641), 1, - anon_sym_PLUS2, - STATE(2228), 1, - sym_comment, - ACTIONS(2650), 2, + ACTIONS(2658), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4635), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4637), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4697), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2648), 23, + anon_sym_PLUS2, + ACTIONS(2656), 28, anon_sym_in, + anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -197228,83 +198332,60 @@ 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, - [65211] = 11, + [65027] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4647), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4661), 1, + ACTIONS(4699), 1, anon_sym_PLUS2, - STATE(2229), 1, + ACTIONS(4703), 1, + anon_sym_bit_DASHand2, + ACTIONS(4705), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4728), 1, + anon_sym_bit_DASHor2, + STATE(2238), 1, sym_comment, - ACTIONS(4645), 2, + ACTIONS(4685), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4649), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4657), 2, + ACTIONS(4695), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, + ACTIONS(4697), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4663), 2, + ACTIONS(4701), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4653), 4, + ACTIONS(2656), 4, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4691), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2648), 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(4693), 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, - [65271] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2230), 1, - sym_comment, - ACTIONS(4649), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4657), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2650), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2648), 26, + ACTIONS(4683), 8, 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, @@ -197312,107 +198393,52 @@ 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, - [65323] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2231), 1, - sym_comment, - ACTIONS(2772), 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(2774), 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, - [65369] = 16, + [65097] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(4667), 1, anon_sym_DASH2, - ACTIONS(4641), 1, + ACTIONS(4679), 1, anon_sym_PLUS2, - ACTIONS(4707), 1, + ACTIONS(4710), 1, anon_sym_bit_DASHand2, - ACTIONS(4721), 1, + ACTIONS(4714), 1, anon_sym_bit_DASHxor2, - ACTIONS(4735), 1, + ACTIONS(4730), 1, anon_sym_bit_DASHor2, - STATE(2232), 1, + STATE(2239), 1, sym_comment, - ACTIONS(4635), 2, + ACTIONS(4665), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4669), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4637), 2, + ACTIONS(4675), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, + ACTIONS(4677), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4693), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4697), 2, + ACTIONS(4681), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2648), 4, - anon_sym_EQ_GT, + ACTIONS(2656), 4, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4695), 4, + ACTIONS(4671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4705), 4, + ACTIONS(4673), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4703), 8, + ACTIONS(4663), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197421,53 +198447,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65439] = 17, + [65167] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1224), 1, + aux_sym_cmd_identifier_token6, + STATE(2240), 1, + sym_comment, + ACTIONS(1222), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1220), 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, + [65215] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4641), 1, + ACTIONS(4699), 1, anon_sym_PLUS2, - ACTIONS(4707), 1, + ACTIONS(4703), 1, anon_sym_bit_DASHand2, - ACTIONS(4721), 1, + ACTIONS(4705), 1, anon_sym_bit_DASHxor2, - ACTIONS(4735), 1, + ACTIONS(4728), 1, anon_sym_bit_DASHor2, - ACTIONS(4737), 1, + ACTIONS(4732), 1, anon_sym_and2, - STATE(2233), 1, + STATE(2241), 1, sym_comment, - ACTIONS(4635), 2, + ACTIONS(4685), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4637), 2, + ACTIONS(4695), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, + ACTIONS(4697), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4693), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4697), 2, + ACTIONS(4701), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2648), 3, + ACTIONS(2656), 3, anon_sym_EQ_GT, anon_sym_xor2, anon_sym_or2, - ACTIONS(4695), 4, + ACTIONS(4691), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4705), 4, + ACTIONS(4693), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4703), 8, + ACTIONS(4683), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197476,93 +198545,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65511] = 5, + [65287] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2234), 1, - sym_comment, - ACTIONS(4657), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2650), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2648), 28, - anon_sym_in, + ACTIONS(4687), 1, anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(4699), 1, + anon_sym_PLUS2, + ACTIONS(4703), 1, anon_sym_bit_DASHand2, + ACTIONS(4705), 1, anon_sym_bit_DASHxor2, + ACTIONS(4728), 1, anon_sym_bit_DASHor2, - [65559] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4647), 1, - anon_sym_DASH2, - ACTIONS(4661), 1, - anon_sym_PLUS2, - ACTIONS(4665), 1, - anon_sym_bit_DASHand2, - STATE(2235), 1, + ACTIONS(4732), 1, + anon_sym_and2, + ACTIONS(4734), 1, + anon_sym_xor2, + STATE(2242), 1, sym_comment, - ACTIONS(4645), 2, + ACTIONS(2656), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(4685), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4649), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4657), 2, + ACTIONS(4695), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, + ACTIONS(4697), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4663), 2, + ACTIONS(4701), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4653), 4, + ACTIONS(4691), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4655), 4, + ACTIONS(4693), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2648), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4643), 8, + ACTIONS(4683), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197571,54 +198601,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65625] = 18, + [65361] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(4667), 1, anon_sym_DASH2, - ACTIONS(4641), 1, + ACTIONS(4679), 1, anon_sym_PLUS2, - ACTIONS(4707), 1, + ACTIONS(4710), 1, anon_sym_bit_DASHand2, - ACTIONS(4721), 1, + ACTIONS(4714), 1, anon_sym_bit_DASHxor2, - ACTIONS(4735), 1, + ACTIONS(4730), 1, anon_sym_bit_DASHor2, - ACTIONS(4737), 1, + ACTIONS(4736), 1, anon_sym_and2, - ACTIONS(4739), 1, - anon_sym_xor2, - STATE(2236), 1, + STATE(2243), 1, sym_comment, - ACTIONS(2648), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(4635), 2, + ACTIONS(4665), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4669), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4637), 2, + ACTIONS(4675), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, + ACTIONS(4677), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4693), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4697), 2, + ACTIONS(4681), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4695), 4, + ACTIONS(2656), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4705), 4, + ACTIONS(4673), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4703), 8, + ACTIONS(4663), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197627,36 +198656,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65699] = 12, + [65433] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4641), 1, + ACTIONS(4699), 1, anon_sym_PLUS2, - STATE(2237), 1, + STATE(2244), 1, sym_comment, - ACTIONS(4635), 2, + ACTIONS(4685), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4637), 2, + ACTIONS(4695), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, + ACTIONS(4697), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4693), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4697), 2, + ACTIONS(4701), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4695), 4, + ACTIONS(4691), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4703), 8, + ACTIONS(4683), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197665,19 +198694,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2648), 11, + ACTIONS(2656), 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, + [65495] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1240), 1, + aux_sym_cmd_identifier_token6, + STATE(2245), 1, + sym_comment, + ACTIONS(1238), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1236), 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, + [65543] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4687), 1, + anon_sym_DASH2, + ACTIONS(4699), 1, + anon_sym_PLUS2, + STATE(2246), 1, + sym_comment, + ACTIONS(2658), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4689), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4695), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4697), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2656), 25, + 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_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [65761] = 27, + [65599] = 27, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -197688,180 +198807,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3112), 1, + ACTIONS(3110), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4673), 1, + ACTIONS(4643), 1, anon_sym_null, - ACTIONS(4677), 1, + ACTIONS(4647), 1, sym__newline, - ACTIONS(4681), 1, + ACTIONS(4651), 1, anon_sym_DOT_DOT, - ACTIONS(4685), 1, + ACTIONS(4655), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4687), 1, + ACTIONS(4657), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4691), 1, + ACTIONS(4661), 1, sym_val_date, - ACTIONS(4741), 1, + ACTIONS(4738), 1, anon_sym_GT2, - STATE(2238), 1, + STATE(2247), 1, sym_comment, - STATE(2257), 1, + STATE(2270), 1, aux_sym__types_body_repeat1, - STATE(2281), 1, + STATE(2292), 1, aux_sym__collection_body_repeat1, - STATE(3989), 1, + STATE(4165), 1, sym__val_number_decimal, - STATE(4809), 1, + STATE(4860), 1, sym__collection_entry, - STATE(5355), 1, - sym_val_bool, - STATE(5463), 1, + STATE(5286), 1, sym__collection_body, - ACTIONS(4671), 2, + STATE(5520), 1, + sym_val_bool, + ACTIONS(4641), 2, anon_sym_true, anon_sym_false, - ACTIONS(4683), 2, + ACTIONS(4653), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4689), 2, + ACTIONS(4659), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4389), 2, + STATE(4586), 2, sym_val_string, sym__unquoted_in_record, - STATE(5238), 2, + STATE(5277), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4675), 3, + ACTIONS(4645), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [65853] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4647), 1, - anon_sym_DASH2, - ACTIONS(4661), 1, - anon_sym_PLUS2, - ACTIONS(4665), 1, - anon_sym_bit_DASHand2, - ACTIONS(4667), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4669), 1, - anon_sym_bit_DASHor2, - STATE(2239), 1, - sym_comment, - ACTIONS(4645), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4649), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4657), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4663), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2648), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4653), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4655), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4643), 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, - [65923] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4647), 1, - anon_sym_DASH2, - ACTIONS(4661), 1, - anon_sym_PLUS2, - STATE(2240), 1, - sym_comment, - ACTIONS(2650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4649), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4657), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4663), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2648), 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, - [65981] = 5, + [65691] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4743), 1, - sym__newline, - STATE(2241), 2, - aux_sym__repeat_newline, + STATE(2248), 1, sym_comment, - ACTIONS(1867), 8, + ACTIONS(2754), 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(1862), 25, + aux_sym__unquoted_in_list_token1, + ACTIONS(2756), 28, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -197869,12 +198882,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_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, @@ -197887,84 +198902,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [66029] = 15, + anon_sym_DOT_DOT_DOT_LBRACK, + [65737] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4744), 1, + aux_sym_cmd_identifier_token6, + STATE(2249), 1, + sym_comment, + ACTIONS(4742), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4740), 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, + [65785] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4647), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(4661), 1, - anon_sym_PLUS2, - ACTIONS(4665), 1, - anon_sym_bit_DASHand2, - ACTIONS(4667), 1, - anon_sym_bit_DASHxor2, - STATE(2242), 1, + ACTIONS(4699), 1, + anon_sym_PLUS2, + STATE(2250), 1, sym_comment, - ACTIONS(4645), 2, + ACTIONS(4685), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4649), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4657), 2, + ACTIONS(4695), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, + ACTIONS(4697), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4663), 2, + ACTIONS(4701), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4653), 4, + ACTIONS(4691), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4655), 4, + ACTIONS(4693), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2648), 5, - anon_sym_LBRACE, + ACTIONS(2656), 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(4643), 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, - [66097] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2243), 1, - sym_comment, - ACTIONS(4635), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4637), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2650), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2648), 26, + ACTIONS(4683), 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, @@ -197972,20 +198997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [66149] = 27, + [65849] = 27, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -197996,66 +199008,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3112), 1, + ACTIONS(3110), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4673), 1, + ACTIONS(4643), 1, anon_sym_null, - ACTIONS(4677), 1, + ACTIONS(4647), 1, sym__newline, - ACTIONS(4681), 1, + ACTIONS(4651), 1, anon_sym_DOT_DOT, - ACTIONS(4685), 1, + ACTIONS(4655), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4687), 1, + ACTIONS(4657), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4691), 1, + ACTIONS(4661), 1, sym_val_date, ACTIONS(4746), 1, anon_sym_GT2, - STATE(2244), 1, + STATE(2251), 1, sym_comment, - STATE(2257), 1, + STATE(2270), 1, aux_sym__types_body_repeat1, - STATE(2281), 1, + STATE(2292), 1, aux_sym__collection_body_repeat1, - STATE(3989), 1, + STATE(4165), 1, sym__val_number_decimal, - STATE(4809), 1, + STATE(4860), 1, sym__collection_entry, - STATE(5355), 1, - sym_val_bool, - STATE(5375), 1, + STATE(5314), 1, sym__collection_body, - ACTIONS(4671), 2, + STATE(5520), 1, + sym_val_bool, + ACTIONS(4641), 2, anon_sym_true, anon_sym_false, - ACTIONS(4683), 2, + ACTIONS(4653), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4689), 2, + ACTIONS(4659), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4389), 2, + STATE(4586), 2, sym_val_string, sym__unquoted_in_record, - STATE(5238), 2, + STATE(5277), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4675), 3, + ACTIONS(4645), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [66241] = 5, + [65941] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4687), 1, + anon_sym_DASH2, + ACTIONS(4699), 1, + anon_sym_PLUS2, + ACTIONS(4703), 1, + anon_sym_bit_DASHand2, + STATE(2252), 1, + sym_comment, + ACTIONS(4685), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4689), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4695), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4697), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4701), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4691), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4693), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2656), 6, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4683), 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, + [66007] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4752), 1, aux_sym_cmd_identifier_token6, - STATE(2245), 1, + STATE(2253), 1, sym_comment, ACTIONS(4750), 5, anon_sym_STAR, @@ -198093,53 +199157,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [66289] = 18, + [66055] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4647), 1, + ACTIONS(4667), 1, anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_and2, - ACTIONS(4661), 1, + ACTIONS(4679), 1, anon_sym_PLUS2, - ACTIONS(4665), 1, + STATE(2254), 1, + sym_comment, + ACTIONS(4665), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4669), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4675), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4677), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4681), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2656), 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, + [66115] = 18, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(4667), 1, + anon_sym_DASH2, + ACTIONS(4679), 1, + anon_sym_PLUS2, + ACTIONS(4710), 1, + anon_sym_bit_DASHand2, + ACTIONS(4714), 1, anon_sym_bit_DASHxor2, - ACTIONS(4669), 1, + ACTIONS(4730), 1, anon_sym_bit_DASHor2, - ACTIONS(4699), 1, - anon_sym_xor2, + ACTIONS(4736), 1, + anon_sym_and2, ACTIONS(4754), 1, - anon_sym_or2, - STATE(2246), 1, + anon_sym_xor2, + STATE(2255), 1, sym_comment, - ACTIONS(4645), 2, + ACTIONS(2656), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4665), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4649), 2, + ACTIONS(4669), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4657), 2, + ACTIONS(4675), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4659), 2, + ACTIONS(4677), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4681), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4673), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4663), 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, + [66189] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4760), 1, + aux_sym_cmd_identifier_token6, + STATE(2256), 1, + sym_comment, + ACTIONS(4758), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4756), 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, + [66237] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2257), 1, + sym_comment, + ACTIONS(4689), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4695), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4697), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4663), 2, + ACTIONS(2658), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2656), 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, - ACTIONS(4653), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [66289] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2258), 1, + sym_comment, + ACTIONS(4766), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4768), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4655), 4, + ACTIONS(4770), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4643), 8, + ACTIONS(4762), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198148,53 +199377,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66362] = 18, + ACTIONS(4764), 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, + [66340] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2892), 1, + ACTIONS(4667), 1, anon_sym_DASH2, - ACTIONS(2902), 1, + ACTIONS(4679), 1, anon_sym_PLUS2, - ACTIONS(2914), 1, + ACTIONS(4710), 1, anon_sym_bit_DASHand2, - ACTIONS(2916), 1, + ACTIONS(4714), 1, anon_sym_bit_DASHxor2, - ACTIONS(2918), 1, + ACTIONS(4730), 1, anon_sym_bit_DASHor2, - ACTIONS(2920), 1, + ACTIONS(4736), 1, anon_sym_and2, - ACTIONS(2926), 1, + ACTIONS(4754), 1, anon_sym_xor2, - ACTIONS(4756), 1, + ACTIONS(4772), 1, anon_sym_or2, - STATE(2247), 1, + STATE(2259), 1, sym_comment, - ACTIONS(2890), 2, + ACTIONS(4665), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2894), 2, + ACTIONS(4669), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2898), 2, + ACTIONS(4675), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2900), 2, + ACTIONS(4677), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2904), 2, + ACTIONS(4681), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2896), 4, + ACTIONS(4671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2912), 4, + ACTIONS(4673), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2910), 8, + ACTIONS(4663), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198203,53 +199449,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66435] = 18, + [66413] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3020), 1, + ACTIONS(4687), 1, anon_sym_DASH2, - ACTIONS(3030), 1, + ACTIONS(4699), 1, anon_sym_PLUS2, - ACTIONS(3038), 1, + ACTIONS(4703), 1, anon_sym_bit_DASHand2, - ACTIONS(3040), 1, + ACTIONS(4705), 1, anon_sym_bit_DASHxor2, - ACTIONS(3042), 1, + ACTIONS(4728), 1, anon_sym_bit_DASHor2, - ACTIONS(3044), 1, + ACTIONS(4732), 1, anon_sym_and2, - ACTIONS(3046), 1, + ACTIONS(4734), 1, anon_sym_xor2, - ACTIONS(4758), 1, + ACTIONS(4774), 1, anon_sym_or2, - STATE(2248), 1, + STATE(2260), 1, sym_comment, - ACTIONS(3018), 2, + ACTIONS(4685), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3022), 2, + ACTIONS(4689), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3026), 2, + ACTIONS(4695), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, + ACTIONS(4697), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, + ACTIONS(4701), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3024), 4, + ACTIONS(4691), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3036), 4, + ACTIONS(4693), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3034), 8, + ACTIONS(4683), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198258,53 +199504,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66508] = 18, + [66486] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3928), 1, + ACTIONS(3972), 1, anon_sym_DASH2, - ACTIONS(3938), 1, + ACTIONS(3982), 1, anon_sym_PLUS2, - ACTIONS(3946), 1, + ACTIONS(3990), 1, anon_sym_bit_DASHand2, - ACTIONS(3948), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHxor2, - ACTIONS(3950), 1, + ACTIONS(3994), 1, anon_sym_bit_DASHor2, - ACTIONS(3952), 1, + ACTIONS(3996), 1, anon_sym_and2, - ACTIONS(3954), 1, + ACTIONS(3998), 1, anon_sym_xor2, - ACTIONS(4760), 1, + ACTIONS(4776), 1, anon_sym_or2, - STATE(2249), 1, + STATE(2261), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(3970), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3974), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3934), 2, + ACTIONS(3978), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3936), 2, + ACTIONS(3980), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3940), 2, + ACTIONS(3984), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3932), 4, + ACTIONS(3976), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3944), 4, + ACTIONS(3988), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3942), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198313,53 +199559,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66581] = 18, + [66559] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(2946), 1, anon_sym_DASH2, - ACTIONS(4641), 1, + ACTIONS(2956), 1, anon_sym_PLUS2, - ACTIONS(4707), 1, + ACTIONS(2964), 1, anon_sym_bit_DASHand2, - ACTIONS(4721), 1, + ACTIONS(2966), 1, anon_sym_bit_DASHxor2, - ACTIONS(4735), 1, + ACTIONS(2968), 1, anon_sym_bit_DASHor2, - ACTIONS(4737), 1, + ACTIONS(2970), 1, anon_sym_and2, - ACTIONS(4739), 1, + ACTIONS(2972), 1, anon_sym_xor2, - ACTIONS(4762), 1, + ACTIONS(4778), 1, anon_sym_or2, - STATE(2250), 1, + STATE(2262), 1, sym_comment, - ACTIONS(4635), 2, + ACTIONS(2944), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2948), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4637), 2, + ACTIONS(2952), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4639), 2, + ACTIONS(2954), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4693), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4697), 2, + ACTIONS(2958), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4695), 4, + ACTIONS(2950), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4705), 4, + ACTIONS(2962), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4703), 8, + ACTIONS(2960), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198368,53 +199614,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66654] = 18, + [66632] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(3936), 1, anon_sym_DASH2, - ACTIONS(3984), 1, + ACTIONS(3946), 1, anon_sym_PLUS2, - ACTIONS(3992), 1, + ACTIONS(3954), 1, anon_sym_bit_DASHand2, - ACTIONS(3994), 1, + ACTIONS(3956), 1, anon_sym_bit_DASHxor2, - ACTIONS(3996), 1, + ACTIONS(3958), 1, anon_sym_bit_DASHor2, - ACTIONS(3998), 1, + ACTIONS(3960), 1, anon_sym_and2, - ACTIONS(4000), 1, + ACTIONS(3962), 1, anon_sym_xor2, - ACTIONS(4764), 1, + ACTIONS(4780), 1, anon_sym_or2, - STATE(2251), 1, + STATE(2263), 1, sym_comment, - ACTIONS(3972), 2, + ACTIONS(3934), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3976), 2, + ACTIONS(3938), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3980), 2, + ACTIONS(3942), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3982), 2, + ACTIONS(3944), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3986), 2, + ACTIONS(3948), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3978), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3990), 4, + ACTIONS(3952), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3988), 8, + ACTIONS(3950), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198423,12 +199669,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66727] = 4, + [66705] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2252), 1, + STATE(2264), 1, sym_comment, - ACTIONS(1968), 8, + ACTIONS(1967), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -198437,7 +199683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1966), 26, + ACTIONS(1965), 26, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198464,25 +199710,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [66772] = 7, + [66750] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2253), 1, + ACTIONS(3026), 1, + anon_sym_DASH2, + ACTIONS(3036), 1, + anon_sym_PLUS2, + ACTIONS(3046), 1, + anon_sym_and2, + ACTIONS(3048), 1, + anon_sym_bit_DASHand2, + ACTIONS(3050), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3052), 1, + anon_sym_bit_DASHor2, + ACTIONS(3054), 1, + anon_sym_xor2, + ACTIONS(4782), 1, + anon_sym_or2, + STATE(2265), 1, sym_comment, - ACTIONS(4770), 2, + ACTIONS(3024), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4772), 4, + ACTIONS(3028), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3032), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3034), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3038), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3030), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4774), 4, + ACTIONS(3040), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4766), 8, + ACTIONS(3022), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198491,37 +199765,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4768), 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, [66823] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4778), 1, + ACTIONS(4786), 1, anon_sym_RBRACE, - ACTIONS(4780), 1, + ACTIONS(4788), 1, sym__entry_separator, - ACTIONS(4782), 1, + ACTIONS(4790), 1, sym_raw_string_begin, - STATE(2254), 1, + STATE(2266), 1, sym_comment, - STATE(2255), 1, + STATE(2272), 1, aux_sym__types_body_repeat2, - ACTIONS(4776), 29, + ACTIONS(4784), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -198551,17 +199808,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [66873] = 5, + [66873] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3710), 1, - sym_raw_string_begin, - ACTIONS(4784), 1, + ACTIONS(4788), 1, sym__entry_separator, - STATE(2255), 2, + ACTIONS(4790), 1, + sym_raw_string_begin, + ACTIONS(4792), 1, + anon_sym_RBRACE, + STATE(2267), 1, sym_comment, + STATE(2272), 1, aux_sym__types_body_repeat2, - ACTIONS(3705), 30, + ACTIONS(4784), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -198572,7 +199832,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, @@ -198592,15 +199851,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [66919] = 5, + [66923] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2268), 1, + sym_comment, + ACTIONS(4796), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4798), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4800), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4794), 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(4764), 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, + [66973] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4787), 1, + ACTIONS(4802), 1, sym__newline, - STATE(2256), 2, + STATE(2269), 2, aux_sym__repeat_newline, sym_comment, - ACTIONS(1867), 7, + ACTIONS(1883), 7, anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -198608,7 +199910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_record_token1, - ACTIONS(1862), 24, + ACTIONS(1878), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198633,7 +199935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [66965] = 25, + [67019] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -198644,113 +199946,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3112), 1, + ACTIONS(3110), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4673), 1, + ACTIONS(4643), 1, anon_sym_null, - ACTIONS(4677), 1, + ACTIONS(4647), 1, sym__newline, - ACTIONS(4681), 1, + ACTIONS(4651), 1, anon_sym_DOT_DOT, - ACTIONS(4685), 1, + ACTIONS(4655), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4687), 1, + ACTIONS(4657), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4691), 1, + ACTIONS(4661), 1, sym_val_date, - STATE(2257), 1, + STATE(2270), 1, sym_comment, - STATE(2285), 1, + STATE(2296), 1, aux_sym__collection_body_repeat1, - STATE(2452), 1, + STATE(2456), 1, aux_sym__types_body_repeat1, - STATE(3989), 1, + STATE(4165), 1, sym__val_number_decimal, - STATE(4786), 1, + STATE(4832), 1, sym__collection_entry, - STATE(5355), 1, + STATE(5520), 1, sym_val_bool, - ACTIONS(4671), 2, + ACTIONS(4641), 2, anon_sym_true, anon_sym_false, - ACTIONS(4683), 2, + ACTIONS(4653), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4689), 2, + ACTIONS(4659), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4389), 2, + STATE(4586), 2, sym_val_string, sym__unquoted_in_record, - STATE(5238), 2, + STATE(5277), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4675), 3, + ACTIONS(4645), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67051] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2258), 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(4768), 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, - [67101] = 7, + [67105] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4788), 1, sym__entry_separator, - ACTIONS(4782), 1, + ACTIONS(4790), 1, sym_raw_string_begin, - ACTIONS(4798), 1, + ACTIONS(4805), 1, anon_sym_RBRACE, - STATE(2255), 1, - aux_sym__types_body_repeat2, - STATE(2259), 1, + STATE(2271), 1, sym_comment, - ACTIONS(4776), 29, + STATE(2272), 1, + aux_sym__types_body_repeat2, + ACTIONS(4784), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -198780,20 +200039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [67151] = 7, + [67155] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym__entry_separator, - ACTIONS(4782), 1, + ACTIONS(3745), 1, sym_raw_string_begin, - ACTIONS(4800), 1, - anon_sym_RBRACE, - STATE(2255), 1, - aux_sym__types_body_repeat2, - STATE(2260), 1, + ACTIONS(4807), 1, + sym__entry_separator, + STATE(2272), 2, sym_comment, - ACTIONS(4776), 29, + aux_sym__types_body_repeat2, + ACTIONS(3740), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -198804,6 +200060,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, @@ -198823,16 +200080,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [67201] = 4, + [67201] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4814), 1, + sym__entry_separator, + ACTIONS(4816), 1, + sym_raw_string_begin, + STATE(2273), 1, + sym_comment, + STATE(2287), 1, + aux_sym__types_body_repeat2, + ACTIONS(4812), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4810), 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, + [67250] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2261), 1, + STATE(2274), 1, sym_comment, - ACTIONS(1512), 3, + ACTIONS(1468), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1514), 29, + ACTIONS(1470), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -198862,16 +200161,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67244] = 4, + [67293] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4814), 1, + sym__entry_separator, + ACTIONS(4816), 1, + sym_raw_string_begin, + STATE(2275), 1, + sym_comment, + STATE(2287), 1, + aux_sym__types_body_repeat2, + ACTIONS(4818), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4810), 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, + [67342] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2262), 1, + STATE(2276), 1, sym_comment, - ACTIONS(1528), 3, + ACTIONS(1472), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1530), 29, + ACTIONS(1474), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -198901,63 +200242,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67287] = 7, - ACTIONS(103), 1, + [67385] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - ACTIONS(4808), 1, - sym_raw_string_begin, - STATE(2263), 1, + STATE(2277), 1, sym_comment, + ACTIONS(1530), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1532), 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, + [67428] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4514), 1, + sym__newline, + ACTIONS(4518), 1, + anon_sym_LBRACK, + ACTIONS(4560), 1, + anon_sym_DOT_DOT, STATE(2278), 1, - aux_sym__types_body_repeat2, - ACTIONS(4804), 2, + sym_comment, + ACTIONS(4509), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4802), 27, + anon_sym_COMMA, + ACTIONS(2754), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2756), 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_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, - [67336] = 7, - ACTIONS(103), 1, + [67479] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - ACTIONS(4808), 1, - sym_raw_string_begin, - STATE(2264), 1, + ACTIONS(4820), 1, + sym__newline, + STATE(2279), 2, sym_comment, - STATE(2278), 1, - aux_sym__types_body_repeat2, - ACTIONS(4804), 2, - anon_sym_RBRACK, + aux_sym__types_body_repeat1, + ACTIONS(3760), 7, + anon_sym__, anon_sym_DOT_DOT, - ACTIONS(4802), 27, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3762), 23, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -198970,36 +200354,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [67385] = 7, + [67524] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(4814), 1, sym__entry_separator, - ACTIONS(4808), 1, + ACTIONS(4816), 1, sym_raw_string_begin, - STATE(2265), 1, + STATE(2280), 1, sym_comment, - STATE(2278), 1, + STATE(2287), 1, aux_sym__types_body_repeat2, - ACTIONS(4810), 2, + ACTIONS(4823), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4802), 27, + ACTIONS(4810), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -199027,60 +200406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67434] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2266), 1, - sym_comment, - ACTIONS(1504), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1506), 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, - [67477] = 7, + [67573] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(4788), 1, sym__entry_separator, - ACTIONS(4808), 1, + ACTIONS(4790), 1, sym_raw_string_begin, - STATE(2267), 1, - sym_comment, - STATE(2278), 1, + STATE(2272), 1, aux_sym__types_body_repeat2, - ACTIONS(4810), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4802), 27, + STATE(2281), 1, + sym_comment, + ACTIONS(4784), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -199091,6 +200428,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, @@ -199107,16 +200446,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [67526] = 4, + aux_sym_unquoted_token1, + [67620] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2268), 1, - sym_comment, - ACTIONS(3756), 2, - sym_raw_string_begin, + ACTIONS(4814), 1, sym__entry_separator, - ACTIONS(3754), 30, + ACTIONS(4816), 1, + sym_raw_string_begin, + STATE(2282), 1, + sym_comment, + STATE(2287), 1, + aux_sym__types_body_repeat2, + ACTIONS(4825), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4810), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -199127,9 +200472,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, @@ -199146,95 +200488,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [67569] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2269), 1, - sym_comment, - ACTIONS(1520), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1522), 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, - [67612] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [67669] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2270), 1, + ACTIONS(4814), 1, + sym__entry_separator, + ACTIONS(4816), 1, + sym_raw_string_begin, + STATE(2283), 1, sym_comment, - ACTIONS(1968), 7, - anon_sym_DOLLAR, + STATE(2287), 1, + aux_sym__types_body_repeat2, + ACTIONS(4825), 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(1966), 25, - sym_raw_string_begin, + ACTIONS(4810), 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, - [67655] = 4, + aux_sym__unquoted_in_list_token1, + [67718] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2271), 1, + STATE(2284), 1, sym_comment, - ACTIONS(1500), 3, + ACTIONS(1516), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1502), 29, + ACTIONS(1518), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -199264,21 +200570,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67698] = 7, + [67761] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(4814), 1, sym__entry_separator, - ACTIONS(4808), 1, + ACTIONS(4816), 1, sym_raw_string_begin, - STATE(2272), 1, + STATE(2285), 1, sym_comment, - STATE(2278), 1, + STATE(2287), 1, aux_sym__types_body_repeat2, ACTIONS(4812), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4802), 27, + ACTIONS(4810), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -199306,24 +200612,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67747] = 5, - ACTIONS(3), 1, + [67810] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4814), 1, - sym__newline, - STATE(2273), 2, + STATE(2286), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3758), 7, + ACTIONS(3771), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3769), 30, + anon_sym_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_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, - ACTIONS(3760), 23, + [67853] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3745), 1, sym_raw_string_begin, + ACTIONS(4827), 1, + sym__entry_separator, + STATE(2287), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3740), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -199331,31 +200669,38 @@ 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, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, 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, - [67792] = 4, + aux_sym__unquoted_in_list_token1, + [67898] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2274), 1, + STATE(2288), 1, sym_comment, - ACTIONS(1508), 3, + ACTIONS(1522), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1510), 29, + ACTIONS(1524), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -199385,221 +200730,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67835] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym__entry_separator, - ACTIONS(4782), 1, - sym_raw_string_begin, - STATE(2255), 1, - aux_sym__types_body_repeat2, - STATE(2275), 1, - sym_comment, - ACTIONS(4776), 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, - [67882] = 8, + [67941] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4457), 1, - sym__newline, - ACTIONS(4461), 1, - anon_sym_LBRACK, - ACTIONS(4489), 1, - anon_sym_DOT_DOT, - STATE(2276), 1, - sym_comment, - ACTIONS(4464), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2772), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2774), 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, - [67933] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - ACTIONS(4808), 1, - sym_raw_string_begin, - STATE(2277), 1, + STATE(2289), 1, sym_comment, - STATE(2278), 1, - aux_sym__types_body_repeat2, - ACTIONS(4817), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4802), 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, + ACTIONS(1480), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1482), 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_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_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - 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, - [67982] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3710), 1, - sym_raw_string_begin, - ACTIONS(4819), 1, - sym__entry_separator, - STATE(2278), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3705), 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_RBRACK, - anon_sym_LPAREN, + 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, + [67984] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2290), 1, + sym_comment, + ACTIONS(1967), 7, 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, - [68027] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - ACTIONS(4808), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1965), 25, sym_raw_string_begin, - STATE(2278), 1, - aux_sym__types_body_repeat2, - STATE(2279), 1, - sym_comment, - ACTIONS(4802), 28, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [68073] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [68027] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2280), 1, - sym_comment, - ACTIONS(3756), 2, - sym_raw_string_begin, + ACTIONS(4814), 1, sym__entry_separator, - ACTIONS(3754), 29, + ACTIONS(4816), 1, + sym_raw_string_begin, + STATE(2287), 1, + aux_sym__types_body_repeat2, + STATE(2291), 1, + sym_comment, + ACTIONS(4810), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -199607,7 +200827,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, @@ -199629,7 +200848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [68115] = 23, + [68073] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -199640,68 +200859,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3112), 1, + ACTIONS(3110), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4673), 1, + ACTIONS(4643), 1, anon_sym_null, - ACTIONS(4681), 1, + ACTIONS(4651), 1, anon_sym_DOT_DOT, - ACTIONS(4685), 1, + ACTIONS(4655), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4687), 1, + ACTIONS(4657), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4691), 1, + ACTIONS(4661), 1, sym_val_date, - STATE(2281), 1, + STATE(2292), 1, sym_comment, - STATE(2284), 1, + STATE(2293), 1, aux_sym__collection_body_repeat1, - STATE(3989), 1, + STATE(4165), 1, sym__val_number_decimal, - STATE(4787), 1, + STATE(4839), 1, sym__collection_entry, - STATE(5355), 1, + STATE(5520), 1, sym_val_bool, - ACTIONS(4671), 2, + ACTIONS(4641), 2, anon_sym_true, anon_sym_false, - ACTIONS(4683), 2, + ACTIONS(4653), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4689), 2, + ACTIONS(4659), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4586), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5277), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4645), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68153] = 22, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4833), 1, + anon_sym_null, + ACTIONS(4839), 1, + anon_sym_DOT_DOT, + ACTIONS(4845), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4848), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4854), 1, + sym_val_date, + ACTIONS(4857), 1, + anon_sym_DQUOTE, + ACTIONS(4860), 1, + anon_sym_SQUOTE, + ACTIONS(4863), 1, + anon_sym_BQUOTE, + ACTIONS(4866), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4869), 1, + sym_raw_string_begin, + STATE(4165), 1, + sym__val_number_decimal, + STATE(5064), 1, + sym__collection_entry, + STATE(5520), 1, + sym_val_bool, + ACTIONS(4830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4842), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4851), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4389), 2, + STATE(2293), 2, + sym_comment, + aux_sym__collection_body_repeat1, + STATE(4926), 2, sym_val_string, sym__unquoted_in_record, - STATE(5238), 2, + STATE(5277), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4675), 3, + ACTIONS(4836), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68195] = 5, + [68231] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4822), 1, + ACTIONS(4872), 1, sym__newline, - STATE(2282), 2, + STATE(2294), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3758), 6, + ACTIONS(3760), 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(3760), 23, + ACTIONS(3762), 23, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -199725,101 +201000,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [68239] = 4, - ACTIONS(3), 1, + [68275] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2283), 1, + STATE(2295), 1, sym_comment, - ACTIONS(2772), 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(2774), 24, + ACTIONS(3771), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3769), 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, - sym__newline, 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, - [68281] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4828), 1, - anon_sym_null, - ACTIONS(4834), 1, - anon_sym_DOT_DOT, - ACTIONS(4840), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4843), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4849), 1, - sym_val_date, - ACTIONS(4852), 1, - anon_sym_DQUOTE, - ACTIONS(4855), 1, - anon_sym_SQUOTE, - ACTIONS(4858), 1, - anon_sym_BQUOTE, - ACTIONS(4861), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4864), 1, - sym_raw_string_begin, - STATE(3989), 1, - sym__val_number_decimal, - STATE(5074), 1, - sym__collection_entry, - STATE(5355), 1, - sym_val_bool, - ACTIONS(4825), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4837), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4846), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2284), 2, - sym_comment, - aux_sym__collection_body_repeat1, - STATE(4907), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5238), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4831), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3725), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68359] = 23, + aux_sym__unquoted_in_list_token1, + [68317] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -199830,65 +201049,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3112), 1, + ACTIONS(3110), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4673), 1, + ACTIONS(4643), 1, anon_sym_null, - ACTIONS(4681), 1, + ACTIONS(4651), 1, anon_sym_DOT_DOT, - ACTIONS(4685), 1, + ACTIONS(4655), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4687), 1, + ACTIONS(4657), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4691), 1, + ACTIONS(4661), 1, sym_val_date, - STATE(2284), 1, + STATE(2293), 1, aux_sym__collection_body_repeat1, - STATE(2285), 1, + STATE(2296), 1, sym_comment, - STATE(3989), 1, + STATE(4165), 1, sym__val_number_decimal, - STATE(4856), 1, + STATE(4899), 1, sym__collection_entry, - STATE(5355), 1, + STATE(5520), 1, sym_val_bool, - ACTIONS(4671), 2, + ACTIONS(4641), 2, anon_sym_true, anon_sym_false, - ACTIONS(4683), 2, + ACTIONS(4653), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4689), 2, + ACTIONS(4659), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4389), 2, + STATE(4586), 2, sym_val_string, sym__unquoted_in_record, - STATE(5238), 2, + STATE(5277), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4675), 3, + ACTIONS(4645), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3725), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68439] = 4, + [68397] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2286), 1, + STATE(2297), 1, sym_comment, - ACTIONS(2772), 6, + ACTIONS(2754), 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(2774), 24, + aux_sym_unquoted_token1, + ACTIONS(2756), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -199913,53 +201133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [68480] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2287), 1, - sym_comment, - STATE(3257), 1, - sym_redirection, - ACTIONS(4869), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4871), 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(4867), 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, - [68525] = 6, + [68439] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2288), 1, + STATE(2298), 1, sym_comment, - STATE(3355), 1, + STATE(3291), 1, sym_redirection, - ACTIONS(4869), 8, + ACTIONS(4877), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -199968,7 +201149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4871), 8, + ACTIONS(4879), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -199977,7 +201158,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(4873), 13, + ACTIONS(4875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199991,50 +201172,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [68570] = 6, + [68484] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2289), 1, + STATE(2299), 1, sym_comment, - STATE(3501), 1, - sym_redirection, - ACTIONS(4869), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4871), 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(4875), 12, + ACTIONS(2754), 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(2756), 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_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [68614] = 6, + 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, + [68525] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2290), 1, + STATE(2300), 1, sym_comment, - STATE(3527), 1, + STATE(3327), 1, sym_redirection, ACTIONS(4877), 8, anon_sym_err_GT, @@ -200054,30 +201234,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(4867), 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, - [68658] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2291), 1, - sym_comment, - ACTIONS(1578), 2, - anon_sym_EQ, - anon_sym_DOT_DOT2, - ACTIONS(1580), 27, - anon_sym_if, - anon_sym_in, + ACTIONS(4881), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200089,21 +201246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_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, - [68698] = 25, + [68570] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200114,117 +201259,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, - anon_sym_DASH2, + anon_sym_LPAREN, ACTIONS(4887), 1, - anon_sym_LBRACE, + anon_sym_DASH2, ACTIONS(4889), 1, + anon_sym_LBRACE, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2292), 1, + STATE(2301), 1, sym_comment, - STATE(2293), 1, + STATE(2307), 1, aux_sym__repeat_newline, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2785), 1, + STATE(2799), 1, sym__binary_predicate_parenthesized, - STATE(2786), 1, + STATE(2800), 1, sym_where_predicate, - STATE(3275), 1, + STATE(3264), 1, sym_val_closure, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68780] = 25, + [68652] = 4, 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, - aux_sym_expr_unary_token1, - ACTIONS(4881), 1, + STATE(2302), 1, + sym_comment, + ACTIONS(1580), 2, + anon_sym_EQ, + anon_sym_DOT_DOT2, + ACTIONS(1582), 27, + anon_sym_if, + anon_sym_in, sym__newline, - ACTIONS(4883), 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_COLON, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_DASH2, - ACTIONS(4887), 1, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, - sym__expr_unary_minus, - STATE(2293), 1, - sym_comment, - STATE(2407), 1, - sym_val_string, - STATE(2430), 1, - sym__where_predicate_lhs_path_head, - STATE(2617), 1, - sym__where_predicate_lhs, - STATE(2736), 1, - sym_where_predicate, - STATE(2809), 1, - sym__binary_predicate_parenthesized, - STATE(3190), 1, - aux_sym__repeat_newline, - STATE(3371), 1, - sym_val_closure, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(2253), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2882), 2, - sym_expr_unary, - sym_val_bool, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68862] = 6, + 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, + [68692] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2294), 1, + STATE(2303), 1, sym_comment, - STATE(3506), 1, + STATE(3498), 1, sym_redirection, - ACTIONS(4877), 8, + ACTIONS(4893), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -200233,7 +201357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4879), 8, + ACTIONS(4895), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -200242,7 +201366,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(4873), 12, + ACTIONS(4875), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200255,14 +201379,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, - [68906] = 6, + [68736] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2295), 1, + STATE(2304), 1, sym_comment, - STATE(3511), 1, + STATE(3508), 1, sym_redirection, - ACTIONS(4869), 8, + ACTIONS(4893), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -200271,7 +201395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4871), 8, + ACTIONS(4895), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -200280,36 +201404,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(4891), 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, - [68950] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4893), 1, - anon_sym_QMARK2, - ACTIONS(4895), 1, - anon_sym_BANG, - STATE(443), 1, - sym__path_suffix, - STATE(2296), 1, - sym_comment, - ACTIONS(1442), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1444), 23, - anon_sym_if, - anon_sym_in, + ACTIONS(4881), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200321,85 +201417,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_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, - [68995] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, - aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_DASH2, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, - sym__expr_unary_minus, - STATE(2297), 1, - sym_comment, - STATE(2327), 1, - aux_sym__repeat_newline, - STATE(2407), 1, - sym_val_string, - STATE(2430), 1, - sym__where_predicate_lhs_path_head, - STATE(2617), 1, - sym__where_predicate_lhs, - STATE(2791), 1, - sym__binary_predicate_parenthesized, - STATE(2803), 1, - sym_where_predicate, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(2253), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2882), 2, - sym_expr_unary, - sym_val_bool, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69071] = 7, + [68780] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, - anon_sym_DOT_DOT2, - ACTIONS(4897), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(2298), 1, + STATE(2305), 1, sym_comment, - STATE(2299), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 23, - anon_sym_if, - anon_sym_in, + STATE(3425), 1, + sym_redirection, + ACTIONS(4877), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4879), 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(4897), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200412,30 +201455,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69115] = 6, + [68824] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1532), 1, - anon_sym_DOT_DOT2, - ACTIONS(4899), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(2299), 2, + STATE(2306), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1534), 23, - anon_sym_if, - anon_sym_in, + STATE(3460), 1, + sym_redirection, + ACTIONS(4877), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4879), 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(4899), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200448,16 +201493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - 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, - [69157] = 23, + [68868] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200468,103 +201504,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, ACTIONS(4889), 1, + anon_sym_LBRACE, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2300), 1, + STATE(2307), 1, sym_comment, - STATE(2305), 1, - aux_sym__repeat_newline, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2777), 1, + STATE(2732), 1, sym__binary_predicate_parenthesized, - STATE(2782), 1, + STATE(2733), 1, sym_where_predicate, - ACTIONS(1945), 2, + STATE(3255), 1, + aux_sym__repeat_newline, + STATE(3414), 1, + sym_val_closure, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69233] = 8, + [68950] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_DOT_DOT2, - ACTIONS(4897), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(478), 1, - sym_cell_path, - STATE(2298), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2301), 1, + ACTIONS(4901), 1, + anon_sym_QMARK2, + ACTIONS(4903), 1, + anon_sym_BANG, + STATE(480), 1, + sym__path_suffix, + STATE(2308), 1, sym_comment, - ACTIONS(1653), 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, - [69279] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1448), 2, anon_sym_DOT_DOT2, - ACTIONS(4897), 1, anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(472), 1, - sym_cell_path, - STATE(2298), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2302), 1, - sym_comment, - ACTIONS(1647), 22, + ACTIONS(1450), 23, anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200586,7 +201588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69325] = 23, + [68995] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200597,155 +201599,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_DASH2, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, - sym__expr_unary_minus, - STATE(2303), 1, - sym_comment, - STATE(2310), 1, - aux_sym__repeat_newline, - STATE(2407), 1, - sym_val_string, - STATE(2430), 1, - sym__where_predicate_lhs_path_head, - STATE(2617), 1, - sym__where_predicate_lhs, - STATE(2793), 1, - sym__binary_predicate_parenthesized, - STATE(2794), 1, - sym_where_predicate, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(2253), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2882), 2, - sym_expr_unary, - sym_val_bool, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69401] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, - aux_sym_expr_unary_token1, - ACTIONS(4881), 1, sym__newline, - ACTIONS(4883), 1, - anon_sym_LPAREN, ACTIONS(4885), 1, - anon_sym_DASH2, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, - sym__expr_unary_minus, - STATE(2304), 1, - sym_comment, - STATE(2314), 1, - aux_sym__repeat_newline, - STATE(2407), 1, - sym_val_string, - STATE(2430), 1, - sym__where_predicate_lhs_path_head, - STATE(2617), 1, - sym__where_predicate_lhs, - STATE(2743), 1, - sym__binary_predicate_parenthesized, - STATE(2744), 1, - sym_where_predicate, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(2253), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2882), 2, - sym_expr_unary, - sym_val_bool, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69477] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, - aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, - ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4885), 1, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2305), 1, + STATE(2309), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2853), 1, + STATE(2824), 1, sym__binary_predicate_parenthesized, - STATE(2854), 1, + STATE(2829), 1, sym_where_predicate, - STATE(3190), 1, + STATE(3255), 1, aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69553] = 23, + [69071] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200756,234 +201652,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_DASH2, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, - sym__expr_unary_minus, - STATE(2306), 1, - sym_comment, - STATE(2407), 1, - sym_val_string, - STATE(2430), 1, - sym__where_predicate_lhs_path_head, - STATE(2617), 1, - sym__where_predicate_lhs, - STATE(2811), 1, - sym__binary_predicate_parenthesized, - STATE(2869), 1, - sym_where_predicate, - STATE(3190), 1, - aux_sym__repeat_newline, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(2253), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2882), 2, - sym_expr_unary, - sym_val_bool, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69629] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, - aux_sym_expr_unary_token1, - ACTIONS(4881), 1, sym__newline, - ACTIONS(4883), 1, - anon_sym_LPAREN, ACTIONS(4885), 1, - anon_sym_DASH2, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, - sym__expr_unary_minus, - STATE(2307), 1, - sym_comment, - STATE(2322), 1, - aux_sym__repeat_newline, - STATE(2407), 1, - sym_val_string, - STATE(2430), 1, - sym__where_predicate_lhs_path_head, - STATE(2617), 1, - sym__where_predicate_lhs, - STATE(2756), 1, - sym__binary_predicate_parenthesized, - STATE(2759), 1, - sym_where_predicate, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(2253), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2882), 2, - sym_expr_unary, - sym_val_bool, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69705] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1454), 1, - anon_sym_DOT_DOT2, - ACTIONS(4897), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(2291), 1, - sym_cell_path, - STATE(2298), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2308), 1, - sym_comment, - ACTIONS(1456), 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, - [69751] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - ACTIONS(4902), 1, - anon_sym_DOT, - STATE(2309), 1, - sym_comment, - STATE(2458), 1, - sym__immediate_decimal, - ACTIONS(4904), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2559), 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, - [69803] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, - aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, - ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4885), 1, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, STATE(2310), 1, sym_comment, - STATE(2407), 1, + STATE(2325), 1, + aux_sym__repeat_newline, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2768), 1, + STATE(2886), 1, sym__binary_predicate_parenthesized, - STATE(2846), 1, + STATE(2887), 1, sym_where_predicate, - STATE(3190), 1, - aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69879] = 23, + [69147] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200994,49 +201705,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, STATE(2311), 1, sym_comment, - STATE(2315), 1, + STATE(2326), 1, aux_sym__repeat_newline, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2815), 1, - sym_where_predicate, - STATE(2859), 1, + STATE(2889), 1, sym__binary_predicate_parenthesized, - ACTIONS(1945), 2, + STATE(2890), 1, + sym_where_predicate, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69955] = 23, + [69223] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201047,102 +201758,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, STATE(2312), 1, sym_comment, - STATE(2318), 1, - aux_sym__repeat_newline, - STATE(2407), 1, - sym_val_string, - STATE(2430), 1, - sym__where_predicate_lhs_path_head, - STATE(2617), 1, - sym__where_predicate_lhs, - STATE(2799), 1, - sym__binary_predicate_parenthesized, - STATE(2804), 1, - sym_where_predicate, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(2253), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2882), 2, - sym_expr_unary, - sym_val_bool, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70031] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, - aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_DASH2, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, - sym__expr_unary_minus, - STATE(2306), 1, + STATE(2332), 1, aux_sym__repeat_newline, - STATE(2313), 1, - sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2764), 1, + STATE(2891), 1, sym__binary_predicate_parenthesized, - STATE(2765), 1, + STATE(2892), 1, sym_where_predicate, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70107] = 23, + [69299] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1442), 1, + anon_sym_DOT_DOT2, + ACTIONS(4905), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, + STATE(2302), 1, + sym_cell_path, + STATE(2313), 1, + sym_comment, + STATE(2328), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 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, + [69345] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201153,49 +201849,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, + STATE(2309), 1, + aux_sym__repeat_newline, STATE(2314), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2857), 1, + STATE(2878), 1, sym__binary_predicate_parenthesized, - STATE(2883), 1, + STATE(2879), 1, sym_where_predicate, - STATE(3190), 1, - aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70183] = 23, + [69421] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201206,49 +201902,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, STATE(2315), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2808), 1, + STATE(2758), 1, sym__binary_predicate_parenthesized, - STATE(2812), 1, + STATE(2759), 1, sym_where_predicate, - STATE(3190), 1, + STATE(3255), 1, aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70259] = 23, + [69497] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201259,49 +201955,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, STATE(2316), 1, sym_comment, - STATE(2324), 1, - aux_sym__repeat_newline, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2770), 1, + STATE(2762), 1, sym__binary_predicate_parenthesized, - STATE(2784), 1, + STATE(2763), 1, sym_where_predicate, - ACTIONS(1945), 2, + STATE(3255), 1, + aux_sym__repeat_newline, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70335] = 23, + [69573] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201312,49 +202008,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2742), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4908), 1, + ACTIONS(4883), 1, + sym__newline, + ACTIONS(4885), 1, anon_sym_LPAREN, - ACTIONS(4910), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4914), 1, - anon_sym_LBRACE, - STATE(1296), 1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, sym__expr_unary_minus, STATE(2317), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2614), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(3000), 1, - sym__binary_predicate, - STATE(3017), 1, + STATE(2795), 1, + sym__binary_predicate_parenthesized, + STATE(2796), 1, sym_where_predicate, - STATE(3518), 1, - sym_val_closure, - ACTIONS(2489), 2, + STATE(3255), 1, + aux_sym__repeat_newline, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2925), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70411] = 23, + [69649] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201365,49 +202061,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, STATE(2318), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2771), 1, + STATE(2816), 1, sym__binary_predicate_parenthesized, - STATE(2864), 1, + STATE(2817), 1, sym_where_predicate, - STATE(3190), 1, + STATE(3255), 1, aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70487] = 23, + [69725] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201418,49 +202114,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, + STATE(2315), 1, + aux_sym__repeat_newline, STATE(2319), 1, sym_comment, - STATE(2325), 1, - aux_sym__repeat_newline, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2739), 1, - sym_where_predicate, - STATE(2800), 1, + STATE(2848), 1, sym__binary_predicate_parenthesized, - ACTIONS(1945), 2, + STATE(2850), 1, + sym_where_predicate, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70563] = 23, + [69801] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201471,49 +202167,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, + STATE(2316), 1, + aux_sym__repeat_newline, STATE(2320), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2836), 1, + STATE(2876), 1, sym__binary_predicate_parenthesized, - STATE(2837), 1, + STATE(2877), 1, sym_where_predicate, - STATE(3190), 1, - aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70639] = 23, + [69877] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201524,49 +202220,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2320), 1, - aux_sym__repeat_newline, STATE(2321), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2729), 1, - sym_where_predicate, - STATE(2867), 1, + STATE(2766), 1, sym__binary_predicate_parenthesized, - ACTIONS(1945), 2, + STATE(2767), 1, + sym_where_predicate, + STATE(3255), 1, + aux_sym__repeat_newline, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70715] = 23, + [69953] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201577,49 +202273,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, + STATE(2321), 1, + aux_sym__repeat_newline, STATE(2322), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2866), 1, + STATE(2881), 1, sym__binary_predicate_parenthesized, - STATE(2868), 1, + STATE(2882), 1, sym_where_predicate, - STATE(3190), 1, - aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70791] = 23, + [70029] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201630,49 +202326,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, STATE(2323), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2826), 1, + STATE(2776), 1, sym__binary_predicate_parenthesized, - STATE(2827), 1, + STATE(2777), 1, sym_where_predicate, - STATE(3190), 1, + STATE(3255), 1, aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70867] = 23, + [70105] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201683,49 +202379,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, STATE(2324), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2752), 1, + STATE(2780), 1, sym__binary_predicate_parenthesized, - STATE(2753), 1, + STATE(2781), 1, sym_where_predicate, - STATE(3190), 1, + STATE(3255), 1, aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70943] = 23, + [70181] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201736,49 +202432,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, STATE(2325), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2757), 1, + STATE(2883), 1, sym__binary_predicate_parenthesized, - STATE(2758), 1, + STATE(2884), 1, sym_where_predicate, - STATE(3190), 1, + STATE(3255), 1, aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71019] = 23, + [70257] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201789,49 +202485,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2323), 1, - aux_sym__repeat_newline, STATE(2326), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2717), 1, + STATE(2896), 1, sym__binary_predicate_parenthesized, - STATE(2720), 1, + STATE(2897), 1, sym_where_predicate, - ACTIONS(1945), 2, + STATE(3255), 1, + aux_sym__repeat_newline, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71095] = 23, + [70333] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -201842,124 +202538,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4881), 1, - sym__newline, ACTIONS(4883), 1, - anon_sym_LPAREN, + sym__newline, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, STATE(2327), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2831), 1, + STATE(2784), 1, sym__binary_predicate_parenthesized, - STATE(2832), 1, + STATE(2785), 1, sym_where_predicate, - STATE(3190), 1, + STATE(3255), 1, aux_sym__repeat_newline, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71171] = 23, + [70409] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, - aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_DASH2, - ACTIONS(4887), 1, - anon_sym_LBRACE, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, - sym__expr_unary_minus, + ACTIONS(1526), 1, + anon_sym_DOT_DOT2, + ACTIONS(4905), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, STATE(2328), 1, sym_comment, - STATE(2407), 1, - sym_val_string, - STATE(2430), 1, - sym__where_predicate_lhs_path_head, - STATE(2617), 1, - sym__where_predicate_lhs, - STATE(2860), 1, - sym__binary_predicate, - STATE(2861), 1, - sym_where_predicate, - STATE(3348), 1, - sym_val_closure, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(2253), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2882), 2, - sym_expr_unary, - sym_val_bool, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71247] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1607), 1, - anon_sym_DOT, - ACTIONS(2938), 1, - anon_sym_DOLLAR, STATE(2329), 1, - sym_comment, - STATE(2501), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2558), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 16, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1528), 23, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201972,73 +202608,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71296] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3806), 1, - anon_sym_DOLLAR, - ACTIONS(4916), 1, - anon_sym_DOT, - STATE(2330), 1, - sym_comment, - STATE(2474), 1, - sym__immediate_decimal, - ACTIONS(4918), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2640), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71347] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [70453] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(2331), 1, + ACTIONS(1536), 1, + anon_sym_DOT_DOT2, + ACTIONS(4907), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, + STATE(2329), 2, sym_comment, - STATE(2613), 1, - sym__immediate_decimal, - ACTIONS(4922), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4924), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(788), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 16, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 23, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202051,33 +202644,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, - [71396] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [70495] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(2332), 1, + ACTIONS(1691), 1, + anon_sym_DOT_DOT2, + ACTIONS(4905), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, + STATE(487), 1, + sym_cell_path, + STATE(2328), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2330), 1, sym_comment, - STATE(2620), 1, - sym__immediate_decimal, - ACTIONS(4922), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4924), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1681), 16, + ACTIONS(1689), 22, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202090,23 +202682,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, - [71445] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [70541] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_BANG, - STATE(2333), 1, - sym_comment, - ACTIONS(1460), 2, + ACTIONS(1677), 1, anon_sym_DOT_DOT2, + ACTIONS(4905), 1, anon_sym_DOT2, - ACTIONS(1462), 23, + STATE(470), 1, + sym_path, + STATE(493), 1, + sym_cell_path, + STATE(2328), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2331), 1, + sym_comment, + ACTIONS(1675), 22, anon_sym_if, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202128,120 +202729,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [71484] = 9, + [70587] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 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(1602), 1, anon_sym_DOLLAR, - STATE(784), 1, - sym__immediate_decimal, - STATE(2334), 1, - sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1645), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(783), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 16, + ACTIONS(2774), 1, + aux_sym_expr_unary_token1, + ACTIONS(4883), 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, - [71530] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3806), 1, - anon_sym_DOLLAR, - STATE(2335), 1, + ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_DASH2, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, + sym__expr_unary_minus, + STATE(2332), 1, sym_comment, - STATE(2675), 1, - sym__immediate_decimal, - ACTIONS(4926), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4928), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1351), 2, - sym__expr_parenthesized_immediate, + STATE(2425), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2627), 1, + sym__where_predicate_lhs, + STATE(2901), 1, + sym__binary_predicate_parenthesized, + STATE(2902), 1, + sym_where_predicate, + STATE(3255), 1, + aux_sym__repeat_newline, + ACTIONS(1931), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1631), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71578] = 10, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70663] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(3806), 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(1602), 1, anon_sym_DOLLAR, - STATE(2336), 1, + ACTIONS(2774), 1, + aux_sym_expr_unary_token1, + ACTIONS(4883), 1, + sym__newline, + ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_DASH2, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, + sym__expr_unary_minus, + STATE(2318), 1, + aux_sym__repeat_newline, + STATE(2333), 1, sym_comment, - STATE(2693), 1, - sym__immediate_decimal, - ACTIONS(4926), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4928), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1288), 2, - sym__expr_parenthesized_immediate, + STATE(2425), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2627), 1, + sym__where_predicate_lhs, + STATE(2874), 1, + sym__binary_predicate_parenthesized, + STATE(2875), 1, + sym_where_predicate, + ACTIONS(1931), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1681), 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, - [71626] = 21, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70739] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -202252,45 +202846,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2742), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4908), 1, + ACTIONS(4885), 1, anon_sym_LPAREN, - ACTIONS(4910), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(4887), 1, anon_sym_DASH2, - STATE(1296), 1, + ACTIONS(4889), 1, + anon_sym_LBRACE, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2337), 1, + STATE(2334), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2614), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2942), 1, + STATE(2826), 1, sym__binary_predicate, - STATE(2946), 1, + STATE(2918), 1, sym_where_predicate, - ACTIONS(2489), 2, + STATE(3288), 1, + sym_val_closure, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2925), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71696] = 21, + [70815] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -202301,45 +202899,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2742), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4908), 1, + ACTIONS(4883), 1, + sym__newline, + ACTIONS(4885), 1, anon_sym_LPAREN, - ACTIONS(4910), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(4887), 1, anon_sym_DASH2, - STATE(1296), 1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2338), 1, + STATE(2323), 1, + aux_sym__repeat_newline, + STATE(2335), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2614), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2957), 1, - sym__binary_predicate, - STATE(2973), 1, + STATE(2909), 1, + sym__binary_predicate_parenthesized, + STATE(2912), 1, sym_where_predicate, - ACTIONS(2489), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2925), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71766] = 21, + [70891] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -202350,45 +202952,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2742), 1, + ACTIONS(2810), 1, aux_sym_expr_unary_token1, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4908), 1, - anon_sym_LPAREN, ACTIONS(4910), 1, - anon_sym_DOLLAR, + anon_sym_LPAREN, ACTIONS(4912), 1, + anon_sym_DOLLAR, + ACTIONS(4914), 1, anon_sym_DASH2, - STATE(1296), 1, + ACTIONS(4916), 1, + anon_sym_LBRACE, + STATE(1291), 1, sym__expr_unary_minus, - STATE(2339), 1, + STATE(2336), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2614), 1, + STATE(2651), 1, sym__where_predicate_lhs, - STATE(2975), 1, + STATE(3032), 1, sym__binary_predicate, - STATE(2977), 1, + STATE(3033), 1, sym_where_predicate, - ACTIONS(2489), 2, + STATE(3417), 1, + sym_val_closure, + ACTIONS(2499), 2, anon_sym_true, anon_sym_false, - STATE(2258), 2, + STATE(2268), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2925), 2, + STATE(3035), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71836] = 21, + [70967] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -202399,45 +203005,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2742), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4908), 1, + ACTIONS(4883), 1, + sym__newline, + ACTIONS(4885), 1, anon_sym_LPAREN, - ACTIONS(4910), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(4887), 1, anon_sym_DASH2, - STATE(1296), 1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2340), 1, + STATE(2324), 1, + aux_sym__repeat_newline, + STATE(2337), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2614), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2978), 1, - sym__binary_predicate, - STATE(2979), 1, + STATE(2913), 1, + sym__binary_predicate_parenthesized, + STATE(2914), 1, sym_where_predicate, - ACTIONS(2489), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2925), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71906] = 21, + [71043] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -202448,45 +203058,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2742), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4908), 1, + ACTIONS(4883), 1, + sym__newline, + ACTIONS(4885), 1, anon_sym_LPAREN, - ACTIONS(4910), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(4887), 1, anon_sym_DASH2, - STATE(1296), 1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2341), 1, + STATE(2327), 1, + aux_sym__repeat_newline, + STATE(2338), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2614), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2980), 1, - sym__binary_predicate, - STATE(2983), 1, + STATE(2728), 1, sym_where_predicate, - ACTIONS(2489), 2, + STATE(2827), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2925), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71976] = 21, + [71119] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + ACTIONS(4918), 1, + anon_sym_DOT, + STATE(2339), 1, + sym_comment, + STATE(2466), 1, + sym__immediate_decimal, + ACTIONS(4920), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4922), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2557), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 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, + [71171] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -202497,57 +203152,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2742), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4908), 1, + ACTIONS(4883), 1, + sym__newline, + ACTIONS(4885), 1, anon_sym_LPAREN, - ACTIONS(4910), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(4887), 1, anon_sym_DASH2, - STATE(1296), 1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2342), 1, + STATE(2317), 1, + aux_sym__repeat_newline, + STATE(2340), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2614), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2984), 1, - sym__binary_predicate, - STATE(2985), 1, + STATE(2872), 1, + sym__binary_predicate_parenthesized, + STATE(2873), 1, sym_where_predicate, - ACTIONS(2489), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2925), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72046] = 6, + [71247] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1710), 1, + anon_sym_BANG, + STATE(2341), 1, + sym_comment, + ACTIONS(1462), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1464), 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, + [71286] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(2342), 1, + sym_comment, + STATE(2600), 1, + sym__immediate_decimal, + ACTIONS(4924), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4926), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 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, + [71335] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1608), 1, + anon_sym_DOT, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(2343), 1, + sym_comment, + STATE(2556), 1, + sym__immediate_decimal, + ACTIONS(1610), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1612), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2555), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1600), 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, + [71384] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(1657), 1, + anon_sym_LPAREN2, + ACTIONS(3830), 1, + anon_sym_DOLLAR, + ACTIONS(4928), 1, + anon_sym_DOT, + STATE(2344), 1, + sym_comment, + STATE(2501), 1, + sym__immediate_decimal, + ACTIONS(4930), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4932), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2614), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 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, + [71435] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(2345), 1, + sym_comment, + STATE(2598), 1, + sym__immediate_decimal, + ACTIONS(4924), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4926), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(768), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 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, + [71484] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4930), 1, + ACTIONS(1657), 1, + anon_sym_LPAREN2, + ACTIONS(1705), 1, anon_sym_DOT, - ACTIONS(4932), 1, - aux_sym__immediate_decimal_token5, - STATE(2343), 1, + ACTIONS(3830), 1, + anon_sym_DOLLAR, + STATE(2346), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 21, + STATE(2654), 1, + sym__immediate_decimal, + ACTIONS(1661), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1663), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2653), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1600), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202559,29 +203420,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72086] = 6, + [71532] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4934), 1, aux_sym__immediate_decimal_token1, ACTIONS(4936), 1, aux_sym__immediate_decimal_token5, - STATE(2344), 1, + STATE(2347), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(749), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202603,16 +203457,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72126] = 13, + [71572] = 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(2810), 1, + aux_sym_expr_unary_token1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4910), 1, + anon_sym_LPAREN, + ACTIONS(4912), 1, + anon_sym_DOLLAR, + ACTIONS(4914), 1, + anon_sym_DASH2, + STATE(1291), 1, + sym__expr_unary_minus, + STATE(2348), 1, + sym_comment, + STATE(2425), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2651), 1, + sym__where_predicate_lhs, + STATE(3042), 1, + sym__binary_predicate, + STATE(3044), 1, + sym_where_predicate, + ACTIONS(2499), 2, + anon_sym_true, + anon_sym_false, + STATE(2268), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(3035), 2, + sym_expr_unary, + sym_val_bool, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71642] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1620), 1, sym__space, - ACTIONS(1637), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(3347), 1, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, ACTIONS(4938), 1, anon_sym_DOT, @@ -202620,17 +203523,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token1, ACTIONS(4942), 1, aux_sym__immediate_decimal_token2, - STATE(2345), 1, + STATE(2349), 1, sym_comment, - STATE(2532), 1, + STATE(2531), 1, sym__immediate_decimal, ACTIONS(4944), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2690), 2, + STATE(2718), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 13, + ACTIONS(1622), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202644,30 +203547,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72180] = 10, + [71696] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1722), 1, - anon_sym_DOT, - ACTIONS(3806), 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(2810), 1, + aux_sym_expr_unary_token1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4910), 1, + anon_sym_LPAREN, + ACTIONS(4912), 1, anon_sym_DOLLAR, - STATE(2346), 1, + ACTIONS(4914), 1, + anon_sym_DASH2, + STATE(1291), 1, + sym__expr_unary_minus, + STATE(2350), 1, sym_comment, - STATE(2639), 1, + STATE(2425), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2651), 1, + sym__where_predicate_lhs, + STATE(3036), 1, + sym__binary_predicate, + STATE(3039), 1, + sym_where_predicate, + ACTIONS(2499), 2, + anon_sym_true, + anon_sym_false, + STATE(2268), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(3035), 2, + sym_expr_unary, + sym_val_bool, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71766] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(765), 1, sym__immediate_decimal, - ACTIONS(1691), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1693), 2, + STATE(2351), 1, + sym_comment, + ACTIONS(1612), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2638), 2, + ACTIONS(1673), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(764), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1599), 15, - ts_builtin_sym_end, + ACTIONS(1600), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202679,30 +203628,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_and2, anon_sym_xor2, anon_sym_or2, - [72228] = 9, + [71812] = 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(1602), 1, + anon_sym_DOLLAR, + ACTIONS(2774), 1, + aux_sym_expr_unary_token1, + ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_DASH2, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, + sym__expr_unary_minus, + STATE(2352), 1, + sym_comment, + STATE(2425), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2627), 1, + sym__where_predicate_lhs, + STATE(2860), 1, + sym__binary_predicate, + STATE(2861), 1, + sym_where_predicate, + ACTIONS(1931), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71882] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR, - STATE(802), 1, + STATE(786), 1, sym__immediate_decimal, - STATE(2347), 1, + STATE(2353), 1, sym_comment, - ACTIONS(1611), 2, + ACTIONS(1612), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1645), 2, + ACTIONS(1673), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(801), 2, + STATE(785), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 16, + ACTIONS(1669), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202719,27 +203719,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72274] = 9, + [71928] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR, - STATE(804), 1, + STATE(802), 1, sym__immediate_decimal, - STATE(2348), 1, + STATE(2354), 1, sym_comment, - ACTIONS(1611), 2, + ACTIONS(1612), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1645), 2, + ACTIONS(1673), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(803), 2, + STATE(801), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1659), 16, + ACTIONS(1681), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202756,27 +203756,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72320] = 9, + [71974] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR, - STATE(806), 1, + STATE(804), 1, sym__immediate_decimal, - STATE(2349), 1, + STATE(2355), 1, sym_comment, - ACTIONS(1611), 2, + ACTIONS(1612), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1645), 2, + ACTIONS(1673), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(805), 2, + STATE(803), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 16, + ACTIONS(1685), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202793,7 +203793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72366] = 21, + [72020] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -202804,94 +203804,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - anon_sym_LPAREN, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2350), 1, + STATE(2356), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2876), 1, + STATE(2862), 1, sym__binary_predicate, - STATE(2877), 1, + STATE(2863), 1, sym_where_predicate, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72436] = 21, + [72090] = 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(1601), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(1657), 1, + anon_sym_LPAREN2, + ACTIONS(3830), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, - aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_DASH2, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, - sym__expr_unary_minus, - STATE(2351), 1, + STATE(2357), 1, sym_comment, - STATE(2407), 1, - sym_val_string, - STATE(2430), 1, - sym__where_predicate_lhs_path_head, - STATE(2617), 1, - sym__where_predicate_lhs, - STATE(2878), 1, - sym__binary_predicate, - STATE(2880), 1, - sym_where_predicate, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(2253), 2, - sym_expr_parenthesized, + STATE(2663), 1, + sym__immediate_decimal, + ACTIONS(4946), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4948), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1297), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2882), 2, - sym_expr_unary, - sym_val_bool, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72506] = 21, + ACTIONS(1620), 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, + [72138] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -202902,45 +203891,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2774), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - anon_sym_LPAREN, ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, anon_sym_DASH2, - ACTIONS(4889), 1, + ACTIONS(4891), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(947), 1, sym__expr_unary_minus, - STATE(2352), 1, + STATE(2358), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2627), 1, sym__where_predicate_lhs, - STATE(2881), 1, + STATE(2864), 1, sym__binary_predicate, - STATE(2897), 1, + STATE(2865), 1, sym_where_predicate, - ACTIONS(1945), 2, + ACTIONS(1931), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(2828), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72576] = 21, + [72208] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -202951,45 +203940,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2810), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4910), 1, anon_sym_LPAREN, - ACTIONS(4885), 1, + ACTIONS(4912), 1, + anon_sym_DOLLAR, + ACTIONS(4914), 1, anon_sym_DASH2, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(1291), 1, sym__expr_unary_minus, - STATE(2353), 1, + STATE(2359), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2651), 1, sym__where_predicate_lhs, - STATE(2898), 1, - sym__binary_predicate, - STATE(2899), 1, + STATE(2920), 1, sym_where_predicate, - ACTIONS(1945), 2, + STATE(2991), 1, + sym__binary_predicate, + ACTIONS(2499), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2268), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(3035), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72646] = 21, + [72278] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -203000,45 +203989,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2810), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4910), 1, anon_sym_LPAREN, - ACTIONS(4885), 1, + ACTIONS(4912), 1, + anon_sym_DOLLAR, + ACTIONS(4914), 1, anon_sym_DASH2, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(1291), 1, sym__expr_unary_minus, - STATE(2354), 1, + STATE(2360), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2651), 1, sym__where_predicate_lhs, - STATE(2900), 1, + STATE(3045), 1, sym__binary_predicate, - STATE(2901), 1, + STATE(3046), 1, sym_where_predicate, - ACTIONS(1945), 2, + ACTIONS(2499), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2268), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(3035), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72716] = 21, + [72348] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -203049,98 +204038,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2696), 1, + ACTIONS(2810), 1, aux_sym_expr_unary_token1, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4910), 1, anon_sym_LPAREN, - ACTIONS(4885), 1, + ACTIONS(4912), 1, + anon_sym_DOLLAR, + ACTIONS(4914), 1, anon_sym_DASH2, - ACTIONS(4889), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(959), 1, + STATE(1291), 1, sym__expr_unary_minus, - STATE(2355), 1, + STATE(2361), 1, sym_comment, - STATE(2407), 1, + STATE(2425), 1, sym_val_string, - STATE(2430), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2617), 1, + STATE(2651), 1, sym__where_predicate_lhs, - STATE(2904), 1, + STATE(2923), 1, sym__binary_predicate, - STATE(2905), 1, + STATE(2924), 1, sym_where_predicate, - ACTIONS(1945), 2, + ACTIONS(2499), 2, anon_sym_true, anon_sym_false, - STATE(2253), 2, + STATE(2268), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2882), 2, + STATE(3035), 2, sym_expr_unary, sym_val_bool, - STATE(418), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72786] = 6, + [72418] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4948), 1, - aux_sym__immediate_decimal_token5, - STATE(2356), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, + ACTIONS(1653), 1, 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(1657), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72825] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3806), 1, + ACTIONS(3830), 1, anon_sym_DOLLAR, - STATE(1349), 1, - sym__immediate_decimal, - STATE(2357), 1, + STATE(2362), 1, sym_comment, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1728), 2, + STATE(2665), 1, + sym__immediate_decimal, + ACTIONS(4946), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1348), 2, + ACTIONS(4948), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1324), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1599), 15, + ACTIONS(1645), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203156,164 +204114,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72870] = 9, + [72466] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3806), 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(1602), 1, anon_sym_DOLLAR, - STATE(1283), 1, - sym__immediate_decimal, - STATE(2358), 1, + ACTIONS(2774), 1, + aux_sym_expr_unary_token1, + ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_DASH2, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, + sym__expr_unary_minus, + STATE(2363), 1, sym_comment, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1728), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1282), 2, - sym__expr_parenthesized_immediate, + STATE(2425), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2627), 1, + sym__where_predicate_lhs, + STATE(2866), 1, + sym__binary_predicate, + STATE(2867), 1, + sym_where_predicate, + ACTIONS(1931), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1677), 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, - [72915] = 9, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72536] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3806), 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(1602), 1, anon_sym_DOLLAR, - STATE(1285), 1, - sym__immediate_decimal, - STATE(2359), 1, + ACTIONS(2774), 1, + aux_sym_expr_unary_token1, + ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_DASH2, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, + sym__expr_unary_minus, + STATE(2364), 1, sym_comment, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1728), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1284), 2, - sym__expr_parenthesized_immediate, + STATE(2425), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2627), 1, + sym__where_predicate_lhs, + STATE(2868), 1, + sym__binary_predicate, + STATE(2869), 1, + sym_where_predicate, + ACTIONS(1931), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1659), 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, - [72960] = 9, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72606] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3806), 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(1602), 1, anon_sym_DOLLAR, - STATE(1287), 1, - sym__immediate_decimal, - STATE(2360), 1, + ACTIONS(2774), 1, + aux_sym_expr_unary_token1, + ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_DASH2, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(947), 1, + sym__expr_unary_minus, + STATE(2365), 1, sym_comment, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1728), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1286), 2, - sym__expr_parenthesized_immediate, + STATE(2425), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2627), 1, + sym__where_predicate_lhs, + STATE(2858), 1, + sym__binary_predicate, + STATE(2859), 1, + sym_where_predicate, + ACTIONS(1931), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1669), 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, - [73005] = 12, - ACTIONS(103), 1, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72676] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1599), 1, - sym__space, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 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(2810), 1, + aux_sym_expr_unary_token1, + ACTIONS(4891), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4910), 1, + anon_sym_LPAREN, + ACTIONS(4912), 1, anon_sym_DOLLAR, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4942), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4950), 1, - anon_sym_DOT, - STATE(2361), 1, + ACTIONS(4914), 1, + anon_sym_DASH2, + STATE(1291), 1, + sym__expr_unary_minus, + STATE(2366), 1, sym_comment, - STATE(2689), 1, - sym__immediate_decimal, - ACTIONS(4944), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2688), 2, - sym__expr_parenthesized_immediate, + STATE(2425), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2651), 1, + sym__where_predicate_lhs, + STATE(2919), 1, + sym_where_predicate, + STATE(2921), 1, + sym__binary_predicate, + ACTIONS(2499), 2, + anon_sym_true, + anon_sym_false, + STATE(2268), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1603), 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, - [73056] = 5, + STATE(3035), 2, + sym_expr_unary, + sym_val_bool, + STATE(442), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4932), 1, + ACTIONS(4950), 1, + anon_sym_DOT, + ACTIONS(4952), 1, aux_sym__immediate_decimal_token5, - STATE(2362), 1, + STATE(2367), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(741), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203335,35 +204344,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73093] = 13, - ACTIONS(103), 1, + [72786] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(3141), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(4952), 1, - anon_sym_DOT, ACTIONS(4954), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT, ACTIONS(4956), 1, - aux_sym__immediate_decimal_token2, - STATE(2363), 1, + aux_sym__immediate_decimal_token5, + STATE(2368), 1, sym_comment, - STATE(2562), 1, - sym__immediate_decimal, - ACTIONS(1631), 2, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 20, ts_builtin_sym_end, - sym__space, - ACTIONS(4958), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2718), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203375,17 +204369,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, - [73146] = 5, + 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, + [72825] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4960), 1, + ACTIONS(4958), 1, aux_sym__immediate_decimal_token5, - STATE(2364), 1, + STATE(2369), 1, sym_comment, - ACTIONS(767), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(769), 21, + ACTIONS(777), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203407,20 +204409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73183] = 6, + [72862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4962), 1, - anon_sym_DOT, - ACTIONS(4964), 1, + ACTIONS(4952), 1, aux_sym__immediate_decimal_token5, - STATE(2365), 1, + STATE(2370), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + ACTIONS(741), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203432,6 +204431,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, @@ -203440,66 +204441,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73222] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4966), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4968), 1, - aux_sym__immediate_decimal_token2, - STATE(2366), 1, - sym_comment, - STATE(2763), 1, - sym__immediate_decimal, - ACTIONS(4970), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3212), 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, - [73273] = 10, + [72899] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1806), 1, sym__unquoted_pattern, - ACTIONS(4972), 1, + ACTIONS(4960), 1, anon_sym_DOT_DOT2, - ACTIONS(4976), 1, + ACTIONS(4964), 1, sym_filesize_unit, - ACTIONS(4978), 1, + ACTIONS(4966), 1, sym_duration_unit, - STATE(2367), 1, + STATE(2371), 1, sym_comment, - STATE(5072), 1, + STATE(5075), 1, sym__expr_parenthesized_immediate, - ACTIONS(4974), 2, + ACTIONS(4962), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 16, + ACTIONS(884), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203516,88 +204478,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73320] = 12, + [72946] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(1620), 1, sym__space, - ACTIONS(1695), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(3347), 1, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - ACTIONS(4966), 1, - aux_sym__immediate_decimal_token1, ACTIONS(4968), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4970), 1, aux_sym__immediate_decimal_token2, - STATE(2368), 1, + STATE(2372), 1, sym_comment, - STATE(2769), 1, + STATE(2830), 1, sym__immediate_decimal, - ACTIONS(4970), 2, + ACTIONS(4972), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3224), 2, + STATE(3057), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 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, - [73371] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2369), 1, - sym_comment, - ACTIONS(1512), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1514), 21, - ts_builtin_sym_end, - 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [73405] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_QMARK2, - ACTIONS(4982), 1, - anon_sym_BANG, - STATE(2370), 1, - sym_comment, - STATE(2484), 1, - sym__path_suffix, - ACTIONS(1444), 20, - anon_sym_EQ, + ACTIONS(1622), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203609,25 +204515,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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT2, - [73443] = 4, + [72997] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2371), 1, + ACTIONS(1657), 1, + anon_sym_LPAREN2, + ACTIONS(3830), 1, + anon_sym_DOLLAR, + STATE(1350), 1, + sym__immediate_decimal, + STATE(2373), 1, sym_comment, - ACTIONS(1520), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1522), 21, + ACTIONS(1663), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1332), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1600), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203639,38 +204550,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [73477] = 11, + [73042] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, + ACTIONS(1645), 1, sym__space, - ACTIONS(3347), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4968), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4986), 1, + ACTIONS(4970), 1, aux_sym__immediate_decimal_token2, - STATE(2372), 1, + STATE(2374), 1, sym_comment, - STATE(3211), 1, + STATE(2847), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(4972), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3210), 2, + STATE(3088), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1603), 13, + ACTIONS(1647), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203684,30 +204592,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [73525] = 11, + [73093] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1677), 1, - sym__space, - ACTIONS(3347), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(3366), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4974), 1, + anon_sym_DOT, + ACTIONS(4976), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4986), 1, + ACTIONS(4978), 1, aux_sym__immediate_decimal_token2, - STATE(2373), 1, + STATE(2375), 1, sym_comment, - STATE(3219), 1, + STATE(2574), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(1620), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3218), 2, + STATE(2751), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1679), 13, + ACTIONS(1622), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203719,32 +204632,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, - [73573] = 11, + [73146] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1600), 1, sym__space, - ACTIONS(3347), 1, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4940), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4986), 1, + ACTIONS(4942), 1, aux_sym__immediate_decimal_token2, - STATE(2374), 1, + ACTIONS(4982), 1, + anon_sym_DOT, + STATE(2376), 1, sym_comment, - STATE(3221), 1, + STATE(2717), 1, sym__immediate_decimal, ACTIONS(4944), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3220), 2, + STATE(2716), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1661), 13, + ACTIONS(1604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203758,30 +204671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [73621] = 11, - ACTIONS(103), 1, + [73197] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - sym__space, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, ACTIONS(4984), 1, aux_sym__immediate_decimal_token1, ACTIONS(4986), 1, - aux_sym__immediate_decimal_token2, - STATE(2375), 1, + aux_sym__immediate_decimal_token5, + STATE(2377), 1, sym_comment, - STATE(3223), 1, - sym__immediate_decimal, - ACTIONS(4944), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3222), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 13, + 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, @@ -203793,62 +204696,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, - [73669] = 12, - 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, + [73236] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(3141), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - ACTIONS(3689), 1, + ACTIONS(3830), 1, anon_sym_DOLLAR, - ACTIONS(4988), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4990), 1, - aux_sym__immediate_decimal_token2, - STATE(2376), 1, - sym_comment, - STATE(2939), 1, + STATE(1315), 1, sym__immediate_decimal, - ACTIONS(1681), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4992), 2, + STATE(2378), 1, + sym_comment, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3322), 2, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1363), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 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, - [73719] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1454), 1, - anon_sym_DOT_DOT2, - ACTIONS(4994), 1, - anon_sym_DOT2, - STATE(432), 1, - sym_cell_path, - STATE(715), 1, - sym_path, - STATE(2377), 1, - sym_comment, - STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1456), 18, + ACTIONS(1669), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203861,33 +204737,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73761] = 10, + [73281] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - ACTIONS(1840), 1, - sym__unquoted_pattern, - ACTIONS(4996), 1, - anon_sym_DOT_DOT2, - ACTIONS(5000), 1, - sym_filesize_unit, - ACTIONS(5002), 1, - sym_duration_unit, - STATE(2378), 1, + ACTIONS(3830), 1, + anon_sym_DOLLAR, + STATE(1349), 1, + sym__immediate_decimal, + STATE(2379), 1, sym_comment, - STATE(4972), 1, + ACTIONS(1663), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1328), 2, sym__expr_parenthesized_immediate, - ACTIONS(4998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 15, + sym_val_variable, + ACTIONS(1681), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203903,17 +204776,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73807] = 4, + [73326] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2379), 1, + ACTIONS(1657), 1, + anon_sym_LPAREN2, + ACTIONS(3830), 1, + anon_sym_DOLLAR, + STATE(1321), 1, + sym__immediate_decimal, + STATE(2380), 1, sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1530), 21, + ACTIONS(1663), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1311), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1685), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203925,25 +204809,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_COLON, 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, - [73841] = 4, - ACTIONS(3), 1, + [73371] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2380), 1, + ACTIONS(1669), 1, + sym__space, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token2, + STATE(2381), 1, sym_comment, - ACTIONS(1500), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1502), 21, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(3083), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3082), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1671), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203955,25 +204847,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_COLON, - 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, - [73875] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4964), 1, + ACTIONS(4992), 1, aux_sym__immediate_decimal_token5, - STATE(2381), 1, + STATE(2382), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 20, + ACTIONS(777), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203994,17 +204880,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73911] = 4, - ACTIONS(3), 1, + [73455] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2382), 1, + ACTIONS(4994), 1, + anon_sym_DOT, + ACTIONS(4996), 1, + aux_sym__immediate_decimal_token5, + STATE(2383), 1, sym_comment, - ACTIONS(1504), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1506), 21, - ts_builtin_sym_end, - anon_sym_EQ, + 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, @@ -204016,64 +204908,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_COLON, - 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, - [73945] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [73493] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1653), 1, sym__unquoted_pattern, - ACTIONS(3141), 1, + ACTIONS(3366), 1, anon_sym_LPAREN2, ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(4988), 1, + ACTIONS(4998), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4990), 1, + ACTIONS(5000), 1, aux_sym__immediate_decimal_token2, - STATE(2383), 1, + STATE(2384), 1, sym_comment, - STATE(2959), 1, + STATE(3005), 1, sym__immediate_decimal, - ACTIONS(1631), 2, + ACTIONS(1645), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4992), 2, + ACTIONS(5002), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3295), 2, + STATE(3345), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [73995] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5004), 1, - aux_sym__immediate_decimal_token5, - STATE(2384), 1, - sym_comment, - ACTIONS(767), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(769), 20, - ts_builtin_sym_end, + ACTIONS(1647), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204085,23 +204950,15 @@ static const uint16_t 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, - [74031] = 4, + [73543] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2385), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(749), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204123,15 +204980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [74065] = 4, + [73577] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2386), 1, sym_comment, - ACTIONS(767), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(769), 21, + ACTIONS(777), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204153,15 +205010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [74099] = 4, + [73611] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2387), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(866), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(865), 21, + ACTIONS(868), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204183,12 +205040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [74133] = 6, + [73645] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5006), 1, + ACTIONS(5004), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5008), 1, + ACTIONS(5006), 1, aux_sym__immediate_decimal_token5, STATE(2388), 1, sym_comment, @@ -204215,33 +205072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74171] = 12, - ACTIONS(103), 1, + [73683] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(4954), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4956), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5010), 1, - anon_sym_DOT, STATE(2389), 1, sym_comment, - STATE(2716), 1, - sym__immediate_decimal, - ACTIONS(1599), 2, + ACTIONS(1522), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1524), 21, ts_builtin_sym_end, - sym__space, - ACTIONS(4958), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2887), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204253,19 +205094,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, - [74221] = 6, + anon_sym_COLON, + 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, + [73717] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - ACTIONS(5014), 1, - aux_sym__immediate_decimal_token5, STATE(2390), 1, sym_comment, - ACTIONS(1792), 2, + ACTIONS(1530), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1790), 19, + anon_sym_DOT2, + ACTIONS(1532), 21, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204277,29 +205124,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74259] = 7, + anon_sym_QMARK2, + anon_sym_BANG, + [73751] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(790), 1, - sym_cell_path, - STATE(2298), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(2391), 1, sym_comment, - ACTIONS(1891), 19, - anon_sym_if, + ACTIONS(1480), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1482), 21, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204311,28 +205154,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74299] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [73785] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(799), 1, - sym_cell_path, - STATE(2298), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(2392), 1, sym_comment, - ACTIONS(1911), 19, - anon_sym_if, + ACTIONS(1516), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1518), 21, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204344,29 +205184,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74339] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5018), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, - ACTIONS(5020), 1, anon_sym_BANG, - STATE(692), 1, - sym__path_suffix, + [73819] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(2393), 1, sym_comment, - ACTIONS(1442), 2, + ACTIONS(1468), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1444), 18, + ACTIONS(1470), 21, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204384,15 +205220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74379] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [73853] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2394), 1, sym_comment, - ACTIONS(1508), 2, + ACTIONS(1472), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1510), 21, + ACTIONS(1474), 21, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -204414,23 +205252,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [74413] = 6, + [73887] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5022), 1, - anon_sym_DOT, - ACTIONS(5024), 1, - aux_sym__immediate_decimal_token5, - STATE(2395), 1, - sym_comment, - ACTIONS(749), 6, + ACTIONS(1600), 1, sym__space, + ACTIONS(3149), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token2, + STATE(2395), 1, + sym_comment, + STATE(3055), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3054), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204444,25 +205289,67 @@ 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, - [74451] = 6, + [73935] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5026), 1, + ACTIONS(1681), 1, + sym__space, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(4988), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5028), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token2, STATE(2396), 1, sym_comment, - ACTIONS(741), 6, + STATE(3085), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3084), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1683), 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, + [73983] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1685), 1, sym__space, + ACTIONS(3149), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token2, + STATE(2397), 1, + sym_comment, + STATE(3087), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3086), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1687), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204476,23 +205363,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, + [74031] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1641), 1, sym__unquoted_pattern, - [74489] = 5, + ACTIONS(3366), 1, + anon_sym_LPAREN2, + ACTIONS(3689), 1, + anon_sym_DOLLAR, + ACTIONS(4998), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5000), 1, + aux_sym__immediate_decimal_token2, + STATE(2398), 1, + sym_comment, + STATE(3013), 1, + sym__immediate_decimal, + ACTIONS(1620), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5002), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3268), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 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, + [74081] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(5008), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5010), 1, aux_sym__immediate_decimal_token5, - STATE(2397), 1, + STATE(2399), 1, sym_comment, - ACTIONS(769), 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, - ACTIONS(767), 15, + ACTIONS(747), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204508,17 +205433,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [74524] = 5, - ACTIONS(3), 1, + [74119] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5014), 1, - aux_sym__immediate_decimal_token5, - STATE(2398), 1, + ACTIONS(3366), 1, + anon_sym_LPAREN2, + ACTIONS(3689), 1, + anon_sym_DOLLAR, + ACTIONS(4976), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4978), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(2400), 1, sym_comment, - ACTIONS(1792), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1790), 19, + STATE(2750), 1, + sym__immediate_decimal, + ACTIONS(1600), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2744), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204530,55 +205471,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74559] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3710), 1, - sym_raw_string_begin, - ACTIONS(5032), 1, - sym__entry_separator, - STATE(2399), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3705), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [74594] = 5, + [74169] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5035), 1, - aux_sym__immediate_decimal_token5, - STATE(2400), 1, - sym_comment, - ACTIONS(1848), 2, + ACTIONS(1442), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1846), 19, + ACTIONS(5014), 1, + anon_sym_DOT2, + STATE(443), 1, + sym_cell_path, + STATE(703), 1, + sym_path, + STATE(2401), 1, + sym_comment, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204590,28 +205499,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74629] = 6, + [74211] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5037), 1, - anon_sym_DOT, - ACTIONS(5039), 1, - aux_sym__immediate_decimal_token5, - STATE(2401), 1, + ACTIONS(5016), 1, + anon_sym_QMARK2, + ACTIONS(5018), 1, + anon_sym_BANG, + STATE(2402), 1, sym_comment, - ACTIONS(1792), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1790), 18, - ts_builtin_sym_end, + STATE(2509), 1, + sym__path_suffix, + ACTIONS(1450), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204623,22 +205529,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74666] = 4, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [74249] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2402), 1, + ACTIONS(5020), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, + STATE(772), 1, + sym_cell_path, + STATE(2328), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2403), 1, sym_comment, - ACTIONS(767), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(769), 20, - ts_builtin_sym_end, + ACTIONS(1889), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204650,24 +205563,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, - [74699] = 4, + [74289] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2403), 1, + ACTIONS(5020), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, + STATE(783), 1, + sym_cell_path, + STATE(2328), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2404), 1, sym_comment, - ACTIONS(863), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(865), 20, - ts_builtin_sym_end, + ACTIONS(1901), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204679,39 +205596,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_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [74329] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1846), 1, + sym__unquoted_pattern, + ACTIONS(5022), 1, + anon_sym_DOT_DOT2, + ACTIONS(5026), 1, sym_filesize_unit, + ACTIONS(5028), 1, sym_duration_unit, - [74732] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(5041), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5043), 1, - aux_sym__immediate_decimal_token2, - STATE(2404), 1, + STATE(2405), 1, sym_comment, - STATE(3293), 1, - sym__immediate_decimal, - ACTIONS(1599), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4958), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3292), 2, + STATE(5070), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 11, + ACTIONS(5024), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(884), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204723,67 +205636,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, - [74779] = 13, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [74375] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3179), 1, - anon_sym_LPAREN2, - ACTIONS(3789), 1, - anon_sym_DOLLAR, - ACTIONS(5045), 1, + ACTIONS(5030), 1, anon_sym_DOT, - ACTIONS(5047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5049), 1, - aux_sym__immediate_decimal_token2, - STATE(2405), 1, + ACTIONS(5032), 1, + aux_sym__immediate_decimal_token5, + STATE(2406), 1, sym_comment, - STATE(2703), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2999), 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, - [74830] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(5053), 1, + ACTIONS(1786), 2, anon_sym_DOT_DOT2, - ACTIONS(5057), 1, - sym_filesize_unit, - ACTIONS(5059), 1, - sym_duration_unit, - ACTIONS(5061), 1, sym__unquoted_pattern, - STATE(2406), 1, - sym_comment, - STATE(5056), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5055), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(847), 13, + ACTIONS(1784), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204797,56 +205665,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [74877] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74413] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, - anon_sym_QMARK2, - ACTIONS(1675), 1, - anon_sym_BANG, - STATE(2407), 1, - sym_comment, - STATE(2553), 1, - sym__path_suffix, - ACTIONS(5065), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5063), 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, - [74916] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5067), 1, - anon_sym_DOT, - ACTIONS(5069), 1, + ACTIONS(4956), 1, aux_sym__immediate_decimal_token5, - STATE(2408), 1, + STATE(2407), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 20, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204858,22 +205694,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74953] = 7, + 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, + [74449] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, + ACTIONS(5034), 1, + anon_sym_QMARK2, + ACTIONS(5036), 1, + anon_sym_BANG, + STATE(726), 1, + sym__path_suffix, + STATE(2408), 1, + sym_comment, + ACTIONS(1448), 2, anon_sym_DOT_DOT2, - ACTIONS(4994), 1, anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(2409), 1, - sym_comment, - STATE(2419), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 18, + ACTIONS(1450), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204892,23 +205735,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74992] = 8, - ACTIONS(3), 1, + [74489] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1655), 1, + ACTIONS(884), 1, + sym__space, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(5038), 1, anon_sym_DOT_DOT2, - ACTIONS(4994), 1, - anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(969), 1, - sym_cell_path, + ACTIONS(5042), 1, + sym_filesize_unit, + ACTIONS(5044), 1, + sym_duration_unit, + ACTIONS(5046), 1, + sym__unquoted_pattern, STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2410), 1, sym_comment, - ACTIONS(1653), 17, - ts_builtin_sym_end, + STATE(5052), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(785), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204920,25 +205769,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75033] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [74536] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5071), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3255), 1, + anon_sym_LPAREN2, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + ACTIONS(5048), 1, + anon_sym_DOT, + ACTIONS(5050), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5073), 1, + ACTIONS(5052), 1, + aux_sym__immediate_decimal_token2, + STATE(2410), 1, + sym_comment, + STATE(2699), 1, + sym__immediate_decimal, + ACTIONS(1622), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5054), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2927), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 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, + [74587] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5032), 1, aux_sym__immediate_decimal_token5, STATE(2411), 1, sym_comment, - ACTIONS(1732), 2, + ACTIONS(1786), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1730), 18, - ts_builtin_sym_end, + ACTIONS(1784), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204950,26 +205831,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75070] = 7, + [74622] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5058), 1, anon_sym_GT2, - ACTIONS(5079), 1, + ACTIONS(5060), 1, sym__entry_separator, - ACTIONS(5081), 1, + ACTIONS(5062), 1, sym_raw_string_begin, - STATE(2399), 1, - aux_sym__types_body_repeat2, STATE(2412), 1, sym_comment, - ACTIONS(5075), 18, + STATE(2424), 1, + aux_sym__types_body_repeat2, + ACTIONS(5056), 18, anon_sym_true, anon_sym_false, anon_sym_null, @@ -204988,20 +205871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [75109] = 7, + [74661] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(5060), 1, sym__entry_separator, - ACTIONS(5081), 1, + ACTIONS(5062), 1, sym_raw_string_begin, - ACTIONS(5083), 1, + ACTIONS(5064), 1, anon_sym_GT2, - STATE(2399), 1, - aux_sym__types_body_repeat2, STATE(2413), 1, sym_comment, - ACTIONS(5075), 18, + STATE(2424), 1, + aux_sym__types_body_repeat2, + ACTIONS(5056), 18, anon_sym_true, anon_sym_false, anon_sym_null, @@ -205020,52 +205903,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [75148] = 7, - ACTIONS(103), 1, + [74700] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5079), 1, - sym__entry_separator, - ACTIONS(5081), 1, - sym_raw_string_begin, - ACTIONS(5085), 1, - anon_sym_GT2, - STATE(2399), 1, - aux_sym__types_body_repeat2, + ACTIONS(1691), 1, + anon_sym_DOT_DOT2, + ACTIONS(5014), 1, + anon_sym_DOT2, + STATE(703), 1, + sym_path, + STATE(948), 1, + sym_cell_path, STATE(2414), 1, sym_comment, - ACTIONS(5075), 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, - [75187] = 7, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1689), 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, + [74741] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(5060), 1, sym__entry_separator, - ACTIONS(5081), 1, + ACTIONS(5062), 1, sym_raw_string_begin, - ACTIONS(5087), 1, + ACTIONS(5066), 1, anon_sym_GT2, - STATE(2399), 1, - aux_sym__types_body_repeat2, STATE(2415), 1, sym_comment, - ACTIONS(5075), 18, + STATE(2424), 1, + aux_sym__types_body_repeat2, + ACTIONS(5056), 18, anon_sym_true, anon_sym_false, anon_sym_null, @@ -205084,21 +205968,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [75226] = 7, - ACTIONS(3), 1, + [74780] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT2, - STATE(2291), 1, - sym_cell_path, + ACTIONS(5068), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5070), 1, + aux_sym__immediate_decimal_token5, STATE(2416), 1, sym_comment, - STATE(2450), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - ACTIONS(1456), 18, - anon_sym_EQ, + 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, @@ -205110,29 +205997,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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [75265] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74817] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOT_DOT2, - ACTIONS(4994), 1, - anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(937), 1, - sym_cell_path, - STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5072), 1, + aux_sym__immediate_decimal_token5, STATE(2417), 1, sym_comment, - ACTIONS(1647), 17, - ts_builtin_sym_end, + ACTIONS(1834), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1832), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205144,61 +206021,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75306] = 11, + [74852] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3141), 1, + ACTIONS(3366), 1, anon_sym_LPAREN2, ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(5041), 1, + ACTIONS(5074), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5043), 1, + ACTIONS(5076), 1, aux_sym__immediate_decimal_token2, STATE(2418), 1, sym_comment, - STATE(3319), 1, + STATE(3263), 1, sym__immediate_decimal, - ACTIONS(1659), 2, + ACTIONS(1600), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4958), 2, + ACTIONS(4980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3318), 2, + STATE(3377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1661), 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, - [75353] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1532), 1, - anon_sym_DOT_DOT2, - ACTIONS(5091), 1, - anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(2419), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1534), 18, - ts_builtin_sym_end, + ACTIONS(1604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205210,30 +206065,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_COLON, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75390] = 6, + [74899] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5096), 1, + ACTIONS(4996), 1, aux_sym__immediate_decimal_token5, - STATE(2420), 1, + STATE(2419), 1, sym_comment, - ACTIONS(741), 7, - 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), 13, + ACTIONS(739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205245,53 +206091,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, - [75427] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(5041), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5043), 1, - aux_sym__immediate_decimal_token2, - STATE(2421), 1, - sym_comment, - STATE(3321), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4958), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3320), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 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, - [75474] = 4, + [74934] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2422), 1, + ACTIONS(5078), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5080), 1, + aux_sym__immediate_decimal_token5, + STATE(2420), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1732), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 20, + ACTIONS(1730), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205310,114 +206126,55 @@ 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, - [75507] = 5, + [74971] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - aux_sym__immediate_decimal_token5, - STATE(2423), 1, + ACTIONS(5060), 1, + sym__entry_separator, + ACTIONS(5062), 1, + sym_raw_string_begin, + ACTIONS(5082), 1, + anon_sym_GT2, + STATE(2421), 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, - [75542] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(5041), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5043), 1, - aux_sym__immediate_decimal_token2, STATE(2424), 1, - sym_comment, - STATE(3317), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4958), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3316), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1679), 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, - [75589] = 7, + aux_sym__types_body_repeat2, + ACTIONS(5056), 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, + [75010] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(1677), 1, + anon_sym_DOT_DOT2, + ACTIONS(5014), 1, anon_sym_DOT2, - STATE(431), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(458), 1, + STATE(703), 1, sym_path, - STATE(2425), 1, - sym_comment, - ACTIONS(5100), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5098), 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, - [75627] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5102), 1, - anon_sym_QMARK2, - STATE(2426), 1, + STATE(959), 1, + sym_cell_path, + STATE(2422), 1, sym_comment, - ACTIONS(1462), 20, - anon_sym_EQ, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1675), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205429,32 +206186,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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT2, - [75659] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_DOT2, - STATE(2427), 1, - sym_comment, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2642), 1, - sym_path, - STATE(2666), 1, - sym_cell_path, - ACTIONS(1647), 3, - sym__space, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1649), 14, + [75051] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2423), 1, + sym_comment, + ACTIONS(866), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(868), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205466,27 +206212,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_DOT_DOT2, - [75699] = 6, + 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, + [75084] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5079), 1, - sym__entry_separator, - ACTIONS(5081), 1, + ACTIONS(3745), 1, sym_raw_string_begin, - STATE(2399), 1, - aux_sym__types_body_repeat2, - STATE(2428), 1, + ACTIONS(5084), 1, + sym__entry_separator, + STATE(2424), 2, sym_comment, - ACTIONS(5075), 18, + aux_sym__types_body_repeat2, + ACTIONS(3740), 19, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -205499,49 +206250,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [75735] = 4, + [75119] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5102), 1, + ACTIONS(1665), 1, + anon_sym_QMARK2, + ACTIONS(1667), 1, anon_sym_BANG, - STATE(2429), 1, - sym_comment, - ACTIONS(1462), 20, - 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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT2, - [75767] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1877), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, STATE(2425), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2430), 1, sym_comment, - ACTIONS(5108), 2, + STATE(2565), 1, + sym__path_suffix, + ACTIONS(5089), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5106), 16, + ACTIONS(5087), 17, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -205558,30 +206281,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [75805] = 11, + anon_sym_DOT2, + [75158] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(5110), 1, - anon_sym_DOT_DOT2, - ACTIONS(5114), 1, - sym_filesize_unit, - ACTIONS(5116), 1, - sym_duration_unit, - ACTIONS(5118), 1, - sym__unquoted_pattern, - STATE(2431), 1, + ACTIONS(5091), 1, + anon_sym_DOT, + ACTIONS(5093), 1, + aux_sym__immediate_decimal_token5, + STATE(2426), 1, sym_comment, - STATE(5065), 1, - sym__expr_parenthesized_immediate, - ACTIONS(968), 2, + ACTIONS(741), 7, ts_builtin_sym_end, sym__space, - ACTIONS(5112), 2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(847), 11, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205593,22 +206311,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, - [75851] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75195] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5069), 1, - aux_sym__immediate_decimal_token5, - STATE(2432), 1, + ACTIONS(3366), 1, + anon_sym_LPAREN2, + ACTIONS(3689), 1, + anon_sym_DOLLAR, + ACTIONS(5074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5076), 1, + aux_sym__immediate_decimal_token2, + STATE(2427), 1, sym_comment, - ACTIONS(749), 7, + STATE(3415), 1, + sym__immediate_decimal, + ACTIONS(1669), 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), 13, + ACTIONS(4980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3337), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1671), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205620,23 +206349,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, - [75885] = 7, + [75242] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(5120), 1, - anon_sym_DOT_DOT2, - STATE(2433), 1, + ACTIONS(5095), 1, + anon_sym_DOT2, + STATE(2302), 1, + sym_cell_path, + STATE(2428), 1, sym_comment, - ACTIONS(5122), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 16, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2511), 1, + sym_path, + ACTIONS(1444), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205648,24 +206375,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [75923] = 4, + [75281] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2434), 1, + ACTIONS(5097), 1, + aux_sym__immediate_decimal_token5, + STATE(2429), 1, sym_comment, - ACTIONS(865), 6, + ACTIONS(777), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(863), 15, + ACTIONS(775), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205681,93 +206411,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75955] = 12, - ACTIONS(3), 1, + [75316] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3179), 1, + ACTIONS(3366), 1, anon_sym_LPAREN2, - ACTIONS(3789), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(5124), 1, + ACTIONS(5074), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5126), 1, + ACTIONS(5076), 1, aux_sym__immediate_decimal_token2, - STATE(2435), 1, + STATE(2430), 1, sym_comment, - STATE(3113), 1, + STATE(3342), 1, sym__immediate_decimal, - ACTIONS(1633), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5128), 2, + ACTIONS(1681), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3581), 2, + STATE(3341), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 9, - anon_sym_EQ, + ACTIONS(1683), 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, - [76003] = 12, - 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, + [75363] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3179), 1, + ACTIONS(3366), 1, anon_sym_LPAREN2, - ACTIONS(3789), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(5124), 1, + ACTIONS(5074), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5126), 1, + ACTIONS(5076), 1, aux_sym__immediate_decimal_token2, - STATE(2436), 1, + STATE(2431), 1, sym_comment, - STATE(3115), 1, + STATE(3344), 1, sym__immediate_decimal, - ACTIONS(1683), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5128), 2, + ACTIONS(1685), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3397), 2, + STATE(3343), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1681), 9, - anon_sym_EQ, + ACTIONS(1687), 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, - [76051] = 6, - ACTIONS(103), 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, + [75410] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5130), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5132), 1, - aux_sym__immediate_decimal_token5, - STATE(2437), 1, + ACTIONS(1526), 1, + anon_sym_DOT_DOT2, + ACTIONS(5014), 1, + anon_sym_DOT2, + STATE(703), 1, + sym_path, + STATE(2432), 1, sym_comment, - ACTIONS(1730), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 15, + STATE(2436), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1528), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205779,21 +206509,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, - [76087] = 5, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75449] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1970), 1, - anon_sym_BANG, - STATE(2438), 1, + STATE(2433), 1, sym_comment, - ACTIONS(1460), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1462), 18, + sym__unquoted_pattern, + ACTIONS(749), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205806,30 +206536,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76121] = 8, - ACTIONS(103), 1, + sym_filesize_unit, + sym_duration_unit, + [75482] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_DOT2, - STATE(2439), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, + aux_sym__immediate_decimal_token5, + STATE(2434), 1, sym_comment, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2642), 1, - sym_path, - STATE(2702), 1, - sym_cell_path, - ACTIONS(1653), 3, - sym__space, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1784), 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, - ACTIONS(1655), 14, + [75519] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2435), 1, + sym_comment, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205841,23 +206596,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [76161] = 7, + 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, + [75552] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(1536), 1, + anon_sym_DOT_DOT2, + ACTIONS(5103), 1, anon_sym_DOT2, - STATE(458), 1, + STATE(703), 1, sym_path, - STATE(914), 1, - sym_cell_path, - STATE(2298), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2440), 1, + STATE(2436), 2, sym_comment, - ACTIONS(1883), 17, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205869,20 +206629,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_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76199] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75589] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5093), 1, aux_sym__immediate_decimal_token5, - STATE(2441), 1, + STATE(2437), 1, sym_comment, - ACTIONS(769), 7, + ACTIONS(741), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -205890,7 +206650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(767), 13, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205904,20 +206664,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76233] = 7, + [75623] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(5106), 1, + anon_sym_BANG, + STATE(2438), 1, + sym_comment, + ACTIONS(1464), 20, + 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_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [75655] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5020), 1, anon_sym_DOT2, - STATE(458), 1, + STATE(470), 1, sym_path, - STATE(967), 1, + STATE(974), 1, sym_cell_path, - STATE(2298), 1, + STATE(2328), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2442), 1, + STATE(2439), 1, sym_comment, - ACTIONS(1887), 17, + ACTIONS(1885), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205935,19 +206723,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76271] = 4, + [75693] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2443), 1, + ACTIONS(5108), 1, + anon_sym_DOT2, + STATE(2440), 1, sym_comment, - ACTIONS(741), 6, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2592), 1, + sym_path, + STATE(2660), 1, + sym_cell_path, + ACTIONS(1444), 3, 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(1442), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205962,21 +206755,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76303] = 7, + [75733] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(1870), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, + STATE(2441), 1, + sym_comment, + STATE(2445), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5112), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5110), 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, + [75771] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5020), 1, anon_sym_DOT2, - STATE(458), 1, + STATE(470), 1, sym_path, - STATE(918), 1, + STATE(978), 1, sym_cell_path, - STATE(2298), 1, + STATE(2328), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2444), 1, + STATE(2442), 1, sym_comment, - ACTIONS(1907), 17, + ACTIONS(1893), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205994,15 +206817,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76341] = 6, + [75809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5136), 1, + STATE(2443), 1, + sym_comment, + ACTIONS(1834), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1832), 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, + [75841] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3255), 1, + anon_sym_LPAREN2, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + ACTIONS(5050), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5052), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5114), 1, anon_sym_DOT, - ACTIONS(5138), 1, - aux_sym__immediate_decimal_token5, + STATE(2444), 1, + sym_comment, + STATE(3022), 1, + sym__immediate_decimal, + ACTIONS(1604), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5054), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3020), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1600), 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, + [75889] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1870), 1, + anon_sym_DOT2, + STATE(437), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(470), 1, + sym_path, STATE(2445), 1, sym_comment, + ACTIONS(5118), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5116), 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, + [75927] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2446), 1, + sym_comment, + ACTIONS(3771), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3769), 19, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [75959] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5120), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5122), 1, + aux_sym__immediate_decimal_token5, + STATE(2447), 1, + sym_comment, ACTIONS(747), 6, sym_identifier, anon_sym_DASH2, @@ -206024,21 +206970,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76377] = 6, + [75995] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5140), 1, - anon_sym_DOT, - ACTIONS(5142), 1, - aux_sym__immediate_decimal_token5, - STATE(2446), 1, + ACTIONS(5108), 1, + anon_sym_DOT2, + STATE(2448), 1, sym_comment, - ACTIONS(1790), 4, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2592), 1, + sym_path, + STATE(2681), 1, + sym_cell_path, + ACTIONS(1689), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1792), 15, + ACTIONS(1691), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206053,49 +207002,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76413] = 6, - ACTIONS(3), 1, + [76035] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5144), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5146), 1, - aux_sym__immediate_decimal_token5, - STATE(2447), 1, - sym_comment, - ACTIONS(739), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(5124), 1, anon_sym_DOT_DOT2, + ACTIONS(5128), 1, sym_filesize_unit, + ACTIONS(5130), 1, sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(741), 13, - anon_sym_EQ, + ACTIONS(5132), 1, + sym__unquoted_pattern, + STATE(2449), 1, + sym_comment, + STATE(4962), 1, + sym__expr_parenthesized_immediate, + ACTIONS(884), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5126), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(785), 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [76081] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5134), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5136), 1, + aux_sym__immediate_decimal_token5, + STATE(2450), 1, + sym_comment, + ACTIONS(1730), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76449] = 5, - ACTIONS(3), 1, + ACTIONS(1732), 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, + [76117] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5039), 1, + ACTIONS(5138), 1, aux_sym__immediate_decimal_token5, - STATE(2448), 1, + STATE(2451), 1, sym_comment, - ACTIONS(1792), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1790), 18, + ACTIONS(777), 7, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(775), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206107,21 +207094,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_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76151] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3255), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76483] = 4, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + ACTIONS(5140), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5142), 1, + aux_sym__immediate_decimal_token2, + STATE(2452), 1, + sym_comment, + STATE(3069), 1, + sym__immediate_decimal, + ACTIONS(1622), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5144), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3536), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 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, + [76199] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2449), 1, + ACTIONS(5020), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, + STATE(954), 1, + sym_cell_path, + STATE(2328), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2453), 1, sym_comment, - ACTIONS(1732), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 19, + ACTIONS(1872), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206134,26 +207158,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [76237] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2454), 1, + sym_comment, + ACTIONS(868), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76515] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT2, - STATE(2450), 1, - sym_comment, - STATE(2451), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - ACTIONS(1526), 18, - anon_sym_EQ, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(866), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206165,24 +207187,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, - [76551] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5148), 1, - anon_sym_DOT2, - STATE(2500), 1, - sym_path, - STATE(2451), 2, + STATE(2455), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1534), 18, - anon_sym_EQ, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206194,25 +207211,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, - [76585] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76301] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5151), 1, + ACTIONS(5146), 1, sym__newline, - STATE(2452), 2, + STATE(2456), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3758), 3, + ACTIONS(3760), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(3760), 16, + ACTIONS(3762), 16, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -206229,15 +207248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [76619] = 4, + [76335] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2453), 1, + STATE(2457), 1, sym_comment, - ACTIONS(1848), 2, + ACTIONS(1921), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 19, + ACTIONS(1919), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206257,15 +207276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76651] = 4, - ACTIONS(3), 1, + [76367] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2454), 1, + STATE(2458), 1, sym_comment, - ACTIONS(1897), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1895), 19, + 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, @@ -206279,24 +207302,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76683] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76399] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5154), 1, - aux_sym__immediate_decimal_token5, - STATE(2455), 1, + ACTIONS(5095), 1, + anon_sym_DOT2, + STATE(2459), 1, sym_comment, - ACTIONS(1848), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1846), 18, - ts_builtin_sym_end, + STATE(2460), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2511), 1, + sym_path, + ACTIONS(1528), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206308,28 +207328,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76717] = 7, - ACTIONS(103), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [76435] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5156), 1, - anon_sym_QMARK2, - ACTIONS(5158), 1, - anon_sym_BANG, - STATE(2456), 1, + ACTIONS(5149), 1, + anon_sym_DOT2, + STATE(2511), 1, + sym_path, + STATE(2460), 2, sym_comment, - STATE(2574), 1, - sym__path_suffix, - ACTIONS(1444), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1442), 15, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206341,28 +207357,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [76755] = 8, - ACTIONS(103), 1, + [76469] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_DOT2, - STATE(2457), 1, + ACTIONS(5106), 1, + anon_sym_QMARK2, + STATE(2461), 1, sym_comment, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2642), 1, - sym_path, - STATE(2651), 1, - sym_cell_path, - ACTIONS(1456), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1454), 14, + ACTIONS(1464), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206374,24 +207383,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_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [76795] = 7, - ACTIONS(3), 1, + anon_sym_DOT2, + [76501] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(5160), 1, - anon_sym_DOT_DOT2, - STATE(2458), 1, + STATE(2462), 1, sym_comment, - ACTIONS(5162), 2, + ACTIONS(777), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1982), 16, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(775), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206405,22 +207417,26 @@ 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, - [76833] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76533] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2459), 1, + ACTIONS(5108), 1, + anon_sym_DOT2, + STATE(2463), 1, sym_comment, - ACTIONS(769), 6, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2592), 1, + sym_path, + STATE(2685), 1, + sym_cell_path, + ACTIONS(1675), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(767), 15, + ACTIONS(1677), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206435,62 +207451,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76865] = 4, - ACTIONS(103), 1, + [76573] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2460), 1, + ACTIONS(5101), 1, + aux_sym__immediate_decimal_token5, + STATE(2464), 1, sym_comment, - ACTIONS(3756), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3754), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [76897] = 12, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1784), 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, + [76607] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_LPAREN2, - ACTIONS(3789), 1, - anon_sym_DOLLAR, - ACTIONS(5047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5049), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5164), 1, + ACTIONS(5152), 1, anon_sym_DOT, - STATE(2461), 1, + ACTIONS(5154), 1, + aux_sym__immediate_decimal_token5, + STATE(2465), 1, sym_comment, - STATE(2998), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, + ACTIONS(739), 6, sym_identifier, anon_sym_DASH2, - ACTIONS(5051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2992), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 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, @@ -206498,22 +207504,27 @@ 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, - [76945] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76643] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(927), 1, - sym_cell_path, - STATE(2298), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2462), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + ACTIONS(5156), 1, + anon_sym_DOT_DOT2, + STATE(2466), 1, sym_comment, - ACTIONS(1871), 17, + ACTIONS(5158), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1953), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206526,20 +207537,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76983] = 4, + [76681] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2463), 1, + ACTIONS(2086), 1, + anon_sym_BANG, + STATE(2467), 1, sym_comment, - ACTIONS(1732), 2, + ACTIONS(1462), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 18, + anon_sym_DOT2, + ACTIONS(1464), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206552,26 +207564,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77014] = 4, - ACTIONS(103), 1, + [76715] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2464), 1, - sym_comment, - ACTIONS(769), 7, - ts_builtin_sym_end, - sym__space, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2094), 1, anon_sym_LPAREN2, + ACTIONS(5160), 1, + anon_sym_DOT_DOT2, + STATE(2468), 1, + sym_comment, + ACTIONS(5162), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(767), 13, + ACTIONS(2090), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206583,27 +207596,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_DOT_DOT2, - sym__unquoted_pattern, - [77045] = 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76753] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4179), 1, - anon_sym_DOT_DOT2, - ACTIONS(5057), 1, - sym_filesize_unit, - ACTIONS(5059), 1, - sym_duration_unit, - ACTIONS(5061), 1, - sym__unquoted_pattern, - STATE(2465), 1, + ACTIONS(5060), 1, + sym__entry_separator, + ACTIONS(5062), 1, + sym_raw_string_begin, + STATE(2424), 1, + aux_sym__types_body_repeat2, + STATE(2469), 1, sym_comment, - ACTIONS(4181), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(847), 13, + ACTIONS(5056), 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, + [76789] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5020), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, + STATE(953), 1, + sym_cell_path, + STATE(2328), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2470), 1, + sym_comment, + ACTIONS(1866), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206616,20 +207657,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - [77086] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76827] = 7, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5164), 1, + anon_sym_QMARK2, ACTIONS(5166), 1, - aux_sym__immediate_decimal_token5, - STATE(2466), 1, + anon_sym_BANG, + STATE(2471), 1, sym_comment, - ACTIONS(1846), 4, + STATE(2593), 1, + sym__path_suffix, + ACTIONS(1450), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 15, + ACTIONS(1448), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206644,93 +207692,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77119] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2467), 1, - sym_comment, - ACTIONS(2772), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(2774), 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, - [77150] = 11, + anon_sym_DOT2, + [76865] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_LPAREN2, - ACTIONS(3789), 1, - anon_sym_DOLLAR, ACTIONS(5168), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, - aux_sym__immediate_decimal_token2, - STATE(2468), 1, + aux_sym__immediate_decimal_token5, + STATE(2472), 1, sym_comment, - STATE(3499), 1, - sym__immediate_decimal, - ACTIONS(1679), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3498), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 9, - anon_sym_EQ, + ACTIONS(1834), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1832), 18, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [77195] = 11, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [76899] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3179), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3255), 1, anon_sym_LPAREN2, - ACTIONS(3789), 1, + ACTIONS(3842), 1, anon_sym_DOLLAR, - ACTIONS(5168), 1, + ACTIONS(5140), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(5142), 1, aux_sym__immediate_decimal_token2, - STATE(2469), 1, + STATE(2473), 1, sym_comment, - STATE(3520), 1, + STATE(3072), 1, sym__immediate_decimal, - ACTIONS(1661), 2, + ACTIONS(1647), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5051), 2, + ACTIONS(5144), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3508), 2, + STATE(3437), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1659), 9, + ACTIONS(1645), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -206740,64 +207758,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [77240] = 11, - ACTIONS(3), 1, + [76947] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_LPAREN2, - ACTIONS(3789), 1, - anon_sym_DOLLAR, - ACTIONS(5168), 1, - aux_sym__immediate_decimal_token1, ACTIONS(5170), 1, - aux_sym__immediate_decimal_token2, - STATE(2470), 1, + anon_sym_DOT, + ACTIONS(5172), 1, + aux_sym__immediate_decimal_token5, + STATE(2474), 1, sym_comment, - STATE(3535), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3533), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 9, - anon_sym_EQ, + ACTIONS(1784), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [77285] = 11, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76983] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(5176), 1, anon_sym_DOT_DOT2, - ACTIONS(5178), 1, - sym_filesize_unit, ACTIONS(5180), 1, - sym_duration_unit, + sym_filesize_unit, ACTIONS(5182), 1, + sym_duration_unit, + ACTIONS(5184), 1, sym__unquoted_pattern_in_record, - STATE(2471), 1, + STATE(2475), 1, sym_comment, - STATE(5078), 1, + STATE(5042), 1, sym__expr_parenthesized_immediate, - ACTIONS(847), 2, + ACTIONS(785), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5176), 2, + ACTIONS(5178), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 10, + ACTIONS(884), 10, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -206808,49 +207822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [77330] = 4, + [77028] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2472), 1, + STATE(2476), 1, sym_comment, - ACTIONS(865), 7, - ts_builtin_sym_end, + ACTIONS(1524), 3, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 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, - [77361] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(5184), 1, - anon_sym_DOT_DOT2, - STATE(2473), 1, - sym_comment, - ACTIONS(5186), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 15, - ts_builtin_sym_end, + ACTIONS(1522), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206862,55 +207843,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77398] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(5188), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(2474), 1, - sym_comment, - ACTIONS(5190), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1982), 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, - [77435] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77059] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5192), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5194), 1, - aux_sym__immediate_decimal_token5, - STATE(2475), 1, + STATE(2477), 1, sym_comment, - ACTIONS(1730), 5, + ACTIONS(868), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206924,21 +207876,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77470] = 5, + [77090] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5138), 1, + ACTIONS(5186), 1, aux_sym__immediate_decimal_token5, - STATE(2476), 1, + STATE(2478), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(775), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(749), 13, + ACTIONS(777), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -206952,16 +207904,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77503] = 4, + [77123] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2477), 1, + STATE(2479), 1, sym_comment, - ACTIONS(1510), 3, + ACTIONS(749), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1508), 17, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206973,28 +207929,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, - [77534] = 6, + sym__unquoted_pattern, + [77154] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - ACTIONS(5198), 1, - aux_sym__immediate_decimal_token5, - STATE(2478), 1, - sym_comment, - ACTIONS(1790), 5, - ts_builtin_sym_end, + ACTIONS(884), 1, sym__space, - anon_sym_LPAREN2, + ACTIONS(4153), 1, + anon_sym_DOT_DOT2, + ACTIONS(5042), 1, + sym_filesize_unit, + ACTIONS(5044), 1, + sym_duration_unit, + ACTIONS(5046), 1, + sym__unquoted_pattern, + STATE(2480), 1, + sym_comment, + ACTIONS(4155), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1792), 13, + ACTIONS(785), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207006,27 +207961,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77569] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [77195] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5200), 1, + ACTIONS(5188), 1, anon_sym_DOT2, - STATE(2479), 1, + STATE(2592), 1, + sym_path, + STATE(2481), 2, sym_comment, - STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2676), 1, - sym_path, - STATE(2903), 1, - sym_cell_path, - ACTIONS(1647), 4, - ts_builtin_sym_end, + ACTIONS(1538), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1649), 12, + ACTIONS(1536), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207038,85 +207989,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, - [77608] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_LPAREN2, - ACTIONS(3789), 1, - anon_sym_DOLLAR, - ACTIONS(5168), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, - aux_sym__immediate_decimal_token2, - STATE(2480), 1, - sym_comment, - STATE(3580), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3579), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 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, - [77653] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5202), 1, - aux_sym__immediate_decimal_token5, - STATE(2481), 1, - sym_comment, - ACTIONS(767), 6, - sym_identifier, - anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(769), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - 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, - [77686] = 7, + [77230] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_DOT2, STATE(2482), 1, sym_comment, - STATE(2483), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2642), 1, - sym_path, - ACTIONS(1526), 3, + ACTIONS(1518), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 14, + ACTIONS(1516), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207131,21 +208016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [77723] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77261] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5204), 1, - anon_sym_DOT2, - STATE(2642), 1, - sym_path, - STATE(2483), 2, + STATE(2483), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1534), 3, + ACTIONS(1470), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1532), 14, + ACTIONS(1468), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207160,13 +208043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [77758] = 3, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77292] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(2484), 1, sym_comment, - ACTIONS(1553), 20, - anon_sym_EQ, + ACTIONS(1474), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1472), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207178,52 +208067,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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [77787] = 3, + [77323] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2485), 1, sym_comment, - ACTIONS(1470), 20, - 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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT2, - [77816] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1732), 1, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(5207), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5209), 1, - aux_sym__immediate_decimal_token5, - STATE(2486), 1, - sym_comment, - ACTIONS(1730), 17, + ACTIONS(1730), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207235,22 +208094,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [77851] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77354] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2487), 1, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5193), 1, + aux_sym__immediate_decimal_token5, + STATE(2486), 1, sym_comment, - ACTIONS(1522), 3, + ACTIONS(1784), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 17, + ACTIONS(1786), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207262,26 +208127,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, - [77882] = 4, + sym__unquoted_pattern, + [77389] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2488), 1, + ACTIONS(5195), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5197), 1, + aux_sym__immediate_decimal_token5, + STATE(2487), 1, sym_comment, - ACTIONS(741), 7, + ACTIONS(1730), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, + ACTIONS(1732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207295,19 +208158,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77913] = 5, + [77424] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5142), 1, - aux_sym__immediate_decimal_token5, - STATE(2489), 1, + ACTIONS(5199), 1, + anon_sym_DOT2, + STATE(2488), 1, sym_comment, - ACTIONS(1790), 4, + STATE(2544), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2724), 1, + sym_path, + STATE(2739), 1, + sym_cell_path, + ACTIONS(1675), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1792), 15, + ACTIONS(1677), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207319,19 +208188,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77946] = 4, + [77463] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2490), 1, + ACTIONS(5154), 1, + aux_sym__immediate_decimal_token5, + STATE(2489), 1, sym_comment, - ACTIONS(1848), 2, + 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, + [77496] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(1846), 18, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + ACTIONS(5201), 1, + anon_sym_DOT_DOT2, + STATE(2490), 1, + sym_comment, + ACTIONS(5203), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2090), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207347,19 +208247,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, - [77977] = 4, + [77533] = 5, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5172), 1, + aux_sym__immediate_decimal_token5, STATE(2491), 1, sym_comment, - ACTIONS(1530), 3, + ACTIONS(1784), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1528), 17, + ACTIONS(1786), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207374,19 +208274,17 @@ 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, - [78008] = 4, - ACTIONS(103), 1, + sym__unquoted_pattern, + [77566] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(2492), 1, sym_comment, - ACTIONS(1502), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1500), 17, + ACTIONS(1834), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1832), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207398,21 +208296,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, - [78039] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77597] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2493), 1, sym_comment, - ACTIONS(1897), 2, + ACTIONS(1921), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1895), 18, + ACTIONS(1919), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207431,16 +208329,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78070] = 4, + [77628] = 7, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5205), 1, + anon_sym_QMARK2, + ACTIONS(5207), 1, + anon_sym_BANG, STATE(2494), 1, sym_comment, - ACTIONS(1506), 3, + STATE(2657), 1, + sym__path_suffix, + ACTIONS(1450), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1504), 17, + ACTIONS(1448), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207452,29 +208357,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, - [78101] = 7, + [77665] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5211), 1, - anon_sym_QMARK2, - ACTIONS(5213), 1, - anon_sym_BANG, + ACTIONS(5209), 1, + aux_sym__immediate_decimal_token5, STATE(2495), 1, sym_comment, - STATE(2680), 1, - sym__path_suffix, - ACTIONS(1444), 4, - ts_builtin_sym_end, + ACTIONS(1832), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1442), 13, + ACTIONS(1834), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207486,18 +208383,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78138] = 4, + sym__unquoted_pattern, + [77698] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2496), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1482), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1512), 17, + ACTIONS(1480), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207515,54 +208414,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [78169] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1792), 1, - sym__unquoted_pattern, - ACTIONS(5215), 1, - anon_sym_DOT, - ACTIONS(5217), 1, - aux_sym__immediate_decimal_token5, - STATE(2497), 1, - sym_comment, - ACTIONS(1790), 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, - [78204] = 8, + [77729] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5200), 1, + ACTIONS(5199), 1, anon_sym_DOT2, - STATE(2498), 1, + STATE(2497), 1, sym_comment, - STATE(2554), 1, + STATE(2544), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2676), 1, + STATE(2724), 1, sym_path, - STATE(2781), 1, + STATE(2908), 1, sym_cell_path, - ACTIONS(1653), 4, + ACTIONS(1444), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1655), 12, + ACTIONS(1442), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207575,25 +208445,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, - [78243] = 8, - ACTIONS(103), 1, + [77768] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, + STATE(2498), 1, + sym_comment, + ACTIONS(2754), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2756), 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, + [77799] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1732), 1, + sym__unquoted_pattern, + ACTIONS(5211), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5213), 1, + aux_sym__immediate_decimal_token5, STATE(2499), 1, sym_comment, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2676), 1, - sym_path, - STATE(2792), 1, - sym_cell_path, - ACTIONS(1456), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1454), 12, + ACTIONS(1730), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207605,36 +208495,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, - [78282] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [77834] = 11, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3255), 1, + anon_sym_LPAREN2, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + ACTIONS(5215), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token2, STATE(2500), 1, sym_comment, - ACTIONS(1545), 20, + STATE(3424), 1, + sym__immediate_decimal, + ACTIONS(1671), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5054), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3423), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 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_LBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_GT2, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT2, - [78311] = 5, + [77879] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, ACTIONS(5219), 1, anon_sym_DOT_DOT2, STATE(2501), 1, @@ -207642,7 +208549,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5221), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2112), 16, + ACTIONS(1953), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207654,48 +208562,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, - [78343] = 4, - ACTIONS(103), 1, + [77916] = 11, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3255), 1, + anon_sym_LPAREN2, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + ACTIONS(5215), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token2, STATE(2502), 1, sym_comment, - ACTIONS(1730), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 15, + STATE(3432), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5054), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3427), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 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, - sym__unquoted_pattern, - [78373] = 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77961] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2503), 1, sym_comment, - ACTIONS(1846), 4, + ACTIONS(1532), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 15, + ACTIONS(1530), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207710,47 +208623,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78403] = 4, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77992] = 11, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3255), 1, + anon_sym_LPAREN2, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + ACTIONS(5215), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token2, STATE(2504), 1, sym_comment, - ACTIONS(1895), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1897), 15, + STATE(3435), 1, + sym__immediate_decimal, + ACTIONS(1687), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5054), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3434), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1685), 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, - sym__unquoted_pattern, - [78433] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [78037] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5198), 1, - aux_sym__immediate_decimal_token5, STATE(2505), 1, sym_comment, - ACTIONS(1790), 5, + ACTIONS(777), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1792), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(775), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207764,43 +208687,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [78465] = 3, + [78068] = 11, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3255), 1, + anon_sym_LPAREN2, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + ACTIONS(5215), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token2, STATE(2506), 1, sym_comment, - ACTIONS(5223), 19, + STATE(3532), 1, + sym__immediate_decimal, + ACTIONS(1604), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5054), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3531), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1600), 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_LBRACK, - anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_GT2, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78493] = 5, - ACTIONS(103), 1, + [78113] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1786), 1, + sym__unquoted_pattern, + ACTIONS(5223), 1, + anon_sym_DOT, ACTIONS(5225), 1, - anon_sym_QMARK2, + aux_sym__immediate_decimal_token5, STATE(2507), 1, sym_comment, - ACTIONS(1462), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1460), 15, + ACTIONS(1784), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207814,57 +208746,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78525] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_QMARK2, - ACTIONS(5229), 1, - anon_sym_BANG, - STATE(2508), 1, - sym_comment, - STATE(2810), 1, - sym__path_suffix, - ACTIONS(1442), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1444), 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, - [78561] = 9, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [78148] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4179), 1, - anon_sym_DOT_DOT2, - ACTIONS(5114), 1, - sym_filesize_unit, - ACTIONS(5116), 1, - sym_duration_unit, - ACTIONS(5118), 1, - sym__unquoted_pattern, - STATE(2509), 1, + ACTIONS(5108), 1, + anon_sym_DOT2, + STATE(2481), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2508), 1, sym_comment, - ACTIONS(968), 2, - ts_builtin_sym_end, + STATE(2592), 1, + sym_path, + ACTIONS(1528), 3, sym__space, - ACTIONS(4181), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(847), 11, + ACTIONS(1526), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207876,21 +208777,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, - [78601] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [78185] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(1313), 1, - sym_cell_path, - STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2510), 1, + STATE(2509), 1, sym_comment, - ACTIONS(1911), 15, - ts_builtin_sym_end, + ACTIONS(1478), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207902,59 +208798,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, - [78637] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1484), 1, - anon_sym_COMMA, - ACTIONS(5235), 1, - anon_sym_EQ, - ACTIONS(5237), 1, - sym__newline, - ACTIONS(5239), 1, anon_sym_COLON, - ACTIONS(5241), 1, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(5243), 1, - anon_sym_DASH2, - STATE(2511), 1, - sym_comment, - STATE(2648), 1, - sym_flag_capsule, - STATE(2662), 1, - aux_sym_parameter_repeat1, - STATE(3607), 1, - aux_sym_parameter_repeat2, - STATE(4491), 1, - aux_sym__repeat_newline, - STATE(3534), 2, - sym_param_type, - sym_param_value, - ACTIONS(5233), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, anon_sym_DASH_DASH, - [78687] = 5, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_DOT2, + [78214] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5245), 1, - aux_sym__immediate_decimal_token5, - STATE(2512), 1, + STATE(2510), 1, sym_comment, - ACTIONS(1846), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 13, + ACTIONS(1514), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207966,51 +208824,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78719] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(962), 1, - sym_raw_string_begin, - ACTIONS(3153), 1, - anon_sym_DQUOTE, - ACTIONS(3155), 1, - anon_sym_SQUOTE, - ACTIONS(3157), 1, - anon_sym_BQUOTE, - ACTIONS(3159), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3161), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3687), 1, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(5247), 1, - sym__unquoted_naive, - STATE(2513), 1, - sym_comment, - STATE(3334), 1, - sym__inter_single_quotes, - STATE(3335), 1, - sym__inter_double_quotes, - STATE(2547), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3261), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [78771] = 3, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [78243] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2514), 1, + STATE(2511), 1, sym_comment, - ACTIONS(5249), 19, + ACTIONS(1547), 20, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -208023,54 +208850,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_COLON, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT2, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [78799] = 8, - ACTIONS(3), 1, + anon_sym_DOT2, + [78272] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5199), 1, anon_sym_DOT2, - STATE(2515), 1, + STATE(2512), 1, sym_comment, - STATE(2586), 1, + STATE(2544), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2851), 1, + STATE(2724), 1, sym_path, - STATE(2917), 1, + STATE(2734), 1, sym_cell_path, - ACTIONS(1655), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1653), 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, - [78837] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2516), 1, - sym_comment, - ACTIONS(1514), 4, + ACTIONS(1689), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1512), 15, + ACTIONS(1691), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208083,22 +208889,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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78867] = 6, - ACTIONS(3), 1, + [78311] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, - ACTIONS(5253), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5255), 1, - aux_sym__immediate_decimal_token5, - STATE(2517), 1, + STATE(2513), 1, sym_comment, - ACTIONS(1730), 16, + ACTIONS(1532), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1530), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208110,22 +208911,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, - anon_sym_LPAREN2, - [78901] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5225), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, anon_sym_BANG, - STATE(2518), 1, + anon_sym_DOT2, + [78341] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5229), 1, + anon_sym_DOT_DOT2, + STATE(2514), 1, sym_comment, - ACTIONS(1462), 3, - sym__space, + ACTIONS(5231), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1460), 15, + ACTIONS(5227), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208139,19 +208939,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, - [78933] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78373] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2519), 1, + ACTIONS(5233), 1, + anon_sym_DOT2, + STATE(703), 1, + sym_path, + STATE(1300), 1, + sym_cell_path, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2515), 1, sym_comment, - ACTIONS(1522), 4, + ACTIONS(1893), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208163,98 +208968,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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78963] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78409] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2520), 1, + STATE(2516), 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, + ACTIONS(5235), 19, anon_sym_EQ, 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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78993] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78437] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(2521), 1, - sym_comment, - ACTIONS(767), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(769), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(859), 1, + sym_raw_string_begin, + ACTIONS(3161), 1, + anon_sym_DQUOTE, + ACTIONS(3163), 1, + anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_BQUOTE, + ACTIONS(3167), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3169), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3679), 1, + anon_sym_LPAREN, + ACTIONS(3681), 1, 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, - [79023] = 4, - ACTIONS(3), 1, + ACTIONS(5237), 1, + sym__unquoted_naive, + STATE(2517), 1, + sym_comment, + STATE(3135), 1, + sym__inter_single_quotes, + STATE(3139), 1, + sym__inter_double_quotes, + STATE(2476), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3207), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [78489] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2522), 1, + ACTIONS(5239), 1, + anon_sym_QMARK2, + STATE(2518), 1, sym_comment, - ACTIONS(863), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(865), 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, + ACTIONS(1464), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79053] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1792), 1, - sym__unquoted_pattern, - ACTIONS(5217), 1, - aux_sym__immediate_decimal_token5, - STATE(2523), 1, - sym_comment, - ACTIONS(1790), 17, + ACTIONS(1462), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208268,16 +209058,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, - anon_sym_LPAREN2, - [79085] = 3, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [78521] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2524), 1, + STATE(2519), 1, sym_comment, - ACTIONS(5257), 19, + ACTIONS(5241), 19, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -208297,16 +209085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [79113] = 5, + [78549] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1848), 1, - sym__unquoted_pattern, - ACTIONS(5259), 1, - aux_sym__immediate_decimal_token5, - STATE(2525), 1, + ACTIONS(5245), 1, + anon_sym_LT, + STATE(2520), 1, sym_comment, - ACTIONS(1846), 17, + ACTIONS(5243), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208318,25 +209105,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [79145] = 6, + [78579] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1792), 1, + ACTIONS(1786), 1, sym__unquoted_pattern, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5225), 1, aux_sym__immediate_decimal_token5, - STATE(2526), 1, + STATE(2521), 1, sym_comment, - ACTIONS(1790), 16, - ts_builtin_sym_end, + ACTIONS(1784), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208348,26 +209132,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, - [79179] = 6, + [78611] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5265), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5267), 1, - aux_sym__immediate_decimal_token5, - STATE(2527), 1, + ACTIONS(5247), 1, + anon_sym_QMARK2, + ACTIONS(5249), 1, + anon_sym_BANG, + STATE(2522), 1, sym_comment, - ACTIONS(1732), 4, - sym_identifier, + STATE(2745), 1, + sym__path_suffix, + ACTIONS(1448), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1730), 13, + anon_sym_DOT2, + ACTIONS(1450), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -208377,26 +209165,45 @@ 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, - [79213] = 8, + [78647] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1972), 1, + STATE(2523), 1, + sym_comment, + ACTIONS(1482), 4, + ts_builtin_sym_end, sym__space, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(5269), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1480), 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, - STATE(2528), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78677] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2524), 1, sym_comment, - ACTIONS(5271), 2, + ACTIONS(1730), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 13, + ACTIONS(1732), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208410,86 +209217,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79251] = 15, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78707] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1760), 1, - anon_sym_LPAREN, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - ACTIONS(1774), 1, - anon_sym_SQUOTE, - ACTIONS(1776), 1, - anon_sym_BQUOTE, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(5273), 1, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2525), 1, + sym_comment, + STATE(2604), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, + sym_path, + STATE(2948), 1, + sym_cell_path, + ACTIONS(1691), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1689), 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, - ACTIONS(5275), 1, - sym__unquoted_naive, - STATE(808), 1, - sym__inter_single_quotes, - STATE(809), 1, - sym__inter_double_quotes, - STATE(2529), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78745] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5253), 1, + aux_sym__immediate_decimal_token5, + STATE(2526), 1, sym_comment, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3294), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [79303] = 15, + ACTIONS(1832), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1834), 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, + [78777] = 4, 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(5277), 1, - anon_sym_LPAREN, - ACTIONS(5279), 1, - anon_sym_DOLLAR, - ACTIONS(5281), 1, - sym__unquoted_naive, - STATE(1277), 1, - sym__inter_single_quotes, - STATE(1311), 1, - sym__inter_double_quotes, - STATE(2530), 1, + STATE(2527), 1, sym_comment, - STATE(502), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3412), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [79355] = 3, + ACTIONS(775), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(777), 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, + [78807] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2531), 1, + STATE(2528), 1, sym_comment, - ACTIONS(5283), 19, + ACTIONS(5255), 19, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -208509,23 +209327,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [79383] = 8, + [78835] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1982), 1, + STATE(2529), 1, + sym_comment, + ACTIONS(1919), 4, sym__space, - ACTIONS(1986), 1, anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(5285), 1, - anon_sym_DOT_DOT2, - STATE(2532), 1, - sym_comment, - ACTIONS(5287), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1984), 13, + ACTIONS(1921), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208539,22 +209351,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79421] = 6, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78865] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DOT2, - STATE(2676), 1, - sym_path, - STATE(2533), 2, + ACTIONS(4153), 1, + anon_sym_DOT_DOT2, + ACTIONS(5128), 1, + sym_filesize_unit, + ACTIONS(5130), 1, + sym_duration_unit, + ACTIONS(5132), 1, + sym__unquoted_pattern, + STATE(2530), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1534), 4, + ACTIONS(884), 2, ts_builtin_sym_end, sym__space, + ACTIONS(4155), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1532), 12, + ACTIONS(785), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208566,79 +209384,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [79455] = 6, - ACTIONS(3), 1, + [78905] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5292), 1, - anon_sym_DOT, - ACTIONS(5294), 1, - aux_sym__immediate_decimal_token5, - STATE(2534), 1, - sym_comment, - ACTIONS(1792), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1790), 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(1953), 1, + sym__space, + ACTIONS(1957), 1, anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + ACTIONS(5257), 1, + anon_sym_DOT_DOT2, + STATE(2531), 1, + sym_comment, + ACTIONS(5259), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79489] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3359), 1, - anon_sym_DQUOTE, - ACTIONS(3361), 1, - anon_sym_SQUOTE, - ACTIONS(3363), 1, - anon_sym_BQUOTE, - ACTIONS(3365), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3367), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5296), 1, - sym__unquoted_naive, - STATE(2535), 1, - sym_comment, - STATE(3047), 1, - sym__inter_single_quotes, - STATE(3048), 1, - sym__inter_double_quotes, - STATE(2477), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3203), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [79541] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2536), 1, - sym_comment, - ACTIONS(5298), 19, - anon_sym_EQ, + ACTIONS(1955), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208650,20 +209412,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [79569] = 3, + [78943] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2537), 1, + ACTIONS(5229), 1, + anon_sym_DOT_DOT2, + STATE(2532), 1, sym_comment, - ACTIONS(5300), 19, - anon_sym_EQ, + ACTIONS(5231), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5227), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208675,21 +209436,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [79597] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5304), 1, + ACTIONS(5261), 1, anon_sym_LT, - STATE(2538), 1, + STATE(2533), 1, sym_comment, - ACTIONS(5302), 18, + ACTIONS(5243), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -208708,15 +209467,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [79627] = 4, - ACTIONS(3), 1, + [79005] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5306), 1, - anon_sym_LT, - STATE(2539), 1, + ACTIONS(5193), 1, + aux_sym__immediate_decimal_token5, + STATE(2534), 1, sym_comment, - ACTIONS(5302), 18, - anon_sym_EQ, + ACTIONS(1784), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208728,26 +209492,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79657] = 7, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [79037] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(1298), 1, - sym_cell_path, - STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2540), 1, + ACTIONS(1732), 1, + sym__unquoted_pattern, + ACTIONS(5263), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5265), 1, + aux_sym__immediate_decimal_token5, + STATE(2535), 1, sym_comment, - ACTIONS(1871), 15, + ACTIONS(1730), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208763,21 +209521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79693] = 7, + anon_sym_LPAREN2, + [79071] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(1291), 1, - sym_cell_path, - STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2541), 1, + ACTIONS(1834), 1, + sym__unquoted_pattern, + ACTIONS(5267), 1, + aux_sym__immediate_decimal_token5, + STATE(2536), 1, sym_comment, - ACTIONS(1883), 15, - ts_builtin_sym_end, + ACTIONS(1832), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208789,20 +209543,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79729] = 5, + anon_sym_LPAREN2, + [79103] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5310), 1, - anon_sym_DOT_DOT2, - STATE(2542), 1, + ACTIONS(1786), 1, + sym__unquoted_pattern, + ACTIONS(5269), 1, + anon_sym_DOT, + ACTIONS(5271), 1, + aux_sym__immediate_decimal_token5, + STATE(2537), 1, sym_comment, - ACTIONS(5312), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 16, + ACTIONS(1784), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208814,28 +209573,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79761] = 8, + anon_sym_LPAREN2, + [79137] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5273), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5275), 1, + aux_sym__immediate_decimal_token5, + STATE(2538), 1, + sym_comment, + ACTIONS(1732), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1730), 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, + [79171] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5251), 1, anon_sym_DOT2, - STATE(2543), 1, + STATE(2539), 1, sym_comment, - STATE(2586), 1, + STATE(2604), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2851), 1, + STATE(2741), 1, sym_path, - STATE(2987), 1, + STATE(2994), 1, sym_cell_path, - ACTIONS(1454), 2, + ACTIONS(1442), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1456), 13, + ACTIONS(1444), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -208849,17 +209635,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79799] = 4, + [79209] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2544), 1, - sym_comment, - ACTIONS(1530), 4, - ts_builtin_sym_end, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2090), 1, sym__space, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + ACTIONS(5277), 1, + anon_sym_DOT_DOT2, + STATE(2540), 1, + sym_comment, + ACTIONS(5279), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1528), 15, + ACTIONS(2092), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208871,21 +209663,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, + anon_sym_RPAREN, + anon_sym_RBRACE, + [79247] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2541), 1, + sym_comment, + ACTIONS(747), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79829] = 4, + 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, + [79277] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2542), 1, + sym_comment, + ACTIONS(5281), 19, + 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_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79305] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1496), 1, + anon_sym_COMMA, + ACTIONS(5285), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_LPAREN, + ACTIONS(5293), 1, + anon_sym_DASH2, + STATE(2543), 1, + sym_comment, + STATE(2678), 1, + sym_flag_capsule, + STATE(2679), 1, + aux_sym_parameter_repeat1, + STATE(3642), 1, + aux_sym_parameter_repeat2, + STATE(4396), 1, + aux_sym__repeat_newline, + STATE(3422), 2, + sym_param_type, + sym_param_value, + ACTIONS(5283), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [79355] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2545), 1, + ACTIONS(5199), 1, + anon_sym_DOT2, + STATE(2544), 1, sym_comment, - ACTIONS(1502), 4, + STATE(2559), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2724), 1, + sym_path, + ACTIONS(1528), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1500), 15, + ACTIONS(1526), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208898,20 +209781,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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79859] = 4, - ACTIONS(103), 1, + [79391] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2546), 1, + ACTIONS(5229), 1, + anon_sym_DOT_DOT2, + STATE(2545), 1, sym_comment, - ACTIONS(1506), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5231), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1504), 15, + ACTIONS(5227), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208923,21 +209803,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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79889] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79423] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2547), 1, + STATE(2546), 1, sym_comment, - ACTIONS(1510), 4, + ACTIONS(1518), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1508), 15, + ACTIONS(1516), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208953,21 +209834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [79919] = 7, + [79453] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5314), 1, - anon_sym_DOT2, - STATE(2291), 1, - sym_cell_path, - STATE(2500), 1, - sym_path, - STATE(2548), 1, + ACTIONS(5229), 1, + anon_sym_DOT_DOT2, + STATE(2547), 1, sym_comment, - STATE(2631), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1456), 15, - anon_sym_EQ, + ACTIONS(5231), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1714), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208979,24 +209856,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [79955] = 7, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79485] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(1279), 1, - sym_cell_path, - STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, + STATE(2548), 1, sym_comment, - ACTIONS(1887), 15, + ACTIONS(1470), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1468), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209008,24 +209883,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, - [79991] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5231), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(1353), 1, - sym_cell_path, - STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2550), 1, + [79515] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2549), 1, sym_comment, - ACTIONS(1891), 15, + ACTIONS(1474), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1472), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209037,20 +209909,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, - [80027] = 5, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79545] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5310), 1, - anon_sym_DOT_DOT2, - STATE(2551), 1, + STATE(2550), 1, sym_comment, - ACTIONS(5312), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 16, + ACTIONS(5295), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209062,22 +209931,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80059] = 5, + [79573] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(964), 1, + sym_raw_string_begin, + ACTIONS(3378), 1, + anon_sym_DQUOTE, + ACTIONS(3380), 1, + anon_sym_SQUOTE, + ACTIONS(3382), 1, + anon_sym_BQUOTE, + ACTIONS(3384), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3386), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3687), 1, + anon_sym_LPAREN, + ACTIONS(3689), 1, + anon_sym_DOLLAR, + ACTIONS(5297), 1, + sym__unquoted_naive, + STATE(2551), 1, + sym_comment, + STATE(3366), 1, + sym__inter_single_quotes, + STATE(3367), 1, + sym__inter_double_quotes, + STATE(2564), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3374), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79625] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5310), 1, - anon_sym_DOT_DOT2, STATE(2552), 1, sym_comment, - ACTIONS(5312), 2, + ACTIONS(866), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(868), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 16, + [79655] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5233), 1, + anon_sym_DOT2, + STATE(703), 1, + sym_path, + STATE(1364), 1, + sym_cell_path, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2553), 1, + sym_comment, + ACTIONS(1872), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209089,54 +210027,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, - [80091] = 4, + [79691] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2553), 1, - sym_comment, - ACTIONS(5318), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5316), 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, - [80121] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, - STATE(2533), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5299), 1, + anon_sym_DOT_DOT2, STATE(2554), 1, sym_comment, - STATE(2676), 1, - sym_path, - ACTIONS(1526), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5301), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 12, + ACTIONS(2108), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209148,18 +210052,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, - [80157] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79723] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5310), 1, + ACTIONS(5303), 1, anon_sym_DOT_DOT2, STATE(2555), 1, sym_comment, - ACTIONS(5312), 2, + ACTIONS(5305), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1699), 16, + ACTIONS(2241), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209176,21 +210084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80189] = 7, + [79755] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(1303), 1, - sym_cell_path, - STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5307), 1, + anon_sym_DOT_DOT2, STATE(2556), 1, sym_comment, - ACTIONS(1907), 15, - ts_builtin_sym_end, + ACTIONS(5309), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2249), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209202,20 +210106,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, - [80225] = 5, + [79787] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5311), 1, anon_sym_DOT_DOT2, STATE(2557), 1, sym_comment, - ACTIONS(5322), 2, + ACTIONS(5313), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 16, + ACTIONS(2257), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209232,17 +210138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80257] = 5, + [79819] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5324), 1, - anon_sym_DOT_DOT2, + ACTIONS(5233), 1, + anon_sym_DOT2, + STATE(703), 1, + sym_path, + STATE(1316), 1, + sym_cell_path, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2558), 1, sym_comment, - ACTIONS(5326), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 16, + ACTIONS(1901), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209254,22 +210164,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80289] = 5, - ACTIONS(3), 1, + [79855] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5328), 1, - anon_sym_DOT_DOT2, - STATE(2559), 1, + ACTIONS(5315), 1, + anon_sym_DOT2, + STATE(2724), 1, + sym_path, + STATE(2559), 2, sym_comment, - ACTIONS(5330), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 16, + ACTIONS(1536), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209281,85 +210194,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, - [80321] = 8, + anon_sym_DOT_DOT2, + [79889] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5233), 1, anon_sym_DOT2, - STATE(2560), 1, - sym_comment, - STATE(2586), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2851), 1, + STATE(703), 1, sym_path, - STATE(2948), 1, + STATE(1355), 1, sym_cell_path, - ACTIONS(1649), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1647), 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, - [80359] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5332), 1, - aux_sym__immediate_decimal_token5, - STATE(2561), 1, - sym_comment, - ACTIONS(1848), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1846), 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, - [80390] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(5334), 1, - anon_sym_DOT_DOT2, - STATE(2562), 1, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2560), 1, sym_comment, - ACTIONS(1982), 2, + ACTIONS(1866), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5336), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1984), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209371,13 +210221,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, - [80427] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79925] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2563), 1, + ACTIONS(5233), 1, + anon_sym_DOT2, + STATE(703), 1, + sym_path, + STATE(1301), 1, + sym_cell_path, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2561), 1, sym_comment, - ACTIONS(1510), 18, - anon_sym_EQ, + ACTIONS(1885), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209389,25 +210250,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_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [80454] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79961] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5338), 1, - anon_sym_DOT, - ACTIONS(5340), 1, - aux_sym__immediate_decimal_token5, - STATE(2564), 1, + ACTIONS(5239), 1, + anon_sym_BANG, + STATE(2562), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1464), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1792), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1462), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209421,17 +210278,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [80487] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [79993] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym__unquoted_pattern, - ACTIONS(5263), 1, - aux_sym__immediate_decimal_token5, - STATE(2565), 1, + ACTIONS(5233), 1, + anon_sym_DOT2, + STATE(703), 1, + sym_path, + STATE(1345), 1, + sym_cell_path, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2563), 1, sym_comment, - ACTIONS(1790), 16, + ACTIONS(1889), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -209447,23 +210309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80518] = 8, + [80029] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_DOT2, - ACTIONS(5344), 1, - sym__space, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2566), 1, + STATE(2564), 1, sym_comment, - STATE(2642), 1, - sym_path, - STATE(3184), 1, - sym_cell_path, - ACTIONS(5342), 13, + ACTIONS(1524), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1522), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209475,38 +210331,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, - [80555] = 3, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80059] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2567), 1, + STATE(2565), 1, sym_comment, - ACTIONS(1514), 18, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, + ACTIONS(5320), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5318), 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, - [80582] = 3, + [80089] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2568), 1, + ACTIONS(5322), 1, + anon_sym_DOT2, + STATE(2302), 1, + sym_cell_path, + STATE(2511), 1, + sym_path, + STATE(2566), 1, sym_comment, - ACTIONS(1522), 18, + STATE(2648), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 15, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -209522,44 +210390,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [80609] = 8, - ACTIONS(103), 1, + [80125] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5104), 1, + ACTIONS(5251), 1, anon_sym_DOT2, - ACTIONS(5348), 1, - sym__space, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2569), 1, + STATE(2567), 1, sym_comment, - STATE(2642), 1, + STATE(2604), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, sym_path, - STATE(3178), 1, + STATE(3028), 1, sym_cell_path, - ACTIONS(5346), 13, + ACTIONS(1677), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1675), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [80646] = 3, + 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, + [80163] = 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(5324), 1, + anon_sym_LPAREN, + ACTIONS(5326), 1, + anon_sym_DOLLAR, + ACTIONS(5328), 1, + sym__unquoted_naive, + STATE(1327), 1, + sym__inter_single_quotes, + STATE(1336), 1, + sym__inter_double_quotes, + STATE(2568), 1, + sym_comment, + STATE(505), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3451), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [80215] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2570), 1, + STATE(2569), 1, sym_comment, - ACTIONS(1530), 18, + ACTIONS(5330), 19, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -209572,19 +210475,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [80673] = 3, + [80243] = 15, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1746), 1, + anon_sym_LPAREN, + ACTIONS(1758), 1, + anon_sym_DQUOTE, + ACTIONS(1760), 1, + anon_sym_SQUOTE, + ACTIONS(1762), 1, + anon_sym_BQUOTE, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(5332), 1, + anon_sym_DOLLAR, + ACTIONS(5334), 1, + sym__unquoted_naive, + STATE(809), 1, + sym__inter_single_quotes, + STATE(810), 1, + sym__inter_double_quotes, + STATE(2570), 1, + sym_comment, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3353), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [80295] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(2571), 1, sym_comment, - ACTIONS(1502), 18, - anon_sym_EQ, + ACTIONS(1832), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1834), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209596,47 +210541,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [80700] = 3, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80325] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5336), 1, + anon_sym_DOT, + ACTIONS(5338), 1, + aux_sym__immediate_decimal_token5, STATE(2572), 1, sym_comment, - ACTIONS(1506), 18, + ACTIONS(1786), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1784), 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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [80727] = 5, - ACTIONS(3), 1, + 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, + [80359] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1848), 1, - sym__unquoted_pattern, - ACTIONS(5350), 1, - aux_sym__immediate_decimal_token5, STATE(2573), 1, sym_comment, - ACTIONS(1846), 16, - ts_builtin_sym_end, + ACTIONS(1514), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1512), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209648,20 +210594,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80758] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80388] = 8, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + ACTIONS(5340), 1, + anon_sym_DOT_DOT2, STATE(2574), 1, sym_comment, - ACTIONS(1553), 3, + ACTIONS(1953), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(5342), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1551), 15, + ACTIONS(1955), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209673,26 +210627,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, - anon_sym_DOT2, - [80787] = 7, - ACTIONS(3), 1, + [80425] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5352), 1, + ACTIONS(5108), 1, anon_sym_DOT2, + ACTIONS(5346), 1, + sym__space, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2575), 1, sym_comment, - STATE(2654), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2921), 1, + STATE(2592), 1, sym_path, - STATE(3128), 1, + STATE(3140), 1, sym_cell_path, - ACTIONS(1456), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5344), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209704,15 +210654,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_COLON, - [80822] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80462] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2362), 1, - sym__unquoted_pattern, + ACTIONS(5108), 1, + anon_sym_DOT2, + ACTIONS(5350), 1, + sym__space, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2576), 1, sym_comment, - ACTIONS(2360), 17, + STATE(2592), 1, + sym_path, + STATE(3141), 1, + sym_cell_path, + ACTIONS(5348), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209726,25 +210685,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80851] = 7, - ACTIONS(3), 1, + [80499] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5089), 1, + ACTIONS(1872), 1, + sym__space, + ACTIONS(5108), 1, anon_sym_DOT2, - STATE(2450), 1, + STATE(2508), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, STATE(2577), 1, sym_comment, - STATE(3092), 1, + STATE(2592), 1, + sym_path, + STATE(3106), 1, sym_cell_path, - ACTIONS(1887), 14, - anon_sym_EQ, + ACTIONS(1875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209758,16 +210714,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80886] = 5, - ACTIONS(3), 1, + [80536] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, + ACTIONS(1889), 1, + sym__space, + ACTIONS(5108), 1, + anon_sym_DOT2, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2578), 1, sym_comment, - ACTIONS(1699), 16, + STATE(2592), 1, + sym_path, + STATE(3112), 1, + sym_cell_path, + ACTIONS(1891), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209781,25 +210743,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80917] = 8, - ACTIONS(103), 1, + [80573] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_DOT2, - ACTIONS(5356), 1, - sym__space, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5352), 1, + anon_sym_QMARK2, + ACTIONS(5354), 1, + anon_sym_BANG, STATE(2579), 1, sym_comment, - STATE(2642), 1, - sym_path, - STATE(3185), 1, - sym_cell_path, - ACTIONS(5354), 13, + STATE(2970), 1, + sym__path_suffix, + ACTIONS(1450), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209811,24 +210768,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, - [80954] = 8, + anon_sym_COLON, + anon_sym_DOT2, + [80606] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(1893), 1, sym__space, - ACTIONS(5104), 1, + ACTIONS(5108), 1, anon_sym_DOT2, - STATE(2482), 1, + STATE(2508), 1, aux_sym__where_predicate_lhs_repeat1, STATE(2580), 1, sym_comment, - STATE(2642), 1, + STATE(2592), 1, sym_path, - STATE(3062), 1, + STATE(3117), 1, sym_cell_path, - ACTIONS(1889), 13, + ACTIONS(1895), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209842,22 +210799,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80991] = 8, + [80643] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(1901), 1, sym__space, - ACTIONS(5104), 1, + ACTIONS(5108), 1, anon_sym_DOT2, - STATE(2482), 1, + STATE(2508), 1, aux_sym__where_predicate_lhs_repeat1, STATE(2581), 1, sym_comment, - STATE(2642), 1, + STATE(2592), 1, sym_path, - STATE(3056), 1, + STATE(3120), 1, sym_cell_path, - ACTIONS(1885), 13, + ACTIONS(1903), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209871,14 +210828,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81028] = 4, - ACTIONS(3), 1, + [80680] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, + ACTIONS(1866), 1, + sym__space, + ACTIONS(5108), 1, + anon_sym_DOT2, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2582), 1, sym_comment, - ACTIONS(1730), 17, + STATE(2592), 1, + sym_path, + STATE(3153), 1, + sym_cell_path, + ACTIONS(1868), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209892,18 +210857,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [81057] = 4, - ACTIONS(3), 1, + [80717] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1848), 1, - sym__unquoted_pattern, + ACTIONS(1885), 1, + sym__space, + ACTIONS(5108), 1, + anon_sym_DOT2, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2583), 1, sym_comment, - ACTIONS(1846), 17, + STATE(2592), 1, + sym_path, + STATE(3168), 1, + sym_cell_path, + ACTIONS(1887), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209917,18 +210886,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, - [81086] = 4, - ACTIONS(3), 1, + [80754] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1897), 1, - sym__unquoted_pattern, STATE(2584), 1, sym_comment, - ACTIONS(1895), 17, + ACTIONS(1730), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209940,73 +210909,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [81115] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80783] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5294), 1, - aux_sym__immediate_decimal_token5, STATE(2585), 1, sym_comment, - ACTIONS(1792), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1790), 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(1832), 5, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81146] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2586), 1, - sym_comment, - STATE(2609), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2851), 1, - sym_path, - ACTIONS(1524), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1526), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81181] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2587), 1, - sym_comment, - ACTIONS(5358), 18, - anon_sym_EQ, + ACTIONS(1834), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210018,27 +210934,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [81208] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80812] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT2, - STATE(2450), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2588), 1, + STATE(2586), 1, sym_comment, - STATE(3082), 1, - sym_cell_path, - ACTIONS(5360), 14, - anon_sym_EQ, + ACTIONS(1919), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1921), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210050,24 +210959,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, - [81243] = 8, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80841] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1891), 1, - sym__space, - ACTIONS(5104), 1, + ACTIONS(5095), 1, anon_sym_DOT2, - STATE(2482), 1, + STATE(2459), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2589), 1, - sym_comment, - STATE(2642), 1, + STATE(2511), 1, sym_path, - STATE(3239), 1, + STATE(2587), 1, + sym_comment, + STATE(3246), 1, sym_cell_path, - ACTIONS(1893), 13, + ACTIONS(1893), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210081,18 +210989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81280] = 4, + [80876] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2590), 1, + ACTIONS(5356), 1, + anon_sym_QMARK2, + STATE(2588), 1, sym_comment, - ACTIONS(1730), 5, + ACTIONS(1464), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 13, + ACTIONS(1462), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210105,17 +211014,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [81309] = 5, + anon_sym_DOT2, + [80907] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - STATE(2591), 1, + ACTIONS(5095), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2511), 1, + sym_path, + STATE(2589), 1, sym_comment, - ACTIONS(1972), 16, + STATE(3251), 1, + sym_cell_path, + ACTIONS(1866), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210129,21 +211043,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, - [81340] = 5, + [80942] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5362), 1, - anon_sym_DOT_DOT2, - STATE(2592), 1, + ACTIONS(5095), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2511), 1, + sym_path, + STATE(2590), 1, sym_comment, - ACTIONS(5364), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 15, - ts_builtin_sym_end, + STATE(3252), 1, + sym_cell_path, + ACTIONS(1885), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210155,21 +211069,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, - [81371] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80977] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5362), 1, - anon_sym_DOT_DOT2, - STATE(2593), 1, + ACTIONS(5356), 1, + anon_sym_BANG, + STATE(2591), 1, sym_comment, - ACTIONS(5364), 2, + ACTIONS(1464), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 15, - ts_builtin_sym_end, + ACTIONS(1462), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210181,19 +211095,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, - [81402] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [81008] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(2594), 1, + STATE(2592), 1, sym_comment, - ACTIONS(1234), 16, + ACTIONS(1547), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1545), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210207,25 +211120,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, - [81433] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [81037] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_DOT2, - ACTIONS(5368), 1, - sym__space, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2595), 1, + STATE(2593), 1, sym_comment, - STATE(2642), 1, - sym_path, - STATE(3179), 1, - sym_cell_path, - ACTIONS(5366), 13, + ACTIONS(1478), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1476), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210239,22 +211145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81470] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5104), 1, + anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(5372), 1, - sym__space, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2596), 1, + [81066] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(2594), 1, sym_comment, - STATE(2642), 1, - sym_path, - STATE(3180), 1, - sym_cell_path, - ACTIONS(5370), 13, + ACTIONS(2570), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210268,20 +211168,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81507] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81095] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5374), 1, - anon_sym_QMARK2, - ACTIONS(5376), 1, - anon_sym_BANG, - STATE(2597), 1, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern, + STATE(2595), 1, sym_comment, - STATE(3013), 1, - sym__path_suffix, - ACTIONS(1444), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1714), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210293,26 +211193,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_COLON, - anon_sym_DOT2, - [81540] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81126] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(1976), 1, + ACTIONS(2094), 1, anon_sym_LPAREN2, - ACTIONS(5378), 1, - anon_sym_DOT_DOT2, - STATE(2598), 1, + STATE(2596), 1, sym_comment, - ACTIONS(1972), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5380), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 11, + ACTIONS(2090), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210324,13 +211219,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, - [81577] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81157] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2599), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + STATE(2597), 1, sym_comment, - ACTIONS(5382), 18, - anon_sym_EQ, + ACTIONS(2574), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210342,27 +211245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [81604] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81188] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT2, - STATE(2450), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2600), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + STATE(2598), 1, sym_comment, - STATE(3088), 1, - sym_cell_path, - ACTIONS(1907), 14, - anon_sym_EQ, + ACTIONS(1953), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210376,13 +211273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81639] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81219] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2601), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2588), 1, + anon_sym_LPAREN2, + STATE(2599), 1, sym_comment, - ACTIONS(5384), 18, - anon_sym_EQ, + ACTIONS(2584), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210394,19 +211297,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [81666] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81250] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2602), 1, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(2600), 1, sym_comment, - ACTIONS(5386), 18, - anon_sym_EQ, + ACTIONS(2590), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210418,25 +211323,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [81693] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81281] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5388), 1, - anon_sym_QMARK2, - STATE(2603), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2601), 1, sym_comment, - ACTIONS(1462), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1460), 13, + ACTIONS(2598), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210448,15 +211349,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, - [81724] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81312] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2604), 1, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(2602), 1, sym_comment, - ACTIONS(5390), 18, - anon_sym_EQ, + ACTIONS(1216), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210468,22 +211375,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [81751] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81343] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2620), 1, + ACTIONS(2606), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2608), 1, sym__unquoted_pattern, - STATE(2605), 1, + STATE(2603), 1, sym_comment, - ACTIONS(2616), 16, + ACTIONS(1234), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210500,40 +211406,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81782] = 3, + [81374] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2606), 1, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2604), 1, sym_comment, - ACTIONS(5392), 18, + STATE(2605), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, + sym_path, + ACTIONS(1526), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1528), 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_DASH_GT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [81809] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [81409] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2607), 1, + ACTIONS(5358), 1, + anon_sym_DOT2, + STATE(2741), 1, + sym_path, + ACTIONS(1536), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + STATE(2605), 2, sym_comment, - ACTIONS(1470), 3, - sym__space, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 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(1468), 15, + [81442] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5361), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5363), 1, + aux_sym__immediate_decimal_token5, + STATE(2606), 1, + sym_comment, + ACTIONS(1730), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210547,48 +211487,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + sym__unquoted_pattern, + [81475] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2607), 1, + sym_comment, + ACTIONS(1522), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [81838] = 5, + ACTIONS(1524), 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, + [81504] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, STATE(2608), 1, sym_comment, - ACTIONS(2652), 16, + ACTIONS(1530), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1532), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [81869] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5394), 1, - anon_sym_DOT2, - STATE(2851), 1, - sym_path, - ACTIONS(1532), 2, + STATE(2609), 1, + sym_comment, + ACTIONS(1480), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(2609), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1534), 13, + anon_sym_DOT2, + ACTIONS(1482), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -210602,40 +211561,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81902] = 3, + anon_sym_QMARK2, + anon_sym_BANG, + [81562] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2610), 1, sym_comment, - ACTIONS(5302), 18, + ACTIONS(1516), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1518), 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_DASH_GT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [81929] = 4, + 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, + [81591] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2611), 1, sym_comment, - ACTIONS(1512), 3, + ACTIONS(1468), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1514), 15, + ACTIONS(1470), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -210651,16 +211613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [81958] = 4, + [81620] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2612), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1472), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1522), 15, + ACTIONS(1474), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -210676,16 +211638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [81987] = 5, + [81649] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, STATE(2613), 1, sym_comment, - ACTIONS(1982), 16, + ACTIONS(1524), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210697,54 +211656,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82018] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81676] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5365), 1, + anon_sym_DOT_DOT2, STATE(2614), 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, - [82051] = 8, - ACTIONS(103), 1, + ACTIONS(5367), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2257), 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, + [81707] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, - sym__space, - ACTIONS(5104), 1, - anon_sym_DOT2, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1786), 1, + sym__unquoted_pattern, + ACTIONS(5271), 1, + aux_sym__immediate_decimal_token5, STATE(2615), 1, sym_comment, - STATE(2642), 1, - sym_path, - STATE(3038), 1, - sym_cell_path, - ACTIONS(1909), 13, + ACTIONS(1784), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210756,18 +211710,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, - [82088] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81738] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2576), 1, - anon_sym_LPAREN2, STATE(2616), 1, sym_comment, - ACTIONS(2572), 16, + ACTIONS(1532), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210779,51 +211732,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82119] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81765] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(2617), 1, sym_comment, - ACTIONS(4770), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4772), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4774), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4766), 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, - [82152] = 6, - ACTIONS(103), 1, + ACTIONS(1482), 18, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81792] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5397), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5399), 1, - aux_sym__immediate_decimal_token5, STATE(2618), 1, sym_comment, - ACTIONS(1730), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1732), 14, + ACTIONS(1518), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210835,19 +211780,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [82185] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81819] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, STATE(2619), 1, sym_comment, - STATE(5073), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5401), 16, + ACTIONS(1470), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210859,21 +211804,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82216] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81846] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, STATE(2620), 1, sym_comment, - ACTIONS(2608), 16, + ACTIONS(1474), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210885,22 +211828,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82247] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81873] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5362), 1, - anon_sym_DOT_DOT2, + ACTIONS(1834), 1, + sym__unquoted_pattern, + ACTIONS(5369), 1, + aux_sym__immediate_decimal_token5, STATE(2621), 1, sym_comment, - ACTIONS(5364), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 15, + ACTIONS(1832), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210916,18 +211859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82278] = 4, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [81904] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1732), 1, + sym__unquoted_pattern, STATE(2622), 1, sym_comment, - ACTIONS(1846), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 13, + ACTIONS(1730), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210939,48 +211879,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [82307] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2623), 1, - sym_comment, - ACTIONS(1528), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1530), 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, - [82336] = 7, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81933] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT2, - STATE(2450), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2624), 1, + ACTIONS(1834), 1, + sym__unquoted_pattern, + STATE(2623), 1, sym_comment, - STATE(3090), 1, - sym_cell_path, - ACTIONS(1883), 14, - anon_sym_EQ, + ACTIONS(1832), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210994,19 +211906,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82371] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81962] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5388), 1, - anon_sym_BANG, - STATE(2625), 1, + ACTIONS(1921), 1, + sym__unquoted_pattern, + STATE(2624), 1, sym_comment, - ACTIONS(1462), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1460), 13, + ACTIONS(1919), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211018,20 +211929,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [82402] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81991] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2626), 1, + ACTIONS(5338), 1, + aux_sym__immediate_decimal_token5, + STATE(2625), 1, sym_comment, - ACTIONS(1500), 3, + ACTIONS(1786), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1502), 15, + sym__unquoted_pattern_in_record, + ACTIONS(1784), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -211041,22 +211958,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, - anon_sym_QMARK2, - anon_sym_BANG, - [82431] = 4, + [82022] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2627), 1, + ACTIONS(5371), 1, + aux_sym__immediate_decimal_token5, + STATE(2626), 1, sym_comment, - ACTIONS(1504), 3, + ACTIONS(1834), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1506), 15, + sym__unquoted_pattern_in_record, + ACTIONS(1832), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -211066,22 +211984,52 @@ 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, - anon_sym_QMARK2, - anon_sym_BANG, - [82460] = 5, + [82053] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2627), 1, + sym_comment, + ACTIONS(4766), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4768), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4770), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4762), 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, + [82086] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5362), 1, - anon_sym_DOT_DOT2, + ACTIONS(5373), 1, + anon_sym_DOT2, STATE(2628), 1, sym_comment, - ACTIONS(5364), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1699), 15, + STATE(2680), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2945), 1, + sym_path, + STATE(3195), 1, + sym_cell_path, + ACTIONS(1444), 14, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211093,16 +212041,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, - [82491] = 3, + anon_sym_COLON, + [82121] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5375), 1, + anon_sym_DOT_DOT2, STATE(2629), 1, sym_comment, - ACTIONS(5403), 18, - anon_sym_EQ, + ACTIONS(5377), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5227), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211114,24 +212065,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [82518] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82152] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5375), 1, + anon_sym_DOT_DOT2, STATE(2630), 1, sym_comment, - ACTIONS(1895), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5377), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1897), 13, + ACTIONS(5227), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211143,21 +212091,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, - [82547] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82183] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5314), 1, - anon_sym_DOT2, - STATE(2500), 1, - sym_path, + ACTIONS(5375), 1, + anon_sym_DOT_DOT2, STATE(2631), 1, sym_comment, - STATE(2632), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 15, - anon_sym_EQ, + ACTIONS(5377), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5227), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211169,20 +212117,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_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - [82580] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82214] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5405), 1, + ACTIONS(5095), 1, anon_sym_DOT2, - STATE(2500), 1, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2511), 1, sym_path, - STATE(2632), 2, + STATE(2632), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1534), 15, + STATE(3235), 1, + sym_cell_path, + ACTIONS(5379), 14, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -211195,19 +212146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [82611] = 5, + [82249] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, STATE(2633), 1, sym_comment, - STATE(5073), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5401), 16, + ACTIONS(5243), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211219,27 +212166,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82642] = 8, - ACTIONS(103), 1, + [82276] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1871), 1, - sym__space, - ACTIONS(5104), 1, - anon_sym_DOT2, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, STATE(2634), 1, sym_comment, - STATE(2642), 1, - sym_path, - STATE(3233), 1, - sym_cell_path, - ACTIONS(1874), 13, + STATE(5076), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5381), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211253,16 +212195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82679] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82307] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, STATE(2635), 1, sym_comment, - STATE(5073), 1, + STATE(5076), 1, sym__expr_parenthesized_immediate, - ACTIONS(5401), 16, + ACTIONS(5381), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211279,18 +212224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82710] = 5, + [82338] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_DOT_DOT2, + ACTIONS(1796), 1, + anon_sym_LPAREN2, STATE(2636), 1, sym_comment, - ACTIONS(5410), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 15, - ts_builtin_sym_end, + STATE(5076), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5381), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211302,19 +212245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82741] = 5, + [82369] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, STATE(2637), 1, sym_comment, - ACTIONS(1226), 16, + ACTIONS(5383), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211326,23 +212268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82772] = 5, + [82396] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DOT_DOT2, STATE(2638), 1, sym_comment, - ACTIONS(5414), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 15, - ts_builtin_sym_end, + ACTIONS(5385), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211354,21 +212292,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, - [82803] = 5, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5416), 1, - anon_sym_DOT_DOT2, STATE(2639), 1, sym_comment, - ACTIONS(5418), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2112), 15, - ts_builtin_sym_end, + ACTIONS(5387), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211380,21 +212316,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, - [82834] = 5, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5420), 1, - anon_sym_DOT_DOT2, STATE(2640), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 15, - ts_builtin_sym_end, + ACTIONS(5389), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211406,25 +212340,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, - [82865] = 8, - ACTIONS(103), 1, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82477] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - sym__space, - ACTIONS(5104), 1, - anon_sym_DOT2, - STATE(2482), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(2641), 1, sym_comment, - STATE(2642), 1, - sym_path, - STATE(3041), 1, - sym_cell_path, - ACTIONS(1913), 13, + ACTIONS(5391), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211436,18 +212364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - [82902] = 4, - ACTIONS(103), 1, + [82504] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(2642), 1, sym_comment, - ACTIONS(1545), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 15, + ACTIONS(5393), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211459,52 +212388,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_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [82931] = 4, + [82531] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(2643), 1, sym_comment, - ACTIONS(1508), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1510), 15, + ACTIONS(5395), 18, anon_sym_EQ, - sym_identifier, 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_DASH_GT, 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, - [82960] = 8, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82558] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + ACTIONS(5397), 1, + anon_sym_DOT_DOT2, STATE(2644), 1, sym_comment, - STATE(2676), 1, - sym_path, - STATE(3272), 1, - sym_cell_path, - ACTIONS(5368), 2, + ACTIONS(2090), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5366), 11, + ACTIONS(5399), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2092), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211516,23 +212447,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, - [82996] = 8, - ACTIONS(103), 1, + [82595] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5375), 1, + anon_sym_DOT_DOT2, STATE(2645), 1, sym_comment, - STATE(2676), 1, - sym_path, - STATE(3286), 1, - sym_cell_path, - ACTIONS(1871), 2, + ACTIONS(5377), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1714), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1874), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211544,48 +212470,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, - [83032] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82626] = 8, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5108), 1, + anon_sym_DOT2, + ACTIONS(5403), 1, + sym__space, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2592), 1, + sym_path, STATE(2646), 1, sym_comment, - ACTIONS(1897), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1895), 14, - anon_sym_EQ, - sym_identifier, + STATE(3113), 1, + sym_cell_path, + ACTIONS(5401), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [83060] = 9, + anon_sym_RBRACE, + [82663] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5424), 1, - sym__newline, - ACTIONS(5426), 1, + ACTIONS(5108), 1, + anon_sym_DOT2, + ACTIONS(5407), 1, sym__space, - ACTIONS(5430), 1, - anon_sym_COLON2, - ACTIONS(5432), 1, - anon_sym_EQ2, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2592), 1, + sym_path, STATE(2647), 1, sym_comment, - STATE(2929), 1, - aux_sym_attribute_repeat1, - STATE(4548), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5428), 11, + STATE(3212), 1, + sym_cell_path, + ACTIONS(5405), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211596,49 +212529,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, - [83098] = 12, + [82700] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1484), 1, - anon_sym_COMMA, - ACTIONS(5235), 1, - anon_sym_EQ, - ACTIONS(5237), 1, - sym__newline, - ACTIONS(5239), 1, - anon_sym_COLON, - ACTIONS(5436), 1, - anon_sym_DASH2, + ACTIONS(5322), 1, + anon_sym_DOT2, + STATE(2511), 1, + sym_path, STATE(2648), 1, sym_comment, - STATE(2672), 1, - aux_sym_parameter_repeat1, - STATE(3583), 1, - aux_sym_parameter_repeat2, - STATE(4491), 1, - aux_sym__repeat_newline, - STATE(3534), 2, - sym_param_type, - sym_param_value, - ACTIONS(5434), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [83142] = 4, - ACTIONS(103), 1, - anon_sym_POUND, STATE(2649), 1, - sym_comment, - ACTIONS(1903), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1905), 14, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1528), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211650,18 +212555,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [83170] = 4, + [82733] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, - STATE(2650), 1, + ACTIONS(5409), 1, + anon_sym_DOT2, + STATE(2511), 1, + sym_path, + STATE(2649), 2, sym_comment, - ACTIONS(1730), 16, - ts_builtin_sym_end, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211673,20 +212581,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, - [83198] = 4, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82764] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2651), 1, - sym_comment, - ACTIONS(1580), 3, + ACTIONS(5108), 1, + anon_sym_DOT2, + ACTIONS(5414), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1578), 14, + STATE(2508), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2592), 1, + sym_path, + STATE(2650), 1, + sym_comment, + STATE(3225), 1, + sym_cell_path, + ACTIONS(5412), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211700,18 +212613,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [83226] = 4, - ACTIONS(103), 1, + [82801] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2651), 1, + sym_comment, + ACTIONS(4796), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4798), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4800), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4794), 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, + [82834] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5416), 1, + anon_sym_DOT_DOT2, STATE(2652), 1, sym_comment, - ACTIONS(1470), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5418), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1468), 13, + ACTIONS(2108), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211723,22 +212663,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, - [83254] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82865] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5438), 1, - anon_sym_DOT, - ACTIONS(5440), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(5420), 1, + anon_sym_DOT_DOT2, STATE(2653), 1, sym_comment, - ACTIONS(1790), 3, + ACTIONS(5422), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2241), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1792), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211750,21 +212689,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, - [83286] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82896] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5352), 1, - anon_sym_DOT2, + ACTIONS(5424), 1, + anon_sym_DOT_DOT2, STATE(2654), 1, sym_comment, - STATE(2701), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2921), 1, - sym_path, - ACTIONS(1526), 14, + ACTIONS(5426), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2249), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211776,23 +212715,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_COLON, - [83318] = 7, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82927] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5352), 1, - anon_sym_DOT2, - STATE(2654), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5428), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + aux_sym__immediate_decimal_token5, STATE(2655), 1, sym_comment, - STATE(2921), 1, - sym_path, - STATE(3263), 1, - sym_cell_path, - ACTIONS(1907), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1784), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1786), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211804,13 +212742,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, - [83352] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [82960] = 12, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1496), 1, + anon_sym_COMMA, + ACTIONS(5285), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5434), 1, + anon_sym_DASH2, STATE(2656), 1, sym_comment, - ACTIONS(5442), 17, - anon_sym_EQ, + STATE(2677), 1, + aux_sym_parameter_repeat1, + STATE(3627), 1, + aux_sym_parameter_repeat2, + STATE(4396), 1, + aux_sym__repeat_newline, + STATE(3422), 2, + sym_param_type, + sym_param_value, + ACTIONS(5432), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83004] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2657), 1, + sym_comment, + ACTIONS(1478), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1476), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211822,49 +212799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [83378] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2657), 1, - sym_comment, - ACTIONS(1917), 2, - anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1915), 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, - [83406] = 6, - ACTIONS(103), 1, + anon_sym_DOT2, + [83032] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5444), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5446), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern, STATE(2658), 1, sym_comment, - ACTIONS(1730), 3, + ACTIONS(1714), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1732), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211876,24 +212823,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, - [83438] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83062] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2094), 1, + anon_sym_LPAREN2, STATE(2659), 1, sym_comment, - STATE(2676), 1, - sym_path, - STATE(3345), 1, - sym_cell_path, - ACTIONS(5344), 2, + ACTIONS(2090), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5342), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211905,23 +212848,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, - [83474] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83092] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(2660), 1, sym_comment, - STATE(2676), 1, - sym_path, - STATE(3346), 1, - sym_cell_path, - ACTIONS(5356), 2, - ts_builtin_sym_end, + ACTIONS(1582), 3, sym__space, - ACTIONS(5354), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1580), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211933,16 +212872,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, - [83510] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [83120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, + ACTIONS(1732), 1, sym__unquoted_pattern, STATE(2661), 1, sym_comment, - ACTIONS(1226), 15, + ACTIONS(1730), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -211958,48 +212898,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83540] = 12, + anon_sym_LPAREN2, + [83148] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1484), 1, - anon_sym_COMMA, - ACTIONS(5235), 1, - anon_sym_EQ, - ACTIONS(5237), 1, - sym__newline, - ACTIONS(5239), 1, - anon_sym_COLON, - ACTIONS(5450), 1, - anon_sym_DASH2, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, STATE(2662), 1, sym_comment, - STATE(2797), 1, - aux_sym_parameter_repeat1, - STATE(3586), 1, - aux_sym_parameter_repeat2, - STATE(4491), 1, - aux_sym__repeat_newline, - STATE(3534), 2, - sym_param_type, - sym_param_value, - ACTIONS(5448), 7, - sym_identifier, + ACTIONS(2574), 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, - [83584] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83178] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, + ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(2634), 1, + ACTIONS(1963), 1, sym__unquoted_pattern, STATE(2663), 1, sym_comment, - ACTIONS(1234), 15, + ACTIONS(1953), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212015,16 +212949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83614] = 5, + [83208] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(1653), 1, sym__unquoted_pattern, - ACTIONS(2576), 1, + ACTIONS(2588), 1, anon_sym_LPAREN2, STATE(2664), 1, sym_comment, - ACTIONS(2572), 15, + ACTIONS(2584), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212040,17 +212974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83644] = 5, - ACTIONS(103), 1, + [83238] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5340), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern, STATE(2665), 1, sym_comment, - ACTIONS(1790), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1792), 14, + ACTIONS(2590), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212062,19 +212996,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, - [83674] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83268] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1834), 1, + sym__unquoted_pattern, STATE(2666), 1, sym_comment, - ACTIONS(1842), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1844), 14, + ACTIONS(1832), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212086,19 +213019,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, - [83702] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [83296] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, + ACTIONS(1921), 1, + sym__unquoted_pattern, STATE(2667), 1, sym_comment, - STATE(4973), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5401), 15, + ACTIONS(1919), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212114,23 +213046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83732] = 8, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [83324] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(2668), 1, sym_comment, - STATE(2676), 1, - sym_path, - STATE(3340), 1, - sym_cell_path, - ACTIONS(1883), 2, + ACTIONS(2598), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1885), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212142,17 +213069,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, - [83768] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83354] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, + ACTIONS(1806), 1, + sym__unquoted_pattern, STATE(2669), 1, sym_comment, - STATE(4973), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5401), 15, - ts_builtin_sym_end, + ACTIONS(884), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212164,20 +213091,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83798] = 5, - ACTIONS(3), 1, + [83382] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, + ACTIONS(5199), 1, + anon_sym_DOT2, + STATE(2544), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2670), 1, sym_comment, - ACTIONS(2652), 15, + STATE(2724), 1, + sym_path, + STATE(3403), 1, + sym_cell_path, + ACTIONS(1866), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1868), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212189,20 +213124,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, - [83828] = 5, - ACTIONS(3), 1, + [83418] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, + ACTIONS(5436), 1, + anon_sym_DOT, + ACTIONS(5438), 1, + aux_sym__immediate_decimal_token5, STATE(2671), 1, sym_comment, - STATE(4973), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5401), 15, + ACTIONS(1784), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1786), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212214,58 +213149,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, - [83858] = 12, + sym__unquoted_pattern, + [83450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1484), 1, - anon_sym_COMMA, - ACTIONS(5235), 1, - anon_sym_EQ, - ACTIONS(5237), 1, - sym__newline, - ACTIONS(5239), 1, - anon_sym_COLON, - ACTIONS(5454), 1, - anon_sym_DASH2, STATE(2672), 1, sym_comment, - STATE(2797), 1, - aux_sym_parameter_repeat1, - STATE(3609), 1, - aux_sym_parameter_repeat2, - STATE(4491), 1, - aux_sym__repeat_newline, - STATE(3534), 2, - sym_param_type, - sym_param_value, - ACTIONS(5452), 7, + ACTIONS(1732), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1730), 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, - [83902] = 8, - ACTIONS(103), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [83478] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, STATE(2673), 1, sym_comment, - STATE(2676), 1, - sym_path, - STATE(3314), 1, - sym_cell_path, - ACTIONS(1911), 2, + ACTIONS(1216), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1913), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212277,18 +213196,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, - [83938] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83508] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5456), 1, - anon_sym_QMARK2, STATE(2674), 1, sym_comment, - ACTIONS(1460), 3, + ACTIONS(1834), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1462), 13, + sym__unquoted_pattern_in_record, + ACTIONS(1832), 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, + [83536] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2675), 1, + sym_comment, + ACTIONS(1921), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1919), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -212300,18 +213244,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [83968] = 5, + [83564] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, + ACTIONS(2606), 1, anon_sym_LPAREN2, - ACTIONS(1992), 1, + ACTIONS(2608), 1, sym__unquoted_pattern, - STATE(2675), 1, + STATE(2676), 1, sym_comment, - ACTIONS(1982), 15, + ACTIONS(1234), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212327,17 +213272,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83998] = 4, - ACTIONS(103), 1, + [83594] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2676), 1, + ACTIONS(1496), 1, + anon_sym_COMMA, + ACTIONS(5285), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5442), 1, + anon_sym_DASH2, + STATE(2677), 1, sym_comment, - ACTIONS(1545), 4, + STATE(2730), 1, + aux_sym_parameter_repeat1, + STATE(3609), 1, + aux_sym_parameter_repeat2, + STATE(4396), 1, + aux_sym__repeat_newline, + STATE(3422), 2, + sym_param_type, + sym_param_value, + ACTIONS(5440), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83638] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1496), 1, + anon_sym_COMMA, + ACTIONS(5285), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5446), 1, + anon_sym_DASH2, + STATE(2678), 1, + sym_comment, + STATE(2683), 1, + aux_sym_parameter_repeat1, + STATE(3614), 1, + aux_sym_parameter_repeat2, + STATE(4396), 1, + aux_sym__repeat_newline, + STATE(3422), 2, + sym_param_type, + sym_param_value, + ACTIONS(5444), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83682] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1496), 1, + anon_sym_COMMA, + ACTIONS(5285), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5450), 1, + anon_sym_DASH2, + STATE(2679), 1, + sym_comment, + STATE(2730), 1, + aux_sym_parameter_repeat1, + STATE(3620), 1, + aux_sym_parameter_repeat2, + STATE(4396), 1, + aux_sym__repeat_newline, + STATE(3422), 2, + sym_param_type, + sym_param_value, + ACTIONS(5448), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83726] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + anon_sym_DOT2, + STATE(2680), 1, + sym_comment, + STATE(2726), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2945), 1, + sym_path, + ACTIONS(1528), 14, ts_builtin_sym_end, + 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, + [83758] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2681), 1, + sym_comment, + ACTIONS(1675), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 13, + ACTIONS(1677), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212349,40 +213415,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [84026] = 4, + [83786] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2677), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + STATE(2682), 1, sym_comment, - ACTIONS(1905), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1903), 15, - anon_sym_EQ, - sym_identifier, + STATE(5071), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5381), 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, + [83816] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1496), 1, + anon_sym_COMMA, + ACTIONS(5285), 1, + anon_sym_EQ, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5289), 1, anon_sym_COLON, - anon_sym_LBRACK, + ACTIONS(5454), 1, + anon_sym_DASH2, + STATE(2683), 1, + sym_comment, + STATE(2730), 1, + aux_sym_parameter_repeat1, + STATE(3618), 1, + aux_sym_parameter_repeat2, + STATE(4396), 1, + aux_sym__repeat_newline, + STATE(3422), 2, + sym_param_type, + sym_param_value, + ACTIONS(5452), 7, + sym_identifier, + anon_sym_PIPE, 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, - [84054] = 4, + [83860] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1848), 1, - sym__unquoted_pattern, - STATE(2678), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + STATE(2684), 1, sym_comment, - ACTIONS(1846), 16, + STATE(5071), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5381), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212398,21 +213500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [84082] = 7, + [83890] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__space, - ACTIONS(5462), 1, - anon_sym_EQ2, - ACTIONS(5464), 1, - sym_short_flag_identifier, - STATE(2679), 1, + STATE(2685), 1, sym_comment, - STATE(3146), 1, - sym__flag_equals_value, - ACTIONS(5458), 13, + ACTIONS(1854), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1856), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212426,17 +213523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84116] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [83918] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2680), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + STATE(2686), 1, sym_comment, - ACTIONS(1553), 4, + STATE(5071), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5381), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1551), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212448,45 +213546,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_DOT_DOT2, - anon_sym_DOT2, - [84144] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83948] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1974), 1, - anon_sym_DASH2, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(5466), 1, - anon_sym_DOT_DOT2, - STATE(2681), 1, + ACTIONS(5199), 1, + anon_sym_DOT2, + STATE(2544), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2687), 1, sym_comment, - ACTIONS(5468), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 11, - anon_sym_EQ, - sym_identifier, + STATE(2724), 1, + sym_path, + STATE(3334), 1, + sym_cell_path, + ACTIONS(5403), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5401), 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, - [84180] = 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, + [83984] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1897), 1, - sym__unquoted_pattern, - STATE(2682), 1, + ACTIONS(5199), 1, + anon_sym_DOT2, + STATE(2544), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2688), 1, sym_comment, - ACTIONS(1895), 16, + STATE(2724), 1, + sym_path, + STATE(3335), 1, + sym_cell_path, + ACTIONS(5407), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5405), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212498,26 +213605,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, - [84208] = 7, - ACTIONS(3), 1, + [84020] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5352), 1, + ACTIONS(5199), 1, anon_sym_DOT2, - STATE(2654), 1, + STATE(2544), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2683), 1, + STATE(2689), 1, sym_comment, - STATE(2921), 1, + STATE(2724), 1, sym_path, - STATE(3247), 1, + STATE(3336), 1, sym_cell_path, - ACTIONS(1883), 13, + ACTIONS(5414), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(5412), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212529,55 +213633,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, - [84242] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1484), 1, - anon_sym_COMMA, - ACTIONS(5235), 1, - anon_sym_EQ, - ACTIONS(5237), 1, - sym__newline, - ACTIONS(5239), 1, - anon_sym_COLON, - ACTIONS(5472), 1, - anon_sym_DASH2, - STATE(2684), 1, - sym_comment, - STATE(2692), 1, - aux_sym_parameter_repeat1, - STATE(3606), 1, - aux_sym_parameter_repeat2, - STATE(4491), 1, - aux_sym__repeat_newline, - STATE(3534), 2, - sym_param_type, - sym_param_value, - ACTIONS(5470), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [84286] = 8, + [84056] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5200), 1, + ACTIONS(5199), 1, anon_sym_DOT2, - STATE(2554), 1, + STATE(2544), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2676), 1, - sym_path, - STATE(2685), 1, + STATE(2690), 1, sym_comment, - STATE(3349), 1, + STATE(2724), 1, + sym_path, + STATE(3266), 1, sym_cell_path, - ACTIONS(1887), 2, + ACTIONS(1885), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1889), 11, + ACTIONS(1887), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212589,19 +213661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [84322] = 6, - ACTIONS(103), 1, + [84092] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1699), 1, - sym__space, - ACTIONS(5474), 1, - anon_sym_DOT_DOT2, - STATE(2686), 1, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(2691), 1, sym_comment, - ACTIONS(5476), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1615), 13, + ACTIONS(2570), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212613,21 +213681,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, - [84354] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [84120] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2170), 1, + ACTIONS(4290), 1, sym__space, - ACTIONS(5478), 1, - anon_sym_DOT_DOT2, - STATE(2687), 1, + ACTIONS(5456), 1, + sym_long_flag_identifier, + ACTIONS(5458), 1, + anon_sym_EQ2, + STATE(2692), 1, sym_comment, - ACTIONS(5480), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2172), 13, + STATE(3058), 1, + sym__flag_equals_value, + ACTIONS(4288), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212641,19 +213712,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84386] = 6, - ACTIONS(103), 1, + [84154] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2104), 1, - sym__space, - ACTIONS(5482), 1, - anon_sym_DOT_DOT2, - STATE(2688), 1, + STATE(2693), 1, sym_comment, - ACTIONS(5484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2106), 13, + ACTIONS(5460), 17, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212665,21 +213730,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - [84418] = 6, + [84180] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, - sym__space, - ACTIONS(5486), 1, - anon_sym_DOT_DOT2, - STATE(2689), 1, + ACTIONS(5199), 1, + anon_sym_DOT2, + STATE(2544), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2694), 1, sym_comment, - ACTIONS(5488), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2114), 13, + STATE(2724), 1, + sym_path, + STATE(3361), 1, + sym_cell_path, + ACTIONS(5346), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5344), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212691,21 +213763,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, - [84450] = 6, + [84216] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - ACTIONS(5490), 1, - anon_sym_DOT_DOT2, - STATE(2690), 1, + ACTIONS(5199), 1, + anon_sym_DOT2, + STATE(2544), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2695), 1, sym_comment, - ACTIONS(5492), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 13, + STATE(2724), 1, + sym_path, + STATE(3362), 1, + sym_cell_path, + ACTIONS(5350), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5348), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212717,22 +213791,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, - [84482] = 7, + [84252] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5352), 1, + ACTIONS(5373), 1, anon_sym_DOT2, - STATE(2654), 1, + STATE(2680), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2691), 1, + STATE(2696), 1, sym_comment, - STATE(2921), 1, + STATE(2945), 1, sym_path, - STATE(3245), 1, + STATE(3340), 1, sym_cell_path, - ACTIONS(5360), 13, + ACTIONS(1893), 13, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -212746,77 +213818,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, - [84516] = 12, + [84286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1484), 1, - anon_sym_COMMA, - ACTIONS(5235), 1, + STATE(2697), 1, + sym_comment, + ACTIONS(1899), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1897), 15, anon_sym_EQ, - ACTIONS(5237), 1, + sym_identifier, sym__newline, - ACTIONS(5239), 1, + anon_sym_PIPE, anon_sym_COLON, - ACTIONS(5496), 1, + 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, + [84314] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2092), 1, anon_sym_DASH2, - STATE(2692), 1, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + ACTIONS(5462), 1, + anon_sym_DOT_DOT2, + STATE(2698), 1, sym_comment, - STATE(2797), 1, - aux_sym_parameter_repeat1, - STATE(3627), 1, - aux_sym_parameter_repeat2, - STATE(4491), 1, - aux_sym__repeat_newline, - STATE(3534), 2, - sym_param_type, - sym_param_value, - ACTIONS(5494), 7, + ACTIONS(5464), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2090), 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, - [84560] = 5, + [84350] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, + ACTIONS(1955), 1, + anon_sym_DASH2, + ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(2693), 1, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5466), 1, + anon_sym_DOT_DOT2, + STATE(2699), 1, sym_comment, - ACTIONS(2608), 15, - ts_builtin_sym_end, + ACTIONS(5468), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1953), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [84590] = 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [84386] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4282), 1, - sym__space, - ACTIONS(5462), 1, - anon_sym_EQ2, - ACTIONS(5498), 1, - sym_long_flag_identifier, - STATE(2694), 1, + ACTIONS(5470), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5472), 1, + aux_sym__immediate_decimal_token5, + STATE(2700), 1, sym_comment, - STATE(3193), 1, - sym__flag_equals_value, - ACTIONS(4280), 13, + ACTIONS(1730), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212828,22 +213923,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, - [84624] = 7, + sym__unquoted_pattern, + [84418] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(5020), 1, anon_sym_DOT2, - STATE(458), 1, + STATE(470), 1, sym_path, - STATE(927), 1, + STATE(954), 1, sym_cell_path, - STATE(2298), 1, + STATE(2328), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2695), 1, + STATE(2701), 1, sym_comment, - ACTIONS(5360), 13, + ACTIONS(5379), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212857,23 +213951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84658] = 8, - ACTIONS(103), 1, + [84452] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5200), 1, + ACTIONS(5373), 1, anon_sym_DOT2, - STATE(2554), 1, + STATE(2680), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2676), 1, - sym_path, - STATE(2696), 1, + STATE(2702), 1, sym_comment, - STATE(3307), 1, + STATE(2945), 1, + sym_path, + STATE(3302), 1, sym_cell_path, - ACTIONS(1907), 2, + ACTIONS(5379), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(1909), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212885,20 +213978,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [84694] = 7, + [84486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5352), 1, + STATE(2703), 1, + sym_comment, + ACTIONS(1907), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1905), 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, + [84514] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5373), 1, anon_sym_DOT2, - STATE(2654), 1, + STATE(2680), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2697), 1, + STATE(2704), 1, sym_comment, - STATE(2921), 1, + STATE(2945), 1, sym_path, - STATE(3354), 1, + STATE(3373), 1, sym_cell_path, - ACTIONS(1887), 13, + ACTIONS(1866), 13, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -212912,17 +214029,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, - [84728] = 5, + [84548] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - sym__unquoted_pattern, - STATE(2698), 1, + ACTIONS(5373), 1, + anon_sym_DOT2, + STATE(2680), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2705), 1, sym_comment, - ACTIONS(2616), 15, + STATE(2945), 1, + sym_path, + STATE(3379), 1, + sym_cell_path, + ACTIONS(1885), 13, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212934,17 +214056,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, - [84758] = 4, - ACTIONS(3), 1, + [84582] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1828), 1, - sym__unquoted_pattern, - STATE(2699), 1, + ACTIONS(5430), 1, + aux_sym__immediate_decimal_token5, + STATE(2706), 1, sym_comment, - ACTIONS(968), 16, + ACTIONS(1784), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1786), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212958,27 +214080,25 @@ 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, - [84786] = 8, + sym__unquoted_pattern, + [84612] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2676), 1, - sym_path, - STATE(2700), 1, - sym_comment, - STATE(3267), 1, - sym_cell_path, - ACTIONS(5348), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5346), 11, + ACTIONS(5474), 1, sym__newline, + ACTIONS(5476), 1, + sym__space, + ACTIONS(5480), 1, + anon_sym_COLON2, + ACTIONS(5482), 1, + anon_sym_EQ2, + STATE(2707), 1, + sym_comment, + STATE(3043), 1, + aux_sym_attribute_repeat1, + STATE(4541), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5478), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212989,19 +214109,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, - [84822] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [84650] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5199), 1, anon_sym_DOT2, - STATE(2921), 1, - sym_path, - STATE(2701), 2, - sym_comment, + STATE(2544), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1534), 14, + STATE(2708), 1, + sym_comment, + STATE(2724), 1, + sym_path, + STATE(3293), 1, + sym_cell_path, + ACTIONS(1872), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(1875), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213013,17 +214138,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_COLON, - [84852] = 4, + [84686] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2702), 1, - sym_comment, - ACTIONS(1647), 3, + ACTIONS(5458), 1, + anon_sym_EQ2, + ACTIONS(5486), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1649), 14, + ACTIONS(5488), 1, + sym_short_flag_identifier, + STATE(2709), 1, + sym_comment, + STATE(3219), 1, + sym__flag_equals_value, + ACTIONS(5484), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213037,45 +214165,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, - [84880] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - anon_sym_DASH2, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5503), 1, - anon_sym_DOT_DOT2, - STATE(2703), 1, - sym_comment, - ACTIONS(5505), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1982), 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, - [84916] = 4, + [84720] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2704), 1, - sym_comment, - ACTIONS(1915), 3, + ACTIONS(5492), 1, sym__space, + ACTIONS(5494), 1, + anon_sym_DOT_DOT2, + STATE(2710), 1, + sym_comment, + ACTIONS(5496), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1917), 14, + ACTIONS(5490), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213089,18 +214191,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, - [84944] = 5, + [84752] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5507), 1, - aux_sym__immediate_decimal_token5, - STATE(2705), 1, + STATE(2711), 1, sym_comment, - ACTIONS(1846), 2, + ACTIONS(1897), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1848), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1899), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213114,42 +214214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [84974] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - STATE(2706), 1, - sym_comment, - ACTIONS(1972), 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, - [85004] = 4, + anon_sym_DOT_DOT2, + [84780] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2707), 1, + ACTIONS(5498), 1, + anon_sym_BANG, + STATE(2712), 1, sym_comment, - ACTIONS(1732), 3, + ACTIONS(1462), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1730), 14, + anon_sym_DOT2, + ACTIONS(1464), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -213161,49 +214238,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, - [85032] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2676), 1, - sym_path, - STATE(2708), 1, - sym_comment, - STATE(3276), 1, - sym_cell_path, - ACTIONS(5372), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5370), 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, - [85068] = 5, + [84810] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5456), 1, - anon_sym_BANG, - STATE(2709), 1, + ACTIONS(5498), 1, + anon_sym_QMARK2, + STATE(2713), 1, sym_comment, - ACTIONS(1460), 3, + ACTIONS(1462), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1462), 13, + ACTIONS(1464), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -213217,23 +214265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [85098] = 8, + [84840] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2676), 1, - sym_path, - STATE(2710), 1, - sym_comment, - STATE(3303), 1, - sym_cell_path, - ACTIONS(1891), 2, - ts_builtin_sym_end, + ACTIONS(1714), 1, sym__space, - ACTIONS(1893), 11, + ACTIONS(5494), 1, + anon_sym_DOT_DOT2, + STATE(2714), 1, + sym_comment, + ACTIONS(5496), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1588), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213245,41 +214289,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, - [85134] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84872] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2711), 1, - sym_comment, - ACTIONS(1848), 3, - anon_sym_DASH2, + ACTIONS(2108), 1, + sym__space, + ACTIONS(5500), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1846), 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(2715), 1, + sym_comment, + ACTIONS(5502), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [85162] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(2712), 1, - sym_comment, - ACTIONS(1699), 15, - ts_builtin_sym_end, + ACTIONS(2110), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213291,18 +214315,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, - [85192] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84904] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2362), 1, - sym__unquoted_pattern, - STATE(2713), 1, + ACTIONS(2241), 1, + sym__space, + ACTIONS(5504), 1, + anon_sym_DOT_DOT2, + STATE(2716), 1, sym_comment, - ACTIONS(2360), 16, - ts_builtin_sym_end, + ACTIONS(5506), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2243), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213314,23 +214341,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, - anon_sym_LPAREN2, - [85220] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84936] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5474), 1, - anon_sym_DOT_DOT2, - ACTIONS(5511), 1, + ACTIONS(2249), 1, sym__space, - STATE(2714), 1, + ACTIONS(5508), 1, + anon_sym_DOT_DOT2, + STATE(2717), 1, sym_comment, - ACTIONS(5476), 2, + ACTIONS(5510), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5509), 13, + ACTIONS(2251), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213344,18 +214369,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85252] = 5, + [84968] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5513), 1, - aux_sym__immediate_decimal_token5, - STATE(2715), 1, - sym_comment, - ACTIONS(1846), 3, - ts_builtin_sym_end, + ACTIONS(2257), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1848), 12, + ACTIONS(5512), 1, + anon_sym_DOT_DOT2, + STATE(2718), 1, + sym_comment, + ACTIONS(5514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2259), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213367,21 +214393,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, - [85281] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [85000] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DOT_DOT2, - STATE(2716), 1, + ACTIONS(5516), 1, + aux_sym__immediate_decimal_token5, + STATE(2719), 1, sym_comment, - ACTIONS(2112), 2, - ts_builtin_sym_end, + ACTIONS(1832), 2, sym__space, - ACTIONS(5517), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2114), 11, + anon_sym_LPAREN2, + ACTIONS(1834), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213393,14 +214417,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, - [85312] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85030] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2717), 1, + ACTIONS(5199), 1, + anon_sym_DOT2, + STATE(2544), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2720), 1, sym_comment, - STATE(2828), 1, - aux_sym__repeat_newline, - ACTIONS(5519), 15, + STATE(2724), 1, + sym_path, + STATE(3290), 1, + sym_cell_path, + ACTIONS(1889), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1891), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213412,24 +214448,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, - [85339] = 6, + [85066] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_DOT_DOT2, - STATE(2718), 1, + STATE(2721), 1, sym_comment, - ACTIONS(2120), 2, - ts_builtin_sym_end, + ACTIONS(1905), 3, sym__space, - ACTIONS(5523), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 11, + ACTIONS(1907), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213441,21 +214469,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, - [85370] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [85094] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5525), 1, - sym_long_flag_identifier, - ACTIONS(5527), 1, - anon_sym_EQ2, - STATE(2719), 1, + STATE(2722), 1, sym_comment, - STATE(3386), 1, - sym__flag_equals_value, - ACTIONS(4282), 2, + ACTIONS(1514), 4, ts_builtin_sym_end, sym__space, - ACTIONS(4280), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1512), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213467,14 +214494,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, - [85403] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [85122] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2720), 1, + ACTIONS(5199), 1, + anon_sym_DOT2, + STATE(2544), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2723), 1, sym_comment, - STATE(2829), 1, - aux_sym__repeat_newline, - ACTIONS(5529), 15, + STATE(2724), 1, + sym_path, + STATE(3301), 1, + sym_cell_path, + ACTIONS(1893), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1895), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213486,22 +214524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85430] = 6, - ACTIONS(3), 1, + [85158] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - ACTIONS(5535), 1, - anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2721), 1, + STATE(2724), 1, sym_comment, - ACTIONS(5531), 13, + ACTIONS(1547), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1545), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213513,179 +214546,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [85461] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1874), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2586), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2722), 1, - sym_comment, - STATE(2851), 1, - sym_path, - STATE(3004), 1, - sym_cell_path, - ACTIONS(1871), 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, - [85496] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1893), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(2586), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2723), 1, - sym_comment, - STATE(2851), 1, - sym_path, - STATE(3063), 1, - sym_cell_path, - ACTIONS(1891), 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, - [85531] = 8, - ACTIONS(3), 1, + [85186] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, + ACTIONS(5199), 1, anon_sym_DOT2, - STATE(2586), 1, + STATE(2544), 1, aux_sym__where_predicate_lhs_repeat1, STATE(2724), 1, - sym_comment, - STATE(2851), 1, sym_path, - STATE(2981), 1, - sym_cell_path, - ACTIONS(1907), 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, - [85566] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2586), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(2725), 1, sym_comment, - STATE(2851), 1, - sym_path, - STATE(3068), 1, + STATE(3328), 1, sym_cell_path, - ACTIONS(1911), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1901), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1903), 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, - [85601] = 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, + [85222] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, + ACTIONS(5518), 1, anon_sym_DOT2, - STATE(2586), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2726), 1, - sym_comment, - STATE(2851), 1, + STATE(2945), 1, sym_path, - STATE(2914), 1, - sym_cell_path, - ACTIONS(1883), 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, - [85636] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1889), 1, - anon_sym_DASH2, - ACTIONS(5251), 1, - anon_sym_DOT2, - STATE(2586), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2727), 1, + STATE(2726), 2, sym_comment, - STATE(2851), 1, - sym_path, - STATE(2941), 1, - sym_cell_path, - ACTIONS(1887), 11, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 14, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [85671] = 4, + [85252] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2728), 1, - sym_comment, - ACTIONS(1730), 2, - sym__space, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(1732), 14, + ACTIONS(2207), 1, + sym__space, + STATE(2727), 1, + sym_comment, + STATE(5511), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2209), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213699,21 +214626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [85698] = 7, + [85283] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(5537), 1, + ACTIONS(5523), 1, anon_sym_and2, - ACTIONS(5539), 1, + ACTIONS(5525), 1, anon_sym_xor2, - STATE(2729), 1, + STATE(2728), 1, sym_comment, - STATE(2839), 1, + STATE(2787), 1, aux_sym__repeat_newline, - ACTIONS(5529), 12, + ACTIONS(5521), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213726,18 +214652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85731] = 6, - ACTIONS(103), 1, + [85316] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5432), 1, - anon_sym_EQ2, - ACTIONS(5541), 1, - sym__space, - STATE(2730), 1, + ACTIONS(1846), 1, + sym__unquoted_pattern, + STATE(2729), 1, sym_comment, - STATE(2929), 1, - aux_sym_attribute_repeat1, - ACTIONS(5428), 13, + ACTIONS(884), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213749,23 +214672,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [85762] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85343] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5545), 1, + ACTIONS(5529), 1, anon_sym_EQ, - ACTIONS(5547), 1, + ACTIONS(5532), 1, + sym__newline, + ACTIONS(5535), 1, anon_sym_COLON, - STATE(2731), 1, + ACTIONS(5538), 1, + anon_sym_DASH2, + STATE(4396), 1, + aux_sym__repeat_newline, + STATE(2730), 2, sym_comment, - STATE(3360), 1, + aux_sym_parameter_repeat1, + STATE(3422), 2, sym_param_type, - STATE(4821), 1, - aux_sym__repeat_newline, - ACTIONS(5543), 12, + sym_param_value, + ACTIONS(5527), 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, + [85380] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5540), 1, + anon_sym_DOT_DOT2, + STATE(2731), 1, + sym_comment, + ACTIONS(1714), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1588), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213777,17 +214728,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, - [85795] = 5, + [85411] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5546), 1, anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(5548), 1, + anon_sym_xor2, + ACTIONS(5550), 1, + anon_sym_or2, STATE(2732), 1, sym_comment, - ACTIONS(5549), 14, - sym__newline, + STATE(2870), 1, + aux_sym__repeat_newline, + ACTIONS(5544), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213799,45 +214755,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_xor2, - anon_sym_or2, - [85824] = 6, + [85446] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5551), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5553), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5525), 1, + anon_sym_xor2, + ACTIONS(5554), 1, + anon_sym_or2, STATE(2733), 1, sym_comment, - ACTIONS(1732), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1730), 11, - anon_sym_EQ, - sym__newline, + STATE(2871), 1, + aux_sym__repeat_newline, + ACTIONS(5552), 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, - [85855] = 6, + [85481] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1972), 1, - sym__space, - ACTIONS(1976), 1, - anon_sym_LPAREN2, STATE(2734), 1, sym_comment, - ACTIONS(1974), 13, + ACTIONS(1675), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1677), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213849,22 +214804,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, - [85886] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [85508] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - ACTIONS(5561), 1, - anon_sym_or2, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(5556), 1, + anon_sym_DOT_DOT2, STATE(2735), 1, sym_comment, - ACTIONS(5555), 12, + ACTIONS(2108), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5558), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2110), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213876,23 +214830,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, - [85919] = 8, + [85539] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5537), 1, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5539), 1, + ACTIONS(5564), 1, anon_sym_xor2, - ACTIONS(5565), 1, + ACTIONS(5566), 1, anon_sym_or2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2736), 1, sym_comment, - STATE(2741), 1, - aux_sym__repeat_newline, - ACTIONS(5563), 11, + ACTIONS(5560), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213904,18 +214856,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85954] = 6, - ACTIONS(103), 1, + [85572] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(2342), 1, - sym__space, + ACTIONS(5568), 1, + anon_sym_QMARK2, STATE(2737), 1, sym_comment, - STATE(5483), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2344), 13, + ACTIONS(1464), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213927,20 +214877,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, - [85985] = 6, + anon_sym_COLON, + anon_sym_DOT2, + [85599] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5572), 1, anon_sym_and2, - ACTIONS(5559), 1, + ACTIONS(5574), 1, anon_sym_xor2, - STATE(485), 1, + ACTIONS(5576), 1, + anon_sym_or2, + STATE(503), 1, aux_sym__repeat_newline, STATE(2738), 1, sym_comment, - ACTIONS(5567), 13, + ACTIONS(5570), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213953,19 +214905,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, - [86016] = 6, - ACTIONS(3), 1, + [85632] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_and2, - ACTIONS(5569), 1, - sym__newline, STATE(2739), 1, sym_comment, - STATE(2807), 1, - aux_sym__repeat_newline, - ACTIONS(5572), 13, + ACTIONS(1854), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1856), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213976,21 +214927,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_xor2, - anon_sym_or2, - [86047] = 6, + anon_sym_DOT_DOT2, + [85659] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(2136), 1, - sym__space, STATE(2740), 1, sym_comment, - STATE(5483), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2138), 13, + ACTIONS(1897), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1899), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214002,46 +214950,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, - [86078] = 7, + anon_sym_DOT_DOT2, + [85686] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - ACTIONS(5535), 1, - anon_sym_xor2, - ACTIONS(5576), 1, - anon_sym_or2, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2741), 1, sym_comment, - ACTIONS(5574), 12, + ACTIONS(1545), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1547), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [86111] = 6, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [85713] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(5580), 1, - sym__space, + ACTIONS(5568), 1, + anon_sym_BANG, STATE(2742), 1, sym_comment, - STATE(5057), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5578), 13, + ACTIONS(1464), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214053,16 +214995,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, - [86142] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_DOT2, + [85740] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(2743), 1, sym_comment, - STATE(2884), 1, - aux_sym__repeat_newline, - ACTIONS(5582), 15, + ACTIONS(1730), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214075,17 +215018,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, - [86169] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85767] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_DOT_DOT2, STATE(2744), 1, sym_comment, - STATE(2865), 1, - aux_sym__repeat_newline, - ACTIONS(5584), 15, + ACTIONS(2241), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5580), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2243), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214097,42 +215045,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_and2, - anon_sym_xor2, - anon_sym_or2, - [86196] = 5, + [85798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2745), 1, sym_comment, - ACTIONS(5567), 14, + ACTIONS(1476), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1478), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [86225] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [85825] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2746), 1, sym_comment, - ACTIONS(5586), 15, + ACTIONS(1905), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1907), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214144,18 +215090,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, - [86252] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [85852] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2747), 1, sym_comment, - ACTIONS(5588), 15, + ACTIONS(1832), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1834), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214168,43 +215112,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_and2, - anon_sym_xor2, - anon_sym_or2, - [86279] = 5, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85879] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2748), 1, sym_comment, - ACTIONS(5586), 14, + ACTIONS(1512), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1514), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [86308] = 5, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [85906] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2749), 1, sym_comment, - ACTIONS(5588), 14, + ACTIONS(1919), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1921), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214217,20 +215158,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, - [86337] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85933] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(5582), 1, + anon_sym_DOT_DOT2, STATE(2750), 1, sym_comment, - ACTIONS(5586), 13, + ACTIONS(2249), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5584), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2251), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214242,20 +215185,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, - [86368] = 6, - ACTIONS(3), 1, + [85964] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - ACTIONS(5535), 1, - anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(5586), 1, + anon_sym_DOT_DOT2, STATE(2751), 1, sym_comment, - ACTIONS(5588), 13, + ACTIONS(2257), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5588), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2259), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214267,15 +215210,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_or2, - [86399] = 4, + [85995] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2752), 1, sym_comment, - STATE(2872), 1, - aux_sym__repeat_newline, ACTIONS(5590), 15, sym__newline, anon_sym_SEMI, @@ -214292,13 +215233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86426] = 4, + [86022] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2753), 1, sym_comment, - STATE(2873), 1, - aux_sym__repeat_newline, ACTIONS(5592), 15, sym__newline, anon_sym_SEMI, @@ -214315,14 +215256,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86453] = 4, + [86049] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + ACTIONS(5562), 1, + anon_sym_and2, + STATE(503), 1, aux_sym__repeat_newline, STATE(2754), 1, sym_comment, - ACTIONS(5594), 15, + ACTIONS(5590), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214335,17 +215278,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, - [86480] = 4, + [86078] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + ACTIONS(5572), 1, + anon_sym_and2, + STATE(503), 1, aux_sym__repeat_newline, STATE(2755), 1, sym_comment, - ACTIONS(5596), 15, + ACTIONS(5592), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214358,21 +215302,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, - [86507] = 6, + [86107] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5598), 1, - sym__newline, - ACTIONS(5601), 1, + ACTIONS(5562), 1, anon_sym_and2, - STATE(2745), 1, + ACTIONS(5564), 1, + anon_sym_xor2, + STATE(503), 1, aux_sym__repeat_newline, STATE(2756), 1, sym_comment, - ACTIONS(5582), 13, + ACTIONS(5590), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214384,20 +215328,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, - [86538] = 6, + [86138] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5601), 1, + ACTIONS(5572), 1, anon_sym_and2, - ACTIONS(5603), 1, - sym__newline, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2757), 1, sym_comment, - STATE(2875), 1, - aux_sym__repeat_newline, - ACTIONS(5590), 13, + ACTIONS(5592), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214409,20 +215353,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, - [86569] = 6, + [86169] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_and2, - ACTIONS(5606), 1, - sym__newline, STATE(2758), 1, sym_comment, - STATE(2885), 1, + STATE(2802), 1, aux_sym__repeat_newline, - ACTIONS(5592), 13, + ACTIONS(5594), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214434,20 +215374,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, - [86600] = 6, + [86196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_and2, - ACTIONS(5609), 1, - sym__newline, - STATE(2732), 1, - aux_sym__repeat_newline, STATE(2759), 1, sym_comment, - ACTIONS(5584), 13, + STATE(2803), 1, + aux_sym__repeat_newline, + ACTIONS(5596), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214459,20 +215397,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, - [86631] = 6, - ACTIONS(103), 1, + [86223] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(2652), 1, - sym__space, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2760), 1, sym_comment, - ACTIONS(2654), 13, + ACTIONS(5598), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214485,17 +215420,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, - [86662] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2761), 1, sym_comment, - ACTIONS(5594), 14, + ACTIONS(5600), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214508,21 +215443,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, - [86691] = 6, + [86277] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, + ACTIONS(5546), 1, anon_sym_and2, - ACTIONS(5535), 1, - anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(5602), 1, + sym__newline, STATE(2762), 1, sym_comment, - ACTIONS(5612), 13, - sym__newline, + STATE(2804), 1, + aux_sym__repeat_newline, + ACTIONS(5594), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214534,20 +215469,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, - [86722] = 6, - ACTIONS(103), 1, + [86308] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1982), 1, - sym__space, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5605), 1, + sym__newline, STATE(2763), 1, sym_comment, - ACTIONS(1984), 13, - sym__newline, + STATE(2805), 1, + aux_sym__repeat_newline, + ACTIONS(5596), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214559,21 +215494,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, - [86753] = 7, + anon_sym_xor2, + anon_sym_or2, + [86339] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5601), 1, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5614), 1, - anon_sym_xor2, - STATE(2738), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2764), 1, sym_comment, - ACTIONS(5582), 12, + ACTIONS(5598), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214585,21 +215518,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, - [86786] = 7, + [86368] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5537), 1, + ACTIONS(5572), 1, anon_sym_and2, - ACTIONS(5539), 1, - anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2765), 1, sym_comment, - STATE(2766), 1, - aux_sym__repeat_newline, - ACTIONS(5584), 12, + ACTIONS(5600), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214611,20 +215542,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, - [86819] = 6, + [86397] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5546), 1, anon_sym_and2, - ACTIONS(5535), 1, + ACTIONS(5548), 1, anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2766), 1, sym_comment, - ACTIONS(5549), 13, - sym__newline, + STATE(2806), 1, + aux_sym__repeat_newline, + ACTIONS(5594), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214637,19 +215570,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86850] = 6, - ACTIONS(103), 1, + [86430] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2572), 1, - sym__space, - ACTIONS(2576), 1, - anon_sym_LPAREN2, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5525), 1, + anon_sym_xor2, STATE(2767), 1, sym_comment, - ACTIONS(2574), 13, - sym__newline, + STATE(2807), 1, + aux_sym__repeat_newline, + ACTIONS(5596), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214661,19 +215595,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, - [86881] = 6, + anon_sym_or2, + [86463] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5601), 1, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5616), 1, - sym__newline, + ACTIONS(5564), 1, + anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2768), 1, sym_comment, - STATE(2821), 1, - aux_sym__repeat_newline, - ACTIONS(5619), 13, + ACTIONS(5598), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214685,20 +215620,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, - [86912] = 6, - ACTIONS(103), 1, + [86494] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - sym__space, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, + ACTIONS(5572), 1, + anon_sym_and2, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2769), 1, sym_comment, - ACTIONS(2610), 13, + ACTIONS(5600), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214711,15 +215645,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, - [86943] = 4, + anon_sym_or2, + [86525] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2754), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2770), 1, sym_comment, - ACTIONS(5621), 15, + ACTIONS(5608), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214735,20 +215669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86970] = 7, + [86552] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5601), 1, - anon_sym_and2, - ACTIONS(5614), 1, - anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2771), 1, sym_comment, - STATE(2823), 1, - aux_sym__repeat_newline, - ACTIONS(5619), 12, + ACTIONS(5610), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214760,19 +215689,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, - [87003] = 6, - ACTIONS(103), 1, + [86579] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - sym__space, - ACTIONS(5142), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5623), 1, - anon_sym_DOT, + ACTIONS(5562), 1, + anon_sym_and2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2772), 1, sym_comment, - ACTIONS(1792), 13, + ACTIONS(5608), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214785,16 +215714,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, - [87034] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [86608] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5572), 1, + anon_sym_and2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2773), 1, sym_comment, - ACTIONS(2360), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2362), 14, + ACTIONS(5610), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214807,20 +215738,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, - sym__unquoted_pattern, - [87061] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [86637] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2616), 1, - sym__space, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - sym__unquoted_pattern, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5564), 1, + anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2774), 1, sym_comment, - ACTIONS(2618), 13, + ACTIONS(5608), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214833,19 +215764,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, - [87092] = 6, + anon_sym_or2, + [86668] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5572), 1, anon_sym_and2, - ACTIONS(5559), 1, + ACTIONS(5574), 1, anon_sym_xor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2775), 1, sym_comment, - ACTIONS(5625), 13, + ACTIONS(5610), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214859,20 +215790,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [87123] = 7, + [86699] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5627), 1, - anon_sym_EQ, - ACTIONS(5629), 1, - anon_sym_COLON, STATE(2776), 1, sym_comment, - STATE(3350), 1, - sym_param_type, - STATE(4909), 1, + STATE(2808), 1, aux_sym__repeat_newline, - ACTIONS(5543), 12, + ACTIONS(5612), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214885,14 +215810,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [87156] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86726] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2777), 1, sym_comment, - STATE(2889), 1, + STATE(2810), 1, aux_sym__repeat_newline, - ACTIONS(5631), 15, + ACTIONS(5614), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214908,14 +215836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87183] = 3, + [86753] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2778), 1, sym_comment, - ACTIONS(5633), 16, - anon_sym_EQ, - anon_sym_in, + ACTIONS(5616), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214927,23 +215855,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_COLON, anon_sym_RPAREN, - anon_sym_RBRACE, - [87208] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5559), 1, anon_sym_xor2, - ACTIONS(5561), 1, anon_sym_or2, - STATE(485), 1, + [86780] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(503), 1, aux_sym__repeat_newline, STATE(2779), 1, sym_comment, - ACTIONS(5635), 12, + ACTIONS(5618), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214956,21 +215879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [87241] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86807] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT_DOT2, + ACTIONS(5546), 1, + anon_sym_and2, + ACTIONS(5620), 1, + sym__newline, STATE(2780), 1, sym_comment, - ACTIONS(1699), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5639), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1615), 11, - sym__newline, + STATE(2811), 1, + aux_sym__repeat_newline, + ACTIONS(5612), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214981,18 +215904,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, - [87272] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86838] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5623), 1, + sym__newline, STATE(2781), 1, sym_comment, - ACTIONS(1647), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1649), 12, - sym__newline, + STATE(2812), 1, + aux_sym__repeat_newline, + ACTIONS(5614), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215003,15 +215929,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, - [87299] = 4, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86869] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5562), 1, + anon_sym_and2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2782), 1, sym_comment, - STATE(2891), 1, - aux_sym__repeat_newline, - ACTIONS(5641), 15, + ACTIONS(5616), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215024,43 +215954,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87326] = 6, + [86898] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5643), 1, - anon_sym_DOT, - ACTIONS(5645), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(5572), 1, + anon_sym_and2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2783), 1, sym_comment, - ACTIONS(1792), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1790), 11, - anon_sym_EQ, + ACTIONS(5618), 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, - [87357] = 4, + anon_sym_xor2, + anon_sym_or2, + [86927] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2755), 1, - aux_sym__repeat_newline, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5546), 1, + anon_sym_and2, + ACTIONS(5548), 1, + anon_sym_xor2, STATE(2784), 1, sym_comment, - ACTIONS(5572), 15, - sym__newline, + STATE(2813), 1, + aux_sym__repeat_newline, + ACTIONS(5612), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215072,25 +216005,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, - [87384] = 8, + [86960] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(5601), 1, + ACTIONS(5523), 1, anon_sym_and2, - ACTIONS(5614), 1, + ACTIONS(5525), 1, anon_sym_xor2, - ACTIONS(5649), 1, - anon_sym_or2, - STATE(2779), 1, - aux_sym__repeat_newline, STATE(2785), 1, sym_comment, - ACTIONS(5647), 11, + STATE(2814), 1, + aux_sym__repeat_newline, + ACTIONS(5614), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215102,22 +216031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [87419] = 8, + anon_sym_or2, + [86993] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5537), 1, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5539), 1, + ACTIONS(5564), 1, anon_sym_xor2, - ACTIONS(5565), 1, - anon_sym_or2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2786), 1, sym_comment, - STATE(2856), 1, - aux_sym__repeat_newline, - ACTIONS(5651), 11, + ACTIONS(5616), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215129,20 +216056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [87454] = 7, + anon_sym_or2, + [87024] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5629), 1, - anon_sym_COLON, - ACTIONS(5653), 1, - anon_sym_EQ, + ACTIONS(5572), 1, + anon_sym_and2, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2787), 1, sym_comment, - STATE(3361), 1, - sym_param_type, - STATE(4909), 1, - aux_sym__repeat_newline, - ACTIONS(5543), 12, + ACTIONS(5618), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215154,15 +216080,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_RBRACE, - [87487] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [87055] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1714), 1, + sym__space, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern, STATE(2788), 1, sym_comment, - ACTIONS(5655), 16, - anon_sym_EQ, - anon_sym_in, + ACTIONS(1588), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215174,21 +216105,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [87512] = 6, + [87086] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1226), 1, - sym__space, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, + ACTIONS(5438), 1, + aux_sym__immediate_decimal_token5, STATE(2789), 1, sym_comment, - ACTIONS(1012), 13, + ACTIONS(1784), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1786), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215200,20 +216130,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, - [87543] = 6, + sym__unquoted_pattern, + [87115] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1234), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2090), 1, sym__space, - ACTIONS(2632), 1, + ACTIONS(2094), 1, anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, STATE(2790), 1, sym_comment, - ACTIONS(1020), 13, + ACTIONS(2092), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215227,18 +216156,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87574] = 6, + [87146] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5601), 1, - anon_sym_and2, - ACTIONS(5657), 1, - sym__newline, + ACTIONS(5626), 1, + anon_sym_EQ, + ACTIONS(5630), 1, + anon_sym_COLON, STATE(2791), 1, sym_comment, - STATE(2833), 1, + STATE(3390), 1, + sym_param_type, + STATE(4674), 1, aux_sym__repeat_newline, - ACTIONS(5519), 13, + ACTIONS(5628), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215250,19 +216182,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, - [87605] = 4, + [87179] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(2140), 1, + sym__space, STATE(2792), 1, sym_comment, - ACTIONS(1580), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1578), 12, + STATE(5511), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2142), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215274,19 +216205,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, - [87632] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [87210] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5601), 1, - anon_sym_and2, - ACTIONS(5660), 1, - sym__newline, + ACTIONS(5634), 1, + anon_sym_AT2, STATE(2793), 1, sym_comment, - STATE(2847), 1, - aux_sym__repeat_newline, - ACTIONS(5631), 13, + STATE(3236), 1, + sym_param_completer, + ACTIONS(5632), 14, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215298,20 +216230,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, - [87663] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [87239] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_and2, - ACTIONS(5663), 1, - sym__newline, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(2219), 1, + sym__space, STATE(2794), 1, sym_comment, - STATE(2879), 1, - aux_sym__repeat_newline, - ACTIONS(5641), 13, + STATE(5511), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2221), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215323,16 +216255,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, - [87694] = 4, + anon_sym_RBRACE, + [87270] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + STATE(2752), 1, aux_sym__repeat_newline, STATE(2795), 1, sym_comment, - ACTIONS(5666), 15, + ACTIONS(5636), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215348,14 +216279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87721] = 4, + [87297] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + STATE(2753), 1, aux_sym__repeat_newline, STATE(2796), 1, sym_comment, - ACTIONS(5668), 15, + ACTIONS(5638), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215371,44 +216302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87748] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5672), 1, - anon_sym_EQ, - ACTIONS(5675), 1, - sym__newline, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(5681), 1, - anon_sym_DASH2, - STATE(4491), 1, - aux_sym__repeat_newline, - STATE(2797), 2, - sym_comment, - aux_sym_parameter_repeat1, - STATE(3534), 2, - sym_param_type, - sym_param_value, - ACTIONS(5670), 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, - [87785] = 5, + [87324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(2798), 1, + STATE(2797), 1, sym_comment, - ACTIONS(5666), 14, + ACTIONS(5640), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215421,22 +216322,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, - [87814] = 7, + [87351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(5642), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5644), 1, + aux_sym__immediate_decimal_token5, + STATE(2798), 1, + sym_comment, + ACTIONS(1732), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1730), 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, + [87382] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, sym__newline, - ACTIONS(5601), 1, + ACTIONS(5546), 1, anon_sym_and2, - ACTIONS(5614), 1, + ACTIONS(5548), 1, anon_sym_xor2, - STATE(2775), 1, + ACTIONS(5550), 1, + anon_sym_or2, + STATE(2736), 1, aux_sym__repeat_newline, STATE(2799), 1, sym_comment, - ACTIONS(5631), 12, + ACTIONS(5646), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215448,19 +216377,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, - [87847] = 6, + [87417] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5601), 1, - anon_sym_and2, - ACTIONS(5683), 1, + ACTIONS(2935), 1, sym__newline, - STATE(2761), 1, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5525), 1, + anon_sym_xor2, + ACTIONS(5554), 1, + anon_sym_or2, + STATE(2738), 1, aux_sym__repeat_newline, STATE(2800), 1, sym_comment, - ACTIONS(5621), 13, + ACTIONS(5648), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215472,18 +216404,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, - [87878] = 4, - ACTIONS(3), 1, + [87452] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5686), 1, - anon_sym_QMARK2, + ACTIONS(1784), 1, + sym__space, + ACTIONS(5172), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5650), 1, + anon_sym_DOT, STATE(2801), 1, sym_comment, - ACTIONS(1462), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1786), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215495,18 +216427,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_COLON, - anon_sym_DOT2, - [87905] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [87483] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2802), 1, sym_comment, - ACTIONS(5668), 14, + ACTIONS(5652), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215519,20 +216449,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, - [87934] = 6, + [87510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_and2, - ACTIONS(5688), 1, - sym__newline, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2803), 1, sym_comment, - STATE(2834), 1, - aux_sym__repeat_newline, - ACTIONS(5529), 13, + ACTIONS(5654), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215544,22 +216472,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, - [87965] = 7, + [87537] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5537), 1, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5539), 1, - anon_sym_xor2, - STATE(2721), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2804), 1, sym_comment, - ACTIONS(5641), 12, + ACTIONS(5652), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215571,21 +216497,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, - [87998] = 6, - ACTIONS(103), 1, + [87566] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5691), 1, - anon_sym_DOT_DOT2, + ACTIONS(5572), 1, + anon_sym_and2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2805), 1, sym_comment, - ACTIONS(2170), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5693), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2172), 11, + ACTIONS(5654), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215597,18 +216520,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, - [88029] = 6, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [87595] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5695), 1, - anon_sym_COLON, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5564), 1, + anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2806), 1, sym_comment, - STATE(3298), 1, - sym_param_type, - STATE(4898), 1, - aux_sym__repeat_newline, - ACTIONS(5543), 13, + ACTIONS(5652), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215621,17 +216547,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, - [88060] = 5, + anon_sym_or2, + [87626] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, + ACTIONS(5572), 1, anon_sym_and2, - STATE(485), 1, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(503), 1, aux_sym__repeat_newline, STATE(2807), 1, sym_comment, - ACTIONS(5596), 14, + ACTIONS(5654), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215644,22 +216572,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, - [88089] = 7, + [87657] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5601), 1, - anon_sym_and2, - ACTIONS(5614), 1, - anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2808), 1, sym_comment, - STATE(2886), 1, - aux_sym__repeat_newline, - ACTIONS(5590), 12, + ACTIONS(5656), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215671,46 +216593,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [88122] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5601), 1, anon_sym_and2, - ACTIONS(5614), 1, anon_sym_xor2, - ACTIONS(5649), 1, anon_sym_or2, - STATE(2735), 1, - aux_sym__repeat_newline, - STATE(2809), 1, - sym_comment, - ACTIONS(5697), 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, - [88157] = 4, + [87684] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2810), 1, + ACTIONS(5658), 1, + anon_sym_DOT, + ACTIONS(5660), 1, + aux_sym__immediate_decimal_token5, + STATE(2809), 1, sym_comment, - ACTIONS(1551), 3, + ACTIONS(1786), 3, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1553), 13, + sym__unquoted_pattern_in_record, + ACTIONS(1784), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -215720,22 +216620,41 @@ 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, - [88184] = 7, + anon_sym_LPAREN2, + [87715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2810), 1, + sym_comment, + ACTIONS(5662), 15, sym__newline, - ACTIONS(5601), 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, - ACTIONS(5614), 1, anon_sym_xor2, - STATE(2750), 1, + anon_sym_or2, + [87742] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5562), 1, + anon_sym_and2, + STATE(503), 1, aux_sym__repeat_newline, STATE(2811), 1, sym_comment, - ACTIONS(5699), 12, + ACTIONS(5656), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215747,21 +216666,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, - [88217] = 7, + [87771] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5537), 1, + ACTIONS(5572), 1, anon_sym_and2, - ACTIONS(5539), 1, - anon_sym_xor2, - STATE(2762), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2812), 1, sym_comment, - ACTIONS(5592), 12, + ACTIONS(5662), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215773,19 +216690,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, - [88250] = 6, + [87800] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5559), 1, + ACTIONS(5564), 1, anon_sym_xor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2813), 1, sym_comment, - ACTIONS(5594), 13, + ACTIONS(5656), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215799,18 +216717,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [88281] = 6, + [87831] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, + ACTIONS(5572), 1, anon_sym_and2, - ACTIONS(5535), 1, + ACTIONS(5574), 1, anon_sym_xor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2814), 1, sym_comment, - ACTIONS(5596), 13, + ACTIONS(5662), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215824,20 +216742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [88312] = 7, + [87862] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5537), 1, - anon_sym_and2, - ACTIONS(5539), 1, - anon_sym_xor2, - STATE(2814), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2815), 1, sym_comment, - ACTIONS(5572), 12, + ACTIONS(5664), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215849,17 +216762,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, - [88345] = 3, + [87889] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5546), 1, + anon_sym_and2, + ACTIONS(5666), 1, + sym__newline, + STATE(2754), 1, + aux_sym__repeat_newline, STATE(2816), 1, sym_comment, - ACTIONS(5701), 16, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, - sym__newline, + ACTIONS(5636), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215871,17 +216788,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, - [88370] = 3, + anon_sym_xor2, + anon_sym_or2, + [87920] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5669), 1, + sym__newline, + STATE(2755), 1, + aux_sym__repeat_newline, STATE(2817), 1, sym_comment, - ACTIONS(5703), 16, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, - sym__newline, + ACTIONS(5638), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215893,16 +216813,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, - [88395] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [87951] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5562), 1, + anon_sym_and2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2818), 1, sym_comment, - ACTIONS(1846), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1848), 14, + ACTIONS(5640), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215915,20 +216837,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, - sym__unquoted_pattern, - [88422] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - ACTIONS(5535), 1, anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, + anon_sym_or2, + [87980] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5482), 1, + anon_sym_EQ2, + ACTIONS(5672), 1, + sym__space, STATE(2819), 1, sym_comment, - ACTIONS(5668), 13, + STATE(3043), 1, + aux_sym_attribute_repeat1, + ACTIONS(5478), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215941,15 +216863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [88453] = 4, + anon_sym_RBRACE, + [88011] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2820), 1, sym_comment, - ACTIONS(5705), 15, + ACTIONS(5674), 16, + anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215961,20 +216883,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_COLON, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88480] = 5, + anon_sym_RBRACE, + [88036] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(5630), 1, + anon_sym_COLON, + ACTIONS(5676), 1, + anon_sym_EQ, STATE(2821), 1, sym_comment, - ACTIONS(5707), 14, + STATE(3297), 1, + sym_param_type, + STATE(4674), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215986,19 +216911,15 @@ static const uint16_t ts_small_parse_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, - [88509] = 5, + anon_sym_RBRACE, + [88069] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2822), 1, sym_comment, - ACTIONS(5705), 14, + ACTIONS(5678), 16, + anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216010,21 +216931,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_COLON, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [88538] = 6, + anon_sym_RBRACE, + [88094] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5572), 1, anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2823), 1, sym_comment, - ACTIONS(5707), 13, + ACTIONS(5664), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216037,20 +216956,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, - [88569] = 6, + [88123] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5546), 1, anon_sym_and2, - ACTIONS(5535), 1, + ACTIONS(5548), 1, anon_sym_xor2, - STATE(485), 1, + STATE(2756), 1, aux_sym__repeat_newline, STATE(2824), 1, sym_comment, - ACTIONS(5705), 13, - sym__newline, + ACTIONS(5636), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216063,37 +216984,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [88600] = 4, - ACTIONS(3), 1, + [88156] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + ACTIONS(2574), 1, + sym__space, STATE(2825), 1, sym_comment, - ACTIONS(1468), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1470), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2576), 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, - [88627] = 4, + anon_sym_RBRACE, + [88187] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2795), 1, - aux_sym__repeat_newline, + ACTIONS(5682), 1, + anon_sym_and2, + ACTIONS(5684), 1, + anon_sym_xor2, + ACTIONS(5686), 1, + anon_sym_or2, STATE(2826), 1, sym_comment, - ACTIONS(5709), 15, + ACTIONS(5680), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216106,18 +217033,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, - [88654] = 4, + anon_sym_RBRACE, + [88218] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2796), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5546), 1, + anon_sym_and2, + ACTIONS(5548), 1, + anon_sym_xor2, + STATE(2786), 1, aux_sym__repeat_newline, STATE(2827), 1, sym_comment, - ACTIONS(5711), 15, - sym__newline, + ACTIONS(5688), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216129,17 +217059,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, - [88681] = 4, + [88251] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2828), 1, sym_comment, - ACTIONS(5713), 15, + ACTIONS(4764), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216152,18 +217078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88708] = 4, + [88276] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5525), 1, + anon_sym_xor2, + STATE(2757), 1, aux_sym__repeat_newline, STATE(2829), 1, sym_comment, - ACTIONS(5715), 15, - sym__newline, + ACTIONS(5638), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216175,21 +217107,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, - [88735] = 6, + [88309] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(2140), 1, + ACTIONS(1953), 1, sym__space, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, STATE(2830), 1, sym_comment, - STATE(5483), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2142), 13, + ACTIONS(1955), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216203,18 +217133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88766] = 6, + [88340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5601), 1, - anon_sym_and2, - ACTIONS(5717), 1, - sym__newline, - STATE(2798), 1, - aux_sym__repeat_newline, STATE(2831), 1, sym_comment, - ACTIONS(5709), 13, + ACTIONS(5690), 16, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216226,20 +217154,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, - [88797] = 6, + anon_sym_RBRACE, + [88365] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_and2, - ACTIONS(5720), 1, - sym__newline, - STATE(2802), 1, - aux_sym__repeat_newline, + ACTIONS(5233), 1, + anon_sym_DOT2, + STATE(703), 1, + sym_path, + STATE(1364), 1, + sym_cell_path, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2832), 1, sym_comment, - ACTIONS(5711), 13, + ACTIONS(5379), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216250,19 +217181,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_xor2, - anon_sym_or2, - [88828] = 5, - ACTIONS(3), 1, + [88398] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(2223), 1, + sym__space, STATE(2833), 1, sym_comment, - ACTIONS(5713), 14, + STATE(5511), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2225), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216275,18 +217205,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, - [88857] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [88429] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(5692), 1, + aux_sym__immediate_decimal_token5, STATE(2834), 1, sym_comment, - ACTIONS(5715), 14, + ACTIONS(1832), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1834), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216298,15 +217229,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_xor2, - anon_sym_or2, - [88886] = 3, - ACTIONS(3), 1, + sym__unquoted_pattern, + [88458] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(5696), 1, + sym__space, STATE(2835), 1, sym_comment, - ACTIONS(5308), 16, + STATE(5054), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5694), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216320,23 +217255,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, - [88911] = 7, + [88489] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5601), 1, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5614), 1, + ACTIONS(5564), 1, anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2836), 1, sym_comment, - STATE(2893), 1, - aux_sym__repeat_newline, - ACTIONS(5709), 12, + ACTIONS(5640), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216349,117 +217280,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [88944] = 7, + [88520] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5537), 1, - anon_sym_and2, - ACTIONS(5539), 1, - anon_sym_xor2, - STATE(2819), 1, - aux_sym__repeat_newline, + ACTIONS(1875), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2604), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, + sym_path, STATE(2837), 1, sym_comment, - ACTIONS(5711), 12, - anon_sym_SEMI, + STATE(2998), 1, + sym_cell_path, + ACTIONS(1872), 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_or2, - [88977] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88555] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(1891), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2604), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, + sym_path, STATE(2838), 1, sym_comment, - ACTIONS(5713), 13, + STATE(3170), 1, + sym_cell_path, + ACTIONS(1889), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88590] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1895), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2604), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, + sym_path, + STATE(2839), 1, + sym_comment, + STATE(2936), 1, + sym_cell_path, + ACTIONS(1893), 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, + [88625] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1903), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2604), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, + sym_path, + STATE(2840), 1, + sym_comment, + STATE(3180), 1, + sym_cell_path, + ACTIONS(1901), 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_or2, - [89008] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88660] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - ACTIONS(5535), 1, - anon_sym_xor2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2839), 1, + ACTIONS(1868), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2604), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, + sym_path, + STATE(2841), 1, sym_comment, - ACTIONS(5715), 13, + STATE(2946), 1, + sym_cell_path, + ACTIONS(1866), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [89039] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88695] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2840), 1, + ACTIONS(1887), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2604), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, + sym_path, + STATE(2842), 1, sym_comment, - ACTIONS(1915), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1917), 12, + STATE(3026), 1, + sym_cell_path, + ACTIONS(1885), 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_DOT_DOT2, - [89066] = 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, + [88730] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1699), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2584), 1, sym__space, - ACTIONS(2672), 1, + ACTIONS(2588), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(2841), 1, + STATE(2843), 1, sym_comment, - ACTIONS(1615), 13, + ACTIONS(2586), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216473,12 +217467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89097] = 3, + [88761] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2842), 1, + ACTIONS(5698), 1, + anon_sym_COLON, + STATE(2844), 1, sym_comment, - ACTIONS(5401), 16, + STATE(3355), 1, + sym_param_type, + STATE(4921), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216492,21 +217492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + [88792] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5572), 1, anon_sym_and2, + ACTIONS(5574), 1, anon_sym_xor2, - anon_sym_or2, - [89122] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(2144), 1, - sym__space, - STATE(2843), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(2845), 1, sym_comment, - STATE(5483), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2146), 13, + ACTIONS(5664), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216519,17 +217516,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, - [89153] = 4, + anon_sym_or2, + [88823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, - anon_sym_BANG, - STATE(2844), 1, + STATE(2846), 1, sym_comment, - ACTIONS(1462), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5700), 16, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216541,17 +217537,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_COLON, - anon_sym_DOT2, - [89180] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [88848] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2845), 1, - sym_comment, - ACTIONS(1895), 2, + ACTIONS(2590), 1, sym__space, + ACTIONS(2594), 1, anon_sym_LPAREN2, - ACTIONS(1897), 14, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(2847), 1, + sym_comment, + ACTIONS(2592), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216565,19 +217564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [89207] = 6, + [88879] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_and2, - ACTIONS(5723), 1, - sym__newline, - STATE(2822), 1, + STATE(2760), 1, aux_sym__repeat_newline, - STATE(2846), 1, + STATE(2848), 1, sym_comment, - ACTIONS(5726), 13, + ACTIONS(5702), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216589,18 +217584,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, - [89238] = 5, + [88906] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2847), 1, + STATE(2849), 1, sym_comment, - ACTIONS(5625), 14, + ACTIONS(5227), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216613,17 +217605,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, - [89267] = 4, + [88931] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1840), 1, - sym__unquoted_pattern, - STATE(2848), 1, + STATE(2761), 1, + aux_sym__repeat_newline, + STATE(2850), 1, sym_comment, - ACTIONS(968), 15, - ts_builtin_sym_end, + ACTIONS(5704), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216635,15 +217628,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, - [89294] = 3, + [88958] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2849), 1, + STATE(2851), 1, sym_comment, - ACTIONS(5308), 16, + ACTIONS(5381), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216660,20 +217654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89319] = 7, + [88983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5629), 1, - anon_sym_COLON, - ACTIONS(5728), 1, - anon_sym_EQ, - STATE(2850), 1, + STATE(2852), 1, sym_comment, - STATE(3362), 1, - sym_param_type, - STATE(4909), 1, - aux_sym__repeat_newline, - ACTIONS(5543), 12, + ACTIONS(5227), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216686,41 +217672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [89352] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2851), 1, - sym_comment, - ACTIONS(1543), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1545), 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, - [89379] = 5, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89008] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5440), 1, - aux_sym__immediate_decimal_token5, - STATE(2852), 1, + STATE(2853), 1, sym_comment, - ACTIONS(1790), 3, - ts_builtin_sym_end, + ACTIONS(2570), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1792), 12, + ACTIONS(2572), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216732,15 +217696,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - [89408] = 4, + [89035] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2853), 1, + STATE(2854), 1, sym_comment, - STATE(2906), 1, - aux_sym__repeat_newline, - ACTIONS(5619), 15, + ACTIONS(5381), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216753,17 +217717,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, - [89435] = 4, + [89060] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2820), 1, - aux_sym__repeat_newline, - STATE(2854), 1, + STATE(2855), 1, sym_comment, - ACTIONS(5726), 15, + ACTIONS(5227), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216776,24 +217739,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, - [89462] = 7, - ACTIONS(3), 1, + [89085] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(1298), 1, - sym_cell_path, - STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2855), 1, + ACTIONS(2598), 1, + sym__space, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2856), 1, sym_comment, - ACTIONS(5360), 12, - ts_builtin_sym_end, + ACTIONS(2600), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216805,20 +217766,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, - [89495] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [89116] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - ACTIONS(5535), 1, - anon_sym_xor2, - ACTIONS(5576), 1, - anon_sym_or2, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2856), 1, + STATE(2857), 1, sym_comment, - ACTIONS(5730), 12, + ACTIONS(5381), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216831,14 +217786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [89528] = 4, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89141] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2746), 1, - aux_sym__repeat_newline, - STATE(2857), 1, + STATE(2858), 1, sym_comment, - ACTIONS(5699), 15, + ACTIONS(5706), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216851,21 +217808,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, - [89555] = 6, - ACTIONS(103), 1, + [89166] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_EQ2, - ACTIONS(5734), 1, - sym__space, - STATE(2858), 1, + STATE(2859), 1, sym_comment, - STATE(3149), 1, - sym__flag_equals_value, - ACTIONS(5732), 13, + ACTIONS(5708), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216879,20 +217831,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89586] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89191] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5601), 1, + ACTIONS(5682), 1, anon_sym_and2, - ACTIONS(5614), 1, - anon_sym_xor2, - STATE(2813), 1, - aux_sym__repeat_newline, - STATE(2859), 1, + STATE(2860), 1, sym_comment, - ACTIONS(5621), 12, + ACTIONS(5706), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216904,19 +217854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [89619] = 6, + [89218] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5738), 1, + ACTIONS(5710), 1, anon_sym_and2, - ACTIONS(5740), 1, - anon_sym_xor2, - ACTIONS(5742), 1, - anon_sym_or2, - STATE(2860), 1, + STATE(2861), 1, sym_comment, - ACTIONS(5736), 13, + ACTIONS(5708), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216930,18 +217878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89650] = 6, + anon_sym_xor2, + anon_sym_or2, + [89245] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5746), 1, + ACTIONS(5682), 1, anon_sym_and2, - ACTIONS(5748), 1, + ACTIONS(5684), 1, anon_sym_xor2, - ACTIONS(5750), 1, - anon_sym_or2, - STATE(2861), 1, + STATE(2862), 1, sym_comment, - ACTIONS(5744), 13, + ACTIONS(5706), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216955,45 +217903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89681] = 8, + anon_sym_or2, + [89274] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_DOT2, - ACTIONS(5752), 1, - anon_sym_DASH2, - STATE(2586), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2851), 1, - sym_path, - STATE(2862), 1, - sym_comment, - STATE(3004), 1, - sym_cell_path, - ACTIONS(5360), 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, - [89716] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4353), 1, - sym__space, - ACTIONS(5462), 1, - anon_sym_EQ2, + ACTIONS(5710), 1, + anon_sym_and2, + ACTIONS(5712), 1, + anon_sym_xor2, STATE(2863), 1, sym_comment, - STATE(3200), 1, - sym__flag_equals_value, - ACTIONS(4351), 13, + ACTIONS(5708), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217007,20 +217927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89747] = 7, + anon_sym_or2, + [89303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5537), 1, - anon_sym_and2, - ACTIONS(5539), 1, - anon_sym_xor2, - STATE(2824), 1, - aux_sym__repeat_newline, STATE(2864), 1, sym_comment, - ACTIONS(5726), 12, + ACTIONS(5714), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217032,15 +217946,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, - [89780] = 4, + [89328] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, STATE(2865), 1, sym_comment, - ACTIONS(5549), 15, + ACTIONS(5716), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217053,21 +217968,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, - [89807] = 6, + [89353] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5601), 1, + ACTIONS(5682), 1, anon_sym_and2, - ACTIONS(5754), 1, - sym__newline, - STATE(2748), 1, - aux_sym__repeat_newline, STATE(2866), 1, sym_comment, - ACTIONS(5699), 13, + ACTIONS(5714), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217079,22 +217992,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, - [89838] = 7, + [89380] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5601), 1, + ACTIONS(5710), 1, anon_sym_and2, - ACTIONS(5614), 1, - anon_sym_xor2, - STATE(2838), 1, - aux_sym__repeat_newline, STATE(2867), 1, sym_comment, - ACTIONS(5519), 12, + ACTIONS(5716), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217106,19 +218015,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, - [89871] = 6, + [89407] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5682), 1, anon_sym_and2, - ACTIONS(5757), 1, - sym__newline, - STATE(2749), 1, - aux_sym__repeat_newline, + ACTIONS(5684), 1, + anon_sym_xor2, STATE(2868), 1, sym_comment, - ACTIONS(5760), 13, + ACTIONS(5714), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217130,22 +218040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [89902] = 7, + [89436] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5537), 1, + ACTIONS(5710), 1, anon_sym_and2, - ACTIONS(5539), 1, + ACTIONS(5712), 1, anon_sym_xor2, - STATE(2751), 1, - aux_sym__repeat_newline, STATE(2869), 1, sym_comment, - ACTIONS(5760), 12, + ACTIONS(5716), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217157,13 +218064,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_or2, - [89935] = 3, + [89465] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5564), 1, + anon_sym_xor2, + ACTIONS(5566), 1, + anon_sym_or2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2870), 1, sym_comment, - ACTIONS(5401), 16, + ACTIONS(5718), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217176,16 +218092,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, + [89498] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5572), 1, anon_sym_and2, + ACTIONS(5574), 1, anon_sym_xor2, + ACTIONS(5576), 1, anon_sym_or2, - [89960] = 3, - ACTIONS(3), 1, - anon_sym_POUND, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2871), 1, sym_comment, - ACTIONS(5308), 16, + ACTIONS(5720), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217198,18 +218118,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_and2, - anon_sym_xor2, - anon_sym_or2, - [89985] = 4, + [89531] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + STATE(2797), 1, aux_sym__repeat_newline, STATE(2872), 1, sym_comment, - ACTIONS(5762), 15, + ACTIONS(5722), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217225,14 +218141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [90012] = 4, + [89558] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + STATE(2815), 1, aux_sym__repeat_newline, STATE(2873), 1, sym_comment, - ACTIONS(5612), 15, + ACTIONS(5724), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217248,13 +218164,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [90039] = 3, + [89585] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5546), 1, + anon_sym_and2, + ACTIONS(5726), 1, + sym__newline, + STATE(2818), 1, + aux_sym__repeat_newline, STATE(2874), 1, sym_comment, - ACTIONS(5401), 16, - sym__newline, + ACTIONS(5722), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217266,21 +218187,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, - [90064] = 5, + [89616] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5523), 1, anon_sym_and2, - STATE(485), 1, + ACTIONS(5729), 1, + sym__newline, + STATE(2823), 1, aux_sym__repeat_newline, STATE(2875), 1, sym_comment, - ACTIONS(5762), 14, - sym__newline, + ACTIONS(5724), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217294,13 +218214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [90093] = 3, + [89647] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5546), 1, + anon_sym_and2, + ACTIONS(5732), 1, + sym__newline, + STATE(2764), 1, + aux_sym__repeat_newline, STATE(2876), 1, sym_comment, - ACTIONS(5764), 16, - sym__newline, + ACTIONS(5702), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217312,17 +218237,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, - [90118] = 3, + [89678] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5735), 1, + sym__newline, + STATE(2765), 1, + aux_sym__repeat_newline, STATE(2877), 1, sym_comment, - ACTIONS(5766), 16, - sym__newline, + ACTIONS(5704), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217334,19 +218262,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, - [90143] = 4, + [89709] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5738), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5546), 1, anon_sym_and2, + ACTIONS(5548), 1, + anon_sym_xor2, + STATE(2836), 1, + aux_sym__repeat_newline, STATE(2878), 1, sym_comment, - ACTIONS(5764), 15, - sym__newline, + ACTIONS(5722), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217358,20 +218289,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, - [90170] = 5, + [89742] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5523), 1, anon_sym_and2, - STATE(485), 1, + ACTIONS(5525), 1, + anon_sym_xor2, + STATE(2845), 1, aux_sym__repeat_newline, STATE(2879), 1, sym_comment, - ACTIONS(5531), 14, - sym__newline, + ACTIONS(5724), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217383,42 +218315,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_xor2, anon_sym_or2, - [90199] = 4, + [89775] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5746), 1, - anon_sym_and2, + ACTIONS(5251), 1, + anon_sym_DOT2, + ACTIONS(5738), 1, + anon_sym_DASH2, + STATE(2604), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, + sym_path, STATE(2880), 1, sym_comment, - ACTIONS(5766), 15, + STATE(2998), 1, + sym_cell_path, + ACTIONS(5379), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [90226] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89810] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5738), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5546), 1, anon_sym_and2, - ACTIONS(5740), 1, + ACTIONS(5548), 1, anon_sym_xor2, + STATE(2768), 1, + aux_sym__repeat_newline, STATE(2881), 1, sym_comment, - ACTIONS(5764), 14, - sym__newline, + ACTIONS(5702), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217430,15 +218368,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or2, - [90255] = 3, + [89843] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5525), 1, + anon_sym_xor2, + STATE(2769), 1, + aux_sym__repeat_newline, STATE(2882), 1, sym_comment, - ACTIONS(4768), 16, - sym__newline, + ACTIONS(5704), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217450,18 +218394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [90280] = 4, + [89876] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2747), 1, + STATE(2770), 1, aux_sym__repeat_newline, STATE(2883), 1, sym_comment, - ACTIONS(5760), 15, + ACTIONS(5740), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217477,14 +218418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [90307] = 4, + [89903] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, + STATE(2771), 1, aux_sym__repeat_newline, STATE(2884), 1, sym_comment, - ACTIONS(5567), 15, + ACTIONS(5742), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217500,16 +218441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [90334] = 5, + [89930] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_and2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2885), 1, sym_comment, - ACTIONS(5612), 14, + ACTIONS(5744), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217522,20 +218461,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, - [90363] = 6, + [89957] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(485), 1, + STATE(2885), 1, aux_sym__repeat_newline, STATE(2886), 1, sym_comment, - ACTIONS(5762), 13, + ACTIONS(5746), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217548,21 +218484,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, - [90394] = 6, - ACTIONS(103), 1, + [89984] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5768), 1, - anon_sym_DOT_DOT2, STATE(2887), 1, sym_comment, - ACTIONS(2104), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5770), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2106), 11, + STATE(2893), 1, + aux_sym__repeat_newline, + ACTIONS(5748), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217574,21 +218506,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, - [90425] = 7, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90011] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5750), 1, + sym_long_flag_identifier, + ACTIONS(5752), 1, anon_sym_EQ2, - ACTIONS(5772), 1, - sym_short_flag_identifier, STATE(2888), 1, sym_comment, - STATE(3390), 1, + STATE(3382), 1, sym__flag_equals_value, - ACTIONS(5460), 2, + ACTIONS(4290), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5458), 11, + ACTIONS(4288), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217600,15 +218536,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, - [90458] = 4, + [90044] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(5546), 1, + anon_sym_and2, + ACTIONS(5754), 1, + sym__newline, STATE(2889), 1, sym_comment, - ACTIONS(5625), 15, - sym__newline, + STATE(2898), 1, + aux_sym__repeat_newline, + ACTIONS(5746), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217620,24 +218559,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, - [90485] = 6, - ACTIONS(103), 1, + [90075] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT_DOT2, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5757), 1, + sym__newline, STATE(2890), 1, sym_comment, - ACTIONS(5511), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5639), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5509), 11, - sym__newline, + STATE(2900), 1, + aux_sym__repeat_newline, + ACTIONS(5748), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217648,15 +218583,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, - [90516] = 4, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [90106] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5546), 1, + anon_sym_and2, + ACTIONS(5548), 1, + anon_sym_xor2, STATE(2891), 1, sym_comment, - ACTIONS(5531), 15, - sym__newline, + STATE(2904), 1, + aux_sym__repeat_newline, + ACTIONS(5746), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217668,21 +218611,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, - [90543] = 5, + [90139] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5776), 1, - anon_sym_AT2, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5525), 1, + anon_sym_xor2, STATE(2892), 1, sym_comment, - STATE(3147), 1, - sym_param_completer, - ACTIONS(5774), 14, - anon_sym_EQ, - sym__newline, + STATE(2905), 1, + aux_sym__repeat_newline, + ACTIONS(5748), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217694,19 +218637,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, - [90572] = 6, + anon_sym_or2, + [90172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(2893), 1, sym_comment, - ACTIONS(5666), 13, + ACTIONS(5760), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217719,18 +218658,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [90603] = 5, + [90199] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5776), 1, - anon_sym_AT2, + ACTIONS(5762), 1, + anon_sym_EQ, + ACTIONS(5764), 1, + anon_sym_COLON, STATE(2894), 1, sym_comment, - STATE(3151), 1, - sym_param_completer, - ACTIONS(5778), 14, - anon_sym_EQ, + STATE(3387), 1, + sym_param_type, + STATE(4790), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217742,19 +218687,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, - [90632] = 5, + [90232] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5776), 1, - anon_sym_AT2, + ACTIONS(5630), 1, + anon_sym_COLON, + ACTIONS(5766), 1, + anon_sym_EQ, STATE(2895), 1, sym_comment, - STATE(3152), 1, - sym_param_completer, - ACTIONS(5778), 14, - anon_sym_EQ, + STATE(3380), 1, + sym_param_type, + STATE(4674), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217767,19 +218713,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, - [90661] = 5, + [90265] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5776), 1, - anon_sym_AT2, + ACTIONS(5546), 1, + anon_sym_and2, + ACTIONS(5768), 1, + sym__newline, + STATE(2772), 1, + aux_sym__repeat_newline, STATE(2896), 1, sym_comment, - STATE(3156), 1, - sym_param_completer, - ACTIONS(5780), 14, - anon_sym_EQ, - sym__newline, + ACTIONS(5740), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217791,18 +218736,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, - [90690] = 5, + anon_sym_xor2, + anon_sym_or2, + [90296] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5746), 1, + ACTIONS(5523), 1, anon_sym_and2, - ACTIONS(5748), 1, - anon_sym_xor2, + ACTIONS(5771), 1, + sym__newline, + STATE(2773), 1, + aux_sym__repeat_newline, STATE(2897), 1, sym_comment, - ACTIONS(5766), 14, - sym__newline, + ACTIONS(5742), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217814,14 +218761,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, - [90719] = 3, + [90327] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5562), 1, + anon_sym_and2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2898), 1, sym_comment, - ACTIONS(5782), 16, + ACTIONS(5744), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217834,16 +218785,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, - [90744] = 3, - ACTIONS(3), 1, + [90356] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5458), 1, + anon_sym_EQ2, + ACTIONS(5776), 1, + sym__space, STATE(2899), 1, sym_comment, - ACTIONS(5784), 16, + STATE(3224), 1, + sym__flag_equals_value, + ACTIONS(5774), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217857,17 +218812,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, - [90769] = 4, + [90387] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5738), 1, + ACTIONS(5572), 1, anon_sym_and2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2900), 1, sym_comment, - ACTIONS(5782), 15, + ACTIONS(5760), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217880,18 +218834,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_xor2, anon_sym_or2, - [90796] = 4, + [90416] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5746), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5546), 1, anon_sym_and2, + ACTIONS(5548), 1, + anon_sym_xor2, + STATE(2774), 1, + aux_sym__repeat_newline, STATE(2901), 1, sym_comment, - ACTIONS(5784), 15, - sym__newline, + ACTIONS(5740), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217903,21 +218861,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, - [90823] = 4, - ACTIONS(103), 1, + [90449] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5525), 1, + anon_sym_xor2, + STATE(2775), 1, + aux_sym__repeat_newline, STATE(2902), 1, sym_comment, - ACTIONS(1903), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1905), 12, - sym__newline, + ACTIONS(5742), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217928,18 +218886,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, - [90850] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [90482] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4412), 1, + sym__space, + ACTIONS(5458), 1, + anon_sym_EQ2, STATE(2903), 1, sym_comment, - ACTIONS(1842), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1844), 12, + STATE(3176), 1, + sym__flag_equals_value, + ACTIONS(4410), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217951,17 +218911,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, - [90877] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90513] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5738), 1, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5740), 1, + ACTIONS(5564), 1, anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2904), 1, sym_comment, - ACTIONS(5782), 14, + ACTIONS(5744), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217974,18 +218937,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, - [90906] = 5, + [90544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5746), 1, + ACTIONS(5572), 1, anon_sym_and2, - ACTIONS(5748), 1, + ACTIONS(5574), 1, anon_sym_xor2, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2905), 1, sym_comment, - ACTIONS(5784), 14, + ACTIONS(5760), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217998,16 +218962,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, - [90935] = 4, - ACTIONS(3), 1, + [90575] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(1216), 1, + sym__space, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, STATE(2906), 1, sym_comment, - ACTIONS(5707), 15, + ACTIONS(1218), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218020,23 +218987,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, - [90962] = 7, + anon_sym_RBRACE, + [90606] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5432), 1, - anon_sym_EQ2, - ACTIONS(5786), 1, - sym__newline, - ACTIONS(5788), 1, + ACTIONS(1234), 1, sym__space, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, STATE(2907), 1, sym_comment, - STATE(3191), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5790), 11, + ACTIONS(1226), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218048,45 +219012,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90994] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [90637] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5792), 1, - aux_sym__immediate_decimal_token5, STATE(2908), 1, sym_comment, - ACTIONS(1848), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1846), 11, - anon_sym_EQ, + ACTIONS(1582), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1580), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [91022] = 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, + anon_sym_DOT_DOT2, + [90664] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, - sym__newline, - STATE(728), 1, - aux_sym__pipe_separator, + STATE(2778), 1, + aux_sym__repeat_newline, STATE(2909), 1, sym_comment, - STATE(3592), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 3, + ACTIONS(5688), 15, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -218096,18 +219055,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, - [91054] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90691] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5799), 1, - anon_sym_AT2, + ACTIONS(5752), 1, + anon_sym_EQ2, + ACTIONS(5778), 1, + sym_short_flag_identifier, STATE(2910), 1, sym_comment, - STATE(3312), 1, - sym_param_completer, - ACTIONS(5778), 13, + STATE(3295), 1, + sym__flag_equals_value, + ACTIONS(5486), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(5484), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218119,19 +219085,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, - [91082] = 6, + [90724] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_EQ2, + ACTIONS(5540), 1, + anon_sym_DOT_DOT2, STATE(2911), 1, sym_comment, - STATE(3250), 1, - sym__flag_equals_value, - ACTIONS(4353), 2, + ACTIONS(5492), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4351), 11, + ACTIONS(5542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5490), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218143,13 +219110,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, - [91112] = 3, + [90755] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(2779), 1, + aux_sym__repeat_newline, STATE(2912), 1, sym_comment, - ACTIONS(5401), 15, - ts_builtin_sym_end, + ACTIONS(5521), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218161,62 +219129,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_and2, anon_sym_xor2, anon_sym_or2, - [91136] = 6, + [90782] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2172), 1, - anon_sym_DASH2, - ACTIONS(5801), 1, - anon_sym_DOT_DOT2, + ACTIONS(5546), 1, + anon_sym_and2, + ACTIONS(5780), 1, + sym__newline, + STATE(2782), 1, + aux_sym__repeat_newline, STATE(2913), 1, sym_comment, - ACTIONS(5803), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(5688), 13, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91166] = 4, + anon_sym_xor2, + anon_sym_or2, + [90813] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1889), 1, - anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_and2, + ACTIONS(5783), 1, + sym__newline, + STATE(2783), 1, + aux_sym__repeat_newline, STATE(2914), 1, sym_comment, - ACTIONS(1887), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(5521), 13, + 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, - [91192] = 3, + anon_sym_xor2, + anon_sym_or2, + [90844] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5634), 1, + anon_sym_AT2, STATE(2915), 1, sym_comment, - ACTIONS(5308), 15, - ts_builtin_sym_end, + STATE(3222), 1, + sym_param_completer, + ACTIONS(5786), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218228,19 +219205,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, - [91216] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90873] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(5061), 1, - sym__unquoted_pattern, + ACTIONS(5634), 1, + anon_sym_AT2, STATE(2916), 1, sym_comment, - ACTIONS(847), 13, + STATE(3228), 1, + sym_param_completer, + ACTIONS(5788), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218254,42 +219231,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91244] = 4, + [90902] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5634), 1, + anon_sym_AT2, STATE(2917), 1, sym_comment, - ACTIONS(1649), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1647), 13, + STATE(3230), 1, + sym_param_completer, + ACTIONS(5788), 14, anon_sym_EQ, - sym_identifier, 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, - [91270] = 7, + anon_sym_RBRACE, + [90931] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5805), 1, - anon_sym_catch, - ACTIONS(5808), 1, - anon_sym_finally, - ACTIONS(5811), 1, - sym__newline, + ACTIONS(5710), 1, + anon_sym_and2, + ACTIONS(5712), 1, + anon_sym_xor2, + ACTIONS(5792), 1, + anon_sym_or2, STATE(2918), 1, sym_comment, - STATE(2943), 1, - aux_sym__repeat_newline, - ACTIONS(5815), 11, + ACTIONS(5790), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218301,16 +219279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91302] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [90962] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5249), 1, - anon_sym_EQ2, + ACTIONS(5794), 1, + anon_sym_and2, STATE(2919), 1, sym_comment, - ACTIONS(5818), 14, + ACTIONS(5716), 14, + ts_builtin_sym_end, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218321,18 +219300,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, - [91328] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [90988] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_EQ2, STATE(2920), 1, sym_comment, - ACTIONS(5820), 14, + ACTIONS(5716), 15, + ts_builtin_sym_end, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218343,16 +219320,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, - anon_sym_COLON2, - [91354] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91012] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5796), 1, + anon_sym_and2, STATE(2921), 1, sym_comment, - ACTIONS(1545), 15, + ACTIONS(5714), 14, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218364,17 +219343,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_COLON, - anon_sym_DOT2, - [91378] = 4, + anon_sym_xor2, + anon_sym_or2, + [91038] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, STATE(2922), 1, sym_comment, - ACTIONS(2326), 2, + ACTIONS(2574), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2328), 13, + ACTIONS(2576), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218386,22 +219369,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, - [91404] = 7, + [91068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5629), 1, - anon_sym_COLON, - ACTIONS(5822), 1, - anon_sym_EQ, + ACTIONS(5796), 1, + anon_sym_and2, + ACTIONS(5798), 1, + anon_sym_xor2, STATE(2923), 1, sym_comment, - STATE(3546), 1, - sym_param_type, - STATE(4909), 1, - aux_sym__repeat_newline, - ACTIONS(5543), 11, + ACTIONS(5714), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218413,12 +219391,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, - [91436] = 3, + anon_sym_or2, + [91096] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5794), 1, + anon_sym_and2, + ACTIONS(5800), 1, + anon_sym_xor2, STATE(2924), 1, sym_comment, - ACTIONS(5401), 15, + ACTIONS(5716), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -218431,16 +219414,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, - [91460] = 3, - ACTIONS(3), 1, + [91124] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5752), 1, + anon_sym_EQ2, STATE(2925), 1, sym_comment, - ACTIONS(4768), 15, + STATE(3389), 1, + sym__flag_equals_value, + ACTIONS(5776), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5774), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218452,54 +219439,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [91484] = 17, + [91154] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5802), 1, + sym__newline, + STATE(710), 1, + aux_sym__pipe_separator, + STATE(2926), 1, + sym_comment, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(5805), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2138), 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, + [91186] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, + ACTIONS(2259), 1, + anon_sym_DASH2, + ACTIONS(5807), 1, + anon_sym_DOT_DOT2, + STATE(2927), 1, + sym_comment, + ACTIONS(5809), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2257), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5826), 1, sym__newline, - ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5830), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5832), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2926), 1, + [91216] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5811), 1, + anon_sym_catch, + ACTIONS(5813), 1, + anon_sym_finally, + ACTIONS(5815), 1, + sym__newline, + STATE(2928), 1, sym_comment, - STATE(2962), 1, + STATE(2974), 1, aux_sym__repeat_newline, - STATE(3341), 1, - aux_sym_parameter_parens_repeat1, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [91536] = 5, + ACTIONS(5818), 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, + [91248] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2929), 1, + sym_comment, + ACTIONS(5255), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5820), 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, + [91274] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2930), 1, + sym_comment, + ACTIONS(5700), 15, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [91298] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2164), 1, + STATE(2931), 1, + sym_comment, + ACTIONS(1832), 3, + ts_builtin_sym_end, sym__space, - ACTIONS(5838), 1, - anon_sym_LBRACK2, - STATE(2927), 1, + anon_sym_LPAREN2, + ACTIONS(1834), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + sym__unquoted_pattern, + [91324] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5822), 1, + anon_sym_AT2, + STATE(2932), 1, sym_comment, - ACTIONS(2166), 13, + STATE(3289), 1, + sym_param_completer, + ACTIONS(5788), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218511,18 +219601,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, - [91564] = 3, + [91352] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2928), 1, + ACTIONS(5822), 1, + anon_sym_AT2, + STATE(2933), 1, sym_comment, - ACTIONS(5703), 15, + STATE(3305), 1, + sym_param_completer, + ACTIONS(5788), 13, ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218534,16 +219624,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, - [91588] = 5, + [91380] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5541), 1, + ACTIONS(5672), 1, sym__space, - STATE(2929), 1, + STATE(2934), 1, sym_comment, - STATE(2960), 1, + STATE(3038), 1, aux_sym_attribute_repeat1, - ACTIONS(5840), 13, + ACTIONS(5824), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218557,89 +219647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91616] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5826), 1, - sym__newline, - ACTIONS(5830), 1, - anon_sym_DOLLAR, - ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, - anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(5842), 1, - anon_sym_RPAREN, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2930), 1, - sym_comment, - STATE(3365), 1, - aux_sym_parameter_parens_repeat1, - STATE(3537), 1, - aux_sym__repeat_newline, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [91668] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5826), 1, - sym__newline, - ACTIONS(5830), 1, - anon_sym_DOLLAR, - ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, - anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(5844), 1, - anon_sym_RBRACK, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2931), 1, - sym_comment, - STATE(3023), 1, - aux_sym__repeat_newline, - STATE(3352), 1, - aux_sym_parameter_parens_repeat1, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [91720] = 6, + [91408] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - STATE(2932), 1, + STATE(2935), 1, sym_comment, - ACTIONS(2652), 2, - ts_builtin_sym_end, + ACTIONS(5235), 2, sym__space, - ACTIONS(2654), 11, + anon_sym_EQ2, + ACTIONS(5826), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218651,116 +219667,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, - [91750] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91434] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5846), 1, - anon_sym_LBRACK2, - STATE(2933), 1, - sym_comment, - ACTIONS(2166), 2, - anon_sym_LBRACK, + ACTIONS(2670), 1, anon_sym_DASH2, - ACTIONS(2164), 12, + STATE(2936), 1, + sym_comment, + ACTIONS(2668), 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, - [91778] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2934), 1, - sym_comment, - ACTIONS(5701), 15, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [91802] = 17, + [91460] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, + ACTIONS(5828), 1, sym_identifier, - ACTIONS(5826), 1, - sym__newline, ACTIONS(5830), 1, - anon_sym_DOLLAR, + sym__newline, ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, ACTIONS(5834), 1, - anon_sym_DASH_DASH, + anon_sym_DOLLAR, ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, anon_sym_DASH2, - ACTIONS(5848), 1, - anon_sym_RPAREN, - STATE(2511), 1, + STATE(2543), 1, sym_param_long_flag, - STATE(2684), 1, + STATE(2656), 1, sym__param_name, - STATE(2930), 1, - aux_sym__repeat_newline, - STATE(2935), 1, + STATE(2937), 1, sym_comment, - STATE(3353), 1, + STATE(3277), 1, aux_sym_parameter_parens_repeat1, - STATE(3538), 1, + STATE(3488), 1, sym_param_rest, - STATE(3539), 1, + STATE(3489), 1, sym_param_opt, - STATE(3540), 1, + STATE(3491), 1, sym_param_short_flag, - STATE(3803), 1, + STATE(3577), 1, + aux_sym__repeat_newline, + STATE(3849), 1, sym_parameter, - [91854] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2936), 1, - sym_comment, - ACTIONS(1730), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1732), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [91880] = 4, + [91512] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2937), 1, + STATE(2938), 1, sym_comment, - ACTIONS(5283), 2, + ACTIONS(5330), 2, sym__space, anon_sym_EQ2, - ACTIONS(5850), 13, + ACTIONS(5842), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218774,18 +219748,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91906] = 5, + [91538] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5799), 1, - anon_sym_AT2, - STATE(2938), 1, + ACTIONS(5844), 1, + anon_sym_COLON, + STATE(2939), 1, sym_comment, - STATE(3302), 1, - sym_param_completer, - ACTIONS(5774), 13, + STATE(3453), 1, + sym_param_type, + STATE(4846), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 12, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218797,19 +219772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91934] = 6, + [91568] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(2939), 1, + STATE(2940), 1, sym_comment, - ACTIONS(2608), 2, - ts_builtin_sym_end, + ACTIONS(5281), 2, sym__space, - ACTIONS(2610), 11, + anon_sym_EQ2, + ACTIONS(5846), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218821,19 +219792,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, - [91964] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91594] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - STATE(2940), 1, - sym_comment, - STATE(5483), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2342), 2, - ts_builtin_sym_end, + ACTIONS(884), 1, sym__space, - ACTIONS(2344), 11, + ACTIONS(5046), 1, + sym__unquoted_pattern, + STATE(2941), 1, + sym_comment, + ACTIONS(785), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218845,35 +219815,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, - [91994] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2666), 1, - anon_sym_DASH2, - STATE(2941), 1, - sym_comment, - ACTIONS(2664), 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, - [92020] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [91622] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, STATE(2942), 1, sym_comment, - ACTIONS(5764), 15, + STATE(5511), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2207), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2209), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218885,22 +219841,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, - [92044] = 6, - ACTIONS(3), 1, + [91652] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(5852), 1, - anon_sym_finally, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(5482), 1, + anon_sym_EQ2, + ACTIONS(5848), 1, + ts_builtin_sym_end, + ACTIONS(5850), 1, + sym__space, STATE(2943), 1, sym_comment, - ACTIONS(1862), 12, - anon_sym_catch, + STATE(3242), 1, + aux_sym_attribute_repeat1, + ACTIONS(5478), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218911,52 +219866,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, - [92074] = 11, + [91684] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, - anon_sym_DOLLAR, + ACTIONS(5852), 1, + anon_sym_catch, ACTIONS(5855), 1, - anon_sym_DOT, - STATE(2944), 1, - sym_comment, - STATE(3848), 1, - sym__immediate_decimal, - ACTIONS(5857), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5859), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3899), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [92114] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5861), 1, + anon_sym_finally, + ACTIONS(5858), 1, sym__newline, - STATE(728), 1, - aux_sym__pipe_separator, - STATE(2945), 1, + STATE(2944), 1, sym_comment, - STATE(3592), 1, + STATE(2951), 1, aux_sym__repeat_newline, - ACTIONS(5864), 3, + ACTIONS(5862), 11, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -218966,13 +219890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [92146] = 3, + anon_sym_RPAREN, + [91716] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2946), 1, + STATE(2945), 1, sym_comment, - ACTIONS(5766), 15, + ACTIONS(1547), 15, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218984,19 +219910,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_and2, - anon_sym_xor2, - anon_sym_or2, - [92170] = 5, + anon_sym_COLON, + anon_sym_DOT2, + [91740] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5866), 1, - anon_sym_AT2, + ACTIONS(1887), 1, + anon_sym_DASH2, + STATE(2946), 1, + sym_comment, + ACTIONS(1885), 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, + [91766] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(2947), 1, sym_comment, - STATE(3147), 1, - sym_param_completer, - ACTIONS(5774), 13, + ACTIONS(1919), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1921), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219008,17 +219955,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, - [92198] = 4, + sym__unquoted_pattern, + [91792] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2948), 1, sym_comment, - ACTIONS(1844), 2, + ACTIONS(1677), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1842), 13, + ACTIONS(1675), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -219032,45 +219978,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [92224] = 7, + [91818] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5868), 1, - anon_sym_catch, - ACTIONS(5871), 1, - anon_sym_finally, - ACTIONS(5874), 1, - sym__newline, + ACTIONS(5865), 1, + anon_sym_LBRACK2, STATE(2949), 1, sym_comment, - STATE(3024), 1, - aux_sym__repeat_newline, - ACTIONS(5878), 11, - anon_sym_SEMI, + ACTIONS(2342), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2340), 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_LPAREN, anon_sym_RPAREN, - [92256] = 6, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91846] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - sym__unquoted_pattern, + ACTIONS(1880), 1, + sym__newline, + ACTIONS(5867), 1, + anon_sym_finally, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2950), 1, sym_comment, - ACTIONS(2616), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2618), 11, - sym__newline, + ACTIONS(1878), 12, + anon_sym_catch, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219081,21 +220024,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, - [92286] = 7, - ACTIONS(103), 1, + anon_sym_RPAREN, + [91876] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5432), 1, - anon_sym_EQ2, - ACTIONS(5881), 1, - ts_builtin_sym_end, - ACTIONS(5883), 1, - sym__space, + ACTIONS(1880), 1, + sym__newline, + ACTIONS(5870), 1, + anon_sym_finally, + STATE(503), 1, + aux_sym__repeat_newline, STATE(2951), 1, sym_comment, - STATE(3108), 1, - aux_sym_attribute_repeat1, - ACTIONS(5428), 11, - sym__newline, + ACTIONS(1878), 12, + anon_sym_catch, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219106,16 +220048,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, - [92318] = 4, + anon_sym_RPAREN, + [91906] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5298), 1, - anon_sym_EQ2, STATE(2952), 1, sym_comment, - ACTIONS(5885), 14, - sym__newline, + ACTIONS(2116), 2, sym__space, + anon_sym_LPAREN2, + ACTIONS(2118), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219126,41 +220069,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, - anon_sym_COLON2, - [92344] = 5, + [91932] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5866), 1, - anon_sym_AT2, + ACTIONS(5875), 1, + anon_sym_DASH2, + ACTIONS(5877), 1, + anon_sym_DOT_DOT2, STATE(2953), 1, sym_comment, - STATE(3151), 1, - sym_param_completer, - ACTIONS(5778), 13, + ACTIONS(5879), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5873), 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, - [92372] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91962] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5866), 1, - anon_sym_AT2, + ACTIONS(5877), 1, + anon_sym_DOT_DOT2, + ACTIONS(5883), 1, + anon_sym_DASH2, STATE(2954), 1, sym_comment, - STATE(3152), 1, - sym_param_completer, - ACTIONS(5778), 13, + ACTIONS(5879), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5881), 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, + [91992] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2955), 1, + sym_comment, + ACTIONS(1730), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219172,18 +220140,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, - [92400] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern, + [92018] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5866), 1, - anon_sym_AT2, - STATE(2955), 1, + STATE(2956), 1, sym_comment, - STATE(3156), 1, - sym_param_completer, - ACTIONS(5780), 13, + ACTIONS(2336), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2338), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219197,16 +220163,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92428] = 4, + [92044] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5300), 1, - anon_sym_EQ2, - STATE(2956), 1, + STATE(2957), 1, sym_comment, - ACTIONS(5887), 14, - sym__newline, + ACTIONS(5295), 2, sym__space, + anon_sym_EQ2, + ACTIONS(5885), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219217,17 +220183,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [92454] = 4, + [92070] = 13, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(859), 1, + sym_raw_string_begin, + ACTIONS(3161), 1, + anon_sym_DQUOTE, + ACTIONS(3163), 1, + anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_BQUOTE, + ACTIONS(3167), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3169), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5887), 1, + aux_sym_env_var_token1, + STATE(2958), 1, + sym_comment, + STATE(3135), 1, + sym__inter_single_quotes, + STATE(3139), 1, + sym__inter_double_quotes, + STATE(5073), 2, + sym_val_string, + sym_val_interpolated, + STATE(2476), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [92114] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5193), 1, + aux_sym__immediate_decimal_token5, ACTIONS(5889), 1, - anon_sym_and2, - STATE(2957), 1, + anon_sym_DOT, + STATE(2959), 1, sym_comment, - ACTIONS(5764), 14, + ACTIONS(1784), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1786), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219239,23 +220240,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [92480] = 6, + [92144] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5893), 1, - anon_sym_DASH2, - ACTIONS(5895), 1, - anon_sym_DOT_DOT2, - STATE(2958), 1, + ACTIONS(5660), 1, + aux_sym__immediate_decimal_token5, + STATE(2960), 1, sym_comment, - ACTIONS(5897), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5891), 11, - anon_sym_EQ, + ACTIONS(1786), 3, sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1784), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -219265,19 +220262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92510] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1986), 1, anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - STATE(2959), 1, + [92172] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5891), 1, + anon_sym_LT, + STATE(2961), 1, sym_comment, - ACTIONS(1982), 2, + ACTIONS(5243), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(1984), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219289,39 +220284,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [92540] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [92198] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5901), 1, - sym__space, - STATE(2960), 2, + ACTIONS(5893), 1, + aux_sym__immediate_decimal_token5, + STATE(2962), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5899), 13, + ACTIONS(1834), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1832), 11, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [92566] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [92226] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2961), 1, - sym_comment, - ACTIONS(1846), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1848), 12, + ACTIONS(5482), 1, + anon_sym_EQ2, + ACTIONS(5895), 1, sym__newline, + ACTIONS(5897), 1, + sym__space, + STATE(2963), 1, + sym_comment, + STATE(3166), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5899), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219332,53 +220332,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, - [92592] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5826), 1, - sym__newline, - ACTIONS(5830), 1, - anon_sym_DOLLAR, - ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, - anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(5904), 1, - anon_sym_PIPE, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2962), 1, - sym_comment, - STATE(3332), 1, - aux_sym_parameter_parens_repeat1, - STATE(3537), 1, - aux_sym__repeat_newline, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [92644] = 5, + anon_sym_RPAREN, + [92258] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5906), 1, + ACTIONS(5901), 1, anon_sym_catch, - ACTIONS(5908), 1, + ACTIONS(5903), 1, anon_sym_finally, - STATE(2963), 1, - sym_comment, - ACTIONS(5910), 13, + ACTIONS(5905), 1, sym__newline, + STATE(2928), 1, + aux_sym__repeat_newline, + STATE(2964), 1, + sym_comment, + ACTIONS(5908), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219390,20 +220358,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, - [92672] = 6, - ACTIONS(103), 1, + [92290] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(2964), 1, + ACTIONS(5910), 1, + anon_sym_LT, + STATE(2965), 1, sym_comment, - ACTIONS(1234), 2, + ACTIONS(5243), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(1020), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219415,20 +220379,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, - [92702] = 6, + anon_sym_AT2, + [92316] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - STATE(2965), 1, + ACTIONS(5241), 1, + anon_sym_EQ2, + STATE(2966), 1, sym_comment, - ACTIONS(1972), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1974), 11, + ACTIONS(5912), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219439,14 +220400,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, - [92732] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [92342] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5257), 1, + ACTIONS(5295), 1, anon_sym_EQ2, - STATE(2966), 1, + STATE(2967), 1, sym_comment, - ACTIONS(5912), 14, + ACTIONS(5885), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -219461,17 +220424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [92758] = 4, + [92368] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2967), 1, + ACTIONS(5255), 1, + anon_sym_EQ2, + STATE(2968), 1, sym_comment, - ACTIONS(2360), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2362), 12, + ACTIONS(5820), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219482,55 +220444,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [92784] = 17, + anon_sym_RBRACE, + anon_sym_COLON2, + [92394] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, + ACTIONS(5828), 1, sym_identifier, - ACTIONS(5826), 1, - sym__newline, ACTIONS(5830), 1, + sym__newline, + ACTIONS(5834), 1, anon_sym_DOLLAR, - ACTIONS(5832), 1, + ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, + ACTIONS(5838), 1, anon_sym_DASH_DASH, - ACTIONS(5836), 1, + ACTIONS(5840), 1, anon_sym_DASH2, ACTIONS(5914), 1, - anon_sym_RPAREN, - STATE(2511), 1, + anon_sym_RBRACK, + STATE(2543), 1, sym_param_long_flag, - STATE(2684), 1, + STATE(2656), 1, sym__param_name, - STATE(2968), 1, + STATE(2969), 1, sym_comment, - STATE(3290), 1, - aux_sym_parameter_parens_repeat1, - STATE(3537), 1, + STATE(2993), 1, aux_sym__repeat_newline, - STATE(3538), 1, + STATE(3315), 1, + aux_sym_parameter_parens_repeat1, + STATE(3488), 1, sym_param_rest, - STATE(3539), 1, + STATE(3489), 1, sym_param_opt, - STATE(3540), 1, + STATE(3491), 1, sym_param_short_flag, - STATE(3803), 1, + STATE(3849), 1, sym_parameter, - [92836] = 6, - ACTIONS(103), 1, + [92446] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2576), 1, - anon_sym_LPAREN2, - STATE(2969), 1, + STATE(2970), 1, sym_comment, - ACTIONS(2572), 2, + ACTIONS(1478), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2574), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219542,20 +220500,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, - [92866] = 7, + anon_sym_COLON, + anon_sym_DOT2, + [92470] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5916), 1, - anon_sym_catch, + ACTIONS(5877), 1, + anon_sym_DOT_DOT2, ACTIONS(5918), 1, - anon_sym_finally, + anon_sym_DASH2, + STATE(2971), 1, + sym_comment, + ACTIONS(5879), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5916), 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, + [92500] = 7, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(5920), 1, + anon_sym_catch, + ACTIONS(5922), 1, + anon_sym_finally, + ACTIONS(5924), 1, sym__newline, - STATE(2949), 1, + STATE(2944), 1, aux_sym__repeat_newline, - STATE(2970), 1, + STATE(2972), 1, sym_comment, - ACTIONS(5923), 11, + ACTIONS(5927), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219567,18 +220551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92898] = 5, - ACTIONS(3), 1, + [92532] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5799), 1, - anon_sym_AT2, - STATE(2971), 1, + ACTIONS(5672), 1, + sym__space, + STATE(2973), 1, sym_comment, - STATE(3297), 1, - sym_param_completer, - ACTIONS(5778), 13, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(3043), 1, + aux_sym_attribute_repeat1, + ACTIONS(5478), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219590,20 +220572,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, - [92926] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92560] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5925), 1, + ACTIONS(5929), 1, anon_sym_catch, - ACTIONS(5927), 1, + ACTIONS(5932), 1, anon_sym_finally, - ACTIONS(5929), 1, + ACTIONS(5935), 1, sym__newline, - STATE(2970), 1, + STATE(2950), 1, aux_sym__repeat_newline, - STATE(2972), 1, + STATE(2974), 1, sym_comment, - ACTIONS(5932), 11, + ACTIONS(5939), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219615,15 +220599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92958] = 4, + [92592] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, - anon_sym_and2, - STATE(2973), 1, + STATE(2975), 1, sym_comment, - ACTIONS(5766), 14, + ACTIONS(1514), 15, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219635,18 +220618,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [92984] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_DOT2, + [92616] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2974), 1, + ACTIONS(5822), 1, + anon_sym_AT2, + STATE(2976), 1, sym_comment, - ACTIONS(1895), 3, + STATE(3309), 1, + sym_param_completer, + ACTIONS(5786), 13, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1897), 12, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219658,18 +220643,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [93010] = 5, + [92644] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5889), 1, - anon_sym_and2, - ACTIONS(5936), 1, - anon_sym_xor2, - STATE(2975), 1, + ACTIONS(5828), 1, + sym_identifier, + ACTIONS(5830), 1, + sym__newline, + ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(5942), 1, + anon_sym_PIPE, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2937), 1, + aux_sym__repeat_newline, + STATE(2977), 1, + sym_comment, + STATE(3326), 1, + aux_sym_parameter_parens_repeat1, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [92696] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5281), 1, + anon_sym_EQ2, + STATE(2978), 1, + sym_comment, + ACTIONS(5846), 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, + [92722] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + STATE(2979), 1, sym_comment, - ACTIONS(5764), 13, + STATE(5511), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2219), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2221), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219681,16 +220724,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_or2, - [93038] = 4, + [92752] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2976), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + STATE(2980), 1, sym_comment, - ACTIONS(5257), 2, + STATE(5511), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2223), 2, + ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5912), 13, + ACTIONS(2225), 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, + [92782] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2340), 1, + sym__space, + ACTIONS(5944), 1, + anon_sym_LBRACK2, + STATE(2981), 1, + sym_comment, + ACTIONS(2342), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219704,17 +220771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93064] = 5, + [92810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, - anon_sym_and2, - ACTIONS(5938), 1, - anon_sym_xor2, - STATE(2977), 1, + STATE(2982), 1, sym_comment, - ACTIONS(5766), 13, + ACTIONS(5690), 15, ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219726,14 +220792,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_or2, - [93092] = 3, + [92834] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2978), 1, + ACTIONS(1588), 1, + anon_sym_DASH2, + ACTIONS(5877), 1, + anon_sym_DOT_DOT2, + STATE(2983), 1, sym_comment, - ACTIONS(5782), 15, - ts_builtin_sym_end, + ACTIONS(5879), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1714), 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, + [92864] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2984), 1, + sym_comment, + ACTIONS(5946), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219745,16 +220834,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, - [93116] = 3, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_RBRACE, + [92888] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2979), 1, + STATE(2985), 1, sym_comment, - ACTIONS(5784), 15, - ts_builtin_sym_end, + ACTIONS(5948), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219766,18 +220855,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, - [93140] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_RBRACE, + [92912] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5889), 1, - anon_sym_and2, - STATE(2980), 1, + STATE(2986), 1, sym_comment, - ACTIONS(5782), 14, - ts_builtin_sym_end, + ACTIONS(5241), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5912), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219789,63 +220878,143 @@ static const uint16_t 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, - [93166] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92938] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2580), 1, + ACTIONS(2110), 1, anon_sym_DASH2, - STATE(2981), 1, + ACTIONS(5950), 1, + anon_sym_DOT_DOT2, + STATE(2987), 1, sym_comment, - ACTIONS(2578), 14, + ACTIONS(5952), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2108), 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, - [93192] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5629), 1, - anon_sym_COLON, - ACTIONS(5940), 1, - anon_sym_EQ, - STATE(2982), 1, + [92968] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5828), 1, + sym_identifier, + ACTIONS(5830), 1, + sym__newline, + ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(5954), 1, + anon_sym_RBRACK, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2988), 1, + sym_comment, + STATE(2990), 1, + aux_sym__repeat_newline, + STATE(3275), 1, + aux_sym_parameter_parens_repeat1, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [93020] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5828), 1, + sym_identifier, + ACTIONS(5830), 1, + sym__newline, + ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(5956), 1, + anon_sym_RPAREN, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2989), 1, + sym_comment, + STATE(3047), 1, + aux_sym__repeat_newline, + STATE(3276), 1, + aux_sym_parameter_parens_repeat1, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [93072] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5828), 1, + sym_identifier, + ACTIONS(5830), 1, + sym__newline, + ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(5958), 1, + anon_sym_RBRACK, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2990), 1, sym_comment, - STATE(3567), 1, - sym_param_type, - STATE(4909), 1, + STATE(3282), 1, + aux_sym_parameter_parens_repeat1, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3577), 1, aux_sym__repeat_newline, - ACTIONS(5543), 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, - [93224] = 4, + STATE(3849), 1, + sym_parameter, + [93124] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, - anon_sym_and2, - STATE(2983), 1, + STATE(2991), 1, sym_comment, - ACTIONS(5784), 14, + ACTIONS(5714), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -219858,19 +221027,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, - [93250] = 5, + [93148] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5889), 1, - anon_sym_and2, - ACTIONS(5936), 1, - anon_sym_xor2, - STATE(2984), 1, + ACTIONS(5822), 1, + anon_sym_AT2, + STATE(2992), 1, sym_comment, - ACTIONS(5782), 13, + STATE(3325), 1, + sym_param_completer, + ACTIONS(5632), 13, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219882,62 +221053,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_or2, - [93278] = 5, + [93176] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, - anon_sym_and2, - ACTIONS(5938), 1, - anon_sym_xor2, - STATE(2985), 1, - sym_comment, - ACTIONS(5784), 13, - ts_builtin_sym_end, + ACTIONS(5828), 1, + sym_identifier, + ACTIONS(5830), 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_or2, - [93306] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5541), 1, - sym__space, - STATE(2960), 1, - aux_sym_attribute_repeat1, - STATE(2986), 1, + ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(5960), 1, + anon_sym_RBRACK, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2993), 1, sym_comment, - ACTIONS(5942), 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, - [93334] = 4, + STATE(3311), 1, + aux_sym_parameter_parens_repeat1, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3577), 1, + aux_sym__repeat_newline, + STATE(3849), 1, + sym_parameter, + [93228] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2987), 1, + STATE(2994), 1, sym_comment, - ACTIONS(1578), 2, + ACTIONS(1580), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1580), 13, + ACTIONS(1582), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -219951,21 +221110,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [93360] = 6, - ACTIONS(103), 1, + [93254] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - STATE(2988), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + ACTIONS(5962), 1, + anon_sym_DOT, + STATE(2995), 1, sym_comment, - STATE(5483), 1, + STATE(3827), 1, + sym__immediate_decimal, + ACTIONS(5964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3968), 2, sym__expr_parenthesized_immediate, - ACTIONS(2140), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2142), 11, + sym_val_variable, + ACTIONS(1620), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [93294] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5968), 1, sym__newline, + STATE(710), 1, + aux_sym__pipe_separator, + STATE(2996), 1, + sym_comment, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(5971), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2138), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -219975,121 +221164,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, - [93390] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5895), 1, - anon_sym_DOT_DOT2, - ACTIONS(5946), 1, - anon_sym_DASH2, - STATE(2989), 1, - sym_comment, - ACTIONS(5897), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5944), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93420] = 17, + [93326] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, + ACTIONS(5973), 1, sym_identifier, - ACTIONS(5826), 1, - sym__newline, - ACTIONS(5830), 1, + ACTIONS(5978), 1, anon_sym_DOLLAR, - ACTIONS(5832), 1, + ACTIONS(5981), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, + ACTIONS(5984), 1, anon_sym_DASH_DASH, - ACTIONS(5836), 1, + ACTIONS(5987), 1, anon_sym_DASH2, - ACTIONS(5948), 1, - anon_sym_RBRACK, - STATE(2511), 1, + STATE(2543), 1, sym_param_long_flag, - STATE(2684), 1, + STATE(2656), 1, sym__param_name, - STATE(2990), 1, - sym_comment, - STATE(3244), 1, - aux_sym_parameter_parens_repeat1, - STATE(3537), 1, - aux_sym__repeat_newline, - STATE(3538), 1, + STATE(3488), 1, sym_param_rest, - STATE(3539), 1, + STATE(3489), 1, sym_param_opt, - STATE(3540), 1, + STATE(3491), 1, sym_param_short_flag, - STATE(3803), 1, + STATE(3849), 1, sym_parameter, - [93472] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2991), 1, + STATE(2997), 2, sym_comment, - ACTIONS(5298), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5885), 13, - sym__newline, - anon_sym_SEMI, + aux_sym_parameter_parens_repeat1, + ACTIONS(5976), 3, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [93498] = 6, + [93372] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2106), 1, + ACTIONS(1895), 1, anon_sym_DASH2, - ACTIONS(5950), 1, - anon_sym_DOT_DOT2, - STATE(2992), 1, + STATE(2998), 1, sym_comment, - ACTIONS(5952), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 11, + ACTIONS(1893), 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, - [93528] = 4, + [93398] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5283), 1, - anon_sym_EQ2, - STATE(2993), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2999), 1, sym_comment, - ACTIONS(5850), 14, - sym__newline, + ACTIONS(2598), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(2600), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220100,21 +221242,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, - anon_sym_COLON2, - [93554] = 6, + [93428] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_EQ2, - STATE(2994), 1, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern, + STATE(3000), 1, sym_comment, - STATE(3269), 1, - sym__flag_equals_value, - ACTIONS(5734), 2, + ACTIONS(1714), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5732), 11, + ACTIONS(1588), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220126,17 +221266,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, - [93584] = 4, - ACTIONS(103), 1, + [93458] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2995), 1, - sym_comment, - ACTIONS(5249), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5818), 13, + ACTIONS(5802), 1, sym__newline, + STATE(710), 1, + aux_sym__pipe_separator, + STATE(3001), 1, + sym_comment, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(5805), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(5990), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -220146,16 +221291,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, - [93610] = 3, - ACTIONS(3), 1, + [93490] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2996), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2588), 1, + anon_sym_LPAREN2, + STATE(3002), 1, sym_comment, - ACTIONS(1470), 15, + ACTIONS(2584), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2586), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220167,17 +221315,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_COLON, - anon_sym_DOT2, - [93634] = 4, - ACTIONS(103), 1, + [93520] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2997), 1, + ACTIONS(5993), 1, + anon_sym_catch, + ACTIONS(5995), 1, + anon_sym_finally, + STATE(3003), 1, sym_comment, - ACTIONS(2156), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2158), 13, + ACTIONS(5997), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220191,67 +221338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93660] = 6, + [93548] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, - anon_sym_DASH2, - ACTIONS(5954), 1, - anon_sym_DOT_DOT2, - STATE(2998), 1, - sym_comment, - ACTIONS(5956), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2112), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, + ACTIONS(5630), 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, - [93690] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DASH2, - ACTIONS(5958), 1, - anon_sym_DOT_DOT2, - STATE(2999), 1, - sym_comment, - ACTIONS(5960), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 11, + ACTIONS(5999), 1, anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93720] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5889), 1, - anon_sym_and2, - ACTIONS(5936), 1, - anon_sym_xor2, - ACTIONS(5962), 1, - anon_sym_or2, - STATE(3000), 1, + STATE(3004), 1, sym_comment, - ACTIONS(5736), 12, - ts_builtin_sym_end, + STATE(3548), 1, + sym_param_type, + STATE(4674), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220263,19 +221363,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, - [93750] = 6, + [93580] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(2594), 1, anon_sym_LPAREN2, - STATE(3001), 1, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(3005), 1, sym_comment, - STATE(5483), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2144), 2, + ACTIONS(2590), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2146), 11, + ACTIONS(2592), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220287,44 +221387,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, - [93780] = 7, + [93610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5964), 1, - anon_sym_catch, - ACTIONS(5966), 1, - anon_sym_finally, - ACTIONS(5968), 1, - sym__newline, - STATE(2918), 1, - aux_sym__repeat_newline, - STATE(3002), 1, - sym_comment, - ACTIONS(5971), 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, - [93812] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(3003), 1, + STATE(3006), 1, sym_comment, - ACTIONS(1226), 2, + ACTIONS(5227), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1012), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220336,35 +221405,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, - [93842] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH2, - STATE(3004), 1, - sym_comment, - ACTIONS(1907), 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, - [93868] = 3, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93634] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3005), 1, + ACTIONS(5752), 1, + anon_sym_EQ2, + STATE(3007), 1, sym_comment, - ACTIONS(5401), 15, + STATE(3300), 1, + sym__flag_equals_value, + ACTIONS(4412), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4410), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220376,110 +221432,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_and2, - anon_sym_xor2, - anon_sym_or2, - [93892] = 17, + [93664] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, + ACTIONS(5828), 1, sym_identifier, - ACTIONS(5826), 1, - sym__newline, ACTIONS(5830), 1, - anon_sym_DOLLAR, - ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, - anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(5973), 1, - anon_sym_RBRACK, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2990), 1, - aux_sym__repeat_newline, - STATE(3006), 1, - sym_comment, - STATE(3388), 1, - aux_sym_parameter_parens_repeat1, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [93944] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5826), 1, sym__newline, - ACTIONS(5830), 1, + ACTIONS(5834), 1, anon_sym_DOLLAR, - ACTIONS(5832), 1, + ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, + ACTIONS(5838), 1, anon_sym_DASH_DASH, - ACTIONS(5836), 1, + ACTIONS(5840), 1, anon_sym_DASH2, - ACTIONS(5975), 1, + ACTIONS(6001), 1, anon_sym_RPAREN, - STATE(2511), 1, + STATE(2543), 1, sym_param_long_flag, - STATE(2684), 1, + STATE(2656), 1, sym__param_name, - STATE(2968), 1, - aux_sym__repeat_newline, - STATE(3007), 1, + STATE(3008), 1, sym_comment, - STATE(3389), 1, + STATE(3019), 1, + aux_sym__repeat_newline, + STATE(3352), 1, aux_sym_parameter_parens_repeat1, - STATE(3538), 1, + STATE(3488), 1, sym_param_rest, - STATE(3539), 1, + STATE(3489), 1, sym_param_opt, - STATE(3540), 1, + STATE(3491), 1, sym_param_short_flag, - STATE(3803), 1, + STATE(3849), 1, sym_parameter, - [93996] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - anon_sym_DASH2, - ACTIONS(5895), 1, - anon_sym_DOT_DOT2, - STATE(3008), 1, - sym_comment, - ACTIONS(5897), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1699), 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, - [94026] = 3, - ACTIONS(3), 1, + [93716] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, STATE(3009), 1, sym_comment, - ACTIONS(5308), 15, + STATE(5511), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2140), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2142), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220491,19 +221491,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_and2, - anon_sym_xor2, - anon_sym_or2, - [94050] = 5, - ACTIONS(103), 1, + [93746] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5541), 1, - sym__space, - STATE(2929), 1, - aux_sym_attribute_repeat1, STATE(3010), 1, sym_comment, - ACTIONS(5428), 13, + ACTIONS(5381), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220515,71 +221509,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, - [94078] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93770] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5895), 1, - anon_sym_DOT_DOT2, - ACTIONS(5979), 1, - anon_sym_DASH2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2094), 1, + anon_sym_LPAREN2, STATE(3011), 1, sym_comment, - ACTIONS(5897), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5977), 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, - [94108] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3359), 1, - anon_sym_DQUOTE, - ACTIONS(3361), 1, - anon_sym_SQUOTE, - ACTIONS(3363), 1, - anon_sym_BQUOTE, - ACTIONS(3365), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3367), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5981), 1, - aux_sym_env_var_token1, - STATE(3012), 1, - sym_comment, - STATE(3047), 1, - sym__inter_single_quotes, - STATE(3048), 1, - sym__inter_double_quotes, - STATE(5016), 2, - sym_val_string, - sym_val_interpolated, - STATE(2477), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [94152] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3013), 1, - sym_comment, - ACTIONS(1553), 15, + ACTIONS(2090), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2092), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220591,18 +221536,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_COLON, - anon_sym_DOT2, - [94176] = 5, - ACTIONS(103), 1, + [93800] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5541), 1, - sym__space, - STATE(2986), 1, - aux_sym_attribute_repeat1, - STATE(3014), 1, + ACTIONS(6003), 1, + anon_sym_AT2, + STATE(3012), 1, sym_comment, - ACTIONS(5983), 13, + STATE(3222), 1, + sym_param_completer, + ACTIONS(5786), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220616,40 +221559,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94204] = 6, + [93828] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2672), 1, + ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(1963), 1, sym__unquoted_pattern, - STATE(3015), 1, + STATE(3013), 1, sym_comment, - ACTIONS(1699), 2, + ACTIONS(1953), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1615), 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, - [94234] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5985), 1, - anon_sym_LT, - STATE(3016), 1, - sym_comment, - ACTIONS(5302), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1955), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220661,20 +221583,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_AT2, - [94260] = 6, - ACTIONS(3), 1, + [93858] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5934), 1, - anon_sym_and2, - ACTIONS(5938), 1, - anon_sym_xor2, - ACTIONS(5987), 1, - anon_sym_or2, - STATE(3017), 1, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(3014), 1, sym_comment, - ACTIONS(5744), 12, + ACTIONS(1216), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1218), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220686,51 +221607,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, - [94290] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5989), 1, - sym_identifier, - ACTIONS(5994), 1, - anon_sym_DOLLAR, - ACTIONS(5997), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6000), 1, - anon_sym_DASH_DASH, - ACTIONS(6003), 1, - anon_sym_DASH2, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - STATE(3018), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5992), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [94336] = 6, + [93888] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(2606), 1, anon_sym_LPAREN2, - STATE(3019), 1, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(3015), 1, sym_comment, - STATE(5066), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5580), 2, + ACTIONS(1234), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5578), 11, + ACTIONS(1226), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220742,19 +221631,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, - [94366] = 6, - ACTIONS(103), 1, + [93918] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5198), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6006), 1, - anon_sym_DOT, - STATE(3020), 1, + ACTIONS(6003), 1, + anon_sym_AT2, + STATE(3016), 1, sym_comment, - ACTIONS(1790), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1792), 11, + STATE(3228), 1, + sym_param_completer, + ACTIONS(5788), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220766,13 +221652,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, - [94396] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93946] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3021), 1, + ACTIONS(6003), 1, + anon_sym_AT2, + STATE(3017), 1, sym_comment, - ACTIONS(6008), 15, - anon_sym_EQ, + STATE(3230), 1, + sym_param_completer, + ACTIONS(5788), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220785,17 +221676,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_GT2, anon_sym_RBRACE, - [94420] = 4, - ACTIONS(103), 1, + [93974] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3022), 1, + ACTIONS(6003), 1, + anon_sym_AT2, + STATE(3018), 1, sym_comment, - ACTIONS(5223), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5820), 13, + STATE(3236), 1, + sym_param_completer, + ACTIONS(5632), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220809,54 +221700,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94446] = 17, + [94002] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, + ACTIONS(5828), 1, sym_identifier, - ACTIONS(5826), 1, - sym__newline, ACTIONS(5830), 1, + sym__newline, + ACTIONS(5834), 1, anon_sym_DOLLAR, - ACTIONS(5832), 1, + ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, + ACTIONS(5838), 1, anon_sym_DASH_DASH, - ACTIONS(5836), 1, + ACTIONS(5840), 1, anon_sym_DASH2, - ACTIONS(6010), 1, - anon_sym_RBRACK, - STATE(2511), 1, + ACTIONS(6005), 1, + anon_sym_RPAREN, + STATE(2543), 1, sym_param_long_flag, - STATE(2684), 1, + STATE(2656), 1, sym__param_name, - STATE(3023), 1, + STATE(3019), 1, sym_comment, - STATE(3364), 1, + STATE(3312), 1, aux_sym_parameter_parens_repeat1, - STATE(3537), 1, - aux_sym__repeat_newline, - STATE(3538), 1, + STATE(3488), 1, sym_param_rest, - STATE(3539), 1, + STATE(3489), 1, sym_param_opt, - STATE(3540), 1, + STATE(3491), 1, sym_param_short_flag, - STATE(3803), 1, + STATE(3577), 1, + aux_sym__repeat_newline, + STATE(3849), 1, sym_parameter, - [94498] = 6, + [94054] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(2243), 1, + anon_sym_DASH2, + ACTIONS(6007), 1, + anon_sym_DOT_DOT2, + STATE(3020), 1, + sym_comment, + ACTIONS(6009), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2241), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6012), 1, - anon_sym_finally, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3024), 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, + [94084] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3021), 1, sym_comment, - ACTIONS(1862), 12, - anon_sym_catch, + ACTIONS(5227), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220867,20 +221777,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, - [94528] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94108] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5645), 1, - aux_sym__immediate_decimal_token5, - STATE(3025), 1, - sym_comment, - ACTIONS(1792), 3, - sym_identifier, + ACTIONS(2251), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1790), 11, + ACTIONS(6011), 1, + anon_sym_DOT_DOT2, + STATE(3022), 1, + sym_comment, + ACTIONS(6013), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2249), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -220890,21 +221804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [94556] = 6, - ACTIONS(103), 1, + [94138] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - STATE(3026), 1, - sym_comment, - STATE(5483), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2136), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2138), 11, + ACTIONS(6015), 1, + anon_sym_catch, + ACTIONS(6017), 1, + anon_sym_finally, + ACTIONS(6019), 1, sym__newline, + STATE(2972), 1, + aux_sym__repeat_newline, + STATE(3023), 1, + sym_comment, + ACTIONS(6022), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220915,18 +221828,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, - [94586] = 5, + anon_sym_RPAREN, + [94170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5799), 1, - anon_sym_AT2, - STATE(3027), 1, + STATE(3024), 1, sym_comment, - STATE(3369), 1, - sym_param_completer, - ACTIONS(5780), 13, + ACTIONS(5381), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220938,18 +221847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [94614] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94194] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6015), 1, - anon_sym_COLON, - STATE(3028), 1, + STATE(3025), 1, sym_comment, - STATE(3560), 1, - sym_param_type, - STATE(4774), 1, - aux_sym__repeat_newline, - ACTIONS(5543), 12, + ACTIONS(5227), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -220962,17 +221868,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, - [94644] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94218] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6017), 1, - anon_sym_LT, - STATE(3029), 1, + ACTIONS(2662), 1, + anon_sym_DASH2, + STATE(3026), 1, sym_comment, - ACTIONS(5302), 14, - ts_builtin_sym_end, + ACTIONS(2660), 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, + [94244] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5235), 1, + anon_sym_EQ2, + STATE(3027), 1, + sym_comment, + ACTIONS(5826), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220983,21 +221913,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_AT2, - [94670] = 7, + anon_sym_RBRACE, + anon_sym_COLON2, + [94270] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6019), 1, - anon_sym_catch, - ACTIONS(6021), 1, - anon_sym_finally, - ACTIONS(6023), 1, + STATE(3028), 1, + sym_comment, + ACTIONS(1856), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1854), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(3002), 1, - aux_sym__repeat_newline, - STATE(3030), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [94296] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3029), 1, sym_comment, - ACTIONS(6026), 11, + ACTIONS(5381), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221008,15 +221955,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, - [94702] = 3, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94320] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3031), 1, + ACTIONS(5330), 1, + anon_sym_EQ2, + STATE(3030), 1, sym_comment, - ACTIONS(6028), 15, - anon_sym_EQ, + ACTIONS(5842), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221027,20 +221978,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_GT2, anon_sym_RBRACE, - [94726] = 4, - ACTIONS(103), 1, + anon_sym_COLON2, + [94346] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3032), 1, - sym_comment, - ACTIONS(5300), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5887), 13, + ACTIONS(5968), 1, sym__newline, + STATE(710), 1, + aux_sym__pipe_separator, + STATE(3031), 1, + sym_comment, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(5971), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(6024), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221050,14 +222005,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, - [94752] = 3, + [94378] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3033), 1, + ACTIONS(5796), 1, + anon_sym_and2, + ACTIONS(5798), 1, + anon_sym_xor2, + ACTIONS(6027), 1, + anon_sym_or2, + STATE(3032), 1, sym_comment, - ACTIONS(5308), 15, + ACTIONS(5680), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -221070,17 +222029,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, + [94408] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5794), 1, anon_sym_and2, + ACTIONS(5800), 1, anon_sym_xor2, + ACTIONS(6029), 1, anon_sym_or2, - [94776] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2481), 1, - sym__space, - STATE(3034), 1, + STATE(3033), 1, sym_comment, - ACTIONS(2483), 13, + ACTIONS(5790), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221092,16 +222053,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, - [94801] = 4, - ACTIONS(103), 1, + [94438] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2413), 1, - sym__space, - STATE(3035), 1, + ACTIONS(5630), 1, + anon_sym_COLON, + ACTIONS(6031), 1, + anon_sym_EQ, + STATE(3034), 1, sym_comment, - ACTIONS(2415), 13, + STATE(3591), 1, + sym_param_type, + STATE(4674), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221113,16 +222078,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, - [94826] = 4, - ACTIONS(103), 1, + [94470] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2417), 1, - sym__space, - STATE(3036), 1, + STATE(3035), 1, sym_comment, - ACTIONS(2419), 13, + ACTIONS(4764), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221134,16 +222096,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, - [94851] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94494] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2421), 1, - sym__space, - STATE(3037), 1, + STATE(3036), 1, sym_comment, - ACTIONS(2423), 13, + ACTIONS(5706), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221155,16 +222117,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, - [94876] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94518] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2578), 1, + ACTIONS(5672), 1, sym__space, - STATE(3038), 1, + STATE(2934), 1, + aux_sym_attribute_repeat1, + STATE(3037), 1, sym_comment, - ACTIONS(2580), 13, + ACTIONS(6033), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221178,14 +222143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94901] = 4, + [94546] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2437), 1, + ACTIONS(6037), 1, sym__space, - STATE(3039), 1, + STATE(3038), 2, sym_comment, - ACTIONS(2439), 13, + aux_sym_attribute_repeat1, + ACTIONS(6035), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221199,41 +222165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94926] = 10, + [94572] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(3040), 1, - sym_comment, - STATE(4183), 1, - sym__immediate_decimal, - ACTIONS(6030), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6032), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1681), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [94963] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2441), 1, - sym__space, - STATE(3041), 1, + STATE(3039), 1, sym_comment, - ACTIONS(2443), 13, + ACTIONS(5708), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221245,16 +222183,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, - [94988] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94596] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2445), 1, - sym__space, - STATE(3042), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + STATE(3040), 1, sym_comment, - ACTIONS(2447), 13, + STATE(4970), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5696), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5694), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221266,62 +222210,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, - [95013] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(847), 1, - anon_sym_DASH2, - STATE(3043), 1, - sym_comment, - ACTIONS(968), 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, - [95038] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - anon_sym_DASH2, - STATE(3044), 1, - sym_comment, - ACTIONS(1699), 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, - [95063] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6034), 1, - anon_sym_finally, - ACTIONS(6036), 1, - sym__newline, - STATE(3045), 1, + [94626] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3041), 1, sym_comment, - STATE(3083), 1, - aux_sym__repeat_newline, - ACTIONS(6039), 11, + ACTIONS(2570), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2572), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221332,36 +222231,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, - [95092] = 4, + sym__unquoted_pattern, + [94652] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2150), 1, - anon_sym_DASH2, - STATE(3046), 1, - sym_comment, - ACTIONS(2148), 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, - [95117] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2477), 1, - sym__space, - STATE(3047), 1, + ACTIONS(5796), 1, + anon_sym_and2, + STATE(3042), 1, sym_comment, - ACTIONS(2479), 13, + ACTIONS(5706), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221373,16 +222252,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, - [95142] = 4, + anon_sym_xor2, + anon_sym_or2, + [94678] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2477), 1, + ACTIONS(5672), 1, sym__space, - STATE(3048), 1, + STATE(3038), 1, + aux_sym_attribute_repeat1, + STATE(3043), 1, sym_comment, - ACTIONS(2479), 13, + ACTIONS(6040), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221396,18 +222277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95167] = 6, + [94706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6041), 1, - anon_sym_finally, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3049), 1, + ACTIONS(5794), 1, + anon_sym_and2, + STATE(3044), 1, sym_comment, - ACTIONS(1862), 11, + ACTIONS(5708), 14, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221418,40 +222297,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, - [95196] = 4, + anon_sym_xor2, + anon_sym_or2, + [94732] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, - anon_sym_DASH2, - STATE(3050), 1, + ACTIONS(5796), 1, + anon_sym_and2, + ACTIONS(5798), 1, + anon_sym_xor2, + STATE(3045), 1, sym_comment, - ACTIONS(2545), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5706), 13, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95221] = 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, + [94760] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, - anon_sym_finally, - ACTIONS(6046), 1, - sym__newline, - STATE(3051), 1, + ACTIONS(5794), 1, + anon_sym_and2, + ACTIONS(5800), 1, + anon_sym_xor2, + STATE(3046), 1, sym_comment, - STATE(3086), 1, - aux_sym__repeat_newline, - ACTIONS(6049), 11, + ACTIONS(5708), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221462,61 +222344,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + [94788] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5828), 1, + sym_identifier, + ACTIONS(5830), 1, + sym__newline, + ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(6042), 1, anon_sym_RPAREN, - [95250] = 4, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(3047), 1, + sym_comment, + STATE(3283), 1, + aux_sym_parameter_parens_repeat1, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3577), 1, + aux_sym__repeat_newline, + STATE(3849), 1, + sym_parameter, + [94840] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2626), 1, + ACTIONS(6044), 1, + anon_sym_AT2, + ACTIONS(6046), 1, anon_sym_DASH2, - STATE(3052), 1, + STATE(3048), 1, sym_comment, - ACTIONS(2624), 13, + STATE(3469), 1, + sym_param_completer, + ACTIONS(5786), 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, - [95275] = 4, + [94869] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2485), 1, - sym__space, - STATE(3053), 1, - sym_comment, - ACTIONS(2487), 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, - [95300] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6051), 1, - anon_sym_finally, - ACTIONS(6053), 1, + ACTIONS(5895), 1, sym__newline, - STATE(3054), 1, + ACTIONS(5897), 1, + sym__space, + STATE(3049), 1, sym_comment, - STATE(3080), 1, - aux_sym__repeat_newline, - ACTIONS(6056), 11, + STATE(3051), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6048), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221528,45 +222426,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95329] = 13, + [94898] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(1620), 1, + sym__entry_separator, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1766), 1, anon_sym_DOLLAR, - ACTIONS(6058), 1, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6052), 1, anon_sym_DOT, - ACTIONS(6060), 1, + ACTIONS(6054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6062), 1, + ACTIONS(6056), 1, aux_sym__immediate_decimal_token2, - STATE(3055), 1, + STATE(3050), 1, sym_comment, - STATE(3845), 1, + STATE(3863), 1, sym__immediate_decimal, - ACTIONS(1633), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6064), 2, + ACTIONS(1622), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6058), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4113), 2, + STATE(4169), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95372] = 4, + [94941] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(6060), 1, + sym__newline, + ACTIONS(6063), 1, sym__space, - STATE(3056), 1, + STATE(3051), 2, sym_comment, - ACTIONS(1889), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6066), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221578,78 +222478,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [95397] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2553), 1, - anon_sym_DASH2, - STATE(3057), 1, - sym_comment, - ACTIONS(2551), 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, - [95422] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2560), 1, - anon_sym_DASH2, - STATE(3058), 1, - sym_comment, - ACTIONS(2558), 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, - [95447] = 4, + [94968] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2564), 1, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(5918), 1, anon_sym_DASH2, - STATE(3059), 1, + STATE(3052), 1, sym_comment, - ACTIONS(2562), 13, + STATE(5044), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5916), 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, - [95472] = 4, + [94997] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2527), 1, + ACTIONS(2368), 1, sym__space, - STATE(3060), 1, + STATE(3053), 1, sym_comment, - ACTIONS(2529), 13, + ACTIONS(2370), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221663,14 +222522,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95497] = 4, + [95022] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2531), 1, + ACTIONS(2241), 1, sym__space, - STATE(3061), 1, + STATE(3054), 1, sym_comment, - ACTIONS(2533), 13, + ACTIONS(2243), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221684,14 +222543,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95522] = 4, + [95047] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(2249), 1, sym__space, - STATE(3062), 1, + STATE(3055), 1, sym_comment, - ACTIONS(2666), 13, + ACTIONS(2251), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221705,165 +222564,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95547] = 4, + [95072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2411), 1, - anon_sym_DASH2, - STATE(3063), 1, + STATE(3056), 1, sym_comment, - ACTIONS(2409), 13, + ACTIONS(5281), 14, + ts_builtin_sym_end, 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95572] = 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_LBRACE, + [95095] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2415), 1, - anon_sym_DASH2, - STATE(3064), 1, + ACTIONS(2257), 1, + sym__space, + STATE(3057), 1, sym_comment, - ACTIONS(2413), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2259), 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, - [95597] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95120] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_DASH2, - STATE(3065), 1, + ACTIONS(4639), 1, + sym__space, + STATE(3058), 1, sym_comment, - ACTIONS(2417), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(4637), 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, - [95622] = 4, + anon_sym_RBRACE, + [95145] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2423), 1, - anon_sym_DASH2, - STATE(3066), 1, - sym_comment, - ACTIONS(2421), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5802), 1, sym__newline, + STATE(710), 1, + aux_sym__pipe_separator, + STATE(3059), 1, + sym_comment, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(5805), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(2138), 9, 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, - [95647] = 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, + [95176] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2439), 1, - anon_sym_DASH2, - STATE(3067), 1, + STATE(3060), 1, sym_comment, - ACTIONS(2437), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2336), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2338), 11, 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95672] = 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, + [95201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_DASH2, - STATE(3068), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2441), 13, + ACTIONS(2572), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2570), 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, - [95697] = 4, + anon_sym_LPAREN2, + [95226] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2447), 1, + ACTIONS(1588), 1, anon_sym_DASH2, - STATE(3069), 1, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern_in_record, + STATE(3062), 1, sym_comment, - ACTIONS(2445), 13, + ACTIONS(1714), 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, - [95722] = 6, - ACTIONS(103), 1, + [95255] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__space, - ACTIONS(6066), 1, - ts_builtin_sym_end, - STATE(3070), 1, + STATE(3063), 1, sym_comment, - STATE(3089), 1, - aux_sym_attribute_repeat1, - ACTIONS(5942), 11, + ACTIONS(5387), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221875,18 +222734,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, - [95751] = 6, + anon_sym_AT2, + [95278] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(5946), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2092), 1, anon_sym_DASH2, - STATE(3071), 1, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + STATE(3064), 1, sym_comment, - STATE(5003), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5944), 11, + ACTIONS(2090), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221898,18 +222758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95780] = 6, - ACTIONS(103), 1, + [95307] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5881), 1, - ts_builtin_sym_end, - ACTIONS(5883), 1, - sym__space, - STATE(3072), 1, + STATE(3065), 1, sym_comment, - STATE(3108), 1, - aux_sym_attribute_repeat1, - ACTIONS(5428), 11, + ACTIONS(5389), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221921,12 +222777,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, - [95809] = 3, + anon_sym_AT2, + [95330] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3073), 1, + STATE(3066), 1, sym_comment, - ACTIONS(5392), 14, + ACTIONS(5391), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -221941,60 +222798,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_AT2, - [95832] = 4, + [95353] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2576), 1, anon_sym_DASH2, - STATE(3074), 1, + STATE(3067), 1, sym_comment, - ACTIONS(2477), 13, + ACTIONS(2574), 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, - [95857] = 4, + [95382] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2394), 1, + sym__space, + STATE(3068), 1, + sym_comment, + ACTIONS(2396), 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, + [95407] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(1955), 1, anon_sym_DASH2, - STATE(3075), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_record, + STATE(3069), 1, sym_comment, - ACTIONS(2477), 13, + ACTIONS(1953), 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, - [95882] = 6, + [95436] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6068), 1, - anon_sym_else, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3076), 1, + STATE(3070), 1, sym_comment, - ACTIONS(1862), 11, + ACTIONS(5393), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222005,61 +222884,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, - [95911] = 4, + anon_sym_AT2, + [95459] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2483), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2586), 1, anon_sym_DASH2, - STATE(3077), 1, + ACTIONS(2588), 1, + anon_sym_LPAREN2, + STATE(3071), 1, sym_comment, - ACTIONS(2481), 13, + ACTIONS(2584), 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, - [95936] = 4, + [95488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2487), 1, + ACTIONS(2592), 1, anon_sym_DASH2, - STATE(3078), 1, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern_in_record, + STATE(3072), 1, sym_comment, - ACTIONS(2485), 13, + ACTIONS(2590), 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, - [95961] = 6, - ACTIONS(3), 1, + [95517] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6071), 1, - anon_sym_finally, - ACTIONS(6073), 1, - sym__newline, - STATE(3079), 1, + ACTIONS(2414), 1, + sym__space, + STATE(3073), 1, sym_comment, - STATE(3091), 1, - aux_sym__repeat_newline, - ACTIONS(6076), 11, + ACTIONS(2416), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222071,18 +222951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95990] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95542] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6078), 1, - anon_sym_finally, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3080), 1, + ACTIONS(2418), 1, + sym__space, + STATE(3074), 1, sym_comment, - ACTIONS(1862), 11, + ACTIONS(2420), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222094,35 +222972,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96019] = 6, + anon_sym_RBRACE, + [95567] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6081), 1, - anon_sym_finally, - ACTIONS(6083), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + ACTIONS(6068), 1, + anon_sym_DOT, + STATE(3075), 1, + sym_comment, + STATE(3921), 1, + sym__immediate_decimal, + ACTIONS(6070), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6072), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3968), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 3, sym__newline, - STATE(3081), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [95606] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2600), 1, + anon_sym_DASH2, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_record, + STATE(3076), 1, sym_comment, - STATE(3093), 1, - aux_sym__repeat_newline, - ACTIONS(6086), 11, - anon_sym_SEMI, + ACTIONS(2598), 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, - [96048] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95635] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3082), 1, + STATE(3077), 1, sym_comment, - ACTIONS(1907), 14, + ACTIONS(5460), 14, + ts_builtin_sym_end, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -222135,20 +223043,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, - [96071] = 6, + anon_sym_AT2, + [95658] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6088), 1, - anon_sym_finally, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3083), 1, + STATE(3078), 1, sym_comment, - ACTIONS(1862), 11, + ACTIONS(5383), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222159,84 +223063,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [96100] = 4, + anon_sym_AT2, + [95681] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2529), 1, + ACTIONS(1218), 1, anon_sym_DASH2, - STATE(3084), 1, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern_in_record, + STATE(3079), 1, sym_comment, - ACTIONS(2527), 13, + ACTIONS(1216), 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, - [96125] = 4, + [95710] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(1226), 1, anon_sym_DASH2, - STATE(3085), 1, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern_in_record, + STATE(3080), 1, sym_comment, - ACTIONS(2531), 13, + ACTIONS(1234), 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, - [96150] = 6, + [95739] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6091), 1, - anon_sym_finally, - ACTIONS(6093), 1, - sym__newline, - STATE(3086), 1, + ACTIONS(6044), 1, + anon_sym_AT2, + ACTIONS(6074), 1, + anon_sym_DASH2, + STATE(3081), 1, sym_comment, - STATE(3095), 1, - aux_sym__repeat_newline, - ACTIONS(6096), 11, - anon_sym_SEMI, + STATE(3580), 1, + sym_param_completer, + ACTIONS(5788), 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, - [96179] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95768] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6098), 1, - anon_sym_finally, - ACTIONS(6100), 1, - sym__newline, - STATE(3087), 1, + ACTIONS(2406), 1, + sym__space, + STATE(3082), 1, sym_comment, - STATE(3096), 1, - aux_sym__repeat_newline, - ACTIONS(6103), 11, + ACTIONS(2408), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222248,13 +223153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96208] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95793] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3088), 1, + ACTIONS(2410), 1, + sym__space, + STATE(3083), 1, sym_comment, - ACTIONS(2578), 14, - anon_sym_EQ, + ACTIONS(2412), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222268,17 +223175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96231] = 5, + [95818] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6105), 1, - ts_builtin_sym_end, - ACTIONS(6107), 1, + ACTIONS(2450), 1, sym__space, - STATE(3089), 2, + STATE(3084), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5899), 11, + ACTIONS(2452), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222290,13 +223194,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, - [96258] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95843] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3090), 1, + ACTIONS(2454), 1, + sym__space, + STATE(3085), 1, sym_comment, - ACTIONS(1887), 14, - anon_sym_EQ, + ACTIONS(2456), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222310,18 +223217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96281] = 6, - ACTIONS(3), 1, + [95868] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6110), 1, - anon_sym_finally, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3091), 1, + ACTIONS(2458), 1, + sym__space, + STATE(3086), 1, sym_comment, - ACTIONS(1862), 11, + ACTIONS(2460), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222333,13 +223237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96310] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95893] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3092), 1, + ACTIONS(2462), 1, + sym__space, + STATE(3087), 1, sym_comment, - ACTIONS(2664), 14, - anon_sym_EQ, + ACTIONS(2464), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222353,18 +223259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96333] = 6, - ACTIONS(3), 1, + [95918] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6113), 1, - anon_sym_finally, - ACTIONS(6115), 1, - sym__newline, - STATE(3093), 1, + ACTIONS(2466), 1, + sym__space, + STATE(3088), 1, sym_comment, - STATE(3097), 1, - aux_sym__repeat_newline, - ACTIONS(6118), 11, + ACTIONS(2468), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222376,18 +223279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96362] = 6, + anon_sym_RBRACE, + [95943] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, - anon_sym_finally, - ACTIONS(6122), 1, + ACTIONS(6076), 1, + anon_sym_else, + ACTIONS(6078), 1, sym__newline, - STATE(3094), 1, + STATE(3089), 1, sym_comment, - STATE(3098), 1, + STATE(3131), 1, aux_sym__repeat_newline, - ACTIONS(6125), 11, + ACTIONS(6081), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222399,18 +223303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96391] = 6, + [95972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1880), 1, sym__newline, - ACTIONS(6127), 1, - anon_sym_finally, - STATE(485), 1, + ACTIONS(6083), 1, + anon_sym_else, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3095), 1, + STATE(3090), 1, sym_comment, - ACTIONS(1862), 11, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222422,18 +223326,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96420] = 6, + [96001] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6130), 1, - anon_sym_finally, - ACTIONS(6132), 1, + ACTIONS(1880), 1, sym__newline, - STATE(3096), 1, - sym_comment, - STATE(3099), 1, + ACTIONS(6086), 1, + anon_sym_else, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(6135), 11, + STATE(3091), 1, + sym_comment, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222445,19 +223349,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96449] = 6, + [96030] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(5968), 1, sym__newline, - ACTIONS(6137), 1, - anon_sym_finally, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3097), 1, + STATE(710), 1, + aux_sym__pipe_separator, + STATE(3092), 1, sym_comment, - ACTIONS(1862), 11, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(5971), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2138), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222467,19 +223373,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, - [96478] = 6, + [96061] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6140), 1, + ACTIONS(6089), 1, anon_sym_finally, - ACTIONS(6142), 1, + ACTIONS(6091), 1, sym__newline, - STATE(3098), 1, + STATE(3093), 1, sym_comment, - STATE(3101), 1, + STATE(3132), 1, aux_sym__repeat_newline, - ACTIONS(6145), 11, + ACTIONS(6094), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222491,71 +223396,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96507] = 6, + [96090] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6147), 1, + ACTIONS(6096), 1, anon_sym_finally, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3099), 1, - sym_comment, - ACTIONS(1862), 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, - [96536] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1798), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6152), 1, - anon_sym_DOT, - ACTIONS(6154), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6156), 1, - aux_sym__immediate_decimal_token2, - STATE(3100), 1, - sym_comment, - STATE(3830), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6158), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4150), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96579] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(6098), 1, sym__newline, - ACTIONS(6160), 1, - anon_sym_finally, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3101), 1, + STATE(3094), 1, sym_comment, - ACTIONS(1862), 11, + STATE(3133), 1, + aux_sym__repeat_newline, + ACTIONS(6101), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222567,18 +223419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96608] = 6, + [96119] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5883), 1, + ACTIONS(884), 1, sym__space, - ACTIONS(6163), 1, - ts_builtin_sym_end, - STATE(3070), 1, - aux_sym_attribute_repeat1, - STATE(3102), 1, + STATE(3095), 1, sym_comment, - ACTIONS(5983), 11, + ACTIONS(785), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222590,16 +223438,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, - [96637] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96144] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6165), 1, + ACTIONS(6103), 1, anon_sym_catch, - ACTIONS(6167), 1, + ACTIONS(6105), 1, anon_sym_finally, - STATE(3103), 1, + STATE(3096), 1, sym_comment, - ACTIONS(5910), 12, + ACTIONS(5997), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222612,62 +223462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96664] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3104), 1, - sym_comment, - ACTIONS(2362), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2360), 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, - [96689] = 6, - ACTIONS(3), 1, + [96171] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - anon_sym_DASH2, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_record, - STATE(3105), 1, + ACTIONS(1714), 1, + sym__space, + STATE(3097), 1, sym_comment, - ACTIONS(1699), 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, - [96718] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6169), 1, - anon_sym_else, - ACTIONS(6171), 1, + ACTIONS(1588), 13, sym__newline, - STATE(3106), 1, - sym_comment, - STATE(3164), 1, - aux_sym__repeat_newline, - ACTIONS(6174), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222679,18 +223482,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96747] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [96196] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6176), 1, - anon_sym_else, - ACTIONS(6178), 1, - sym__newline, - STATE(3107), 1, + ACTIONS(2350), 1, + sym__space, + STATE(3098), 1, sym_comment, - STATE(3165), 1, - aux_sym__repeat_newline, - ACTIONS(6181), 11, + ACTIONS(2352), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222702,19 +223503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96776] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + [96221] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__space, - ACTIONS(6183), 1, - ts_builtin_sym_end, - STATE(3089), 1, - aux_sym_attribute_repeat1, - STATE(3108), 1, - sym_comment, - ACTIONS(5840), 11, + ACTIONS(6107), 1, + anon_sym_finally, + ACTIONS(6109), 1, sym__newline, + STATE(3099), 1, + sym_comment, + STATE(3136), 1, + aux_sym__repeat_newline, + ACTIONS(6112), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222725,18 +223526,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, - [96805] = 6, + anon_sym_RPAREN, + [96250] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6185), 1, - anon_sym_else, - ACTIONS(6187), 1, + ACTIONS(1880), 1, sym__newline, - STATE(3109), 1, - sym_comment, - STATE(3166), 1, + ACTIONS(6114), 1, + anon_sym_finally, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(6190), 11, + STATE(3100), 1, + sym_comment, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222748,41 +223550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96834] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1974), 1, - anon_sym_DASH2, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - STATE(3110), 1, - sym_comment, - ACTIONS(1972), 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, - [96863] = 6, + [96279] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6192), 1, + ACTIONS(6117), 1, anon_sym_finally, - ACTIONS(6194), 1, + ACTIONS(6119), 1, sym__newline, - STATE(3111), 1, + STATE(3101), 1, sym_comment, - STATE(3171), 1, + STATE(3137), 1, aux_sym__repeat_newline, - ACTIONS(6197), 11, + ACTIONS(6122), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222794,160 +223573,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96892] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2654), 1, - anon_sym_DASH2, - STATE(3112), 1, - sym_comment, - ACTIONS(2652), 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, - [96921] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - anon_sym_DASH2, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_record, - STATE(3113), 1, - sym_comment, - ACTIONS(1982), 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, - [96950] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2574), 1, - anon_sym_DASH2, - ACTIONS(2576), 1, - anon_sym_LPAREN2, - STATE(3114), 1, - sym_comment, - ACTIONS(2572), 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, - [96979] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DASH2, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_record, - STATE(3115), 1, - sym_comment, - ACTIONS(2608), 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, - [97008] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - ACTIONS(6199), 1, - anon_sym_DOT, - STATE(3116), 1, - sym_comment, - STATE(3868), 1, - sym__immediate_decimal, - ACTIONS(6201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6203), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3899), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97047] = 6, + [96308] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2618), 1, - anon_sym_DASH2, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - sym__unquoted_pattern_in_record, - STATE(3117), 1, - sym_comment, - ACTIONS(2616), 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, - [97076] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5118), 1, - sym__unquoted_pattern, - STATE(3118), 1, + STATE(3102), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(5385), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(847), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222959,62 +223592,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, - [97103] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DASH2, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern_in_record, - STATE(3119), 1, - sym_comment, - ACTIONS(1226), 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, - [97132] = 6, - ACTIONS(3), 1, + anon_sym_AT2, + [96331] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_DASH2, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern_in_record, - STATE(3120), 1, + ACTIONS(2372), 1, + sym__space, + STATE(3103), 1, sym_comment, - ACTIONS(1234), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2374), 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, - [97161] = 4, + anon_sym_RBRACE, + [96356] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3121), 1, - sym_comment, - ACTIONS(5249), 3, - ts_builtin_sym_end, + ACTIONS(2630), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5818), 11, + STATE(3104), 1, + sym_comment, + ACTIONS(2632), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223026,21 +223633,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, - [97186] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96381] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5861), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(3105), 1, + sym_comment, + STATE(4291), 1, + sym__immediate_decimal, + ACTIONS(6124), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6126), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(768), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 4, + anon_sym_if, sym__newline, - STATE(728), 1, - aux_sym__pipe_separator, - STATE(3122), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [96418] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1893), 1, + sym__space, + STATE(3106), 1, sym_comment, - STATE(3592), 1, - aux_sym__repeat_newline, - ACTIONS(5864), 2, - ts_builtin_sym_end, + ACTIONS(1895), 13, + sym__newline, anon_sym_SEMI, - ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223050,16 +223681,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, - [97217] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96443] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3123), 1, - sym_comment, - ACTIONS(5298), 3, - ts_builtin_sym_end, + ACTIONS(2426), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5885), 11, + STATE(3107), 1, + sym_comment, + ACTIONS(2428), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223071,16 +223702,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, - [97242] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96468] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3124), 1, - sym_comment, - ACTIONS(5300), 3, - ts_builtin_sym_end, + ACTIONS(2554), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5887), 11, + STATE(3108), 1, + sym_comment, + ACTIONS(2556), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223092,21 +223723,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, - [97267] = 7, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96493] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5794), 1, - sym__newline, - STATE(728), 1, - aux_sym__pipe_separator, - STATE(3125), 1, + STATE(3109), 1, sym_comment, - STATE(3592), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 2, + ACTIONS(5295), 3, ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5885), 11, + sym__newline, anon_sym_SEMI, - ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223116,14 +223746,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, - [97298] = 3, - ACTIONS(3), 1, + [96518] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3126), 1, + ACTIONS(2558), 1, + sym__space, + STATE(3110), 1, sym_comment, - ACTIONS(5302), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2560), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223135,15 +223765,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_AT2, - [97321] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96543] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3127), 1, + ACTIONS(6128), 1, + anon_sym_AT2, + STATE(3111), 1, sym_comment, - ACTIONS(5442), 14, + STATE(3305), 1, + sym_param_completer, + ACTIONS(5788), 12, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223155,15 +223789,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_AT2, - [97344] = 3, - ACTIONS(3), 1, + [96570] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3128), 1, + ACTIONS(2378), 1, + sym__space, + STATE(3112), 1, sym_comment, - ACTIONS(1580), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2380), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223175,15 +223808,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_COLON, - [97367] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96595] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(5346), 1, sym__space, - STATE(3129), 1, + STATE(3113), 1, sym_comment, - ACTIONS(6205), 13, + ACTIONS(5344), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223197,14 +223831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97392] = 4, + [96620] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5511), 1, + ACTIONS(2382), 1, sym__space, - STATE(3130), 1, + STATE(3114), 1, sym_comment, - ACTIONS(5509), 13, + ACTIONS(2384), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223218,14 +223852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97417] = 4, + [96645] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(2386), 1, sym__space, - STATE(3131), 1, + STATE(3115), 1, sym_comment, - ACTIONS(6209), 13, + ACTIONS(2388), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223239,14 +223873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97442] = 4, + [96670] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(2390), 1, sym__space, - STATE(3132), 1, + STATE(3116), 1, sym_comment, - ACTIONS(6213), 13, + ACTIONS(2392), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223260,14 +223894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97467] = 4, + [96695] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6219), 1, + ACTIONS(2668), 1, sym__space, - STATE(3133), 1, + STATE(3117), 1, sym_comment, - ACTIONS(6217), 13, + ACTIONS(2670), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223281,14 +223915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97492] = 4, + [96720] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(2546), 1, sym__space, - STATE(3134), 1, + STATE(3118), 1, sym_comment, - ACTIONS(6221), 13, + ACTIONS(2548), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223302,14 +223936,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97517] = 4, + [96745] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(3119), 1, + sym_comment, + STATE(4211), 1, + sym__immediate_decimal, + ACTIONS(6124), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6126), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [96782] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6227), 1, + ACTIONS(2398), 1, sym__space, - STATE(3135), 1, + STATE(3120), 1, sym_comment, - ACTIONS(6225), 13, + ACTIONS(2400), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223323,14 +223984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97542] = 4, + [96807] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5580), 1, + ACTIONS(2402), 1, sym__space, - STATE(3136), 1, + STATE(3121), 1, sym_comment, - ACTIONS(5578), 13, + ACTIONS(2404), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223344,10 +224005,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97567] = 4, + [96832] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3137), 1, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(5875), 1, + anon_sym_DASH2, + STATE(3122), 1, + sym_comment, + STATE(5044), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5873), 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, + [96861] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3123), 1, sym_comment, ACTIONS(1732), 2, anon_sym_DASH2, @@ -223365,15 +224049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [97592] = 4, + [96886] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3138), 1, + STATE(3124), 1, sym_comment, - ACTIONS(1848), 2, + ACTIONS(1834), 2, anon_sym_DASH2, sym__unquoted_pattern_in_record, - ACTIONS(1846), 12, + ACTIONS(1832), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -223386,15 +224070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [97617] = 4, + [96911] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3139), 1, + STATE(3125), 1, sym_comment, - ACTIONS(1897), 2, + ACTIONS(1921), 2, anon_sym_DASH2, sym__unquoted_pattern_in_record, - ACTIONS(1895), 12, + ACTIONS(1919), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -223407,36 +224091,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [97642] = 6, + [96936] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(5979), 1, + ACTIONS(785), 1, anon_sym_DASH2, - STATE(3140), 1, + STATE(3126), 1, sym_comment, - STATE(5003), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5977), 11, + ACTIONS(884), 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, - [97671] = 3, + [96961] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3127), 1, sym_comment, - ACTIONS(6229), 14, - anon_sym_finally, + ACTIONS(5395), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223448,61 +224131,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97694] = 4, + anon_sym_AT2, + [96984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6231), 1, - anon_sym_finally, - STATE(3142), 1, + ACTIONS(1588), 1, + anon_sym_DASH2, + STATE(3128), 1, sym_comment, - ACTIONS(6233), 13, + ACTIONS(1714), 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, - [97719] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5292), 1, - anon_sym_DOT, - ACTIONS(5294), 1, - aux_sym__immediate_decimal_token5, - STATE(3143), 1, - sym_comment, - ACTIONS(1792), 2, - sym_identifier, + ACTIONS(2352), 1, anon_sym_DASH2, - ACTIONS(1790), 10, + STATE(3129), 1, + sym_comment, + ACTIONS(2350), 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, - [97748] = 3, - ACTIONS(3), 1, + [97034] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3144), 1, - sym_comment, - ACTIONS(5358), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5895), 1, sym__newline, + ACTIONS(5897), 1, + sym__space, + STATE(3049), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3130), 1, + sym_comment, + ACTIONS(6130), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223513,16 +224196,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_AT2, - [97771] = 3, + anon_sym_RPAREN, + [97063] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3145), 1, - sym_comment, - ACTIONS(5403), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1880), 1, sym__newline, + ACTIONS(6132), 1, + anon_sym_else, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3131), 1, + sym_comment, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223533,16 +224219,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_AT2, - [97794] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [97092] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6237), 1, - sym__space, - STATE(3146), 1, - sym_comment, - ACTIONS(6235), 13, + ACTIONS(6135), 1, + anon_sym_finally, + ACTIONS(6137), 1, sym__newline, + STATE(3132), 1, + sym_comment, + STATE(3148), 1, + aux_sym__repeat_newline, + ACTIONS(6140), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223554,15 +224243,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, - [97819] = 3, + [97121] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3147), 1, - sym_comment, - ACTIONS(6239), 14, - anon_sym_EQ, + ACTIONS(1880), 1, sym__newline, + ACTIONS(6142), 1, + anon_sym_finally, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3133), 1, + sym_comment, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223574,15 +224266,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, - [97842] = 3, + [97150] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3148), 1, - sym_comment, - ACTIONS(6241), 14, + ACTIONS(6145), 1, anon_sym_finally, + ACTIONS(6147), 1, sym__newline, + STATE(3134), 1, + sym_comment, + STATE(3149), 1, + aux_sym__repeat_newline, + ACTIONS(6150), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223594,15 +224289,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, - [97865] = 4, + [97179] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6246), 1, + ACTIONS(2470), 1, sym__space, - STATE(3149), 1, + STATE(3135), 1, sym_comment, - ACTIONS(6244), 13, + ACTIONS(2472), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223616,18 +224310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97890] = 5, + [97204] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6248), 1, - anon_sym_AT2, - STATE(3150), 1, - sym_comment, - STATE(3302), 1, - sym_param_completer, - ACTIONS(5774), 12, - ts_builtin_sym_end, + ACTIONS(1880), 1, sym__newline, + ACTIONS(6152), 1, + anon_sym_finally, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3136), 1, + sym_comment, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223638,14 +224332,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, - [97917] = 3, + anon_sym_RPAREN, + [97233] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3151), 1, - sym_comment, - ACTIONS(6250), 14, - anon_sym_EQ, + ACTIONS(6155), 1, + anon_sym_finally, + ACTIONS(6157), 1, sym__newline, + STATE(3137), 1, + sym_comment, + STATE(3151), 1, + aux_sym__repeat_newline, + ACTIONS(6160), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223657,15 +224356,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, - [97940] = 3, + [97262] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3152), 1, - sym_comment, - ACTIONS(6250), 14, - anon_sym_EQ, + ACTIONS(6162), 1, + anon_sym_finally, + ACTIONS(6164), 1, sym__newline, + STATE(3138), 1, + sym_comment, + STATE(3152), 1, + aux_sym__repeat_newline, + ACTIONS(6167), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223677,65 +224379,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, - [97963] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(6254), 1, - anon_sym_DASH2, - STATE(3153), 1, - sym_comment, - STATE(5277), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6252), 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, - [97992] = 6, - ACTIONS(3), 1, + [97291] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(6258), 1, - anon_sym_DASH2, - STATE(3154), 1, + ACTIONS(2470), 1, + sym__space, + STATE(3139), 1, sym_comment, - STATE(5277), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6256), 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, - [98021] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_else, - ACTIONS(6262), 1, + ACTIONS(2472), 13, sym__newline, - STATE(3109), 1, - aux_sym__repeat_newline, - STATE(3155), 1, - sym_comment, - ACTIONS(6265), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223747,13 +224399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98050] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97316] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3156), 1, + ACTIONS(6171), 1, + sym__space, + STATE(3140), 1, sym_comment, - ACTIONS(6267), 14, - anon_sym_EQ, + ACTIONS(6169), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223767,17 +224421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98073] = 5, - ACTIONS(3), 1, + [97341] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6248), 1, - anon_sym_AT2, - STATE(3157), 1, + ACTIONS(6175), 1, + sym__space, + STATE(3141), 1, sym_comment, - STATE(3297), 1, - sym_param_completer, - ACTIONS(5778), 12, - ts_builtin_sym_end, + ACTIONS(6173), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223789,60 +224440,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, - [98100] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97366] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(6271), 1, + ACTIONS(2374), 1, anon_sym_DASH2, - STATE(3158), 1, + STATE(3142), 1, sym_comment, - STATE(5277), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6269), 11, + ACTIONS(2372), 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, - [98129] = 6, + [97391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(6275), 1, + ACTIONS(2632), 1, anon_sym_DASH2, - STATE(3159), 1, + STATE(3143), 1, sym_comment, - STATE(5277), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6273), 11, + ACTIONS(2630), 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, - [98158] = 3, - ACTIONS(3), 1, + [97416] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3160), 1, + ACTIONS(2474), 1, + sym__space, + STATE(3144), 1, sym_comment, - ACTIONS(5283), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2476), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223854,15 +224503,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_LBRACE, - [98181] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97441] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3161), 1, + ACTIONS(2478), 1, + sym__space, + STATE(3145), 1, sym_comment, - ACTIONS(5223), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2480), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223874,39 +224524,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACE, - [98204] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97466] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1620), 1, + sym__space, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(6177), 1, + anon_sym_DOT, + ACTIONS(6179), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6181), 1, + aux_sym__immediate_decimal_token2, + STATE(3146), 1, + sym_comment, + STATE(3872), 1, + sym__immediate_decimal, + ACTIONS(1622), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4127), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [97509] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3162), 1, + ACTIONS(5336), 1, + anon_sym_DOT, + ACTIONS(5338), 1, + aux_sym__immediate_decimal_token5, + STATE(3147), 1, sym_comment, - ACTIONS(5249), 14, - ts_builtin_sym_end, + ACTIONS(1786), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1784), 10, anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACE, - [98227] = 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, + [97538] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6277), 1, - anon_sym_else, - ACTIONS(6279), 1, + ACTIONS(1880), 1, sym__newline, - STATE(3163), 1, - sym_comment, - STATE(3236), 1, + ACTIONS(6185), 1, + anon_sym_finally, + STATE(503), 1, aux_sym__repeat_newline, - ACTIONS(6282), 11, + STATE(3148), 1, + sym_comment, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223918,18 +224602,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98256] = 6, + [97567] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_else, - ACTIONS(6286), 1, + ACTIONS(6188), 1, + anon_sym_finally, + ACTIONS(6190), 1, sym__newline, - STATE(3164), 1, + STATE(3149), 1, sym_comment, - STATE(3238), 1, + STATE(3154), 1, aux_sym__repeat_newline, - ACTIONS(6289), 11, + ACTIONS(6193), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223941,18 +224625,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98285] = 6, + [97596] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_else, - ACTIONS(6293), 1, + ACTIONS(6195), 1, + anon_sym_finally, + ACTIONS(6197), 1, sym__newline, - STATE(3165), 1, + STATE(3150), 1, sym_comment, - STATE(3240), 1, + STATE(3155), 1, aux_sym__repeat_newline, - ACTIONS(6296), 11, + ACTIONS(6200), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223964,18 +224648,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98314] = 6, + [97625] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1880), 1, sym__newline, - ACTIONS(6298), 1, - anon_sym_else, - STATE(485), 1, + ACTIONS(6202), 1, + anon_sym_finally, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3166), 1, + STATE(3151), 1, sym_comment, - ACTIONS(1862), 11, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223987,18 +224671,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98343] = 6, + [97654] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6301), 1, + ACTIONS(6205), 1, anon_sym_finally, - ACTIONS(6303), 1, + ACTIONS(6207), 1, sym__newline, - STATE(3054), 1, - aux_sym__repeat_newline, - STATE(3167), 1, + STATE(3152), 1, sym_comment, - ACTIONS(6306), 11, + STATE(3156), 1, + aux_sym__repeat_newline, + ACTIONS(6210), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224010,18 +224694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98372] = 6, - ACTIONS(3), 1, + [97683] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6308), 1, - anon_sym_finally, - ACTIONS(6310), 1, - sym__newline, - STATE(3079), 1, - aux_sym__repeat_newline, - STATE(3168), 1, + ACTIONS(1885), 1, + sym__space, + STATE(3153), 1, sym_comment, - ACTIONS(6313), 11, + ACTIONS(1887), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224033,18 +224714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98401] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + [97708] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5786), 1, + ACTIONS(1880), 1, sym__newline, - ACTIONS(5788), 1, - sym__space, - STATE(3169), 1, + ACTIONS(6212), 1, + anon_sym_finally, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3154), 1, sym_comment, - STATE(3177), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6315), 11, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224056,18 +224738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98430] = 6, + [97737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6317), 1, + ACTIONS(6215), 1, anon_sym_finally, - ACTIONS(6319), 1, + ACTIONS(6217), 1, sym__newline, - STATE(3045), 1, - aux_sym__repeat_newline, - STATE(3170), 1, + STATE(3155), 1, sym_comment, - ACTIONS(6322), 11, + STATE(3157), 1, + aux_sym__repeat_newline, + ACTIONS(6220), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224079,18 +224761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98459] = 6, + [97766] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6324), 1, - anon_sym_finally, - ACTIONS(6326), 1, + ACTIONS(1880), 1, sym__newline, - STATE(3049), 1, + ACTIONS(6222), 1, + anon_sym_finally, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3171), 1, + STATE(3156), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224102,15 +224784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98488] = 3, + [97795] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3172), 1, - sym_comment, - ACTIONS(5298), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1880), 1, sym__newline, + ACTIONS(6225), 1, + anon_sym_finally, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3157), 1, + sym_comment, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224121,42 +224806,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_LBRACE, - [98511] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1607), 1, - anon_sym_DOT, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(3173), 1, - sym_comment, - STATE(3898), 1, - sym__immediate_decimal, - ACTIONS(5857), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5859), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3897), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [98548] = 3, + anon_sym_RPAREN, + [97824] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3174), 1, + ACTIONS(6128), 1, + anon_sym_AT2, + STATE(3158), 1, sym_comment, - ACTIONS(5300), 14, + STATE(3309), 1, + sym_param_completer, + ACTIONS(5786), 12, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224168,19 +224829,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_LBRACE, - [98571] = 6, + [97851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6331), 1, - anon_sym_AT2, - ACTIONS(6333), 1, + ACTIONS(6228), 1, + anon_sym_LT, + ACTIONS(6230), 1, anon_sym_DASH2, - STATE(3175), 1, + STATE(3159), 1, sym_comment, - STATE(3487), 1, - sym_param_completer, - ACTIONS(5774), 11, + ACTIONS(5243), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -224190,85 +224848,24 @@ 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, - [98600] = 7, + [97878] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6232), 1, sym__newline, - STATE(727), 1, + STATE(702), 1, aux_sym__pipe_separator, - STATE(3176), 1, + STATE(3160), 1, sym_comment, - STATE(3592), 1, + STATE(3611), 1, aux_sym__repeat_newline, - ACTIONS(6338), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2318), 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, - [98631] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6340), 1, - sym__newline, - ACTIONS(6343), 1, - sym__space, - STATE(3177), 2, - sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6346), 11, + ACTIONS(6235), 2, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [98658] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5344), 1, - sym__space, - STATE(3178), 1, - sym_comment, - ACTIONS(5342), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [98683] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6350), 1, - sym__space, - STATE(3179), 1, - sym_comment, - ACTIONS(6348), 13, - sym__newline, - anon_sym_SEMI, + ACTIONS(2138), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224278,61 +224875,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, - [98708] = 4, - ACTIONS(103), 1, + [97909] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5356), 1, - sym__space, - STATE(3180), 1, + ACTIONS(2428), 1, + anon_sym_DASH2, + STATE(3161), 1, sym_comment, - ACTIONS(5354), 13, + ACTIONS(2426), 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, - [98733] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97934] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3181), 1, + ACTIONS(2556), 1, + anon_sym_DASH2, + STATE(3162), 1, sym_comment, - ACTIONS(5257), 14, - ts_builtin_sym_end, + ACTIONS(2554), 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_LBRACE, - [98756] = 6, + 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, + [97959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6331), 1, - anon_sym_AT2, - ACTIONS(6352), 1, + ACTIONS(6230), 1, anon_sym_DASH2, - STATE(3182), 1, + ACTIONS(6237), 1, + anon_sym_LT, + STATE(3163), 1, sym_comment, - STATE(3490), 1, - sym_param_completer, - ACTIONS(5778), 11, + ACTIONS(5243), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -224342,19 +224936,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, - [98785] = 5, + [97986] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6248), 1, - anon_sym_AT2, - STATE(3183), 1, + STATE(3164), 1, sym_comment, - STATE(3312), 1, - sym_param_completer, - ACTIONS(5778), 12, + ACTIONS(5255), 14, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224366,14 +224958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98812] = 4, + anon_sym_LBRACE, + [98009] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6356), 1, + ACTIONS(2354), 1, sym__space, - STATE(3184), 1, + STATE(3165), 1, sym_comment, - ACTIONS(6354), 13, + ACTIONS(2356), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224387,15 +224980,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98837] = 4, + [98034] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6360), 1, + ACTIONS(5895), 1, + sym__newline, + ACTIONS(5897), 1, sym__space, - STATE(3185), 1, + STATE(3051), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3166), 1, sym_comment, - ACTIONS(6358), 13, - sym__newline, + ACTIONS(6239), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224407,84 +225003,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, - [98862] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6248), 1, - anon_sym_AT2, - STATE(3186), 1, - sym_comment, - STATE(3369), 1, - sym_param_completer, - ACTIONS(5780), 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, - [98889] = 5, + [98063] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6362), 1, - anon_sym_LBRACK2, - STATE(3187), 1, - sym_comment, - ACTIONS(2164), 2, - ts_builtin_sym_end, + ACTIONS(2550), 1, sym__space, - ACTIONS(2166), 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, - [98916] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3188), 1, + STATE(3167), 1, sym_comment, - ACTIONS(2156), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2158), 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, - [98941] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5786), 1, + ACTIONS(2552), 13, sym__newline, - ACTIONS(5788), 1, - sym__space, - STATE(3169), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3189), 1, - sym_comment, - ACTIONS(6364), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224496,40 +225023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98970] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1867), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6366), 1, - sym__newline, - STATE(3190), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1862), 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, - [98997] = 6, + anon_sym_RBRACE, + [98088] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5786), 1, - sym__newline, - ACTIONS(5788), 1, + ACTIONS(2660), 1, sym__space, - STATE(3177), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3191), 1, + STATE(3168), 1, sym_comment, - ACTIONS(6369), 11, + ACTIONS(2662), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224541,16 +225044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99026] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [98113] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3192), 1, + ACTIONS(6128), 1, + anon_sym_AT2, + STATE(3169), 1, sym_comment, - ACTIONS(5283), 3, + STATE(3289), 1, + sym_param_completer, + ACTIONS(5788), 12, ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5850), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224562,58 +225067,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, - [99051] = 4, - ACTIONS(103), 1, + [98140] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4631), 1, - sym__space, - STATE(3193), 1, + ACTIONS(2380), 1, + anon_sym_DASH2, + STATE(3170), 1, sym_comment, - ACTIONS(4629), 13, + ACTIONS(2378), 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, - [99076] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3194), 1, - sym_comment, - ACTIONS(2326), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2328), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [99101] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98165] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3195), 1, + ACTIONS(5132), 1, + sym__unquoted_pattern, + STATE(3171), 1, sym_comment, - ACTIONS(5223), 3, + ACTIONS(884), 2, ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5820), 11, + ACTIONS(785), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224625,21 +225110,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, - [99126] = 7, + [98192] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6371), 1, + ACTIONS(6232), 1, sym__newline, - STATE(727), 1, + STATE(702), 1, aux_sym__pipe_separator, - STATE(3196), 1, + STATE(3172), 1, sym_comment, - STATE(3592), 1, + STATE(3611), 1, aux_sym__repeat_newline, - ACTIONS(6374), 2, + ACTIONS(6235), 2, anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(2318), 9, + ACTIONS(6241), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224649,78 +225134,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, - [99157] = 3, + [98223] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3197), 1, + ACTIONS(2384), 1, + anon_sym_DASH2, + STATE(3173), 1, sym_comment, - ACTIONS(5633), 14, - ts_builtin_sym_end, + ACTIONS(2382), 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, - [99180] = 5, + 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, + [98248] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6376), 1, - anon_sym_LT, - ACTIONS(6378), 1, + ACTIONS(2388), 1, anon_sym_DASH2, - STATE(3198), 1, + STATE(3174), 1, sym_comment, - ACTIONS(5302), 12, + ACTIONS(2386), 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, - [99207] = 5, + [98273] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6378), 1, + ACTIONS(2392), 1, anon_sym_DASH2, - ACTIONS(6380), 1, - anon_sym_LT, - STATE(3199), 1, + STATE(3175), 1, sym_comment, - ACTIONS(5302), 12, + ACTIONS(2390), 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, - [99234] = 4, + [98298] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4611), 1, + ACTIONS(4614), 1, sym__space, - STATE(3200), 1, + STATE(3176), 1, sym_comment, - ACTIONS(4609), 13, + ACTIONS(4612), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224734,14 +225218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99259] = 4, + [98323] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4600), 1, + ACTIONS(4618), 1, sym__space, - STATE(3201), 1, + STATE(3177), 1, sym_comment, - ACTIONS(4598), 13, + ACTIONS(4616), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224755,36 +225239,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99284] = 4, - ACTIONS(103), 1, + [98348] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4623), 1, - sym__space, - STATE(3202), 1, + ACTIONS(2548), 1, + anon_sym_DASH2, + STATE(3178), 1, sym_comment, - ACTIONS(4621), 13, + ACTIONS(2546), 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, - [99309] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98373] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6384), 1, - sym__space, - STATE(3203), 1, - sym_comment, - ACTIONS(6382), 13, + ACTIONS(6244), 1, + anon_sym_else, + ACTIONS(6246), 1, sym__newline, + STATE(3089), 1, + aux_sym__repeat_newline, + STATE(3179), 1, + sym_comment, + ACTIONS(6249), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224796,82 +225283,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [99334] = 6, + [98402] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6331), 1, - anon_sym_AT2, - ACTIONS(6352), 1, + ACTIONS(2400), 1, anon_sym_DASH2, - STATE(3204), 1, + STATE(3180), 1, sym_comment, - STATE(3492), 1, - sym_param_completer, - ACTIONS(5778), 11, + ACTIONS(2398), 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, - [99363] = 6, + [98427] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6331), 1, - anon_sym_AT2, - ACTIONS(6386), 1, + ACTIONS(2404), 1, anon_sym_DASH2, - STATE(3205), 1, + STATE(3181), 1, sym_comment, - STATE(3493), 1, - sym_param_completer, - ACTIONS(5780), 11, + ACTIONS(2402), 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, - [99392] = 3, + [98452] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3206), 1, - sym_comment, - ACTIONS(5655), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6251), 1, + anon_sym_else, + ACTIONS(6253), 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_COLON, - [99415] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2170), 1, - sym__space, - STATE(3207), 1, + STATE(3090), 1, + aux_sym__repeat_newline, + STATE(3182), 1, sym_comment, - ACTIONS(2172), 13, - sym__newline, + ACTIONS(6256), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224883,39 +225348,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, - [99440] = 6, + [98481] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(5893), 1, - anon_sym_DASH2, - STATE(3208), 1, - sym_comment, - STATE(5003), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5891), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6258), 1, + anon_sym_else, + ACTIONS(6260), 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, - [99469] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2405), 1, - sym__space, - STATE(3209), 1, + STATE(3091), 1, + aux_sym__repeat_newline, + STATE(3183), 1, sym_comment, - ACTIONS(2407), 13, - sym__newline, + ACTIONS(6263), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224927,15 +225371,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, - [99494] = 4, + [98510] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2104), 1, + ACTIONS(4635), 1, sym__space, - STATE(3210), 1, + STATE(3184), 1, sym_comment, - ACTIONS(2106), 13, + ACTIONS(4633), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224949,14 +225392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99519] = 4, + [98535] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, - sym__space, - STATE(3211), 1, + STATE(3185), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(5241), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5912), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224968,17 +225413,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, - [99544] = 4, - ACTIONS(103), 1, + [98560] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - STATE(3212), 1, - sym_comment, - ACTIONS(2122), 13, + ACTIONS(1880), 1, sym__newline, + ACTIONS(6265), 1, + anon_sym_else, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3186), 1, + sym_comment, + ACTIONS(1878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224990,16 +225436,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, - [99569] = 4, - ACTIONS(103), 1, + [98589] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2425), 1, - sym__space, - STATE(3213), 1, - sym_comment, - ACTIONS(2427), 13, + ACTIONS(6268), 1, + anon_sym_finally, + ACTIONS(6270), 1, sym__newline, + STATE(3094), 1, + aux_sym__repeat_newline, + STATE(3187), 1, + sym_comment, + ACTIONS(6273), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225011,15 +225459,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, - [99594] = 4, - ACTIONS(103), 1, + [98618] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2429), 1, - sym__space, - STATE(3214), 1, + ACTIONS(6128), 1, + anon_sym_AT2, + STATE(3188), 1, sym_comment, - ACTIONS(2431), 13, + STATE(3325), 1, + sym_param_completer, + ACTIONS(5632), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225031,17 +225481,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, - [99619] = 4, - ACTIONS(103), 1, + [98645] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2433), 1, - sym__space, - STATE(3215), 1, - sym_comment, - ACTIONS(2435), 13, + ACTIONS(6275), 1, + anon_sym_finally, + ACTIONS(6277), 1, sym__newline, + STATE(3099), 1, + aux_sym__repeat_newline, + STATE(3189), 1, + sym_comment, + ACTIONS(6280), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225053,16 +225504,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, - [99644] = 3, + [98674] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3216), 1, - sym_comment, - ACTIONS(5382), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6282), 1, + anon_sym_finally, + ACTIONS(6284), 1, sym__newline, + STATE(3100), 1, + aux_sym__repeat_newline, + STATE(3190), 1, + sym_comment, + ACTIONS(6287), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225073,15 +225526,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_AT2, - [99667] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [98703] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3217), 1, + STATE(3191), 1, sym_comment, - ACTIONS(5384), 14, + ACTIONS(5281), 3, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_EQ2, + ACTIONS(5846), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225093,15 +225548,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_AT2, - [99690] = 4, + [98728] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2449), 1, - sym__space, - STATE(3218), 1, + STATE(3192), 1, sym_comment, - ACTIONS(2451), 13, + ACTIONS(5255), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5820), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225113,18 +225569,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, - [99715] = 4, - ACTIONS(103), 1, + [98753] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2453), 1, - sym__space, - STATE(3219), 1, - sym_comment, - ACTIONS(2455), 13, + ACTIONS(6289), 1, sym__newline, + STATE(702), 1, + aux_sym__pipe_separator, + STATE(3193), 1, + sym_comment, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(6292), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2138), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -225134,18 +225593,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, - [99740] = 4, - ACTIONS(103), 1, + [98784] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2457), 1, - sym__space, - STATE(3220), 1, - sym_comment, - ACTIONS(2459), 13, + ACTIONS(6289), 1, sym__newline, + STATE(702), 1, + aux_sym__pipe_separator, + STATE(3194), 1, + sym_comment, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(6292), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(6294), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -225155,16 +225617,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, - [99765] = 4, - ACTIONS(103), 1, + [98815] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2461), 1, - sym__space, - STATE(3221), 1, + STATE(3195), 1, sym_comment, - ACTIONS(2463), 13, + ACTIONS(1582), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225176,16 +225636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [99790] = 4, + anon_sym_COLON, + [98838] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2465), 1, + ACTIONS(6299), 1, sym__space, - STATE(3222), 1, + STATE(3196), 1, sym_comment, - ACTIONS(2467), 13, + ACTIONS(6297), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225199,14 +225658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99815] = 4, + [98863] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2469), 1, + ACTIONS(5492), 1, sym__space, - STATE(3223), 1, + STATE(3197), 1, sym_comment, - ACTIONS(2471), 13, + ACTIONS(5490), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225220,14 +225679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99840] = 4, + [98888] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2473), 1, + ACTIONS(6303), 1, sym__space, - STATE(3224), 1, + STATE(3198), 1, sym_comment, - ACTIONS(2475), 13, + ACTIONS(6301), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225241,14 +225700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99865] = 3, - ACTIONS(3), 1, + [98913] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3225), 1, + ACTIONS(6307), 1, + sym__space, + STATE(3199), 1, sym_comment, - ACTIONS(5386), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6305), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225260,15 +225719,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_AT2, - [99888] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98938] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(6311), 1, sym__space, - STATE(3226), 1, + STATE(3200), 1, sym_comment, - ACTIONS(847), 13, + ACTIONS(6309), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225282,14 +225742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99913] = 3, - ACTIONS(3), 1, + [98963] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3227), 1, + ACTIONS(6315), 1, + sym__space, + STATE(3201), 1, sym_comment, - ACTIONS(5390), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6313), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225301,15 +225761,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_AT2, - [99936] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98988] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1608), 1, + anon_sym_DOT, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(3202), 1, + sym_comment, + STATE(3967), 1, + sym__immediate_decimal, + ACTIONS(5964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3966), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1600), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [99025] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1699), 1, + ACTIONS(6319), 1, sym__space, - STATE(3228), 1, + STATE(3203), 1, sym_comment, - ACTIONS(1615), 13, + ACTIONS(6317), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225323,14 +225811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99961] = 4, + [99050] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2148), 1, + ACTIONS(5696), 1, sym__space, - STATE(3229), 1, + STATE(3204), 1, sym_comment, - ACTIONS(2150), 13, + ACTIONS(5694), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225344,14 +225832,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99986] = 4, + [99075] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2545), 1, - sym__space, - STATE(3230), 1, + STATE(3205), 1, sym_comment, - ACTIONS(2547), 13, + ACTIONS(5235), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5826), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225363,16 +225853,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, - [100011] = 4, + [99100] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2624), 1, + ACTIONS(5848), 1, + ts_builtin_sym_end, + ACTIONS(5850), 1, sym__space, - STATE(3231), 1, + STATE(3206), 1, sym_comment, - ACTIONS(2626), 13, + STATE(3242), 1, + aux_sym_attribute_repeat1, + ACTIONS(5478), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225384,43 +225876,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, - [100036] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(3232), 1, - sym_comment, - STATE(4278), 1, - sym__immediate_decimal, - ACTIONS(6030), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6032), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(788), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [100073] = 4, + [99129] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(6323), 1, sym__space, - STATE(3233), 1, + STATE(3207), 1, sym_comment, - ACTIONS(1909), 13, + ACTIONS(6321), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225434,14 +225897,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [100098] = 4, + [99154] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6044), 1, + anon_sym_AT2, + ACTIONS(6074), 1, + anon_sym_DASH2, + STATE(3208), 1, + sym_comment, + STATE(3471), 1, + sym_param_completer, + ACTIONS(5788), 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, + [99183] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2551), 1, - sym__space, - STATE(3234), 1, + STATE(3209), 1, sym_comment, - ACTIONS(2553), 13, + ACTIONS(5330), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5842), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225453,16 +225941,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, - [100123] = 4, - ACTIONS(103), 1, + [99208] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, - sym__space, - STATE(3235), 1, + STATE(3210), 1, sym_comment, - ACTIONS(2560), 13, + ACTIONS(6325), 14, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225476,18 +225961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [100148] = 6, + [99231] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6388), 1, - anon_sym_else, - ACTIONS(6390), 1, - sym__newline, - STATE(3076), 1, - aux_sym__repeat_newline, - STATE(3236), 1, + ACTIONS(6327), 1, + anon_sym_finally, + STATE(3211), 1, sym_comment, - ACTIONS(6393), 11, + ACTIONS(6329), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225499,14 +225981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100177] = 4, + anon_sym_RBRACE, + [99256] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2562), 1, + ACTIONS(6333), 1, sym__space, - STATE(3237), 1, + STATE(3212), 1, sym_comment, - ACTIONS(2564), 13, + ACTIONS(6331), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225520,18 +226003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [100202] = 6, + [99281] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6395), 1, + ACTIONS(6335), 1, anon_sym_else, - STATE(485), 1, + ACTIONS(6337), 1, + sym__newline, + STATE(3182), 1, aux_sym__repeat_newline, - STATE(3238), 1, + STATE(3213), 1, sym_comment, - ACTIONS(1862), 11, + ACTIONS(6340), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225543,14 +226026,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100231] = 4, + [99310] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2472), 1, + anon_sym_DASH2, + STATE(3214), 1, + sym_comment, + ACTIONS(2470), 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, + [99335] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2472), 1, + anon_sym_DASH2, + STATE(3215), 1, + sym_comment, + ACTIONS(2470), 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, + [99360] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6044), 1, + anon_sym_AT2, + ACTIONS(6342), 1, + anon_sym_DASH2, + STATE(3216), 1, + sym_comment, + STATE(3495), 1, + sym_param_completer, + ACTIONS(5632), 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, + [99389] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2409), 1, - sym__space, - STATE(3239), 1, + ACTIONS(6344), 1, + anon_sym_LBRACK2, + STATE(3217), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(2340), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2342), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225562,20 +226113,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, - [100256] = 6, + [99416] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6398), 1, + ACTIONS(6346), 1, anon_sym_else, - STATE(485), 1, + ACTIONS(6348), 1, + sym__newline, + STATE(3183), 1, aux_sym__repeat_newline, - STATE(3240), 1, + STATE(3218), 1, sym_comment, - ACTIONS(1862), 11, + ACTIONS(6351), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225587,16 +226136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100285] = 4, + [99445] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3241), 1, - sym_comment, - ACTIONS(5257), 3, - ts_builtin_sym_end, + ACTIONS(6355), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5912), 11, + STATE(3219), 1, + sym_comment, + ACTIONS(6353), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225608,13 +226155,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, - [100310] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99470] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3242), 1, - sym_comment, - ACTIONS(6401), 13, + ACTIONS(6357), 1, + anon_sym_else, + ACTIONS(6359), 1, sym__newline, + STATE(3186), 1, + aux_sym__repeat_newline, + STATE(3220), 1, + sym_comment, + ACTIONS(6362), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225626,76 +226180,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, - [100332] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1798), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6403), 1, - anon_sym_DOT, - ACTIONS(6405), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6407), 1, - aux_sym__immediate_decimal_token2, - STATE(3243), 1, - sym_comment, - STATE(3857), 1, - sym__immediate_decimal, - ACTIONS(6409), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4036), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100374] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5830), 1, - anon_sym_DOLLAR, - ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, - anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(6411), 1, - anon_sym_RBRACK, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3018), 1, - aux_sym_parameter_parens_repeat1, - STATE(3244), 1, - sym_comment, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [100420] = 3, + [99499] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3245), 1, - sym_comment, - ACTIONS(1907), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6364), 1, + anon_sym_finally, + ACTIONS(6366), 1, sym__newline, + STATE(3190), 1, + aux_sym__repeat_newline, + STATE(3221), 1, + sym_comment, + ACTIONS(6369), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225706,38 +226202,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, - [100442] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(784), 1, - sym__immediate_decimal, - STATE(3246), 1, - sym_comment, - ACTIONS(5859), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6413), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(783), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [100476] = 3, + anon_sym_RPAREN, + [99528] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + STATE(3222), 1, sym_comment, - ACTIONS(1887), 13, - ts_builtin_sym_end, + ACTIONS(6371), 14, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -225750,41 +226221,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, - [100498] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1599), 1, - sym__entry_separator, - ACTIONS(1798), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6154), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6156), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6415), 1, - anon_sym_DOT, - STATE(3248), 1, - sym_comment, - STATE(4149), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6158), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4148), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100538] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99551] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3249), 1, + STATE(3223), 1, sym_comment, - ACTIONS(6229), 13, - ts_builtin_sym_end, + ACTIONS(6373), 14, anon_sym_finally, sym__newline, anon_sym_SEMI, @@ -225797,15 +226241,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, - [100560] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99574] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3250), 1, - sym_comment, - ACTIONS(4611), 2, - ts_builtin_sym_end, + ACTIONS(6378), 1, sym__space, - ACTIONS(4609), 11, + STATE(3224), 1, + sym_comment, + ACTIONS(6376), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225817,15 +226262,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, - [100584] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99599] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3251), 1, - sym_comment, - ACTIONS(4600), 2, - ts_builtin_sym_end, + ACTIONS(5350), 1, sym__space, - ACTIONS(4598), 11, + STATE(3225), 1, + sym_comment, + ACTIONS(5348), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225837,14 +226283,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, - [100608] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99624] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6419), 1, - sym__space, - STATE(3252), 1, + ACTIONS(2476), 1, + anon_sym_DASH2, + STATE(3226), 1, + sym_comment, + ACTIONS(2474), 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, + [99649] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2480), 1, + anon_sym_DASH2, + STATE(3227), 1, + sym_comment, + ACTIONS(2478), 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, + [99674] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3228), 1, sym_comment, - ACTIONS(6417), 12, + ACTIONS(6380), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225857,15 +226346,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100632] = 4, + anon_sym_RBRACE, + [99697] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3253), 1, - sym_comment, - ACTIONS(4623), 2, - ts_builtin_sym_end, + ACTIONS(5850), 1, sym__space, - ACTIONS(4621), 11, + ACTIONS(6382), 1, + ts_builtin_sym_end, + STATE(3229), 1, + sym_comment, + STATE(3253), 1, + aux_sym_attribute_repeat1, + ACTIONS(6033), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225877,14 +226370,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, - [100656] = 3, + [99726] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3254), 1, + STATE(3230), 1, sym_comment, - ACTIONS(6241), 13, - ts_builtin_sym_end, - anon_sym_finally, + ACTIONS(6380), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225896,15 +226388,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, - [100678] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99749] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6421), 1, - anon_sym_finally, - STATE(3255), 1, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(6386), 1, + anon_sym_DASH2, + STATE(3231), 1, + sym_comment, + STATE(5470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6384), 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, + [99778] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(6390), 1, + anon_sym_DASH2, + STATE(3232), 1, + sym_comment, + STATE(5470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6388), 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, + [99807] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3233), 1, sym_comment, - ACTIONS(6233), 12, + ACTIONS(2116), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2118), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225916,40 +226457,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, - [100702] = 12, - ACTIONS(103), 1, + [99832] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - sym__space, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(3347), 1, + ACTIONS(5174), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6423), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6425), 1, - aux_sym__immediate_decimal_token2, - STATE(3256), 1, + ACTIONS(5883), 1, + anon_sym_DASH2, + STATE(3234), 1, sym_comment, - STATE(4193), 1, - sym__immediate_decimal, - ACTIONS(1683), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6427), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3224), 2, + STATE(5044), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [100742] = 3, + ACTIONS(5881), 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, + [99861] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3257), 1, + STATE(3235), 1, sym_comment, - ACTIONS(6429), 13, + ACTIONS(1893), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225963,90 +226500,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [100764] = 9, + [99884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(802), 1, - sym__immediate_decimal, - STATE(3258), 1, + STATE(3236), 1, sym_comment, - ACTIONS(5859), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6413), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(801), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 4, - anon_sym_if, + ACTIONS(6392), 14, + anon_sym_EQ, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [100798] = 9, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99907] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(5174), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(804), 1, - sym__immediate_decimal, - STATE(3259), 1, + ACTIONS(6396), 1, + anon_sym_DASH2, + STATE(3237), 1, sym_comment, - ACTIONS(5859), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6413), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(803), 2, + STATE(5470), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1659), 4, - anon_sym_if, + ACTIONS(6394), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [100832] = 9, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99936] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(5174), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(806), 1, - sym__immediate_decimal, - STATE(3260), 1, + ACTIONS(6400), 1, + anon_sym_DASH2, + STATE(3238), 1, sym_comment, - ACTIONS(5859), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6413), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(805), 2, + STATE(5470), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 4, - anon_sym_if, + ACTIONS(6398), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [100866] = 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, + [99965] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3261), 1, + STATE(3239), 1, sym_comment, - ACTIONS(6384), 2, + ACTIONS(5235), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(6382), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226058,16 +226585,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, - [100890] = 4, + anon_sym_LBRACE, + [99988] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3262), 1, - sym_comment, - ACTIONS(5574), 12, + ACTIONS(5968), 1, sym__newline, + STATE(710), 1, + aux_sym__pipe_separator, + STATE(3240), 1, + sym_comment, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(5971), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(6024), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -226077,13 +226610,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, - [100914] = 3, + [100019] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3241), 1, sym_comment, - ACTIONS(2578), 13, + ACTIONS(5330), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -226097,12 +226629,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, - [100936] = 3, - ACTIONS(3), 1, + anon_sym_LBRACE, + [100042] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3264), 1, + ACTIONS(5850), 1, + sym__space, + ACTIONS(6402), 1, + ts_builtin_sym_end, + STATE(3242), 1, sym_comment, - ACTIONS(6431), 13, + STATE(3256), 1, + aux_sym_attribute_repeat1, + ACTIONS(6040), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226114,14 +226653,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, + [100071] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2356), 1, + anon_sym_DASH2, + STATE(3243), 1, + sym_comment, + ACTIONS(2354), 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, - [100958] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100096] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3265), 1, + ACTIONS(2552), 1, + anon_sym_DASH2, + STATE(3244), 1, + sym_comment, + ACTIONS(2550), 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, + [100121] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3245), 1, sym_comment, - ACTIONS(6433), 13, + ACTIONS(5674), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226133,14 +226714,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, - [100980] = 3, + anon_sym_COLON, + [100144] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + STATE(3246), 1, sym_comment, - ACTIONS(6435), 13, + ACTIONS(2668), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226154,15 +226735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [101002] = 4, - ACTIONS(103), 1, + [100167] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3267), 1, + STATE(3247), 1, sym_comment, - ACTIONS(5344), 2, + ACTIONS(5678), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(5342), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226174,15 +226754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101026] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + [100190] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3268), 1, + STATE(3248), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(5241), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(847), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226194,15 +226774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101050] = 4, + anon_sym_LBRACE, + [100213] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3269), 1, - sym_comment, - ACTIONS(6246), 2, - ts_builtin_sym_end, + ACTIONS(2108), 1, sym__space, - ACTIONS(6244), 11, + STATE(3249), 1, + sym_comment, + ACTIONS(2110), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226214,17 +226794,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, - [101074] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100238] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3270), 1, + ACTIONS(5802), 1, + sym__newline, + STATE(710), 1, + aux_sym__pipe_separator, + STATE(3250), 1, sym_comment, - ACTIONS(1699), 2, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(5805), 2, ts_builtin_sym_end, - sym__space, - ACTIONS(1615), 11, - sym__newline, anon_sym_SEMI, + ACTIONS(5990), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -226234,15 +226820,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, - [101098] = 4, - ACTIONS(103), 1, + [100269] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3271), 1, + STATE(3251), 1, sym_comment, - ACTIONS(2148), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2150), 11, + ACTIONS(1885), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226254,15 +226838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101122] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100292] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3272), 1, + STATE(3252), 1, sym_comment, - ACTIONS(6350), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6348), 11, + ACTIONS(2660), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226274,15 +226858,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, - [101146] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100315] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3273), 1, - sym_comment, - ACTIONS(2545), 2, - ts_builtin_sym_end, + ACTIONS(5850), 1, sym__space, - ACTIONS(2547), 11, + ACTIONS(6404), 1, + ts_builtin_sym_end, + STATE(3253), 1, + sym_comment, + STATE(3256), 1, + aux_sym_attribute_repeat1, + ACTIONS(5824), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226294,16 +226883,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, - [101170] = 4, - ACTIONS(103), 1, + [100344] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3274), 1, - sym_comment, - ACTIONS(2624), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2626), 11, + ACTIONS(6406), 1, + anon_sym_else, + ACTIONS(6408), 1, sym__newline, + STATE(3220), 1, + aux_sym__repeat_newline, + STATE(3254), 1, + sym_comment, + ACTIONS(6411), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226314,14 +226905,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, - [101194] = 4, + anon_sym_RPAREN, + [100373] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3275), 1, - sym_comment, - STATE(3391), 1, + ACTIONS(1883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(6413), 1, + sym__newline, + STATE(3255), 2, aux_sym__repeat_newline, - ACTIONS(5651), 12, + sym_comment, + ACTIONS(1878), 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, + [100400] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6416), 1, + ts_builtin_sym_end, + ACTIONS(6418), 1, + sym__space, + STATE(3256), 2, + sym_comment, + aux_sym_attribute_repeat1, + ACTIONS(6035), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226333,16 +226950,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, - [101218] = 4, - ACTIONS(103), 1, + [100427] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3276), 1, + STATE(3257), 1, sym_comment, - ACTIONS(5356), 2, + ACTIONS(5243), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(5354), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226354,15 +226969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101242] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [100450] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3277), 1, + STATE(3258), 1, sym_comment, - ACTIONS(2170), 2, + ACTIONS(5295), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2172), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226374,130 +226989,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101266] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1968), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3278), 1, - sym_comment, - ACTIONS(1966), 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, - [101290] = 5, + [100473] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(847), 1, + ACTIONS(2560), 1, anon_sym_DASH2, - ACTIONS(5182), 1, - sym__unquoted_pattern_in_record, - STATE(3279), 1, + STATE(3259), 1, sym_comment, - ACTIONS(968), 11, + ACTIONS(2558), 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, - [101316] = 12, + [100498] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, - sym__entry_separator, - ACTIONS(1798), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6415), 1, - anon_sym_DOT, - ACTIONS(6437), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6439), 1, - aux_sym__immediate_decimal_token2, - STATE(3280), 1, + STATE(3260), 1, sym_comment, - STATE(4034), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6441), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4033), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101356] = 4, - ACTIONS(3), 1, + ACTIONS(2390), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2392), 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, + [100522] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6445), 1, - anon_sym_DASH2, - STATE(3281), 1, + STATE(3261), 1, sym_comment, - ACTIONS(6443), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5696), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5694), 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, - [101380] = 10, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100546] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1637), 1, + ACTIONS(1653), 1, sym__unquoted_pattern, - ACTIONS(2938), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR, - STATE(3282), 1, + STATE(3262), 1, sym_comment, - STATE(4405), 1, + STATE(4565), 1, sym__immediate_decimal, - ACTIONS(6447), 2, + ACTIONS(6421), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6449), 2, + ACTIONS(6423), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(788), 2, + STATE(805), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 3, + ACTIONS(1645), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [101416] = 4, - ACTIONS(3), 1, + [100582] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6453), 1, - anon_sym_else, - STATE(3283), 1, + STATE(3263), 1, sym_comment, - ACTIONS(6451), 12, + ACTIONS(2249), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2251), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226509,41 +227097,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, - [101440] = 10, + [100606] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(3284), 1, + STATE(3264), 1, sym_comment, - STATE(4420), 1, - sym__immediate_decimal, - ACTIONS(6447), 2, + STATE(3286), 1, + aux_sym__repeat_newline, + ACTIONS(5648), 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, + [100630] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1620), 1, + sym__entry_separator, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6425), 1, + anon_sym_DOLLAR, + ACTIONS(6427), 1, + anon_sym_LPAREN2, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6449), 2, + STATE(3265), 1, + sym_comment, + STATE(4313), 1, + sym__immediate_decimal, + ACTIONS(1622), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6433), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(807), 2, + STATE(4669), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1681), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [101476] = 4, + [100670] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3285), 1, + STATE(3266), 1, sym_comment, - ACTIONS(5511), 2, + ACTIONS(2660), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5509), 11, + ACTIONS(2662), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226555,15 +227165,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, - [101500] = 4, + [100694] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3286), 1, + ACTIONS(1600), 1, + sym__entry_separator, + ACTIONS(1766), 1, + anon_sym_DOLLAR, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6056), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6435), 1, + anon_sym_DOT, + STATE(3267), 1, sym_comment, - ACTIONS(1907), 2, + STATE(4168), 1, + sym__immediate_decimal, + ACTIONS(1604), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6058), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4167), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100734] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3268), 1, + sym_comment, + ACTIONS(2257), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1909), 11, + ACTIONS(2259), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226575,15 +227213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101524] = 4, + [100758] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3287), 1, + STATE(3269), 1, sym_comment, - ACTIONS(2551), 2, + ACTIONS(2354), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2553), 11, + ACTIONS(2356), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226595,15 +227233,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, - [101548] = 4, - ACTIONS(103), 1, + [100782] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3288), 1, + ACTIONS(6439), 1, + anon_sym_DASH2, + STATE(3270), 1, sym_comment, - ACTIONS(2558), 2, - ts_builtin_sym_end, + ACTIONS(6437), 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, + [100806] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6443), 1, sym__space, - ACTIONS(2560), 11, + STATE(3271), 1, + sym_comment, + ACTIONS(6441), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226615,15 +227272,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101572] = 4, + anon_sym_RPAREN, + [100830] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3289), 1, + ACTIONS(1620), 1, + sym__space, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(6445), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6447), 1, + aux_sym__immediate_decimal_token2, + STATE(3272), 1, + sym_comment, + STATE(4356), 1, + sym__immediate_decimal, + ACTIONS(1622), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6449), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3057), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100870] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3273), 1, sym_comment, - ACTIONS(2562), 2, + ACTIONS(2550), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2564), 11, + ACTIONS(2552), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226635,66 +227321,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, - [101596] = 15, + [100894] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, + ACTIONS(6230), 1, + anon_sym_DASH2, + STATE(3274), 1, + sym_comment, + ACTIONS(5243), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5830), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5832), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100918] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5828), 1, + sym_identifier, ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, anon_sym_DASH_DASH, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(5958), 1, + anon_sym_RBRACK, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2997), 1, + aux_sym_parameter_parens_repeat1, + STATE(3275), 1, + sym_comment, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [100964] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5828), 1, + sym_identifier, + ACTIONS(5834), 1, + anon_sym_DOLLAR, ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, anon_sym_DASH2, - ACTIONS(6455), 1, + ACTIONS(6042), 1, anon_sym_RPAREN, - STATE(2511), 1, + STATE(2543), 1, sym_param_long_flag, - STATE(2684), 1, + STATE(2656), 1, sym__param_name, - STATE(3018), 1, + STATE(2997), 1, aux_sym_parameter_parens_repeat1, - STATE(3290), 1, + STATE(3276), 1, sym_comment, - STATE(3538), 1, + STATE(3488), 1, sym_param_rest, - STATE(3539), 1, + STATE(3489), 1, sym_param_opt, - STATE(3540), 1, + STATE(3491), 1, sym_param_short_flag, - STATE(3803), 1, + STATE(3849), 1, sym_parameter, - [101642] = 4, - ACTIONS(103), 1, + [101010] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3291), 1, - sym_comment, - ACTIONS(2405), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2407), 11, - sym__newline, - anon_sym_SEMI, + ACTIONS(5828), 1, + sym_identifier, + ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(6451), 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, - [101666] = 4, - ACTIONS(103), 1, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2997), 1, + aux_sym_parameter_parens_repeat1, + STATE(3277), 1, + sym_comment, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [101056] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3292), 1, + STATE(3278), 1, sym_comment, - ACTIONS(2104), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2106), 11, + ACTIONS(4875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226706,15 +227451,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, - [101690] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101078] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3293), 1, + STATE(3279), 1, sym_comment, - ACTIONS(2112), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2114), 11, + ACTIONS(6453), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226726,12 +227470,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, - [101714] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101100] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3294), 1, + STATE(3280), 1, sym_comment, - ACTIONS(6384), 13, + ACTIONS(6455), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226745,15 +227491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [101736] = 4, - ACTIONS(103), 1, + [101122] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3295), 1, + STATE(3281), 1, sym_comment, - ACTIONS(2120), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2122), 11, + ACTIONS(6457), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226765,72 +227508,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101760] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101144] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6378), 1, - anon_sym_DASH2, - STATE(3296), 1, - sym_comment, - ACTIONS(5302), 12, - anon_sym_EQ, + ACTIONS(5828), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5834), 1, anon_sym_DOLLAR, - anon_sym_AT2, + ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, anon_sym_DASH_DASH, - [101784] = 3, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(6459), 1, + anon_sym_RBRACK, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2997), 1, + aux_sym_parameter_parens_repeat1, + STATE(3282), 1, + sym_comment, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [101190] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(3297), 1, + ACTIONS(5828), 1, + sym_identifier, + ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(6461), 1, + anon_sym_RPAREN, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2997), 1, + aux_sym_parameter_parens_repeat1, + STATE(3283), 1, sym_comment, - ACTIONS(6250), 13, - ts_builtin_sym_end, - 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, - [101806] = 3, - ACTIONS(3), 1, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [101236] = 12, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3298), 1, + ACTIONS(1645), 1, + sym__entry_separator, + ACTIONS(1653), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6425), 1, + anon_sym_DOLLAR, + ACTIONS(6427), 1, + anon_sym_LPAREN2, + ACTIONS(6429), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6431), 1, + aux_sym__immediate_decimal_token2, + STATE(3284), 1, sym_comment, - ACTIONS(6457), 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, - [101828] = 4, + STATE(4351), 1, + sym__immediate_decimal, + ACTIONS(1647), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6433), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4529), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101276] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6463), 1, anon_sym_DASH2, - STATE(3299), 1, + STATE(3285), 1, sym_comment, - ACTIONS(5442), 12, + ACTIONS(5460), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -226843,14 +227620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101852] = 3, + [101300] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3300), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3286), 1, sym_comment, - ACTIONS(6028), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5570), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226862,33 +227639,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, - [101874] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [101324] = 12, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3301), 1, + ACTIONS(1645), 1, + sym__space, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(6445), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6447), 1, + aux_sym__immediate_decimal_token2, + STATE(3287), 1, sym_comment, - ACTIONS(6008), 13, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(4245), 1, + sym__immediate_decimal, + ACTIONS(1647), 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, - [101896] = 3, + ACTIONS(6449), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3088), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101364] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3302), 1, + STATE(3288), 1, sym_comment, - ACTIONS(6239), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5790), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226900,15 +227685,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, - [101918] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101386] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3303), 1, + STATE(3289), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(6380), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2411), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226920,15 +227706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101942] = 4, + [101408] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3304), 1, + STATE(3290), 1, sym_comment, - ACTIONS(2413), 2, + ACTIONS(2378), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2415), 11, + ACTIONS(2380), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226940,15 +227726,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, - [101966] = 4, - ACTIONS(103), 1, + [101432] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3305), 1, + STATE(3291), 1, sym_comment, - ACTIONS(2417), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2419), 11, + ACTIONS(4881), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226960,15 +227743,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, - [101990] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101454] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3306), 1, + STATE(3292), 1, sym_comment, - ACTIONS(2421), 2, + ACTIONS(5946), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2423), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226980,15 +227764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102014] = 4, + [101476] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3307), 1, + STATE(3293), 1, sym_comment, - ACTIONS(2578), 2, + ACTIONS(1893), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2580), 11, + ACTIONS(1895), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227000,15 +227784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102038] = 4, + [101500] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3308), 1, + STATE(3294), 1, sym_comment, - ACTIONS(2425), 2, + ACTIONS(2382), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2427), 11, + ACTIONS(2384), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227020,15 +227804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102062] = 4, + [101524] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3309), 1, + STATE(3295), 1, sym_comment, - ACTIONS(2429), 2, + ACTIONS(6355), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2431), 11, + ACTIONS(6353), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227040,15 +227824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102086] = 4, + [101548] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3310), 1, + STATE(3296), 1, sym_comment, - ACTIONS(2433), 2, + ACTIONS(2386), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2435), 11, + ACTIONS(2388), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227060,15 +227844,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, - [102110] = 4, - ACTIONS(103), 1, + [101572] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3311), 1, + ACTIONS(6465), 1, + anon_sym_EQ, + STATE(3297), 1, sym_comment, - ACTIONS(2437), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2439), 11, + ACTIONS(6467), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227080,14 +227863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102134] = 3, + anon_sym_RBRACE, + [101596] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3312), 1, + ACTIONS(6469), 1, + anon_sym_else, + STATE(3298), 1, sym_comment, - ACTIONS(6250), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6471), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227099,12 +227883,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, - [102156] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [101620] = 13, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3313), 1, + ACTIONS(1620), 1, + sym__entry_separator, + ACTIONS(1622), 1, + anon_sym_RBRACK, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1766), 1, + anon_sym_DOLLAR, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6473), 1, + anon_sym_DOT, + ACTIONS(6475), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6477), 1, + aux_sym__immediate_decimal_token2, + STATE(3299), 1, + sym_comment, + STATE(3916), 1, + sym__immediate_decimal, + ACTIONS(6479), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4197), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101662] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3300), 1, sym_comment, - ACTIONS(6461), 13, + ACTIONS(4614), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4612), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227116,17 +227933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [102178] = 4, + [101686] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3314), 1, + STATE(3301), 1, sym_comment, - ACTIONS(2441), 2, + ACTIONS(2668), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2443), 11, + ACTIONS(2670), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227138,15 +227953,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, - [102202] = 4, - ACTIONS(103), 1, + [101710] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3315), 1, + STATE(3302), 1, sym_comment, - ACTIONS(2445), 2, + ACTIONS(1893), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2447), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227158,15 +227972,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, - [102226] = 4, - ACTIONS(103), 1, + [101732] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3316), 1, + STATE(3303), 1, sym_comment, - ACTIONS(2449), 2, + ACTIONS(5948), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2451), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227178,15 +227991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102250] = 4, + [101754] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3317), 1, + STATE(3304), 1, sym_comment, - ACTIONS(2453), 2, + ACTIONS(2426), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2455), 11, + ACTIONS(2428), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227198,15 +228011,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, - [102274] = 4, - ACTIONS(103), 1, + [101778] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3318), 1, + STATE(3305), 1, sym_comment, - ACTIONS(2457), 2, + ACTIONS(6380), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2459), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227218,15 +228030,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, - [102298] = 4, + [101800] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3319), 1, + ACTIONS(1600), 1, + sym__space, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(4982), 1, + anon_sym_DOT, + ACTIONS(6179), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6181), 1, + aux_sym__immediate_decimal_token2, + STATE(3306), 1, + sym_comment, + STATE(4117), 1, + sym__immediate_decimal, + ACTIONS(1604), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4116), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101840] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3307), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2394), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2463), 11, + ACTIONS(2396), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227238,15 +228078,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, - [102322] = 4, - ACTIONS(103), 1, + [101864] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3320), 1, + STATE(3308), 1, sym_comment, - ACTIONS(2465), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2467), 11, + ACTIONS(6481), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227258,15 +228095,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, - [102346] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101886] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3321), 1, + STATE(3309), 1, sym_comment, - ACTIONS(2469), 2, + ACTIONS(6371), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2471), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227278,15 +228116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102370] = 4, + [101908] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3322), 1, + STATE(3310), 1, sym_comment, - ACTIONS(2473), 2, + ACTIONS(2414), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2475), 11, + ACTIONS(2416), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227298,55 +228136,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, - [102394] = 4, + [101932] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6463), 1, - anon_sym_DASH2, - STATE(3323), 1, - sym_comment, - ACTIONS(5358), 12, - anon_sym_EQ, + ACTIONS(5828), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5834), 1, anon_sym_DOLLAR, - anon_sym_AT2, + ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, anon_sym_DASH_DASH, - [102418] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6465), 1, + ACTIONS(5840), 1, anon_sym_DASH2, - STATE(3324), 1, + ACTIONS(6483), 1, + anon_sym_RBRACK, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2997), 1, + aux_sym_parameter_parens_repeat1, + STATE(3311), 1, sym_comment, - ACTIONS(5403), 12, - anon_sym_EQ, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [101978] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5828), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5834), 1, anon_sym_DOLLAR, - anon_sym_AT2, + ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, anon_sym_DASH_DASH, - [102442] = 4, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(6485), 1, + anon_sym_RPAREN, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2997), 1, + aux_sym_parameter_parens_repeat1, + STATE(3312), 1, + sym_comment, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [102024] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3325), 1, + STATE(3313), 1, sym_comment, - ACTIONS(5580), 2, + ACTIONS(2418), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5578), 11, + ACTIONS(2420), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227358,15 +228218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102466] = 4, + [102048] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3326), 1, + STATE(3314), 1, sym_comment, - ACTIONS(6207), 2, + ACTIONS(2554), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6205), 11, + ACTIONS(2556), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227378,74 +228238,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, - [102490] = 4, + [102072] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6467), 1, - anon_sym_DASH2, - STATE(3327), 1, - sym_comment, - ACTIONS(5384), 12, - anon_sym_EQ, + ACTIONS(5828), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5834), 1, anon_sym_DOLLAR, - anon_sym_AT2, + ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, anon_sym_DASH_DASH, - [102514] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6469), 1, + ACTIONS(5840), 1, anon_sym_DASH2, - STATE(3328), 1, - sym_comment, - ACTIONS(5386), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(5960), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102538] = 4, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2997), 1, + aux_sym_parameter_parens_repeat1, + STATE(3315), 1, + sym_comment, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [102118] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6471), 1, - anon_sym_DASH2, - STATE(3329), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(765), 1, + sym__immediate_decimal, + STATE(3316), 1, sym_comment, - ACTIONS(5390), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6487), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(764), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1600), 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, - [102562] = 4, + anon_sym_EQ_GT, + [102152] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6473), 1, + ACTIONS(6491), 1, + anon_sym_QMARK, + ACTIONS(6493), 1, anon_sym_DASH2, - STATE(3330), 1, + STATE(3317), 1, sym_comment, - ACTIONS(5392), 12, + ACTIONS(6489), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -227455,97 +228313,92 @@ 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, - [102586] = 4, + [102178] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6477), 1, - anon_sym_DASH2, - STATE(3331), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(786), 1, + sym__immediate_decimal, + STATE(3318), 1, sym_comment, - ACTIONS(6475), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6487), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(785), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 4, + anon_sym_if, 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, - [102610] = 15, + anon_sym_EQ_GT, + [102212] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5830), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(2898), 1, anon_sym_DOLLAR, - ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, - anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(6479), 1, - anon_sym_PIPE, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3018), 1, - aux_sym_parameter_parens_repeat1, - STATE(3332), 1, + STATE(802), 1, + sym__immediate_decimal, + STATE(3319), 1, sym_comment, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [102656] = 12, - ACTIONS(103), 1, + ACTIONS(5966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6487), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(801), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [102246] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(3347), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR, - ACTIONS(6423), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6425), 1, - aux_sym__immediate_decimal_token2, - STATE(3333), 1, - sym_comment, - STATE(4237), 1, + STATE(804), 1, sym__immediate_decimal, - ACTIONS(1633), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6427), 2, + STATE(3320), 1, + sym_comment, + ACTIONS(5966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3212), 2, + ACTIONS(6487), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(803), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102696] = 4, + ACTIONS(1685), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [102280] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3334), 1, + STATE(3321), 1, sym_comment, - ACTIONS(2477), 2, + ACTIONS(2546), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2479), 11, + ACTIONS(2548), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227557,15 +228410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102720] = 4, + [102304] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3335), 1, + STATE(3322), 1, sym_comment, - ACTIONS(2477), 2, + ACTIONS(4635), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2479), 11, + ACTIONS(4633), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227577,55 +228430,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, - [102744] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6483), 1, - anon_sym_QMARK, - ACTIONS(6485), 1, - anon_sym_DASH2, - STATE(3336), 1, - sym_comment, - ACTIONS(6481), 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, - [102770] = 3, + [102328] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3337), 1, - sym_comment, - ACTIONS(6487), 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, - [102792] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3338), 1, + STATE(3323), 1, sym_comment, - ACTIONS(2481), 2, + ACTIONS(6373), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2483), 11, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227637,15 +228449,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, - [102816] = 4, - ACTIONS(103), 1, + [102350] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3339), 1, + STATE(3324), 1, sym_comment, - ACTIONS(2485), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2487), 11, + ACTIONS(6495), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227657,15 +228466,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, - [102840] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102372] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3340), 1, + STATE(3325), 1, sym_comment, - ACTIONS(1887), 2, + ACTIONS(6392), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(1889), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227677,43 +228487,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, - [102864] = 15, + [102394] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, + ACTIONS(5828), 1, sym_identifier, - ACTIONS(5830), 1, - anon_sym_DOLLAR, ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, ACTIONS(5834), 1, - anon_sym_DASH_DASH, + anon_sym_DOLLAR, ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, anon_sym_DASH2, - ACTIONS(5904), 1, - anon_sym_PIPE, - STATE(2511), 1, + STATE(2543), 1, sym_param_long_flag, - STATE(2684), 1, + STATE(2656), 1, sym__param_name, - STATE(3018), 1, + STATE(2997), 1, aux_sym_parameter_parens_repeat1, - STATE(3341), 1, + STATE(3326), 1, sym_comment, - STATE(3538), 1, + STATE(3488), 1, sym_param_rest, - STATE(3539), 1, + STATE(3489), 1, sym_param_opt, - STATE(3540), 1, + STATE(3491), 1, sym_param_short_flag, - STATE(3803), 1, + STATE(3849), 1, sym_parameter, - [102910] = 3, + [102440] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3342), 1, + STATE(3327), 1, sym_comment, - ACTIONS(6489), 13, + ACTIONS(6497), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227727,112 +228537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [102932] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3343), 1, - sym_comment, - ACTIONS(2527), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2529), 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, - [102956] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3344), 1, - sym_comment, - ACTIONS(2531), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2533), 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, - [102980] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3345), 1, - sym_comment, - ACTIONS(6356), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6354), 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, - [103004] = 4, + [102462] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3346), 1, + STATE(3328), 1, sym_comment, - ACTIONS(6360), 2, + ACTIONS(2398), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6358), 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, - [103028] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - anon_sym_DASH2, - STATE(3347), 1, - sym_comment, - ACTIONS(6491), 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, - [103052] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3348), 1, - sym_comment, - ACTIONS(5744), 13, + ACTIONS(2400), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227844,36 +228557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [103074] = 4, + [102486] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3349), 1, + STATE(3329), 1, sym_comment, - ACTIONS(2664), 2, + ACTIONS(2402), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2666), 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, - [103098] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6495), 1, - anon_sym_EQ, - STATE(3350), 1, - sym_comment, - ACTIONS(6457), 12, + ACTIONS(2404), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227883,107 +228575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_GT_PIPE, anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [103122] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6497), 1, - anon_sym_DOLLAR, - ACTIONS(6499), 1, - anon_sym_LPAREN2, - ACTIONS(6501), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6503), 1, - aux_sym__immediate_decimal_token2, - STATE(3351), 1, - sym_comment, - STATE(4289), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6505), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4374), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103162] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5830), 1, - anon_sym_DOLLAR, - ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, - anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(6010), 1, - anon_sym_RBRACK, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3018), 1, - aux_sym_parameter_parens_repeat1, - STATE(3352), 1, - sym_comment, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [103208] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5830), 1, - anon_sym_DOLLAR, - ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, - anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(5842), 1, - anon_sym_RPAREN, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3018), 1, - aux_sym_parameter_parens_repeat1, - STATE(3353), 1, - sym_comment, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [103254] = 3, - ACTIONS(3), 1, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [102510] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3354), 1, + STATE(3330), 1, sym_comment, - ACTIONS(2664), 13, + ACTIONS(2558), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2560), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227995,12 +228597,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, - [103276] = 3, + [102534] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3355), 1, + STATE(3331), 1, sym_comment, - ACTIONS(4867), 13, + ACTIONS(6499), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228014,12 +228616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [103298] = 3, + [102556] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3356), 1, + STATE(3332), 1, sym_comment, - ACTIONS(6507), 13, + ACTIONS(6501), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228033,43 +228635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [103320] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - sym__entry_separator, - ACTIONS(1695), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6497), 1, - anon_sym_DOLLAR, - ACTIONS(6499), 1, - anon_sym_LPAREN2, - ACTIONS(6501), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6503), 1, - aux_sym__immediate_decimal_token2, - STATE(3357), 1, - sym_comment, - STATE(4214), 1, - sym__immediate_decimal, - ACTIONS(1683), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6505), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4414), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103360] = 4, - ACTIONS(103), 1, + [102578] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3358), 1, + STATE(3333), 1, sym_comment, - ACTIONS(6211), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6209), 11, + ACTIONS(6503), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228081,15 +228652,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, - [103384] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102600] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3359), 1, + STATE(3334), 1, sym_comment, - ACTIONS(6215), 2, + ACTIONS(5346), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6213), 11, + ACTIONS(5344), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228101,15 +228674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103408] = 4, - ACTIONS(3), 1, + [102624] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6509), 1, - anon_sym_EQ, - STATE(3360), 1, + STATE(3335), 1, sym_comment, - ACTIONS(6457), 12, + ACTIONS(6333), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(6331), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228121,14 +228694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103432] = 4, - ACTIONS(3), 1, + [102648] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6511), 1, - anon_sym_EQ, - STATE(3361), 1, + STATE(3336), 1, sym_comment, - ACTIONS(6457), 12, + ACTIONS(5350), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5348), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228140,15 +228714,15 @@ static const uint16_t 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, - [103456] = 4, - ACTIONS(3), 1, + [102672] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_EQ, - STATE(3362), 1, + STATE(3337), 1, sym_comment, - ACTIONS(6457), 12, + ACTIONS(2406), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2408), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228160,97 +228734,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [103480] = 4, + [102696] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6515), 1, - anon_sym_else, - STATE(3363), 1, + ACTIONS(785), 1, + anon_sym_DASH2, + ACTIONS(5184), 1, + sym__unquoted_pattern_in_record, + STATE(3338), 1, sym_comment, - ACTIONS(6451), 12, + ACTIONS(884), 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, - [103504] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5830), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5832), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(6517), 1, - anon_sym_RBRACK, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3018), 1, - aux_sym_parameter_parens_repeat1, - STATE(3364), 1, - sym_comment, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [103550] = 15, + [102722] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, + ACTIONS(6507), 1, + anon_sym_DASH2, + STATE(3339), 1, + sym_comment, + ACTIONS(6505), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5830), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5832), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(6519), 1, - anon_sym_RPAREN, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3018), 1, - aux_sym_parameter_parens_repeat1, - STATE(3365), 1, - sym_comment, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [103596] = 4, + anon_sym_LPAREN2, + [102746] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6521), 1, - anon_sym_else, - STATE(3366), 1, + STATE(3340), 1, sym_comment, - ACTIONS(6451), 12, + ACTIONS(2668), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228262,42 +228794,15 @@ static const uint16_t 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, - [103620] = 13, + [102768] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACK, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1798), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6437), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6439), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6523), 1, - anon_sym_DOT, - STATE(3367), 1, - sym_comment, - STATE(3943), 1, - sym__immediate_decimal, - ACTIONS(6441), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4036), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103662] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3368), 1, + STATE(3341), 1, sym_comment, - ACTIONS(4873), 13, + ACTIONS(2450), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2452), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228309,16 +228814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [103684] = 3, - ACTIONS(3), 1, + [102792] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3369), 1, + STATE(3342), 1, sym_comment, - ACTIONS(6267), 13, + ACTIONS(2454), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2456), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228330,15 +228834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103706] = 4, + [102816] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3370), 1, + STATE(3343), 1, sym_comment, - ACTIONS(6219), 2, + ACTIONS(2458), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6217), 11, + ACTIONS(2460), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228350,14 +228854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103730] = 4, - ACTIONS(3), 1, + [102840] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3262), 1, - aux_sym__repeat_newline, - STATE(3371), 1, + STATE(3344), 1, sym_comment, - ACTIONS(5563), 12, + ACTIONS(2462), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2464), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228369,47 +228874,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, - [103754] = 12, + [102864] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, - sym__space, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4950), 1, - anon_sym_DOT, - ACTIONS(6060), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6062), 1, - aux_sym__immediate_decimal_token2, - STATE(3372), 1, + STATE(3345), 1, sym_comment, - STATE(4110), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6064), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4109), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103794] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(2466), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2468), 11, sym__newline, - ACTIONS(6525), 1, - anon_sym_else, - STATE(3373), 1, - sym_comment, - STATE(3376), 1, - aux_sym__repeat_newline, - ACTIONS(6265), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228420,18 +228894,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, - [103822] = 6, + [102888] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6171), 1, + ACTIONS(6509), 1, + anon_sym_DASH2, + STATE(3346), 1, + sym_comment, + ACTIONS(5383), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6527), 1, - anon_sym_else, - STATE(3374), 1, + 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, + [102912] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6511), 1, + anon_sym_DASH2, + STATE(3347), 1, sym_comment, - STATE(3378), 1, - aux_sym__repeat_newline, - ACTIONS(6174), 10, + ACTIONS(5385), 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, + [102936] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3348), 1, + sym_comment, + ACTIONS(884), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(785), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228442,18 +228954,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, - [103850] = 6, + [102960] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6178), 1, + ACTIONS(6513), 1, + anon_sym_DASH2, + STATE(3349), 1, + sym_comment, + ACTIONS(5387), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6529), 1, - anon_sym_else, - STATE(3375), 1, + 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, + [102984] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6515), 1, + anon_sym_DASH2, + STATE(3350), 1, sym_comment, - STATE(3379), 1, - aux_sym__repeat_newline, - ACTIONS(6181), 10, + ACTIONS(5389), 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, + [103008] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6517), 1, + anon_sym_DASH2, + STATE(3351), 1, + sym_comment, + ACTIONS(5391), 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, + [103032] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5828), 1, + sym_identifier, + ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5840), 1, + anon_sym_DASH2, + ACTIONS(6005), 1, + anon_sym_RPAREN, + STATE(2543), 1, + sym_param_long_flag, + STATE(2656), 1, + sym__param_name, + STATE(2997), 1, + aux_sym_parameter_parens_repeat1, + STATE(3352), 1, + sym_comment, + STATE(3488), 1, + sym_param_rest, + STATE(3489), 1, + sym_param_opt, + STATE(3491), 1, + sym_param_short_flag, + STATE(3849), 1, + sym_parameter, + [103078] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3353), 1, + sym_comment, + ACTIONS(6323), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228464,18 +229062,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, - [103878] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103100] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6187), 1, + ACTIONS(6519), 1, + anon_sym_DASH2, + STATE(3354), 1, + sym_comment, + ACTIONS(5393), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6531), 1, - anon_sym_else, - STATE(3376), 1, + 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, + [103124] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3355), 1, sym_comment, - STATE(3380), 1, - aux_sym__repeat_newline, - ACTIONS(6190), 10, + ACTIONS(6467), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228486,18 +229101,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, - [103906] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103146] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6279), 1, - sym__newline, - ACTIONS(6533), 1, - anon_sym_else, - STATE(3377), 1, + STATE(3356), 1, sym_comment, - STATE(3381), 1, - aux_sym__repeat_newline, - ACTIONS(6282), 10, + ACTIONS(1714), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1588), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228508,18 +229123,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, - [103934] = 6, + [103170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6286), 1, - sym__newline, - ACTIONS(6535), 1, - anon_sym_else, - STATE(3378), 1, + STATE(3357), 1, sym_comment, - STATE(3382), 1, - aux_sym__repeat_newline, - ACTIONS(6289), 10, + ACTIONS(6521), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228530,18 +229140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103962] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6293), 1, - sym__newline, - ACTIONS(6537), 1, - anon_sym_else, - STATE(3379), 1, + STATE(3358), 1, sym_comment, - STATE(3383), 1, - aux_sym__repeat_newline, - ACTIONS(6296), 10, + ACTIONS(6523), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228552,18 +229159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103990] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103214] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6539), 1, - anon_sym_else, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3380), 1, + STATE(3359), 1, sym_comment, - ACTIONS(1862), 10, + ACTIONS(6525), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228574,18 +229178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104018] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103236] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6390), 1, - sym__newline, - ACTIONS(6542), 1, - anon_sym_else, - STATE(3381), 1, + STATE(3360), 1, sym_comment, - STATE(3384), 1, - aux_sym__repeat_newline, - ACTIONS(6393), 10, + ACTIONS(6527), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228596,18 +229197,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, - [104046] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103258] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6544), 1, - anon_sym_else, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3382), 1, + STATE(3361), 1, sym_comment, - ACTIONS(1862), 10, + ACTIONS(6171), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6169), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228618,18 +229219,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, - [104074] = 6, - ACTIONS(3), 1, + [103282] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__newline, - ACTIONS(6547), 1, - anon_sym_else, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3383), 1, + STATE(3362), 1, sym_comment, - ACTIONS(1862), 10, + ACTIONS(6175), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6173), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228640,18 +229239,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, - [104102] = 6, + [103306] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(6531), 1, + anon_sym_DASH2, + STATE(3363), 1, + sym_comment, + ACTIONS(6529), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6550), 1, - anon_sym_else, - STATE(485), 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, + [103330] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6533), 1, + anon_sym_DASH2, + STATE(3364), 1, + sym_comment, + ACTIONS(5395), 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, + [103354] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3384), 1, + STATE(3365), 1, sym_comment, - ACTIONS(1862), 10, + ACTIONS(5720), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228662,15 +229298,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, - [104130] = 4, + anon_sym_RPAREN, + [103378] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3385), 1, + STATE(3366), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(2470), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6221), 11, + ACTIONS(2472), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228682,15 +229319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104154] = 4, + [103402] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3386), 1, + STATE(3367), 1, sym_comment, - ACTIONS(4631), 2, + ACTIONS(2470), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4629), 11, + ACTIONS(2472), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228702,12 +229339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104178] = 3, - ACTIONS(3), 1, + [103426] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3387), 1, + STATE(3368), 1, sym_comment, - ACTIONS(6553), 13, + ACTIONS(2350), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2352), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228719,79 +229359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [104200] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5830), 1, - anon_sym_DOLLAR, - ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, - anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(5948), 1, - anon_sym_RBRACK, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3018), 1, - aux_sym_parameter_parens_repeat1, - STATE(3388), 1, - sym_comment, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [104246] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5824), 1, - sym_identifier, - ACTIONS(5830), 1, - anon_sym_DOLLAR, - ACTIONS(5832), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5834), 1, - anon_sym_DASH_DASH, - ACTIONS(5836), 1, - anon_sym_DASH2, - ACTIONS(5914), 1, - anon_sym_RPAREN, - STATE(2511), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3018), 1, - aux_sym_parameter_parens_repeat1, - STATE(3389), 1, - sym_comment, - STATE(3538), 1, - sym_param_rest, - STATE(3539), 1, - sym_param_opt, - STATE(3540), 1, - sym_param_short_flag, - STATE(3803), 1, - sym_parameter, - [104292] = 4, + [103450] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3390), 1, + STATE(3369), 1, sym_comment, - ACTIONS(6237), 2, + ACTIONS(2368), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6235), 11, + ACTIONS(2370), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228803,14 +229379,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, - [104316] = 4, + [103474] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3391), 1, + STATE(3370), 1, sym_comment, - ACTIONS(5730), 12, + ACTIONS(6535), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228823,12 +229397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104340] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [103496] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3392), 1, + STATE(3371), 1, sym_comment, - ACTIONS(6555), 13, + ACTIONS(4618), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4616), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228840,14 +229418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [104362] = 3, + [103520] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3393), 1, + ACTIONS(6537), 1, + anon_sym_else, + STATE(3372), 1, sym_comment, - ACTIONS(6557), 13, + ACTIONS(6471), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228859,17 +229438,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, - [104384] = 4, - ACTIONS(103), 1, + [103544] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3394), 1, + STATE(3373), 1, sym_comment, - ACTIONS(6227), 2, + ACTIONS(1885), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(6225), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228881,32 +229457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104408] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6559), 1, - anon_sym_DASH2, - STATE(3395), 1, - sym_comment, - ACTIONS(5382), 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, - [104432] = 3, - ACTIONS(3), 1, + [103566] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3396), 1, + STATE(3374), 1, sym_comment, - ACTIONS(6561), 12, + ACTIONS(6323), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6321), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228918,32 +229477,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, - [104453] = 4, + [103590] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2475), 1, - anon_sym_DASH2, - STATE(3397), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(3375), 1, sym_comment, - ACTIONS(2473), 11, - anon_sym_EQ, - sym_identifier, + STATE(4557), 1, + sym__immediate_decimal, + ACTIONS(6421), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6423), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(768), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 3, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104476] = 3, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [103626] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3398), 1, + STATE(3376), 1, sym_comment, - ACTIONS(6563), 12, + ACTIONS(2372), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2374), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228955,13 +229523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [104497] = 3, - ACTIONS(3), 1, + [103650] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3399), 1, + STATE(3377), 1, sym_comment, - ACTIONS(6565), 12, + ACTIONS(2241), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2243), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228973,13 +229543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [104518] = 3, - ACTIONS(3), 1, + [103674] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3400), 1, + STATE(3378), 1, sym_comment, - ACTIONS(6567), 12, + ACTIONS(2630), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2632), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228991,13 +229563,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, - [104539] = 3, + [103698] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3401), 1, + STATE(3379), 1, sym_comment, - ACTIONS(6569), 12, + ACTIONS(2660), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229009,13 +229582,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, - [104560] = 3, + [103720] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3402), 1, + ACTIONS(6539), 1, + anon_sym_EQ, + STATE(3380), 1, sym_comment, - ACTIONS(6571), 12, + ACTIONS(6467), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229028,12 +229602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104581] = 3, + [103744] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3403), 1, + ACTIONS(6541), 1, + anon_sym_else, + STATE(3381), 1, sym_comment, - ACTIONS(6573), 12, + ACTIONS(6471), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229046,13 +229622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104602] = 3, - ACTIONS(3), 1, + [103768] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3404), 1, + STATE(3382), 1, sym_comment, - ACTIONS(6431), 12, + ACTIONS(4639), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4637), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229064,13 +229642,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, - [104623] = 3, + [103792] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3405), 1, + STATE(3383), 1, sym_comment, - ACTIONS(6433), 12, + ACTIONS(6325), 13, ts_builtin_sym_end, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229082,50 +229661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104644] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6577), 1, - anon_sym_DASH2, - STATE(3406), 1, - sym_comment, - ACTIONS(6575), 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, - [104667] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5979), 1, - anon_sym_DASH2, - STATE(3407), 1, - sym_comment, - ACTIONS(5977), 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, - [104690] = 3, + [103814] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3408), 1, + ACTIONS(6543), 1, + anon_sym_finally, + STATE(3384), 1, sym_comment, - ACTIONS(6579), 12, + ACTIONS(6329), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229137,14 +229681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [104711] = 3, - ACTIONS(3), 1, + [103838] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3409), 1, + STATE(3385), 1, sym_comment, - ACTIONS(6435), 12, + ACTIONS(2474), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2476), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229156,39 +229701,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104732] = 12, + [103862] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1620), 1, sym__entry_separator, - ACTIONS(1633), 1, + ACTIONS(1622), 1, anon_sym_RBRACE, - ACTIONS(1637), 1, + ACTIONS(1641), 1, sym__unquoted_pattern_in_record, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6581), 1, + ACTIONS(1766), 1, anon_sym_DOLLAR, - ACTIONS(6583), 1, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6545), 1, + anon_sym_DOT, + ACTIONS(6547), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6585), 1, + ACTIONS(6549), 1, aux_sym__immediate_decimal_token2, - STATE(3410), 1, + STATE(3386), 1, sym_comment, - STATE(4545), 1, + STATE(3886), 1, sym__immediate_decimal, - ACTIONS(6587), 2, + ACTIONS(6551), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4374), 2, + STATE(4197), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104771] = 3, + [103904] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3411), 1, + ACTIONS(6553), 1, + anon_sym_EQ, + STATE(3387), 1, sym_comment, - ACTIONS(6589), 12, + ACTIONS(6467), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229200,14 +229750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [104792] = 3, - ACTIONS(3), 1, + [103928] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3412), 1, + STATE(3388), 1, sym_comment, - ACTIONS(6384), 12, + ACTIONS(2478), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2480), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229219,12 +229770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104813] = 3, - ACTIONS(3), 1, + [103952] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3413), 1, + STATE(3389), 1, sym_comment, - ACTIONS(6591), 12, + ACTIONS(6378), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6376), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229236,14 +229790,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, - [104834] = 3, + [103976] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3414), 1, + ACTIONS(6555), 1, + anon_sym_EQ, + STATE(3390), 1, sym_comment, - ACTIONS(6461), 12, - ts_builtin_sym_end, + ACTIONS(6467), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229255,40 +229809,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, - [104855] = 12, - ACTIONS(103), 1, + anon_sym_RPAREN, + [104000] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - sym__entry_separator, - ACTIONS(1683), 1, - anon_sym_RBRACE, - ACTIONS(1695), 1, - sym__unquoted_pattern_in_record, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6581), 1, - anon_sym_DOLLAR, - ACTIONS(6583), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6585), 1, - aux_sym__immediate_decimal_token2, - STATE(3415), 1, + ACTIONS(6408), 1, + sym__newline, + ACTIONS(6557), 1, + anon_sym_else, + STATE(3391), 1, sym_comment, - STATE(4556), 1, - sym__immediate_decimal, - ACTIONS(6587), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4414), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104894] = 3, + STATE(3394), 1, + aux_sym__repeat_newline, + ACTIONS(6411), 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, + [104028] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3416), 1, - sym_comment, - ACTIONS(6593), 12, + ACTIONS(6337), 1, sym__newline, + ACTIONS(6559), 1, + anon_sym_else, + STATE(3392), 1, + sym_comment, + STATE(3396), 1, + aux_sym__repeat_newline, + ACTIONS(6340), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229299,14 +229854,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, - [104915] = 3, + [104056] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3417), 1, - sym_comment, - ACTIONS(6595), 12, + ACTIONS(6348), 1, sym__newline, + ACTIONS(6561), 1, + anon_sym_else, + STATE(3393), 1, + sym_comment, + STATE(3397), 1, + aux_sym__repeat_newline, + ACTIONS(6351), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229317,14 +229876,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, - [104936] = 3, + [104084] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3418), 1, - sym_comment, - ACTIONS(6597), 12, + ACTIONS(6359), 1, sym__newline, + ACTIONS(6563), 1, + anon_sym_else, + STATE(3394), 1, + sym_comment, + STATE(3398), 1, + aux_sym__repeat_newline, + ACTIONS(6362), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229335,14 +229898,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, - [104957] = 3, + [104112] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3419), 1, - sym_comment, - ACTIONS(6599), 12, + ACTIONS(6246), 1, sym__newline, + ACTIONS(6565), 1, + anon_sym_else, + STATE(3395), 1, + sym_comment, + STATE(3399), 1, + aux_sym__repeat_newline, + ACTIONS(6249), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229353,15 +229920,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, - [104978] = 3, + [104140] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3420), 1, - sym_comment, - ACTIONS(6401), 12, - ts_builtin_sym_end, + ACTIONS(6253), 1, sym__newline, + ACTIONS(6567), 1, + anon_sym_else, + STATE(3396), 1, + sym_comment, + STATE(3400), 1, + aux_sym__repeat_newline, + ACTIONS(6256), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229372,32 +229942,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, - [104999] = 4, + [104168] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_DASH2, - STATE(3421), 1, - sym_comment, - ACTIONS(5298), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6260), 1, sym__newline, + ACTIONS(6569), 1, + anon_sym_else, + STATE(3397), 1, + sym_comment, + STATE(3401), 1, + aux_sym__repeat_newline, + ACTIONS(6263), 10, + 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, - [105022] = 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, + [104196] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3422), 1, - sym_comment, - ACTIONS(6601), 12, + ACTIONS(1880), 1, sym__newline, + ACTIONS(6571), 1, + anon_sym_else, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3398), 1, + sym_comment, + ACTIONS(1878), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229408,14 +229986,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, - [105043] = 3, + [104224] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3423), 1, - sym_comment, - ACTIONS(6603), 12, + ACTIONS(6078), 1, sym__newline, + ACTIONS(6574), 1, + anon_sym_else, + STATE(3399), 1, + sym_comment, + STATE(3402), 1, + aux_sym__repeat_newline, + ACTIONS(6081), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229426,14 +230008,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, - [105064] = 3, + [104252] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3424), 1, - sym_comment, - ACTIONS(6605), 12, + ACTIONS(1880), 1, sym__newline, + ACTIONS(6576), 1, + anon_sym_else, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3400), 1, + sym_comment, + ACTIONS(1878), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229444,14 +230030,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, - [105085] = 3, + [104280] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3425), 1, - sym_comment, - ACTIONS(6607), 12, + ACTIONS(1880), 1, sym__newline, + ACTIONS(6579), 1, + anon_sym_else, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3401), 1, + sym_comment, + ACTIONS(1878), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229462,14 +230052,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, - [105106] = 3, + [104308] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3426), 1, - sym_comment, - ACTIONS(6609), 12, + ACTIONS(1880), 1, sym__newline, + ACTIONS(6582), 1, + anon_sym_else, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3402), 1, + sym_comment, + ACTIONS(1878), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229480,13 +230074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [105127] = 3, - ACTIONS(3), 1, + [104336] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3427), 1, + STATE(3403), 1, sym_comment, - ACTIONS(6611), 12, + ACTIONS(1885), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1887), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229498,13 +230094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [105148] = 3, - ACTIONS(3), 1, + [104360] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3428), 1, + STATE(3404), 1, sym_comment, - ACTIONS(6613), 12, + ACTIONS(6299), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6297), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229516,13 +230114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [105169] = 3, - ACTIONS(3), 1, + [104384] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3429), 1, + STATE(3405), 1, sym_comment, - ACTIONS(6615), 12, + ACTIONS(5492), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5490), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229534,13 +230134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [105190] = 3, - ACTIONS(3), 1, + [104408] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3430), 1, + STATE(3406), 1, sym_comment, - ACTIONS(6617), 12, + ACTIONS(2108), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2110), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229552,13 +230154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [105211] = 3, - ACTIONS(3), 1, + [104432] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3431), 1, + STATE(3407), 1, sym_comment, - ACTIONS(6619), 12, + ACTIONS(6303), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6301), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229570,59 +230174,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, - [105232] = 4, - ACTIONS(3), 1, + [104456] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5887), 1, - anon_sym_DASH2, - STATE(3432), 1, + STATE(3408), 1, sym_comment, - ACTIONS(5300), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6307), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6305), 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, - [105255] = 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, + [104480] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1681), 1, - sym__entry_separator, - ACTIONS(1683), 1, - anon_sym_RBRACK, - ACTIONS(1695), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6581), 1, - anon_sym_DOLLAR, - ACTIONS(6621), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6623), 1, - aux_sym__immediate_decimal_token2, - STATE(3433), 1, + STATE(3409), 1, sym_comment, - STATE(4549), 1, - sym__immediate_decimal, - ACTIONS(6625), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4414), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105294] = 3, + ACTIONS(6311), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6309), 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, + [104504] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3434), 1, + ACTIONS(1967), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3410), 1, + sym_comment, + ACTIONS(1965), 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, + [104528] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3411), 1, sym_comment, - ACTIONS(6627), 12, + ACTIONS(6315), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6313), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229634,13 +230254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [105315] = 3, - ACTIONS(3), 1, + [104552] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3435), 1, + STATE(3412), 1, sym_comment, - ACTIONS(6629), 12, + ACTIONS(6319), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6317), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229652,13 +230274,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [105336] = 3, + [104576] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + sym__entry_separator, + ACTIONS(1766), 1, + anon_sym_DOLLAR, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6435), 1, + anon_sym_DOT, + ACTIONS(6475), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6477), 1, + aux_sym__immediate_decimal_token2, + STATE(3413), 1, + sym_comment, + STATE(4194), 1, + sym__immediate_decimal, + ACTIONS(1604), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6479), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4193), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104616] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3436), 1, + STATE(3365), 1, + aux_sym__repeat_newline, + STATE(3414), 1, sym_comment, - ACTIONS(6631), 12, + ACTIONS(5552), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229671,12 +230322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105357] = 3, - ACTIONS(3), 1, + [104640] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3437), 1, + STATE(3415), 1, sym_comment, - ACTIONS(6633), 12, + ACTIONS(2410), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2412), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229688,13 +230342,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, - [105378] = 3, + [104664] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3438), 1, + STATE(3416), 1, sym_comment, - ACTIONS(6635), 12, + ACTIONS(6585), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229707,12 +230360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105399] = 3, + [104685] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3439), 1, + STATE(3417), 1, sym_comment, - ACTIONS(6637), 12, + ACTIONS(5790), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229724,13 +230378,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, - [105420] = 3, + [104706] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3440), 1, + STATE(3418), 1, sym_comment, - ACTIONS(6639), 12, + ACTIONS(6587), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229743,30 +230396,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105441] = 3, + [104727] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3441), 1, + ACTIONS(5875), 1, + anon_sym_DASH2, + STATE(3419), 1, sym_comment, - ACTIONS(6641), 12, + ACTIONS(5873), 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, - [105462] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104750] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3442), 1, + STATE(3420), 1, sym_comment, - ACTIONS(6643), 12, + ACTIONS(6589), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229779,58 +230433,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105483] = 3, + [104771] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3443), 1, - sym_comment, - ACTIONS(6645), 12, + ACTIONS(6591), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6594), 1, + anon_sym_DASH2, + STATE(3421), 1, + sym_comment, + ACTIONS(1965), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4509), 8, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - [105504] = 11, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104798] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1677), 1, - sym__space, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(6598), 1, + anon_sym_DASH2, + STATE(3422), 1, + sym_comment, + ACTIONS(6596), 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(6647), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6649), 1, - aux_sym__immediate_decimal_token2, - STATE(3219), 1, - sym__immediate_decimal, - STATE(3444), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104821] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2408), 1, + anon_sym_DASH2, + STATE(3423), 1, sym_comment, - ACTIONS(1679), 2, + ACTIONS(2406), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - ACTIONS(6064), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3218), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105541] = 4, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5912), 1, + ACTIONS(2412), 1, anon_sym_DASH2, - STATE(3445), 1, + STATE(3424), 1, sym_comment, - ACTIONS(5257), 11, + ACTIONS(2410), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -229842,12 +230511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105564] = 3, + [104867] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3446), 1, + STATE(3425), 1, sym_comment, - ACTIONS(6651), 12, + ACTIONS(4899), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229860,83 +230529,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105585] = 11, - ACTIONS(103), 1, + [104888] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__space, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6647), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6649), 1, - aux_sym__immediate_decimal_token2, - STATE(3221), 1, - sym__immediate_decimal, - STATE(3447), 1, + ACTIONS(5918), 1, + anon_sym_DASH2, + STATE(3426), 1, sym_comment, - ACTIONS(1661), 2, + ACTIONS(5916), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - ACTIONS(6064), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3220), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105622] = 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, + [104911] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3448), 1, + ACTIONS(2452), 1, + anon_sym_DASH2, + STATE(3427), 1, sym_comment, - ACTIONS(6653), 12, + ACTIONS(2450), 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, - [105643] = 12, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104934] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1798), 1, + ACTIONS(1766), 1, anon_sym_DOLLAR, - ACTIONS(6150), 1, + ACTIONS(6050), 1, anon_sym_LPAREN2, - ACTIONS(6154), 1, + ACTIONS(6054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6156), 1, + ACTIONS(6056), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6655), 1, + ACTIONS(6600), 1, anon_sym_RBRACK, - ACTIONS(6657), 1, + ACTIONS(6602), 1, anon_sym_DOLLAR2, - ACTIONS(6659), 1, + ACTIONS(6604), 1, aux_sym__unquoted_in_list_token2, - STATE(3449), 1, + STATE(3428), 1, sym_comment, - STATE(3816), 1, + STATE(3859), 1, sym__immediate_decimal, - ACTIONS(6158), 2, + ACTIONS(6058), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4147), 2, + STATE(4166), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105682] = 3, + [104973] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3450), 1, + STATE(3429), 1, sym_comment, - ACTIONS(6661), 12, + ACTIONS(6606), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229949,13 +230612,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105703] = 3, + [104994] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3451), 1, + STATE(3430), 1, sym_comment, - ACTIONS(6507), 12, - ts_builtin_sym_end, + ACTIONS(6608), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229967,12 +230629,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [105724] = 3, + anon_sym_RPAREN, + [105015] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3452), 1, + ACTIONS(6612), 1, + anon_sym_DASH2, + STATE(3431), 1, + sym_comment, + ACTIONS(6610), 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, + [105038] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2456), 1, + anon_sym_DASH2, + STATE(3432), 1, + sym_comment, + ACTIONS(2454), 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, + [105061] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3433), 1, sym_comment, - ACTIONS(6663), 12, + ACTIONS(6614), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229985,38 +230686,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105745] = 11, + [105082] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, - anon_sym_LBRACE, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, + ACTIONS(2460), 1, + anon_sym_DASH2, + STATE(3434), 1, + sym_comment, + ACTIONS(2458), 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(6665), 1, - anon_sym_DOT, - STATE(3453), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105105] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2464), 1, + anon_sym_DASH2, + STATE(3435), 1, sym_comment, - STATE(4324), 1, - sym__immediate_decimal, - ACTIONS(6667), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6669), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4382), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105782] = 3, + ACTIONS(2462), 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, + [105128] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3454), 1, + STATE(3436), 1, sym_comment, - ACTIONS(4875), 12, + ACTIONS(6453), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230028,13 +230742,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, + [105149] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2468), 1, + anon_sym_DASH2, + STATE(3437), 1, + sym_comment, + ACTIONS(2466), 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, + [105172] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5826), 1, + anon_sym_DASH2, + STATE(3438), 1, + sym_comment, + ACTIONS(5235), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [105803] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105195] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3455), 1, + STATE(3439), 1, sym_comment, - ACTIONS(6671), 12, + ACTIONS(6616), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230047,39 +230798,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105824] = 12, + [105216] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5842), 1, + anon_sym_DASH2, + STATE(3440), 1, + sym_comment, + ACTIONS(5330), 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, + [105239] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6618), 1, + anon_sym_DOT, + ACTIONS(6620), 1, + aux_sym__immediate_decimal_token5, + STATE(3441), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105266] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(6622), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(383), 1, + sym_cell_path, + STATE(3442), 1, + sym_comment, + STATE(3613), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1633), 1, + ACTIONS(1442), 5, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1798), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [105297] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3443), 1, + sym_comment, + ACTIONS(6624), 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, + [105318] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + sym__entry_separator, + ACTIONS(6050), 1, anon_sym_LPAREN2, - ACTIONS(6437), 1, + ACTIONS(6626), 1, + anon_sym_DOLLAR, + ACTIONS(6628), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6439), 1, + ACTIONS(6630), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6673), 1, - anon_sym_DOT, - STATE(3456), 1, + STATE(3444), 1, sym_comment, - STATE(4290), 1, + STATE(4660), 1, sym__immediate_decimal, - ACTIONS(6441), 2, + ACTIONS(1604), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6479), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4036), 2, + STATE(4656), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105863] = 3, + [105355] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3457), 1, + STATE(3445), 1, sym_comment, - ACTIONS(6675), 12, + ACTIONS(6632), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230092,12 +230923,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105884] = 3, + [105376] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1460), 1, + anon_sym_BANG, + ACTIONS(6634), 1, + anon_sym_QMARK2, + STATE(350), 1, + sym__path_suffix, + STATE(3446), 1, + sym_comment, + ACTIONS(1450), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1448), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [105405] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3458), 1, + ACTIONS(5912), 1, + anon_sym_DASH2, + STATE(3447), 1, + sym_comment, + ACTIONS(5241), 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, + [105428] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3448), 1, sym_comment, - ACTIONS(6677), 12, + ACTIONS(6636), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230110,39 +230982,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105905] = 12, + [105449] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6154), 1, + ACTIONS(6638), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6156), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6657), 1, - anon_sym_DOLLAR2, - ACTIONS(6659), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6679), 1, - anon_sym_RBRACK, - STATE(3459), 1, + ACTIONS(6640), 1, + aux_sym__immediate_decimal_token5, + STATE(3449), 1, sym_comment, - STATE(3816), 1, - sym__immediate_decimal, - ACTIONS(6158), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4147), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105944] = 3, + 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, + [105476] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3460), 1, + STATE(3450), 1, sym_comment, - ACTIONS(6681), 12, + ACTIONS(6642), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230155,12 +231021,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105965] = 3, + [105497] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3461), 1, + STATE(3451), 1, sym_comment, - ACTIONS(6683), 12, + ACTIONS(6323), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230172,13 +231039,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, + [105518] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2110), 1, + anon_sym_DASH2, + STATE(3452), 1, + sym_comment, + ACTIONS(2108), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [105986] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105541] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3462), 1, + STATE(3453), 1, sym_comment, - ACTIONS(6685), 12, + ACTIONS(6467), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230190,13 +231076,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, - [106007] = 3, + [105562] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3463), 1, + STATE(3454), 1, sym_comment, - ACTIONS(6687), 12, + ACTIONS(6644), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230209,12 +231094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106028] = 3, + [105583] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3464), 1, + STATE(3455), 1, sym_comment, - ACTIONS(6689), 12, + ACTIONS(6646), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230227,12 +231112,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106049] = 3, + [105604] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1620), 1, + sym__entry_separator, + ACTIONS(1622), 1, + anon_sym_RBRACK, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6626), 1, + anon_sym_DOLLAR, + ACTIONS(6648), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6650), 1, + aux_sym__immediate_decimal_token2, + STATE(3456), 1, + sym_comment, + STATE(4517), 1, + sym__immediate_decimal, + ACTIONS(6652), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4669), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105643] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3465), 1, + STATE(3457), 1, sym_comment, - ACTIONS(6691), 12, + ACTIONS(6654), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230245,12 +231157,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106070] = 3, + [105664] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(3466), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1620), 1, + anon_sym_LBRACE, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + ACTIONS(6656), 1, + anon_sym_DOT, + STATE(3458), 1, + sym_comment, + STATE(4285), 1, + sym__immediate_decimal, + ACTIONS(6658), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6660), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4383), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105701] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + STATE(702), 1, + aux_sym__pipe_separator, + STATE(3459), 1, + sym_comment, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(2138), 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, + [105728] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3460), 1, sym_comment, - ACTIONS(6693), 12, + ACTIONS(6662), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230263,12 +231222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106091] = 3, + [105749] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3467), 1, + STATE(3461), 1, sym_comment, - ACTIONS(6695), 12, + ACTIONS(6664), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230281,12 +231240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106112] = 3, + [105770] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3468), 1, + STATE(3462), 1, sym_comment, - ACTIONS(6697), 12, + ACTIONS(6666), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230299,12 +231258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106133] = 3, + [105791] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3469), 1, + STATE(3463), 1, sym_comment, - ACTIONS(6699), 12, + ACTIONS(6668), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230317,12 +231276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106154] = 3, + [105812] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3470), 1, + STATE(3464), 1, sym_comment, - ACTIONS(6701), 12, + ACTIONS(6670), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230335,12 +231294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106175] = 3, + [105833] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3471), 1, + STATE(3465), 1, sym_comment, - ACTIONS(6703), 12, + ACTIONS(6672), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230353,38 +231312,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106196] = 11, + [105854] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1669), 1, + ACTIONS(1600), 1, sym__space, - ACTIONS(3347), 1, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - ACTIONS(6647), 1, + ACTIONS(6674), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6649), 1, + ACTIONS(6676), 1, aux_sym__immediate_decimal_token2, - STATE(3223), 1, + STATE(3055), 1, sym__immediate_decimal, - STATE(3472), 1, + STATE(3466), 1, sym_comment, - ACTIONS(1671), 2, + ACTIONS(1604), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6064), 2, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3222), 2, + STATE(3054), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106233] = 3, + [105891] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3473), 1, + STATE(3467), 1, sym_comment, - ACTIONS(6705), 12, + ACTIONS(6678), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230397,12 +231356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106254] = 3, + [105912] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3474), 1, + STATE(3468), 1, sym_comment, - ACTIONS(6707), 12, + ACTIONS(6680), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230415,14 +231374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106275] = 4, + [105933] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2427), 1, + ACTIONS(6682), 1, anon_sym_DASH2, - STATE(3475), 1, + STATE(3469), 1, sym_comment, - ACTIONS(2425), 11, + ACTIONS(6371), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230434,12 +231393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106298] = 3, + [105956] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3476), 1, + STATE(3470), 1, sym_comment, - ACTIONS(6709), 12, + ACTIONS(6455), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230451,13 +231411,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, + [105977] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6684), 1, + anon_sym_DASH2, + STATE(3471), 1, + sym_comment, + ACTIONS(6380), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [106319] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106000] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3477), 1, + STATE(3472), 1, sym_comment, - ACTIONS(6711), 12, + ACTIONS(6686), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230470,31 +231448,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106340] = 4, + [106021] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2431), 1, - anon_sym_DASH2, - STATE(3478), 1, + STATE(3473), 1, sym_comment, - ACTIONS(2429), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6688), 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, - [106363] = 3, + [106042] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3479), 1, + STATE(3474), 1, sym_comment, - ACTIONS(6713), 12, + ACTIONS(6690), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230507,14 +231484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106384] = 3, + [106063] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3480), 1, - sym_comment, - ACTIONS(6715), 12, + ACTIONS(2935), 1, sym__newline, - anon_sym_SEMI, + STATE(710), 1, + aux_sym__pipe_separator, + STATE(3475), 1, + sym_comment, + STATE(3611), 1, + aux_sym__repeat_newline, + ACTIONS(2138), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -230524,117 +231505,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [106405] = 11, + [106090] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, + ACTIONS(1600), 1, sym__entry_separator, - ACTIONS(6497), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR, - ACTIONS(6499), 1, + ACTIONS(6427), 1, anon_sym_LPAREN2, - ACTIONS(6501), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6503), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token2, - STATE(3481), 1, + STATE(3476), 1, sym_comment, - STATE(4372), 1, + STATE(4660), 1, sym__immediate_decimal, - ACTIONS(1603), 2, + ACTIONS(1604), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6505), 2, + ACTIONS(6433), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4371), 2, + STATE(4656), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106442] = 11, + [106127] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1677), 1, + ACTIONS(1669), 1, sym__entry_separator, - ACTIONS(6497), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR, - ACTIONS(6499), 1, + ACTIONS(6427), 1, anon_sym_LPAREN2, - ACTIONS(6501), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6503), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token2, - STATE(3482), 1, + STATE(3477), 1, sym_comment, - STATE(4409), 1, + STATE(4603), 1, sym__immediate_decimal, - ACTIONS(1679), 2, + ACTIONS(1671), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6505), 2, + ACTIONS(6433), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4408), 2, + STATE(4568), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106479] = 11, + [106164] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1681), 1, sym__entry_separator, - ACTIONS(6497), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR, - ACTIONS(6499), 1, + ACTIONS(6427), 1, anon_sym_LPAREN2, - ACTIONS(6501), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6503), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token2, - STATE(3483), 1, + STATE(3478), 1, sym_comment, - STATE(4411), 1, + STATE(4561), 1, sym__immediate_decimal, - ACTIONS(1661), 2, + ACTIONS(1683), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6505), 2, + ACTIONS(6433), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4410), 2, + STATE(4443), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106516] = 11, + [106201] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1669), 1, + ACTIONS(1685), 1, sym__entry_separator, - ACTIONS(6497), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR, - ACTIONS(6499), 1, + ACTIONS(6427), 1, anon_sym_LPAREN2, - ACTIONS(6501), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6503), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token2, - STATE(3484), 1, + STATE(3479), 1, sym_comment, - STATE(4413), 1, + STATE(4479), 1, sym__immediate_decimal, - ACTIONS(1671), 2, + ACTIONS(1687), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6505), 2, + ACTIONS(6433), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4412), 2, + STATE(4641), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106553] = 3, + [106238] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3485), 1, + STATE(3480), 1, sym_comment, - ACTIONS(6717), 12, + ACTIONS(6521), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230646,13 +231627,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [106574] = 3, + [106259] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3486), 1, + STATE(3481), 1, + sym_comment, + ACTIONS(6523), 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, + [106280] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1669), 1, + sym__entry_separator, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6626), 1, + anon_sym_DOLLAR, + ACTIONS(6628), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6630), 1, + aux_sym__immediate_decimal_token2, + STATE(3482), 1, + sym_comment, + STATE(4603), 1, + sym__immediate_decimal, + ACTIONS(1671), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6479), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4568), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106317] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1681), 1, + sym__entry_separator, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6626), 1, + anon_sym_DOLLAR, + ACTIONS(6628), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6630), 1, + aux_sym__immediate_decimal_token2, + STATE(3483), 1, + sym_comment, + STATE(4561), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6479), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4443), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106354] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1685), 1, + sym__entry_separator, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6626), 1, + anon_sym_DOLLAR, + ACTIONS(6628), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6630), 1, + aux_sym__immediate_decimal_token2, + STATE(3484), 1, + sym_comment, + STATE(4479), 1, + sym__immediate_decimal, + ACTIONS(1687), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6479), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4641), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106391] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3485), 1, sym_comment, - ACTIONS(6719), 12, + ACTIONS(6692), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230665,14 +231741,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106595] = 4, + [106412] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_DOLLAR, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6056), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6602), 1, + anon_sym_DOLLAR2, + ACTIONS(6604), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6694), 1, + anon_sym_RBRACK, + STATE(3486), 1, + sym_comment, + STATE(3859), 1, + sym__immediate_decimal, + ACTIONS(6058), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4166), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106451] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6721), 1, + ACTIONS(5885), 1, anon_sym_DASH2, STATE(3487), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(5295), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230684,30 +231787,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106618] = 3, + [106474] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6698), 1, + anon_sym_DASH2, STATE(3488), 1, sym_comment, - ACTIONS(6723), 12, + ACTIONS(6696), 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, - [106639] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106497] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6702), 1, + anon_sym_DASH2, STATE(3489), 1, sym_comment, - ACTIONS(6725), 12, + ACTIONS(6700), 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, + [106520] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3490), 1, + sym_comment, + ACTIONS(6704), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230720,14 +231843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106660] = 4, + [106541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6727), 1, + ACTIONS(6708), 1, anon_sym_DASH2, - STATE(3490), 1, + STATE(3491), 1, sym_comment, - ACTIONS(6250), 11, + ACTIONS(6706), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230739,14 +231862,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106683] = 4, + [106564] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3492), 1, + sym_comment, + ACTIONS(6525), 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, + [106585] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2435), 1, + ACTIONS(5820), 1, anon_sym_DASH2, - STATE(3491), 1, + STATE(3493), 1, sym_comment, - ACTIONS(2433), 11, + ACTIONS(5255), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230758,33 +231899,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106706] = 4, + [106608] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DASH2, - STATE(3492), 1, + STATE(3494), 1, sym_comment, - ACTIONS(6250), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6710), 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, - [106729] = 4, + [106629] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6729), 1, + ACTIONS(6712), 1, anon_sym_DASH2, - STATE(3493), 1, + STATE(3495), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6392), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230796,12 +231936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106752] = 3, + [106652] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3494), 1, + STATE(3496), 1, sym_comment, - ACTIONS(6731), 12, + ACTIONS(6714), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230814,33 +231954,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106773] = 6, + [106673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6733), 1, - anon_sym_DOT, - ACTIONS(6735), 1, - aux_sym__immediate_decimal_token5, - STATE(3495), 1, + STATE(3497), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, + ACTIONS(6495), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106800] = 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, + [106694] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3496), 1, + STATE(3498), 1, sym_comment, - ACTIONS(6737), 12, + ACTIONS(4881), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230852,36 +231990,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [106821] = 6, + [106715] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6739), 1, + STATE(3499), 1, + sym_comment, + ACTIONS(6527), 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, + [106736] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1669), 1, + sym__space, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(6674), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6741), 1, - aux_sym__immediate_decimal_token5, - STATE(3497), 1, + ACTIONS(6676), 1, + aux_sym__immediate_decimal_token2, + STATE(3083), 1, + sym__immediate_decimal, + STATE(3500), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, + ACTIONS(1671), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3082), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106773] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1681), 1, + sym__space, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(6674), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6676), 1, + aux_sym__immediate_decimal_token2, + STATE(3085), 1, + sym__immediate_decimal, + STATE(3501), 1, + sym_comment, + ACTIONS(1683), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3084), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106810] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3502), 1, + sym_comment, + ACTIONS(6457), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106848] = 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, + [106831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(5846), 1, anon_sym_DASH2, - STATE(3498), 1, + STATE(3503), 1, sym_comment, - ACTIONS(2449), 11, + ACTIONS(5281), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230893,14 +232097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106871] = 4, + [106854] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2455), 1, + ACTIONS(6718), 1, anon_sym_DASH2, - STATE(3499), 1, + STATE(3504), 1, sym_comment, - ACTIONS(2453), 11, + ACTIONS(6716), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -230912,38 +232116,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106894] = 11, + [106877] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, - sym__entry_separator, - ACTIONS(6150), 1, + ACTIONS(1685), 1, + sym__space, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(6581), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - ACTIONS(6743), 1, + ACTIONS(6674), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6745), 1, + ACTIONS(6676), 1, aux_sym__immediate_decimal_token2, - STATE(3500), 1, - sym_comment, - STATE(4372), 1, + STATE(3087), 1, sym__immediate_decimal, - ACTIONS(1603), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6441), 2, + STATE(3505), 1, + sym_comment, + ACTIONS(1687), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4371), 2, + STATE(3086), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106931] = 3, + [106914] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3501), 1, + ACTIONS(6720), 1, + anon_sym_DASH2, + STATE(3506), 1, + sym_comment, + ACTIONS(5946), 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, + [106937] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6722), 1, + anon_sym_DASH2, + STATE(3507), 1, + sym_comment, + ACTIONS(5948), 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, + [106960] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3508), 1, sym_comment, - ACTIONS(4891), 12, + ACTIONS(6497), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230955,56 +232198,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, - [106952] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6747), 1, - anon_sym_DOT, - ACTIONS(6749), 1, - aux_sym__immediate_decimal_token5, - STATE(3502), 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, - [106979] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1448), 1, - anon_sym_BANG, - ACTIONS(6751), 1, - anon_sym_QMARK2, - STATE(355), 1, - sym__path_suffix, - STATE(3503), 1, - sym_comment, - ACTIONS(1444), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1442), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [107008] = 3, + [106981] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3504), 1, + STATE(3509), 1, sym_comment, - ACTIONS(6753), 12, + ACTIONS(6724), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231017,34 +232216,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107029] = 6, - ACTIONS(103), 1, + [107002] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6755), 1, + ACTIONS(6726), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6757), 1, + ACTIONS(6728), 1, aux_sym__immediate_decimal_token5, - STATE(3505), 1, + STATE(3510), 1, sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, + 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, - [107056] = 3, + [107029] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3506), 1, + STATE(3511), 1, sym_comment, - ACTIONS(4867), 12, - ts_builtin_sym_end, + ACTIONS(6730), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231056,32 +232254,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, - [107077] = 3, + anon_sym_RPAREN, + [107050] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3507), 1, + ACTIONS(6734), 1, + anon_sym_DASH2, + STATE(3512), 1, sym_comment, - ACTIONS(6759), 12, + ACTIONS(6732), 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, - [107098] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107073] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2459), 1, + ACTIONS(6738), 1, anon_sym_DASH2, - STATE(3508), 1, + STATE(3513), 1, sym_comment, - ACTIONS(2457), 11, + ACTIONS(6736), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231093,12 +232293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107121] = 3, + [107096] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3509), 1, + STATE(3514), 1, sym_comment, - ACTIONS(6761), 12, + ACTIONS(6740), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231111,18 +232311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107142] = 6, + [107117] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - STATE(727), 1, - aux_sym__pipe_separator, - STATE(3510), 1, + STATE(3515), 1, sym_comment, - STATE(3592), 1, - aux_sym__repeat_newline, - ACTIONS(2318), 9, + ACTIONS(6742), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231132,12 +232328,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, - [107169] = 3, + anon_sym_RPAREN, + [107138] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3511), 1, + STATE(3516), 1, sym_comment, - ACTIONS(6763), 12, + ACTIONS(6535), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231149,14 +232347,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, - [107190] = 3, + [107159] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3512), 1, + STATE(3517), 1, sym_comment, - ACTIONS(4873), 12, - ts_builtin_sym_end, + ACTIONS(6744), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231168,12 +232364,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, - [107211] = 3, + anon_sym_RPAREN, + [107180] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3513), 1, + STATE(3518), 1, sym_comment, - ACTIONS(6765), 12, + ACTIONS(6746), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231186,12 +232383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107232] = 3, + [107201] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3514), 1, + STATE(3519), 1, sym_comment, - ACTIONS(6767), 12, + ACTIONS(6748), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231204,91 +232401,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107253] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1677), 1, - sym__entry_separator, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6581), 1, - anon_sym_DOLLAR, - ACTIONS(6743), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6745), 1, - aux_sym__immediate_decimal_token2, - STATE(3515), 1, - sym_comment, - STATE(4409), 1, - sym__immediate_decimal, - ACTIONS(1679), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6441), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4408), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107290] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - sym__entry_separator, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6581), 1, - anon_sym_DOLLAR, - ACTIONS(6743), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6745), 1, - aux_sym__immediate_decimal_token2, - STATE(3516), 1, - sym_comment, - STATE(4411), 1, - sym__immediate_decimal, - ACTIONS(1661), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6441), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4410), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107327] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1669), 1, - sym__entry_separator, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6581), 1, - anon_sym_DOLLAR, - ACTIONS(6743), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6745), 1, - aux_sym__immediate_decimal_token2, - STATE(3517), 1, - sym_comment, - STATE(4413), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6441), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4412), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107364] = 3, + [107222] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3518), 1, + STATE(3520), 1, sym_comment, - ACTIONS(5744), 12, - ts_builtin_sym_end, + ACTIONS(6750), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231300,13 +232418,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, - [107385] = 3, + anon_sym_RPAREN, + [107243] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3519), 1, + STATE(3521), 1, sym_comment, - ACTIONS(6555), 12, - ts_builtin_sym_end, + ACTIONS(6752), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231318,32 +232436,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, - [107406] = 4, + anon_sym_RPAREN, + [107264] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2463), 1, - anon_sym_DASH2, - STATE(3520), 1, + STATE(3522), 1, sym_comment, - ACTIONS(2461), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6754), 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, + [107285] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1645), 1, + sym__entry_separator, + ACTIONS(1647), 1, + anon_sym_RBRACK, + ACTIONS(1653), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6626), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [107429] = 3, + ACTIONS(6648), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6650), 1, + aux_sym__immediate_decimal_token2, + STATE(3523), 1, + sym_comment, + STATE(4361), 1, + sym__immediate_decimal, + ACTIONS(6652), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4529), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107324] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3521), 1, + STATE(3524), 1, sym_comment, - ACTIONS(6557), 12, - ts_builtin_sym_end, + ACTIONS(6756), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231355,18 +232499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [107450] = 6, + anon_sym_RPAREN, + [107345] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - STATE(728), 1, - aux_sym__pipe_separator, - STATE(3522), 1, + STATE(3525), 1, sym_comment, - STATE(3592), 1, - aux_sym__repeat_newline, - ACTIONS(2318), 9, + ACTIONS(6758), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231376,33 +232517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [107477] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6769), 1, - anon_sym_DASH2, - STATE(3523), 1, - sym_comment, - ACTIONS(6028), 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, - [107500] = 4, + [107366] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6771), 1, + ACTIONS(2370), 1, anon_sym_DASH2, - STATE(3524), 1, + STATE(3526), 1, sym_comment, - ACTIONS(6008), 11, + ACTIONS(2368), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231414,33 +232537,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107523] = 4, - ACTIONS(3), 1, + [107389] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6775), 1, - anon_sym_DASH2, - STATE(3525), 1, + ACTIONS(6760), 1, + anon_sym_DOT, + ACTIONS(6762), 1, + aux_sym__immediate_decimal_token5, + STATE(3527), 1, sym_comment, - ACTIONS(6773), 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, - [107546] = 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, + [107416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6779), 1, + ACTIONS(6766), 1, anon_sym_DASH2, - STATE(3526), 1, + STATE(3528), 1, sym_comment, - ACTIONS(6777), 11, + ACTIONS(6764), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231452,13 +232577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107569] = 3, + [107439] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3527), 1, + STATE(3529), 1, sym_comment, - ACTIONS(6429), 12, - ts_builtin_sym_end, + ACTIONS(6768), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231470,12 +232594,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, - [107590] = 3, + anon_sym_RPAREN, + [107460] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3528), 1, + STATE(3530), 1, sym_comment, - ACTIONS(6781), 12, + ACTIONS(6770), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231488,14 +232613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107611] = 4, + [107481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6785), 1, + ACTIONS(2243), 1, anon_sym_DASH2, - STATE(3529), 1, + STATE(3531), 1, sym_comment, - ACTIONS(6783), 11, + ACTIONS(2241), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231507,35 +232632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107634] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6787), 1, - anon_sym_DOT, - ACTIONS(6789), 1, - aux_sym__immediate_decimal_token5, - STATE(3530), 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, - [107661] = 4, + [107504] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6793), 1, + ACTIONS(2251), 1, anon_sym_DASH2, - STATE(3531), 1, + STATE(3532), 1, sym_comment, - ACTIONS(6791), 11, + ACTIONS(2249), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231547,54 +232651,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107684] = 6, + [107527] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6795), 1, - sym__newline, - ACTIONS(6798), 1, - anon_sym_DASH2, - STATE(3532), 1, + STATE(3533), 1, sym_comment, - ACTIONS(1966), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4464), 8, - sym_identifier, + ACTIONS(6772), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [107711] = 4, + [107548] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2467), 1, - anon_sym_DASH2, - STATE(3533), 1, + STATE(3534), 1, sym_comment, - ACTIONS(2465), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6774), 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, - [107734] = 4, + [107569] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6802), 1, + ACTIONS(5883), 1, anon_sym_DASH2, - STATE(3534), 1, + STATE(3535), 1, sym_comment, - ACTIONS(6800), 11, + ACTIONS(5881), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231606,14 +232706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107757] = 4, + [107592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, + ACTIONS(2259), 1, anon_sym_DASH2, - STATE(3535), 1, + STATE(3536), 1, sym_comment, - ACTIONS(2469), 11, + ACTIONS(2257), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231625,131 +232725,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107780] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6806), 1, - aux_sym__immediate_decimal_token5, - STATE(3536), 1, - sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - 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, - [107807] = 5, + [107615] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_DASH2, - ACTIONS(6808), 1, - sym__newline, - STATE(3537), 2, - aux_sym__repeat_newline, + STATE(3537), 1, sym_comment, - ACTIONS(1862), 9, - anon_sym_EQ, - sym_identifier, + ACTIONS(4875), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [107832] = 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, + [107636] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6813), 1, - anon_sym_DASH2, STATE(3538), 1, sym_comment, - ACTIONS(6811), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6776), 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, - [107855] = 4, + [107657] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6817), 1, - anon_sym_DASH2, STATE(3539), 1, sym_comment, - ACTIONS(6815), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6778), 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, - [107878] = 4, + [107678] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6821), 1, - anon_sym_DASH2, STATE(3540), 1, sym_comment, - ACTIONS(6819), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6780), 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, - [107901] = 4, + [107699] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5893), 1, - anon_sym_DASH2, STATE(3541), 1, sym_comment, - ACTIONS(5891), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4897), 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, - [107924] = 4, + [107720] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6825), 1, + ACTIONS(2396), 1, anon_sym_DASH2, STATE(3542), 1, sym_comment, - ACTIONS(6823), 11, + ACTIONS(2394), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231761,14 +232834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107947] = 4, + [107743] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5850), 1, + ACTIONS(2416), 1, anon_sym_DASH2, STATE(3543), 1, sym_comment, - ACTIONS(5283), 11, + ACTIONS(2414), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231780,14 +232853,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107970] = 4, + [107766] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, - anon_sym_DASH2, STATE(3544), 1, sym_comment, - ACTIONS(5223), 11, + ACTIONS(6481), 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, + [107787] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2420), 1, + anon_sym_DASH2, + STATE(3545), 1, + sym_comment, + ACTIONS(2418), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231799,41 +232890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107993] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACK, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6581), 1, - anon_sym_DOLLAR, - ACTIONS(6621), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6623), 1, - aux_sym__immediate_decimal_token2, - STATE(3545), 1, - sym_comment, - STATE(4368), 1, - sym__immediate_decimal, - ACTIONS(6625), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4374), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108032] = 4, + [107810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6827), 1, - anon_sym_EQ, STATE(3546), 1, sym_comment, - ACTIONS(6457), 11, + ACTIONS(6782), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231845,39 +232907,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, - [108055] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [107831] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6262), 1, - sym__newline, - ACTIONS(6829), 1, - anon_sym_else, + ACTIONS(6784), 1, + anon_sym_DOT, + ACTIONS(6786), 1, + aux_sym__immediate_decimal_token5, STATE(3547), 1, sym_comment, - STATE(3550), 1, - aux_sym__repeat_newline, - ACTIONS(6265), 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, - [108082] = 6, + 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, + [107858] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6171), 1, - sym__newline, - ACTIONS(6831), 1, - anon_sym_else, + ACTIONS(6788), 1, + anon_sym_EQ, STATE(3548), 1, sym_comment, - STATE(3552), 1, - aux_sym__repeat_newline, - ACTIONS(6174), 9, + ACTIONS(6467), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231887,18 +232948,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, - [108109] = 6, + [107881] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6178), 1, + ACTIONS(6408), 1, sym__newline, - ACTIONS(6833), 1, + ACTIONS(6790), 1, anon_sym_else, STATE(3549), 1, sym_comment, - STATE(3553), 1, + STATE(3552), 1, aux_sym__repeat_newline, - ACTIONS(6181), 9, + ACTIONS(6411), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231908,18 +232969,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, - [108136] = 6, + [107908] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6187), 1, + ACTIONS(6337), 1, sym__newline, - ACTIONS(6835), 1, + ACTIONS(6792), 1, anon_sym_else, STATE(3550), 1, sym_comment, STATE(3554), 1, aux_sym__repeat_newline, - ACTIONS(6190), 9, + ACTIONS(6340), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231929,18 +232990,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, - [108163] = 6, + [107935] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6279), 1, + ACTIONS(6348), 1, sym__newline, - ACTIONS(6837), 1, + ACTIONS(6794), 1, anon_sym_else, STATE(3551), 1, sym_comment, STATE(3555), 1, aux_sym__repeat_newline, - ACTIONS(6282), 9, + ACTIONS(6351), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231950,18 +233011,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, - [108190] = 6, + [107962] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6286), 1, + ACTIONS(6359), 1, sym__newline, - ACTIONS(6839), 1, + ACTIONS(6796), 1, anon_sym_else, STATE(3552), 1, sym_comment, STATE(3556), 1, aux_sym__repeat_newline, - ACTIONS(6289), 9, + ACTIONS(6362), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231971,18 +233032,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, - [108217] = 6, + [107989] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6246), 1, sym__newline, - ACTIONS(6841), 1, + ACTIONS(6798), 1, anon_sym_else, STATE(3553), 1, sym_comment, STATE(3557), 1, aux_sym__repeat_newline, - ACTIONS(6296), 9, + ACTIONS(6249), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231992,18 +233053,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, - [108244] = 6, + [108016] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(6253), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6800), 1, anon_sym_else, - STATE(485), 1, - aux_sym__repeat_newline, STATE(3554), 1, sym_comment, - ACTIONS(1862), 9, + STATE(3558), 1, + aux_sym__repeat_newline, + ACTIONS(6256), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232013,18 +233074,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, - [108271] = 6, + [108043] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6390), 1, + ACTIONS(6260), 1, sym__newline, - ACTIONS(6846), 1, + ACTIONS(6802), 1, anon_sym_else, STATE(3555), 1, sym_comment, - STATE(3558), 1, + STATE(3559), 1, aux_sym__repeat_newline, - ACTIONS(6393), 9, + ACTIONS(6263), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232034,18 +233095,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, - [108298] = 6, + [108070] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1880), 1, sym__newline, - ACTIONS(6848), 1, + ACTIONS(6804), 1, anon_sym_else, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(3556), 1, sym_comment, - ACTIONS(1862), 9, + ACTIONS(1878), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232055,18 +233116,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, - [108325] = 6, + [108097] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(6078), 1, sym__newline, - ACTIONS(6851), 1, + ACTIONS(6807), 1, anon_sym_else, - STATE(485), 1, - aux_sym__repeat_newline, STATE(3557), 1, sym_comment, - ACTIONS(1862), 9, + STATE(3560), 1, + aux_sym__repeat_newline, + ACTIONS(6081), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232076,18 +233137,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, - [108352] = 6, + [108124] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1880), 1, sym__newline, - ACTIONS(6854), 1, + ACTIONS(6809), 1, anon_sym_else, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, STATE(3558), 1, sym_comment, - ACTIONS(1862), 9, + ACTIONS(1878), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232097,15 +233158,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, - [108379] = 3, + [108151] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1880), 1, + sym__newline, + ACTIONS(6812), 1, + anon_sym_else, + STATE(503), 1, + aux_sym__repeat_newline, STATE(3559), 1, sym_comment, - ACTIONS(6487), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1878), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232115,15 +233179,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, - [108400] = 3, + [108178] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1880), 1, + sym__newline, + ACTIONS(6815), 1, + anon_sym_else, + STATE(503), 1, + aux_sym__repeat_newline, STATE(3560), 1, sym_comment, - ACTIONS(6457), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1878), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232133,56 +233200,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, - [108421] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5818), 1, - anon_sym_DASH2, - STATE(3561), 1, - sym_comment, - ACTIONS(5249), 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, - [108444] = 8, + [108205] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6857), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(372), 1, - sym_cell_path, - STATE(3562), 1, - sym_comment, - STATE(3620), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1456), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1620), 1, sym__entry_separator, - ACTIONS(1454), 5, - anon_sym_RBRACK, + ACTIONS(1622), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [108475] = 6, + ACTIONS(1766), 1, + anon_sym_DOLLAR, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6475), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6477), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6818), 1, + anon_sym_DOT, + STATE(3561), 1, + sym_comment, + STATE(4357), 1, + sym__immediate_decimal, + ACTIONS(6479), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4197), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108244] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6859), 1, - anon_sym_DOT, - ACTIONS(6861), 1, + ACTIONS(6820), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6822), 1, aux_sym__immediate_decimal_token5, - STATE(3563), 1, + STATE(3562), 1, sym_comment, ACTIONS(747), 4, anon_sym_RBRACK, @@ -232196,80 +233248,69 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [108502] = 4, + [108271] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2172), 1, - anon_sym_DASH2, - STATE(3564), 1, + STATE(3563), 1, sym_comment, - ACTIONS(2170), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6824), 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, - [108525] = 11, - ACTIONS(103), 1, + [108292] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1599), 1, - sym__space, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6647), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6649), 1, - aux_sym__immediate_decimal_token2, - STATE(3211), 1, - sym__immediate_decimal, - STATE(3565), 1, + STATE(3564), 1, sym_comment, - ACTIONS(1603), 2, + ACTIONS(6826), 12, sym__newline, anon_sym_SEMI, - ACTIONS(6064), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3210), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108562] = 6, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [108313] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6863), 1, + ACTIONS(6828), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6865), 1, + ACTIONS(6830), 1, aux_sym__immediate_decimal_token5, - STATE(3566), 1, + STATE(3565), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(747), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + 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, - [108589] = 4, + [108340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6867), 1, - anon_sym_EQ, - STATE(3567), 1, + STATE(3566), 1, sym_comment, - ACTIONS(6457), 11, + ACTIONS(6832), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232281,13 +233322,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, - [108612] = 3, + anon_sym_RPAREN, + [108361] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6836), 1, + anon_sym_DASH2, + STATE(3567), 1, + sym_comment, + ACTIONS(6834), 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, + [108384] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3568), 1, sym_comment, - ACTIONS(6553), 12, - ts_builtin_sym_end, + ACTIONS(6838), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232299,14 +233359,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, - [108633] = 4, + anon_sym_RPAREN, + [108405] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6869), 1, - anon_sym_else, STATE(3569), 1, sym_comment, - ACTIONS(6451), 11, + ACTIONS(6499), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232318,12 +233378,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, - [108656] = 3, + [108426] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3570), 1, sym_comment, - ACTIONS(6489), 12, + ACTIONS(6501), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -232336,12 +233396,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, - [108677] = 3, + [108447] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3571), 1, sym_comment, - ACTIONS(6871), 12, + ACTIONS(6840), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232354,12 +233414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108698] = 3, + [108468] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3572), 1, sym_comment, - ACTIONS(6873), 12, + ACTIONS(6842), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232372,12 +233432,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108719] = 3, - ACTIONS(3), 1, + [108489] = 12, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1620), 1, + sym__entry_separator, + ACTIONS(1622), 1, + anon_sym_RBRACE, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6626), 1, + anon_sym_DOLLAR, + ACTIONS(6844), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6846), 1, + aux_sym__immediate_decimal_token2, STATE(3573), 1, sym_comment, - ACTIONS(6875), 12, + STATE(4531), 1, + sym__immediate_decimal, + ACTIONS(6848), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4669), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108528] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3574), 1, + sym_comment, + ACTIONS(6850), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232390,31 +233477,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108740] = 4, + [108549] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5946), 1, + STATE(3575), 1, + sym_comment, + ACTIONS(6852), 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, + [108570] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3576), 1, + sym_comment, + ACTIONS(6503), 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, + [108591] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1883), 1, anon_sym_DASH2, - STATE(3574), 1, + ACTIONS(6854), 1, + sym__newline, + STATE(3577), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(5944), 11, + ACTIONS(1878), 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, - [108763] = 3, + [108616] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1645), 1, + sym__entry_separator, + ACTIONS(1647), 1, + anon_sym_RBRACE, + ACTIONS(1653), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6626), 1, + anon_sym_DOLLAR, + ACTIONS(6844), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6846), 1, + aux_sym__immediate_decimal_token2, + STATE(3578), 1, + sym_comment, + STATE(4535), 1, + sym__immediate_decimal, + ACTIONS(6848), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4529), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108655] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3575), 1, + STATE(3579), 1, sym_comment, - ACTIONS(6877), 12, + ACTIONS(6857), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232427,14 +233578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108784] = 4, + [108676] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(6684), 1, anon_sym_DASH2, - STATE(3576), 1, + STATE(3580), 1, sym_comment, - ACTIONS(2405), 11, + ACTIONS(6380), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232446,12 +233597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [108807] = 3, + [108699] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3577), 1, + STATE(3581), 1, sym_comment, - ACTIONS(6879), 12, + ACTIONS(6859), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232464,12 +233615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108828] = 3, + [108720] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3578), 1, + STATE(3582), 1, sym_comment, - ACTIONS(6881), 12, + ACTIONS(6861), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232482,69 +233633,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108849] = 4, + [108741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2106), 1, - anon_sym_DASH2, - STATE(3579), 1, + STATE(3583), 1, sym_comment, - ACTIONS(2104), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6863), 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, - [108872] = 4, + [108762] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, - anon_sym_DASH2, - STATE(3580), 1, + STATE(3584), 1, + sym_comment, + ACTIONS(6865), 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, + [108783] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3585), 1, + sym_comment, + ACTIONS(6867), 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, + [108804] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3586), 1, + sym_comment, + ACTIONS(6869), 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, + [108825] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3587), 1, + sym_comment, + ACTIONS(6871), 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, + [108846] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3588), 1, + sym_comment, + ACTIONS(6873), 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, + [108867] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3589), 1, + sym_comment, + ACTIONS(6875), 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, + [108888] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3590), 1, sym_comment, - ACTIONS(2112), 11, + ACTIONS(6877), 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, + [108909] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6879), 1, anon_sym_EQ, - sym_identifier, + STATE(3591), 1, + sym_comment, + ACTIONS(6467), 11, 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, + [108932] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3592), 1, + sym_comment, + ACTIONS(6881), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108895] = 4, + [108953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DASH2, - STATE(3581), 1, + STATE(3593), 1, + sym_comment, + ACTIONS(6883), 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, + [108974] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3594), 1, + sym_comment, + ACTIONS(6885), 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, + [108995] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6887), 1, + anon_sym_else, + STATE(3595), 1, + sym_comment, + ACTIONS(6471), 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, + [109018] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3596), 1, + sym_comment, + ACTIONS(6889), 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, + [109039] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6891), 1, + anon_sym_DOT, + ACTIONS(6893), 1, + aux_sym__immediate_decimal_token5, + STATE(3597), 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, + [109066] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3598), 1, + sym_comment, + ACTIONS(6895), 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, + [109087] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3599), 1, + sym_comment, + ACTIONS(6897), 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, + [109108] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3600), 1, sym_comment, - ACTIONS(2120), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6899), 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, - [108918] = 3, + [109129] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3582), 1, + STATE(3601), 1, sym_comment, - ACTIONS(6883), 12, + ACTIONS(6901), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232557,204 +233980,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108939] = 6, + [109150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5454), 1, - anon_sym_DASH2, - STATE(3583), 1, + STATE(3602), 1, sym_comment, - STATE(3587), 1, - aux_sym_parameter_repeat2, - ACTIONS(1484), 2, + ACTIONS(6903), 12, sym__newline, - anon_sym_COMMA, - ACTIONS(5452), 7, - sym_identifier, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108965] = 9, + [109171] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2515), 1, - aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_DASH2, - STATE(959), 1, - sym__expr_unary_minus, - STATE(3584), 1, - sym_comment, - ACTIONS(2507), 2, - anon_sym_true, - anon_sym_false, - STATE(972), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [108997] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - sym__entry_separator, - ACTIONS(1683), 1, - anon_sym_RBRACE, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6581), 1, - anon_sym_DOLLAR, - ACTIONS(6743), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6745), 1, - aux_sym__immediate_decimal_token2, - STATE(3585), 1, + STATE(3603), 1, sym_comment, - STATE(4999), 1, - sym__immediate_decimal, - ACTIONS(6441), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4414), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109033] = 6, + ACTIONS(6905), 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, + [109192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6887), 1, - anon_sym_DASH2, - STATE(3586), 1, + STATE(3604), 1, sym_comment, - STATE(3587), 1, - aux_sym_parameter_repeat2, - ACTIONS(1484), 2, + ACTIONS(6907), 12, sym__newline, - anon_sym_COMMA, - ACTIONS(6885), 7, - sym_identifier, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [109059] = 5, + [109213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6894), 1, - anon_sym_DASH2, - ACTIONS(6891), 2, - sym__newline, - anon_sym_COMMA, - STATE(3587), 2, + STATE(3605), 1, sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(6889), 7, - sym_identifier, + ACTIONS(6909), 12, + 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, - [109083] = 6, + [109234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6896), 1, - anon_sym_DOT, - ACTIONS(6898), 1, - aux_sym__immediate_decimal_token5, - STATE(3588), 1, + STATE(3606), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(6911), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109109] = 5, - 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, + [109255] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6735), 1, + ACTIONS(6786), 1, aux_sym__immediate_decimal_token5, - STATE(3589), 1, + STATE(3607), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109133] = 8, + sym__entry_separator, + [109279] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6857), 1, + ACTIONS(6622), 1, anon_sym_DOT2, - STATE(352), 1, + STATE(367), 1, sym_path, - STATE(3590), 1, + STATE(3608), 1, sym_comment, - STATE(3620), 1, + STATE(3613), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3929), 1, + STATE(3888), 1, sym_cell_path, - ACTIONS(1653), 3, + ACTIONS(1689), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1655), 4, + ACTIONS(1691), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [109163] = 6, + [109309] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6900), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6902), 1, - aux_sym__immediate_decimal_token5, - STATE(3591), 1, + ACTIONS(6915), 1, + anon_sym_DASH2, + STATE(3609), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, + STATE(3649), 1, + aux_sym_parameter_repeat2, + ACTIONS(1496), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(6913), 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, - [109189] = 5, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109335] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1645), 1, + anon_sym_LBRACE, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(3610), 1, + sym_comment, + STATE(4996), 1, + sym__immediate_decimal, + ACTIONS(6917), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6919), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109369] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, sym__newline, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3592), 1, + STATE(3611), 1, sym_comment, - ACTIONS(2539), 9, + ACTIONS(2544), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232764,327 +234174,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [109213] = 5, - ACTIONS(3), 1, + [109393] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6904), 1, - aux_sym__immediate_decimal_token5, - STATE(3593), 1, + STATE(3612), 1, sym_comment, - ACTIONS(767), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(769), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1524), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109237] = 8, + sym__entry_separator, + ACTIONS(1522), 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, + [109415] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6857), 1, + ACTIONS(6622), 1, anon_sym_DOT2, - STATE(352), 1, + STATE(367), 1, sym_path, - STATE(3594), 1, + STATE(3613), 1, sym_comment, - STATE(3620), 1, + STATE(3615), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3913), 1, - sym_cell_path, - ACTIONS(1647), 3, + ACTIONS(1528), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1649), 4, + ACTIONS(1526), 5, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [109267] = 5, - ACTIONS(103), 1, + anon_sym_COLON2, + [109443] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6749), 1, - aux_sym__immediate_decimal_token5, - STATE(3595), 1, + ACTIONS(5454), 1, + anon_sym_DASH2, + STATE(3614), 1, sym_comment, - ACTIONS(747), 4, + STATE(3649), 1, + aux_sym_parameter_repeat2, + ACTIONS(1496), 2, 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, - [109291] = 11, + anon_sym_COMMA, + ACTIONS(5452), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109469] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(5061), 1, - sym__unquoted_pattern, - ACTIONS(6906), 1, - anon_sym_DOT_DOT2, - ACTIONS(6910), 1, - sym_filesize_unit, - ACTIONS(6912), 1, - sym_duration_unit, - STATE(3596), 1, + ACTIONS(6921), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3615), 2, sym_comment, - STATE(5056), 1, - sym__expr_parenthesized_immediate, - ACTIONS(847), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6908), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109327] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, sym__entry_separator, - ACTIONS(6659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6914), 1, - anon_sym_LPAREN2, - ACTIONS(6916), 1, - anon_sym_DOT_DOT2, - ACTIONS(6920), 1, - sym_filesize_unit, - ACTIONS(6922), 1, - sym_duration_unit, - STATE(3597), 1, - sym_comment, - STATE(5028), 1, - sym__expr_parenthesized_immediate, - ACTIONS(847), 2, + ACTIONS(1536), 5, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - ACTIONS(6918), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109363] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6924), 1, - aux_sym__immediate_decimal_token5, - STATE(3598), 1, - sym_comment, - ACTIONS(767), 4, - sym__newline, - anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(769), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109387] = 10, + anon_sym_COLON2, + [109495] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, - anon_sym_LBRACE, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(3599), 1, - sym_comment, - STATE(5068), 1, - sym__immediate_decimal, - ACTIONS(6926), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6928), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(788), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109421] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6930), 1, + ACTIONS(6924), 1, anon_sym_DOT, - ACTIONS(6932), 1, - aux_sym__immediate_decimal_token5, - STATE(3600), 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, - [109447] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6934), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6936), 1, + ACTIONS(6926), 1, aux_sym__immediate_decimal_token5, - STATE(3601), 1, + STATE(3616), 1, sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, - anon_sym_LPAREN2, + 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, - sym__entry_separator, - [109473] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1599), 1, - anon_sym_LBRACE, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1607), 1, - anon_sym_DOT, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - STATE(3602), 1, - sym_comment, - STATE(4381), 1, - sym__immediate_decimal, - ACTIONS(6667), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6669), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4380), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109507] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(73), 1, - aux_sym_expr_unary_token1, - ACTIONS(1685), 1, - anon_sym_DOLLAR, - ACTIONS(4908), 1, - anon_sym_LPAREN, - ACTIONS(4912), 1, - anon_sym_DASH2, - STATE(1296), 1, - sym__expr_unary_minus, - STATE(3603), 1, - sym_comment, - ACTIONS(2489), 2, - anon_sym_true, - anon_sym_false, - STATE(1293), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [109539] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - ACTIONS(6581), 1, - anon_sym_DOLLAR, - ACTIONS(6743), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6745), 1, - aux_sym__immediate_decimal_token2, - STATE(3604), 1, - sym_comment, - STATE(4982), 1, - sym__immediate_decimal, - ACTIONS(6441), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4374), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109575] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_DASH2, - STATE(959), 1, - sym__expr_unary_minus, - STATE(3605), 1, - sym_comment, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(972), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [109607] = 6, + [109521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5496), 1, + ACTIONS(1967), 1, anon_sym_DASH2, - STATE(3587), 1, - aux_sym_parameter_repeat2, - STATE(3606), 1, + STATE(3617), 1, sym_comment, - ACTIONS(1484), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5494), 7, + ACTIONS(1965), 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, - [109633] = 6, + [109543] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5450), 1, + ACTIONS(6930), 1, anon_sym_DASH2, - STATE(3587), 1, - aux_sym_parameter_repeat2, - STATE(3607), 1, + STATE(3618), 1, sym_comment, - ACTIONS(1484), 2, + STATE(3649), 1, + aux_sym_parameter_repeat2, + ACTIONS(1496), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5448), 7, + ACTIONS(6928), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -233092,37 +234311,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109659] = 4, + [109569] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, + ACTIONS(2810), 1, + aux_sym_expr_unary_token1, + ACTIONS(3830), 1, + anon_sym_DOLLAR, + ACTIONS(4914), 1, anon_sym_DASH2, - STATE(3608), 1, + ACTIONS(5324), 1, + anon_sym_LPAREN, + STATE(1291), 1, + sym__expr_unary_minus, + STATE(3619), 1, sym_comment, - ACTIONS(1966), 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, - [109681] = 6, + ACTIONS(2499), 2, + anon_sym_true, + anon_sym_false, + STATE(1356), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [109601] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6940), 1, + ACTIONS(6934), 1, anon_sym_DASH2, - STATE(3587), 1, - aux_sym_parameter_repeat2, - STATE(3609), 1, + STATE(3620), 1, sym_comment, - ACTIONS(1484), 2, + STATE(3649), 1, + aux_sym_parameter_repeat2, + ACTIONS(1496), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6938), 7, + ACTIONS(6932), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -233130,55 +234354,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109707] = 5, - ACTIONS(103), 1, + [109627] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6942), 1, - aux_sym__immediate_decimal_token5, - STATE(3610), 1, + ACTIONS(1746), 1, + anon_sym_LPAREN, + ACTIONS(2774), 1, + aux_sym_expr_unary_token1, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + ACTIONS(4887), 1, + anon_sym_DASH2, + STATE(947), 1, + sym__expr_unary_minus, + STATE(3621), 1, sym_comment, - ACTIONS(767), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(769), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [109731] = 6, + ACTIONS(1931), 2, + anon_sym_true, + anon_sym_false, + STATE(950), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [109659] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - aux_sym__immediate_decimal_token5, - STATE(3611), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(2525), 1, + aux_sym_expr_unary_token1, + ACTIONS(4885), 1, anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109757] = 4, + ACTIONS(4887), 1, + anon_sym_DASH2, + STATE(947), 1, + sym__expr_unary_minus, + STATE(3622), 1, + sym_comment, + ACTIONS(2517), 2, + anon_sym_true, + anon_sym_false, + STATE(950), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [109691] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3612), 1, + STATE(3623), 1, sym_comment, - ACTIONS(1510), 3, + ACTIONS(1518), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1508), 8, + ACTIONS(1516), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -233187,42 +234418,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [109779] = 9, + [109713] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2742), 1, + ACTIONS(73), 1, aux_sym_expr_unary_token1, - ACTIONS(3806), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, - anon_sym_DASH2, - ACTIONS(5277), 1, + ACTIONS(4910), 1, anon_sym_LPAREN, - STATE(1296), 1, + ACTIONS(4914), 1, + anon_sym_DASH2, + STATE(1291), 1, sym__expr_unary_minus, - STATE(3613), 1, + STATE(3624), 1, sym_comment, - ACTIONS(2489), 2, + ACTIONS(2499), 2, anon_sym_true, anon_sym_false, - STATE(1293), 4, + STATE(1356), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [109811] = 6, + [109745] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6948), 1, + ACTIONS(6936), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6950), 1, + ACTIONS(6938), 1, aux_sym__immediate_decimal_token5, - STATE(3614), 1, + STATE(3625), 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, @@ -233230,16 +234461,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109837] = 4, + [109771] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6942), 1, + aux_sym__immediate_decimal_token5, + STATE(3626), 1, + sym_comment, + 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, + [109797] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5442), 1, + anon_sym_DASH2, + STATE(3627), 1, + sym_comment, + STATE(3649), 1, + aux_sym_parameter_repeat2, + ACTIONS(1496), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5440), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109823] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(4885), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_DASH2, + STATE(947), 1, + sym__expr_unary_minus, + STATE(3628), 1, + sym_comment, + ACTIONS(1931), 2, + anon_sym_true, + anon_sym_false, + STATE(950), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [109855] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + anon_sym_LBRACE, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1608), 1, + anon_sym_DOT, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(3629), 1, + sym_comment, + STATE(4380), 1, + sym__immediate_decimal, + ACTIONS(6658), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6660), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4379), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109889] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3615), 1, + STATE(3630), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1470), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1512), 8, + ACTIONS(1468), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -233248,16 +234566,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [109859] = 4, + [109911] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3616), 1, + STATE(3631), 1, sym_comment, - ACTIONS(1522), 3, + ACTIONS(1474), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1520), 8, + ACTIONS(1472), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -233266,52 +234584,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [109881] = 4, + [109933] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1620), 1, + anon_sym_LBRACE, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(3632), 1, + sym_comment, + STATE(4965), 1, + sym__immediate_decimal, + ACTIONS(6917), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6919), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(768), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109967] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3617), 1, + ACTIONS(6944), 1, + anon_sym_DOT, + ACTIONS(6946), 1, + aux_sym__immediate_decimal_token5, + STATE(3633), 1, sym_comment, - ACTIONS(1530), 3, + 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(1528), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + [109993] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6893), 1, + aux_sym__immediate_decimal_token5, + STATE(3634), 1, + sym_comment, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [109903] = 4, + 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, + [110017] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6948), 1, + anon_sym_else, + STATE(3635), 1, + sym_comment, + ACTIONS(6471), 10, + sym__newline, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [110039] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3618), 1, + ACTIONS(6950), 1, + aux_sym__immediate_decimal_token5, + STATE(3636), 1, sym_comment, - ACTIONS(1502), 3, + ACTIONS(775), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(777), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1500), 8, + [110063] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6762), 1, + aux_sym__immediate_decimal_token5, + STATE(3637), 1, + sym_comment, + 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, - [109925] = 4, + 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, + [110087] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3619), 1, + STATE(3638), 1, sym_comment, - ACTIONS(1506), 3, + ACTIONS(1532), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1504), 8, + ACTIONS(1530), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -233320,163 +234721,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [109947] = 7, + [110109] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6857), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(3620), 1, + STATE(3639), 1, sym_comment, - STATE(3621), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, + ACTIONS(1482), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1524), 5, + ACTIONS(1480), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_COLON2, - [109975] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110131] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6620), 1, + aux_sym__immediate_decimal_token5, + STATE(3640), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110155] = 11, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(884), 1, + sym__space, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + sym__unquoted_pattern, ACTIONS(6952), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(3621), 2, + anon_sym_DOT_DOT2, + ACTIONS(6956), 1, + sym_filesize_unit, + ACTIONS(6958), 1, + sym_duration_unit, + STATE(3641), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1534), 3, + STATE(5052), 1, + sym__expr_parenthesized_immediate, + ACTIONS(785), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6954), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1532), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [110001] = 9, + [110191] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1760), 1, - anon_sym_LPAREN, - ACTIONS(2696), 1, - aux_sym_expr_unary_token1, - ACTIONS(2938), 1, - anon_sym_DOLLAR, - ACTIONS(4885), 1, + ACTIONS(5450), 1, anon_sym_DASH2, - STATE(959), 1, - sym__expr_unary_minus, - STATE(3622), 1, + STATE(3642), 1, sym_comment, - ACTIONS(1945), 2, - anon_sym_true, - anon_sym_false, - STATE(972), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [110033] = 5, + STATE(3649), 1, + aux_sym_parameter_repeat2, + ACTIONS(1496), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5448), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110217] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6861), 1, + ACTIONS(6960), 1, aux_sym__immediate_decimal_token5, - STATE(3623), 1, + STATE(3643), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(775), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + ACTIONS(777), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [110057] = 5, - ACTIONS(103), 1, + [110241] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6955), 1, + ACTIONS(6962), 1, + anon_sym_DOT, + ACTIONS(6964), 1, aux_sym__immediate_decimal_token5, - STATE(3624), 1, + STATE(3644), 1, sym_comment, - ACTIONS(767), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(769), 6, - anon_sym_LPAREN2, + 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, - [110081] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6957), 1, - anon_sym_else, - STATE(3625), 1, - sym_comment, - ACTIONS(6451), 10, - sym__newline, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [110103] = 10, - ACTIONS(3), 1, + [110267] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1620), 1, + sym__entry_separator, + ACTIONS(1622), 1, + anon_sym_RBRACE, + ACTIONS(6050), 1, anon_sym_LPAREN2, - ACTIONS(1681), 1, - anon_sym_LBRACE, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2938), 1, + ACTIONS(6626), 1, anon_sym_DOLLAR, - STATE(3626), 1, - sym_comment, - STATE(4930), 1, - sym__immediate_decimal, - ACTIONS(6926), 2, + ACTIONS(6628), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6630), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6928), 2, + STATE(3645), 1, + sym_comment, + STATE(5092), 1, + sym__immediate_decimal, + ACTIONS(6479), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(807), 2, + STATE(4669), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110137] = 6, + [110303] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6966), 1, + aux_sym__immediate_decimal_token5, + STATE(3646), 1, + sym_comment, + ACTIONS(775), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110327] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6622), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3613), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3647), 1, + sym_comment, + STATE(3941), 1, + sym_cell_path, + ACTIONS(1675), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1677), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [110357] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(6604), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(6970), 1, + anon_sym_DOT_DOT2, + ACTIONS(6974), 1, + sym_filesize_unit, + ACTIONS(6976), 1, + sym_duration_unit, + STATE(3648), 1, + sym_comment, + STATE(4994), 1, + sym__expr_parenthesized_immediate, + ACTIONS(785), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6972), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110393] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6961), 1, + ACTIONS(6983), 1, anon_sym_DASH2, - STATE(3587), 1, - aux_sym_parameter_repeat2, - STATE(3627), 1, - sym_comment, - ACTIONS(1484), 2, + ACTIONS(6980), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6959), 7, + STATE(3649), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(6978), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -233484,18 +234952,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [110163] = 5, + [110417] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6789), 1, + ACTIONS(6985), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6987), 1, aux_sym__immediate_decimal_token5, - STATE(3628), 1, + STATE(3650), 1, sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, + ACTIONS(747), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, + sym__unquoted_pattern_in_record, ACTIONS(749), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -233503,17 +234972,18 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [110187] = 5, + [110443] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6898), 1, + ACTIONS(6989), 1, aux_sym__immediate_decimal_token5, - STATE(3629), 1, + STATE(3651), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(777), 8, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -233521,918 +234991,1405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110210] = 5, - ACTIONS(3), 1, + [110467] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6963), 1, - aux_sym__immediate_decimal_token5, - STATE(3630), 1, + ACTIONS(1645), 1, + sym__entry_separator, + ACTIONS(1647), 1, + anon_sym_RBRACE, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6626), 1, + anon_sym_DOLLAR, + ACTIONS(6628), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6630), 1, + aux_sym__immediate_decimal_token2, + STATE(3652), 1, sym_comment, - ACTIONS(767), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(769), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110233] = 4, - ACTIONS(3), 1, + STATE(5010), 1, + sym__immediate_decimal, + ACTIONS(6479), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4529), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110503] = 9, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3631), 1, + ACTIONS(3785), 1, + sym_raw_string_begin, + ACTIONS(6991), 1, + anon_sym_DQUOTE, + ACTIONS(6993), 1, + anon_sym_SQUOTE, + ACTIONS(6995), 1, + anon_sym_BQUOTE, + ACTIONS(6997), 1, + aux_sym_path_token1, + STATE(2579), 1, + sym_val_string, + STATE(3653), 1, + sym_comment, + STATE(2389), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110534] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3654), 1, sym_comment, - ACTIONS(767), 2, + ACTIONS(866), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(769), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(868), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110254] = 10, + sym__entry_separator, + [110555] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_LPAREN2, - ACTIONS(5047), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5049), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5182), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6965), 1, - anon_sym_DOLLAR, - STATE(2681), 1, - sym__immediate_decimal, - STATE(3632), 1, - sym_comment, - ACTIONS(6967), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2913), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110287] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3633), 1, + ACTIONS(6999), 1, + anon_sym_DOT, + ACTIONS(7001), 1, + aux_sym__immediate_decimal_token5, + STATE(3655), 1, sym_comment, - ACTIONS(863), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(865), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1784), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110308] = 10, + sym__entry_separator, + ACTIONS(1786), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110580] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3179), 1, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(5124), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5126), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5182), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6965), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - STATE(3110), 1, - sym__immediate_decimal, - STATE(3634), 1, + ACTIONS(5046), 1, + aux_sym_unquoted_token2, + ACTIONS(6179), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6181), 1, + aux_sym__immediate_decimal_token2, + STATE(3656), 1, sym_comment, - ACTIONS(6969), 2, + STATE(3835), 1, + sym__immediate_decimal, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3564), 2, + STATE(4019), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110341] = 9, - ACTIONS(3), 1, + [110613] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(2938), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - STATE(802), 1, - sym__immediate_decimal, - STATE(3635), 1, + ACTIONS(5046), 1, + aux_sym_unquoted_token2, + ACTIONS(6445), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6447), 1, + aux_sym__immediate_decimal_token2, + STATE(3657), 1, sym_comment, - ACTIONS(6669), 2, + STATE(4262), 1, + sym__immediate_decimal, + ACTIONS(6449), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6971), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(801), 2, + STATE(3249), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110372] = 6, + [110646] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6973), 1, + ACTIONS(7003), 1, anon_sym_DOT, - ACTIONS(6975), 1, + ACTIONS(7005), 1, aux_sym__immediate_decimal_token5, - STATE(3636), 1, + STATE(3658), 1, sym_comment, - ACTIONS(1790), 4, + ACTIONS(1784), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1792), 4, + ACTIONS(1786), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [110397] = 5, - ACTIONS(103), 1, + [110671] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1464), 1, - anon_sym_BANG, - STATE(3637), 1, + ACTIONS(6594), 1, + anon_sym_DASH2, + STATE(3659), 1, sym_comment, - ACTIONS(1462), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1460), 6, + ACTIONS(4509), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [110420] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110692] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1828), 1, - sym__unquoted_pattern, - ACTIONS(6977), 1, - anon_sym_DOT_DOT2, - ACTIONS(6981), 1, - sym_filesize_unit, - ACTIONS(6983), 1, - sym_duration_unit, - STATE(3638), 1, + STATE(3660), 1, sym_comment, - ACTIONS(6979), 2, + ACTIONS(866), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(868), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110449] = 6, + sym_filesize_unit, + sym_duration_unit, + [110713] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6985), 1, - anon_sym_DOT, - ACTIONS(6987), 1, - aux_sym__immediate_decimal_token5, - STATE(3639), 1, + STATE(3661), 1, sym_comment, - ACTIONS(1792), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1790), 6, + ACTIONS(777), 8, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110474] = 10, + sym_filesize_unit, + sym_duration_unit, + [110734] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1691), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1840), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(6989), 1, + ACTIONS(5332), 1, anon_sym_DOLLAR, - ACTIONS(6991), 1, + ACTIONS(6658), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token2, - STATE(711), 1, - sym__immediate_decimal, - STATE(3640), 1, + STATE(3662), 1, sym_comment, - ACTIONS(6993), 2, + STATE(4278), 1, + sym__immediate_decimal, + ACTIONS(7009), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(962), 2, + STATE(4619), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110507] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3641), 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, - [110528] = 10, + [110767] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(6050), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(5273), 1, + ACTIONS(6626), 1, anon_sym_DOLLAR, - ACTIONS(6667), 1, + ACTIONS(6844), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6995), 1, + ACTIONS(6846), 1, aux_sym__immediate_decimal_token2, - STATE(3642), 1, + ACTIONS(7011), 1, + aux_sym__unquoted_in_record_token2, + STATE(3663), 1, sym_comment, - STATE(4243), 1, + STATE(4515), 1, sym__immediate_decimal, - ACTIONS(6997), 2, + ACTIONS(6848), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4367), 2, + STATE(4502), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110561] = 10, + [110800] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(1766), 1, + anon_sym_DOLLAR, + ACTIONS(6050), 1, anon_sym_LPAREN2, - ACTIONS(1718), 1, + ACTIONS(6475), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1840), 1, - aux_sym_unquoted_token2, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - ACTIONS(6999), 1, + ACTIONS(6477), 1, aux_sym__immediate_decimal_token2, - STATE(994), 1, - sym__immediate_decimal, - STATE(3643), 1, + ACTIONS(6604), 1, + aux_sym__unquoted_in_list_token2, + STATE(3664), 1, sym_comment, - ACTIONS(7001), 2, + STATE(3902), 1, + sym__immediate_decimal, + ACTIONS(6479), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1294), 2, + STATE(4128), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110594] = 10, + [110833] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(5273), 1, + ACTIONS(5332), 1, anon_sym_DOLLAR, - ACTIONS(6926), 1, + ACTIONS(6917), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7003), 1, + ACTIONS(7013), 1, aux_sym__immediate_decimal_token2, - STATE(3644), 1, + STATE(3665), 1, sym_comment, - STATE(5037), 1, + STATE(5023), 1, sym__immediate_decimal, - ACTIONS(7005), 2, + ACTIONS(7015), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(824), 2, + STATE(774), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110627] = 9, - ACTIONS(3), 1, + [110866] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(1669), 1, - anon_sym_LBRACE, - ACTIONS(2938), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - STATE(806), 1, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4942), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5046), 1, + aux_sym_unquoted_token2, + STATE(2540), 1, sym__immediate_decimal, - STATE(3645), 1, + STATE(3666), 1, sym_comment, - ACTIONS(6669), 2, + ACTIONS(4944), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6971), 2, + STATE(2715), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110899] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(4968), 1, aux_sym__immediate_decimal_token1, + ACTIONS(4970), 1, aux_sym__immediate_decimal_token2, - STATE(805), 2, + ACTIONS(5046), 1, + aux_sym_unquoted_token2, + STATE(2790), 1, + sym__immediate_decimal, + STATE(3667), 1, + sym_comment, + ACTIONS(4972), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3249), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110658] = 4, + [110932] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3646), 1, + ACTIONS(3020), 1, + sym_raw_string_begin, + ACTIONS(7017), 1, + anon_sym_DQUOTE, + ACTIONS(7019), 1, + anon_sym_SQUOTE, + ACTIONS(7021), 1, + anon_sym_BQUOTE, + ACTIONS(7023), 1, + aux_sym_path_token1, + STATE(2402), 1, + sym_val_string, + STATE(3668), 1, sym_comment, - ACTIONS(767), 4, - sym__newline, - anon_sym_SEMI, + STATE(2607), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110963] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token5, + STATE(3669), 1, + sym_comment, + ACTIONS(775), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(769), 6, - sym__space, + sym__unquoted_pattern_in_record, + ACTIONS(777), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110679] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6798), 1, - anon_sym_DASH2, - STATE(3647), 1, - sym_comment, - ACTIONS(4464), 9, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [110700] = 10, + sym__entry_separator, + [110986] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(6437), 1, + ACTIONS(1610), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6439), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(7027), 1, + anon_sym_DOLLAR, + ACTIONS(7029), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6659), 1, - aux_sym__unquoted_in_list_token2, - STATE(3648), 1, - sym_comment, - STATE(3927), 1, + STATE(690), 1, sym__immediate_decimal, - ACTIONS(6441), 2, + STATE(3670), 1, + sym_comment, + ACTIONS(7031), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4014), 2, + STATE(696), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110733] = 10, + [111019] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6150), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(6581), 1, - anon_sym_DOLLAR, - ACTIONS(6621), 1, + ACTIONS(1649), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6623), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(7027), 1, + anon_sym_DOLLAR, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6659), 1, - aux_sym__unquoted_in_list_token2, - STATE(3649), 1, - sym_comment, - STATE(4518), 1, + STATE(929), 1, sym__immediate_decimal, - ACTIONS(6625), 2, + STATE(3671), 1, + sym_comment, + ACTIONS(7035), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4337), 2, + STATE(774), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110766] = 4, + [111052] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3650), 1, + ACTIONS(7037), 1, + anon_sym_DQUOTE, + ACTIONS(7039), 1, + anon_sym_SQUOTE, + ACTIONS(7041), 1, + anon_sym_BQUOTE, + ACTIONS(7043), 1, + aux_sym_path_token1, + ACTIONS(7045), 1, + sym_raw_string_begin, + STATE(1755), 1, + sym_val_string, + STATE(3672), 1, sym_comment, - ACTIONS(863), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(865), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110787] = 10, + STATE(1801), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111083] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - ACTIONS(6405), 1, + ACTIONS(1846), 1, + aux_sym_unquoted_token2, + ACTIONS(4930), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6407), 1, + ACTIONS(5326), 1, + anon_sym_DOLLAR, + ACTIONS(7047), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7007), 1, - aux_sym__unquoted_in_record_token2, - STATE(3651), 1, - sym_comment, - STATE(3942), 1, + STATE(2490), 1, sym__immediate_decimal, - ACTIONS(6409), 2, + STATE(3673), 1, + sym_comment, + ACTIONS(7049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4014), 2, + STATE(2652), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110820] = 6, + [111116] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7009), 1, - anon_sym_DOT, - ACTIONS(7011), 1, - aux_sym__immediate_decimal_token5, - STATE(3652), 1, - sym_comment, - ACTIONS(1790), 4, + ACTIONS(1657), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1792), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [110845] = 11, + ACTIONS(1846), 1, + aux_sym_unquoted_token2, + ACTIONS(4946), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5326), 1, + anon_sym_DOLLAR, + ACTIONS(7051), 1, + aux_sym__immediate_decimal_token2, + STATE(2659), 1, + sym__immediate_decimal, + STATE(3674), 1, + sym_comment, + ACTIONS(7053), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1294), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111149] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(847), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6914), 1, - anon_sym_LPAREN2, - ACTIONS(7013), 1, - anon_sym_DOT_DOT2, - ACTIONS(7017), 1, - sym_filesize_unit, - ACTIONS(7019), 1, - sym_duration_unit, - STATE(3653), 1, + ACTIONS(7055), 1, + anon_sym_DQUOTE, + ACTIONS(7057), 1, + anon_sym_SQUOTE, + ACTIONS(7059), 1, + anon_sym_BQUOTE, + ACTIONS(7061), 1, + aux_sym_path_token1, + ACTIONS(7063), 1, + sym_raw_string_begin, + STATE(3675), 1, sym_comment, - STATE(5028), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7015), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110880] = 10, + STATE(3876), 1, + sym_val_string, + STATE(4029), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111180] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6150), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(6581), 1, - anon_sym_DOLLAR, - ACTIONS(6583), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(4920), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6585), 1, + ACTIONS(5332), 1, + anon_sym_DOLLAR, + ACTIONS(7065), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7007), 1, - aux_sym__unquoted_in_record_token2, - STATE(3654), 1, - sym_comment, - STATE(4511), 1, + STATE(2468), 1, sym__immediate_decimal, - ACTIONS(6587), 2, + STATE(3676), 1, + sym_comment, + ACTIONS(7067), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4337), 2, + STATE(2554), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110913] = 11, + [111213] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(847), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(5172), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(7007), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7021), 1, - anon_sym_DOT_DOT2, - ACTIONS(7025), 1, - sym_filesize_unit, - ACTIONS(7027), 1, - sym_duration_unit, - STATE(3655), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(4924), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5332), 1, + anon_sym_DOLLAR, + ACTIONS(7069), 1, + aux_sym__immediate_decimal_token2, + STATE(2596), 1, + sym__immediate_decimal, + STATE(3677), 1, sym_comment, - STATE(5050), 1, + ACTIONS(7071), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(774), 2, sym__expr_parenthesized_immediate, - ACTIONS(7023), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110948] = 5, + sym_val_variable, + [111246] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6932), 1, - aux_sym__immediate_decimal_token5, - STATE(3656), 1, + ACTIONS(7073), 1, + anon_sym_DQUOTE, + ACTIONS(7075), 1, + anon_sym_SQUOTE, + ACTIONS(7077), 1, + anon_sym_BQUOTE, + ACTIONS(7079), 1, + aux_sym_path_token1, + ACTIONS(7081), 1, + sym_raw_string_begin, + STATE(3446), 1, + sym_val_string, + STATE(3678), 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, - [110971] = 6, + STATE(3612), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111277] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7029), 1, - anon_sym_DOT, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token5, - STATE(3657), 1, - sym_comment, - ACTIONS(1790), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1792), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [110996] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1599), 1, - anon_sym_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(5332), 1, anon_sym_DOLLAR, - STATE(784), 1, - sym__immediate_decimal, - STATE(3658), 1, + ACTIONS(6070), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7083), 1, + aux_sym__immediate_decimal_token2, + STATE(3679), 1, sym_comment, - ACTIONS(6669), 2, + STATE(3917), 1, + sym__immediate_decimal, + ACTIONS(7085), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6971), 2, + STATE(3963), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111310] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(5332), 1, + anon_sym_DOLLAR, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token2, - STATE(783), 2, + STATE(3680), 1, + sym_comment, + STATE(4523), 1, + sym__immediate_decimal, + ACTIONS(7089), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(774), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111027] = 9, + [111343] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(7033), 1, + ACTIONS(7091), 1, anon_sym_DQUOTE, - ACTIONS(7035), 1, + ACTIONS(7093), 1, anon_sym_SQUOTE, - ACTIONS(7037), 1, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(7039), 1, + ACTIONS(7097), 1, aux_sym_path_token1, - STATE(2296), 1, + ACTIONS(7099), 1, + sym_raw_string_begin, + STATE(344), 1, sym_val_string, - STATE(3659), 1, + STATE(3681), 1, sym_comment, - STATE(2274), 4, + STATE(357), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111058] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7041), 1, - aux_sym__immediate_decimal_token5, - STATE(3660), 1, - sym_comment, - ACTIONS(767), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(769), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [111081] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3661), 1, - sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - 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, - [111102] = 10, + [111374] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1846), 1, aux_sym_unquoted_token2, - ACTIONS(3902), 1, + ACTIONS(3448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7043), 1, + ACTIONS(7101), 1, anon_sym_DOLLAR, - ACTIONS(7045), 1, + ACTIONS(7103), 1, aux_sym__immediate_decimal_token2, - STATE(1875), 1, + STATE(1472), 1, sym__immediate_decimal, - STATE(3662), 1, + STATE(3682), 1, sym_comment, - ACTIONS(7047), 2, + ACTIONS(7105), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(717), 2, + STATE(982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111135] = 10, + [111407] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1846), 1, aux_sym_unquoted_token2, - ACTIONS(3962), 1, + ACTIONS(3493), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7043), 1, + ACTIONS(7101), 1, anon_sym_DOLLAR, - ACTIONS(7049), 1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token2, - STATE(1957), 1, + STATE(1529), 1, sym__immediate_decimal, - STATE(3663), 1, + STATE(3683), 1, sym_comment, - ACTIONS(7051), 2, + ACTIONS(7109), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(824), 2, + STATE(1294), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111168] = 9, + [111440] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(7053), 1, + ACTIONS(948), 1, anon_sym_DQUOTE, - ACTIONS(7055), 1, + ACTIONS(950), 1, anon_sym_SQUOTE, - ACTIONS(7057), 1, + ACTIONS(952), 1, anon_sym_BQUOTE, - ACTIONS(7059), 1, + ACTIONS(964), 1, + sym_raw_string_begin, + ACTIONS(7111), 1, aux_sym_path_token1, - STATE(3503), 1, + STATE(2494), 1, sym_val_string, - STATE(3664), 1, + STATE(3684), 1, sym_comment, - STATE(3725), 4, + STATE(2564), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111199] = 10, + [111471] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3141), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(4954), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(4002), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4956), 1, + ACTIONS(7027), 1, + anon_sym_DOLLAR, + ACTIONS(7113), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5118), 1, - aux_sym_unquoted_token2, - STATE(2598), 1, + STATE(1933), 1, sym__immediate_decimal, - STATE(3665), 1, + STATE(3685), 1, sym_comment, - ACTIONS(4958), 2, + ACTIONS(7115), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2805), 2, + STATE(2010), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111232] = 10, + [111504] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3141), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(3689), 1, - anon_sym_DOLLAR, - ACTIONS(4988), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(4010), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4990), 1, + ACTIONS(7027), 1, + anon_sym_DOLLAR, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5118), 1, - aux_sym_unquoted_token2, - STATE(2965), 1, + STATE(2053), 1, sym__immediate_decimal, - STATE(3666), 1, + STATE(3686), 1, sym_comment, - ACTIONS(4992), 2, + ACTIONS(7119), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3277), 2, + STATE(774), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111265] = 10, + [111537] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7121), 1, + anon_sym_DQUOTE, + ACTIONS(7123), 1, + anon_sym_SQUOTE, + ACTIONS(7125), 1, + anon_sym_BQUOTE, + ACTIONS(7127), 1, + aux_sym_path_token1, + ACTIONS(7129), 1, + sym_raw_string_begin, + STATE(1907), 1, + sym_val_string, + STATE(3687), 1, + sym_comment, + STATE(1960), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111568] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(5273), 1, - anon_sym_DOLLAR, - ACTIONS(5857), 1, + ACTIONS(3420), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7061), 1, + ACTIONS(7027), 1, + anon_sym_DOLLAR, + ACTIONS(7131), 1, aux_sym__immediate_decimal_token2, - STATE(3667), 1, - sym_comment, - STATE(3835), 1, + STATE(1458), 1, sym__immediate_decimal, - ACTIONS(7063), 2, + STATE(3688), 1, + sym_comment, + ACTIONS(7133), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3887), 2, + STATE(696), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111298] = 10, + [111601] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(5273), 1, - anon_sym_DOLLAR, - ACTIONS(6030), 1, + ACTIONS(3452), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7065), 1, + ACTIONS(7027), 1, + anon_sym_DOLLAR, + ACTIONS(7135), 1, aux_sym__immediate_decimal_token2, - STATE(3668), 1, + STATE(1510), 1, + sym__immediate_decimal, + STATE(3689), 1, sym_comment, - STATE(4307), 1, + ACTIONS(7137), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(774), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111634] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(843), 1, + anon_sym_DQUOTE, + ACTIONS(845), 1, + anon_sym_SQUOTE, + ACTIONS(847), 1, + anon_sym_BQUOTE, + ACTIONS(859), 1, + sym_raw_string_begin, + ACTIONS(7139), 1, + aux_sym_path_token1, + STATE(2471), 1, + sym_val_string, + STATE(3690), 1, + sym_comment, + STATE(2476), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111665] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7141), 1, + anon_sym_DQUOTE, + ACTIONS(7143), 1, + anon_sym_SQUOTE, + ACTIONS(7145), 1, + anon_sym_BQUOTE, + ACTIONS(7147), 1, + aux_sym_path_token1, + ACTIONS(7149), 1, + sym_raw_string_begin, + STATE(3691), 1, + sym_comment, + STATE(4284), 1, + sym_val_string, + STATE(4376), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111696] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7023), 1, + aux_sym_path_token1, + ACTIONS(7151), 1, + anon_sym_DQUOTE, + ACTIONS(7153), 1, + anon_sym_SQUOTE, + ACTIONS(7155), 1, + anon_sym_BQUOTE, + ACTIONS(7157), 1, + sym_raw_string_begin, + STATE(2402), 1, + sym_val_string, + STATE(3692), 1, + sym_comment, + STATE(2613), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111727] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7161), 1, + anon_sym_SQUOTE, + ACTIONS(7163), 1, + anon_sym_BQUOTE, + ACTIONS(7165), 1, + aux_sym_path_token1, + ACTIONS(7167), 1, + sym_raw_string_begin, + STATE(1745), 1, + sym_val_string, + STATE(3693), 1, + sym_comment, + STATE(1757), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111758] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3785), 1, + sym_raw_string_begin, + ACTIONS(6991), 1, + anon_sym_DQUOTE, + ACTIONS(6993), 1, + anon_sym_SQUOTE, + ACTIONS(6995), 1, + anon_sym_BQUOTE, + ACTIONS(7169), 1, + aux_sym_path_token1, + STATE(2408), 1, + sym_val_string, + STATE(3694), 1, + sym_comment, + STATE(2389), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111789] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1764), 1, + sym_raw_string_begin, + ACTIONS(7023), 1, + aux_sym_path_token1, + ACTIONS(7171), 1, + anon_sym_DQUOTE, + ACTIONS(7173), 1, + anon_sym_SQUOTE, + ACTIONS(7175), 1, + anon_sym_BQUOTE, + STATE(2402), 1, + sym_val_string, + STATE(3695), 1, + sym_comment, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111820] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3020), 1, + sym_raw_string_begin, + ACTIONS(7017), 1, + anon_sym_DQUOTE, + ACTIONS(7019), 1, + anon_sym_SQUOTE, + ACTIONS(7021), 1, + anon_sym_BQUOTE, + ACTIONS(7177), 1, + aux_sym_path_token1, + STATE(2522), 1, + sym_val_string, + STATE(3696), 1, + sym_comment, + STATE(2607), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111851] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(7179), 1, + anon_sym_DQUOTE, + ACTIONS(7181), 1, + anon_sym_SQUOTE, + ACTIONS(7183), 1, + anon_sym_BQUOTE, + ACTIONS(7185), 1, + aux_sym_path_token1, + STATE(3697), 1, + sym_comment, + STATE(3856), 1, + sym_val_string, + STATE(3780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111882] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7187), 1, + anon_sym_DQUOTE, + ACTIONS(7189), 1, + anon_sym_SQUOTE, + ACTIONS(7191), 1, + anon_sym_BQUOTE, + ACTIONS(7193), 1, + aux_sym_path_token1, + ACTIONS(7195), 1, + sym_raw_string_begin, + STATE(346), 1, + sym_val_string, + STATE(3698), 1, + sym_comment, + STATE(361), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111913] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(785), 1, + anon_sym_RBRACE, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(7011), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7197), 1, + anon_sym_DOT_DOT2, + ACTIONS(7201), 1, + sym_filesize_unit, + ACTIONS(7203), 1, + sym_duration_unit, + STATE(3699), 1, + sym_comment, + STATE(5080), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7199), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111948] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(7205), 1, + anon_sym_DQUOTE, + ACTIONS(7207), 1, + anon_sym_SQUOTE, + ACTIONS(7209), 1, + anon_sym_BQUOTE, + ACTIONS(7211), 1, + aux_sym_path_token1, + STATE(514), 1, + sym_val_string, + STATE(3700), 1, + sym_comment, + STATE(505), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111979] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6946), 1, + aux_sym__immediate_decimal_token5, + STATE(3701), 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, + [112002] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + anon_sym_LBRACE, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(765), 1, sym__immediate_decimal, - ACTIONS(7067), 2, + STATE(3702), 1, + sym_comment, + ACTIONS(6660), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(824), 2, + ACTIONS(7213), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(764), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111331] = 9, + [112033] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7069), 1, + ACTIONS(7215), 1, + anon_sym_DOT, + ACTIONS(7217), 1, + aux_sym__immediate_decimal_token5, + STATE(3703), 1, + sym_comment, + ACTIONS(1784), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [112058] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7219), 1, anon_sym_DQUOTE, - ACTIONS(7071), 1, + ACTIONS(7221), 1, anon_sym_SQUOTE, - ACTIONS(7073), 1, + ACTIONS(7223), 1, anon_sym_BQUOTE, - ACTIONS(7075), 1, + ACTIONS(7225), 1, aux_sym_path_token1, - ACTIONS(7077), 1, + ACTIONS(7227), 1, sym_raw_string_begin, - STATE(371), 1, + STATE(381), 1, sym_val_string, - STATE(3669), 1, + STATE(3704), 1, sym_comment, - STATE(400), 4, + STATE(387), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111362] = 10, + [112089] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3705), 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, + [112110] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6964), 1, + aux_sym__immediate_decimal_token5, + STATE(3706), 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, + [112133] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1806), 1, + sym__unquoted_pattern, + ACTIONS(7229), 1, + anon_sym_DOT_DOT2, + ACTIONS(7233), 1, + sym_filesize_unit, + ACTIONS(7235), 1, + sym_duration_unit, + STATE(3707), 1, + sym_comment, + ACTIONS(7231), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(884), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [112162] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7237), 1, + aux_sym__immediate_decimal_token5, + STATE(3708), 1, + sym_comment, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112185] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7239), 1, + aux_sym__immediate_decimal_token5, + STATE(3709), 1, + sym_comment, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 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, + [112208] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3710), 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, + [112229] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3711), 1, + sym_comment, + ACTIONS(866), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(868), 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, + [112250] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3347), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5061), 1, - aux_sym_unquoted_token2, - ACTIONS(6060), 1, + ACTIONS(1661), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6062), 1, + ACTIONS(1846), 1, + aux_sym_unquoted_token2, + ACTIONS(7101), 1, + anon_sym_DOLLAR, + ACTIONS(7241), 1, aux_sym__immediate_decimal_token2, - STATE(3670), 1, - sym_comment, - STATE(3837), 1, + STATE(734), 1, sym__immediate_decimal, - ACTIONS(6064), 2, + STATE(3712), 1, + sym_comment, + ACTIONS(7243), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4085), 2, + STATE(982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111395] = 10, + [112283] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3347), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5061), 1, - aux_sym_unquoted_token2, - ACTIONS(6423), 1, + ACTIONS(1718), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6425), 1, + ACTIONS(1846), 1, + aux_sym_unquoted_token2, + ACTIONS(7101), 1, + anon_sym_DOLLAR, + ACTIONS(7245), 1, aux_sym__immediate_decimal_token2, - STATE(3671), 1, - sym_comment, - STATE(4321), 1, + STATE(1135), 1, sym__immediate_decimal, - ACTIONS(6427), 2, + STATE(3713), 1, + sym_comment, + ACTIONS(7247), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3207), 2, + STATE(1294), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111428] = 9, + [112316] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3832), 1, + ACTIONS(785), 1, + anon_sym_RBRACK, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(6604), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7249), 1, + anon_sym_DOT_DOT2, + ACTIONS(7253), 1, + sym_filesize_unit, + ACTIONS(7255), 1, + sym_duration_unit, + STATE(3714), 1, + sym_comment, + STATE(4994), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7251), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112351] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3715), 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, + [112372] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1764), 1, sym_raw_string_begin, - ACTIONS(7079), 1, + ACTIONS(7171), 1, anon_sym_DQUOTE, - ACTIONS(7081), 1, + ACTIONS(7173), 1, anon_sym_SQUOTE, - ACTIONS(7083), 1, + ACTIONS(7175), 1, anon_sym_BQUOTE, - ACTIONS(7085), 1, + ACTIONS(7257), 1, aux_sym_path_token1, - STATE(2597), 1, + STATE(2308), 1, sym_val_string, - STATE(3672), 1, + STATE(3716), 1, sym_comment, - STATE(2394), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111459] = 6, + [112403] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7087), 1, + ACTIONS(7259), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7089), 1, + ACTIONS(7261), 1, aux_sym__immediate_decimal_token5, - STATE(3673), 1, + STATE(3717), 1, sym_comment, ACTIONS(1730), 4, anon_sym_LPAREN2, @@ -234441,951 +236398,714 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(1732), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [111484] = 4, + [112428] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3674), 1, + ACTIONS(7263), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7265), 1, + aux_sym__immediate_decimal_token5, + STATE(3718), 1, sym_comment, - ACTIONS(767), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(769), 6, + ACTIONS(1730), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [111505] = 10, + ACTIONS(1732), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [112453] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3347), 1, + ACTIONS(3255), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4942), 1, + ACTIONS(5050), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5061), 1, - aux_sym_unquoted_token2, - STATE(2528), 1, - sym__immediate_decimal, - STATE(3675), 1, - sym_comment, - ACTIONS(4944), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2687), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111538] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4966), 1, + ACTIONS(5052), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4968), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5061), 1, - aux_sym_unquoted_token2, - STATE(2734), 1, + ACTIONS(5184), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7267), 1, + anon_sym_DOLLAR, + STATE(2698), 1, sym__immediate_decimal, - STATE(3676), 1, + STATE(3719), 1, sym_comment, - ACTIONS(4970), 2, + ACTIONS(7269), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3207), 2, + STATE(2987), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111571] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3012), 1, - sym_raw_string_begin, - ACTIONS(7091), 1, - anon_sym_DQUOTE, - ACTIONS(7093), 1, - anon_sym_SQUOTE, - ACTIONS(7095), 1, - anon_sym_BQUOTE, - ACTIONS(7097), 1, - aux_sym_path_token1, - STATE(2370), 1, - sym_val_string, - STATE(3677), 1, - sym_comment, - STATE(2643), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [111602] = 5, + [112486] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6946), 1, + ACTIONS(7271), 1, + anon_sym_DOT, + ACTIONS(7273), 1, aux_sym__immediate_decimal_token5, - STATE(3678), 1, + STATE(3720), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1786), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(1784), 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, - [111625] = 10, - ACTIONS(103), 1, + [112511] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(7043), 1, + ACTIONS(1681), 1, + anon_sym_LBRACE, + ACTIONS(2898), 1, anon_sym_DOLLAR, - ACTIONS(7099), 1, - aux_sym__immediate_decimal_token2, - STATE(555), 1, + STATE(802), 1, sym__immediate_decimal, - STATE(3679), 1, + STATE(3721), 1, sym_comment, - ACTIONS(7101), 2, + ACTIONS(6660), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(717), 2, + ACTIONS(7213), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(801), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111658] = 10, + [112542] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1766), 1, + anon_sym_DOLLAR, + ACTIONS(6050), 1, anon_sym_LPAREN2, - ACTIONS(1665), 1, + ACTIONS(6547), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(7043), 1, - anon_sym_DOLLAR, - ACTIONS(7103), 1, + ACTIONS(6549), 1, aux_sym__immediate_decimal_token2, - STATE(957), 1, - sym__immediate_decimal, - STATE(3680), 1, + ACTIONS(7011), 1, + aux_sym__unquoted_in_record_token2, + STATE(3722), 1, sym_comment, - ACTIONS(7105), 2, + STATE(3882), 1, + sym__immediate_decimal, + ACTIONS(6551), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(824), 2, + STATE(4128), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111691] = 9, - ACTIONS(103), 1, + [112575] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7107), 1, - anon_sym_DQUOTE, - ACTIONS(7109), 1, - anon_sym_SQUOTE, - ACTIONS(7111), 1, - anon_sym_BQUOTE, - ACTIONS(7113), 1, - aux_sym_path_token1, - ACTIONS(7115), 1, - sym_raw_string_begin, - STATE(1763), 1, - sym_val_string, - STATE(3681), 1, + ACTIONS(6926), 1, + aux_sym__immediate_decimal_token5, + STATE(3723), 1, sym_comment, - STATE(1792), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [111722] = 10, + 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, + [112598] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1840), 1, - aux_sym_unquoted_token2, - ACTIONS(4918), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5279), 1, - anon_sym_DOLLAR, - ACTIONS(7117), 1, - aux_sym__immediate_decimal_token2, - STATE(2473), 1, - sym__immediate_decimal, - STATE(3682), 1, + STATE(3724), 1, sym_comment, - ACTIONS(7119), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2636), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111755] = 10, - ACTIONS(103), 1, + ACTIONS(775), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(777), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112619] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1840), 1, - aux_sym_unquoted_token2, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5279), 1, + ACTIONS(1685), 1, + anon_sym_LBRACE, + ACTIONS(2898), 1, anon_sym_DOLLAR, - ACTIONS(7121), 1, - aux_sym__immediate_decimal_token2, - STATE(2706), 1, + STATE(804), 1, sym__immediate_decimal, - STATE(3683), 1, + STATE(3725), 1, sym_comment, - ACTIONS(7123), 2, + ACTIONS(6660), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1294), 2, + ACTIONS(7213), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(803), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111788] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7125), 1, - anon_sym_DQUOTE, - ACTIONS(7127), 1, - anon_sym_SQUOTE, - ACTIONS(7129), 1, - anon_sym_BQUOTE, - ACTIONS(7131), 1, - aux_sym_path_token1, - ACTIONS(7133), 1, - sym_raw_string_begin, - STATE(3684), 1, - sym_comment, - STATE(3938), 1, - sym_val_string, - STATE(3995), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [111819] = 10, + [112650] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(3366), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(4904), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5273), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(7135), 1, + ACTIONS(4976), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4978), 1, aux_sym__immediate_decimal_token2, - STATE(2433), 1, + ACTIONS(5132), 1, + aux_sym_unquoted_token2, + STATE(2644), 1, sym__immediate_decimal, - STATE(3685), 1, + STATE(3726), 1, sym_comment, - ACTIONS(7137), 2, + ACTIONS(4980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2557), 2, + STATE(2735), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111852] = 10, + [112683] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(3366), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(4922), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5273), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(7139), 1, + ACTIONS(4998), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5000), 1, aux_sym__immediate_decimal_token2, - STATE(2591), 1, + ACTIONS(5132), 1, + aux_sym_unquoted_token2, + STATE(3011), 1, sym__immediate_decimal, - STATE(3686), 1, + STATE(3727), 1, sym_comment, - ACTIONS(7141), 2, + ACTIONS(5002), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(824), 2, + STATE(3406), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111885] = 9, + [112716] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7059), 1, - aux_sym_path_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7147), 1, - anon_sym_BQUOTE, - ACTIONS(7149), 1, - sym_raw_string_begin, - STATE(3503), 1, - sym_val_string, - STATE(3687), 1, - sym_comment, - STATE(3612), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [111916] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(6050), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(5273), 1, + ACTIONS(6604), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6626), 1, anon_sym_DOLLAR, - ACTIONS(6201), 1, + ACTIONS(6648), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7151), 1, + ACTIONS(6650), 1, aux_sym__immediate_decimal_token2, - STATE(3688), 1, + STATE(3728), 1, sym_comment, - STATE(3928), 1, + STATE(4547), 1, sym__immediate_decimal, - ACTIONS(7153), 2, + ACTIONS(6652), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3887), 2, + STATE(4502), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111949] = 10, + [112749] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(5273), 1, + ACTIONS(1766), 1, anon_sym_DOLLAR, - ACTIONS(6447), 1, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + ACTIONS(6054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7155), 1, + ACTIONS(6056), 1, aux_sym__immediate_decimal_token2, - STATE(3689), 1, + ACTIONS(6604), 1, + aux_sym__unquoted_in_list_token2, + STATE(3729), 1, sym_comment, - STATE(4393), 1, + STATE(3859), 1, sym__immediate_decimal, - ACTIONS(7157), 2, + ACTIONS(6058), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(824), 2, + STATE(4166), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111982] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7159), 1, - anon_sym_DQUOTE, - ACTIONS(7161), 1, - anon_sym_SQUOTE, - ACTIONS(7163), 1, - anon_sym_BQUOTE, - ACTIONS(7165), 1, - aux_sym_path_token1, - ACTIONS(7167), 1, - sym_raw_string_begin, - STATE(334), 1, - sym_val_string, - STATE(3690), 1, - sym_comment, - STATE(360), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112013] = 10, + [112782] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(6425), 1, + anon_sym_DOLLAR, + ACTIONS(6427), 1, anon_sym_LPAREN2, - ACTIONS(1840), 1, - aux_sym_unquoted_token2, - ACTIONS(3458), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - ACTIONS(7169), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token2, - STATE(1453), 1, - sym__immediate_decimal, - STATE(3691), 1, + ACTIONS(6604), 1, + aux_sym__unquoted_in_list_token2, + STATE(3730), 1, sym_comment, - ACTIONS(7171), 2, + STATE(4293), 1, + sym__immediate_decimal, + ACTIONS(6433), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(962), 2, + STATE(4502), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112046] = 10, - ACTIONS(103), 1, + [112815] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1840), 1, - aux_sym_unquoted_token2, - ACTIONS(3484), 1, + ACTIONS(7275), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - ACTIONS(7173), 1, - aux_sym__immediate_decimal_token2, - STATE(1516), 1, - sym__immediate_decimal, - STATE(3692), 1, + ACTIONS(7277), 1, + aux_sym__immediate_decimal_token5, + STATE(3731), 1, sym_comment, - ACTIONS(7175), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1294), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112079] = 9, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112840] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(946), 1, - anon_sym_DQUOTE, - ACTIONS(948), 1, - anon_sym_SQUOTE, - ACTIONS(950), 1, - anon_sym_BQUOTE, - ACTIONS(962), 1, - sym_raw_string_begin, - ACTIONS(7177), 1, - aux_sym_path_token1, - STATE(2495), 1, - sym_val_string, - STATE(3693), 1, + ACTIONS(1466), 1, + anon_sym_BANG, + STATE(3732), 1, sym_comment, - STATE(2547), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112110] = 10, + ACTIONS(1464), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1462), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [112863] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(3968), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7043), 1, - anon_sym_DOLLAR, - ACTIONS(7179), 1, - aux_sym__immediate_decimal_token2, - STATE(1903), 1, - sym__immediate_decimal, - STATE(3694), 1, + STATE(3733), 1, sym_comment, - ACTIONS(7181), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1983), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112143] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(775), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(777), 6, anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(4002), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7043), 1, - anon_sym_DOLLAR, - ACTIONS(7183), 1, - aux_sym__immediate_decimal_token2, - STATE(2017), 1, - sym__immediate_decimal, - STATE(3695), 1, - sym_comment, - ACTIONS(7185), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(824), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112176] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112884] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7187), 1, - anon_sym_DQUOTE, - ACTIONS(7189), 1, - anon_sym_SQUOTE, - ACTIONS(7191), 1, - anon_sym_BQUOTE, - ACTIONS(7193), 1, - aux_sym_path_token1, - ACTIONS(7195), 1, - sym_raw_string_begin, - STATE(1919), 1, - sym_val_string, - STATE(3696), 1, + STATE(3734), 1, sym_comment, - STATE(1940), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112207] = 10, + ACTIONS(775), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112905] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(3390), 1, + ACTIONS(3876), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7043), 1, + ACTIONS(7027), 1, anon_sym_DOLLAR, - ACTIONS(7197), 1, + ACTIONS(7279), 1, aux_sym__immediate_decimal_token2, - STATE(1446), 1, + STATE(1889), 1, sym__immediate_decimal, - STATE(3697), 1, + STATE(3735), 1, sym_comment, - ACTIONS(7199), 2, + ACTIONS(7281), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(717), 2, + STATE(696), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112240] = 10, + [112938] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(3438), 1, + ACTIONS(4006), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7043), 1, + ACTIONS(7027), 1, anon_sym_DOLLAR, - ACTIONS(7201), 1, + ACTIONS(7283), 1, aux_sym__immediate_decimal_token2, - STATE(1497), 1, + STATE(2007), 1, sym__immediate_decimal, - STATE(3698), 1, + STATE(3736), 1, sym_comment, - ACTIONS(7203), 2, + ACTIONS(7285), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(824), 2, + STATE(774), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112273] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(827), 1, - anon_sym_DQUOTE, - ACTIONS(829), 1, - anon_sym_SQUOTE, - ACTIONS(831), 1, - anon_sym_BQUOTE, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(7205), 1, - aux_sym_path_token1, - STATE(2456), 1, - sym_val_string, - STATE(3699), 1, - sym_comment, - STATE(2477), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112304] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7207), 1, - anon_sym_DQUOTE, - ACTIONS(7209), 1, - anon_sym_SQUOTE, - ACTIONS(7211), 1, - anon_sym_BQUOTE, - ACTIONS(7213), 1, - aux_sym_path_token1, - ACTIONS(7215), 1, - sym_raw_string_begin, - STATE(3700), 1, - sym_comment, - STATE(4232), 1, - sym_val_string, - STATE(4463), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112335] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7097), 1, - aux_sym_path_token1, - ACTIONS(7217), 1, - anon_sym_DQUOTE, - ACTIONS(7219), 1, - anon_sym_SQUOTE, - ACTIONS(7221), 1, - anon_sym_BQUOTE, - ACTIONS(7223), 1, - sym_raw_string_begin, - STATE(2370), 1, - sym_val_string, - STATE(3701), 1, - sym_comment, - STATE(2563), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112366] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7225), 1, - anon_sym_DQUOTE, - ACTIONS(7227), 1, - anon_sym_SQUOTE, - ACTIONS(7229), 1, - anon_sym_BQUOTE, - ACTIONS(7231), 1, - aux_sym_path_token1, - ACTIONS(7233), 1, - sym_raw_string_begin, - STATE(1728), 1, - sym_val_string, - STATE(3702), 1, - sym_comment, - STATE(1738), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112397] = 9, + [112971] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3832), 1, + ACTIONS(1436), 1, sym_raw_string_begin, ACTIONS(7079), 1, - anon_sym_DQUOTE, - ACTIONS(7081), 1, - anon_sym_SQUOTE, - ACTIONS(7083), 1, - anon_sym_BQUOTE, - ACTIONS(7235), 1, - aux_sym_path_token1, - STATE(2393), 1, - sym_val_string, - STATE(3703), 1, - sym_comment, - STATE(2394), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112428] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1778), 1, - sym_raw_string_begin, - ACTIONS(7033), 1, - anon_sym_DQUOTE, - ACTIONS(7035), 1, - anon_sym_SQUOTE, - ACTIONS(7037), 1, - anon_sym_BQUOTE, - ACTIONS(7097), 1, aux_sym_path_token1, - STATE(2370), 1, - sym_val_string, - STATE(3704), 1, - sym_comment, - STATE(2274), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112459] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3012), 1, - sym_raw_string_begin, - ACTIONS(7091), 1, + ACTIONS(7179), 1, anon_sym_DQUOTE, - ACTIONS(7093), 1, + ACTIONS(7181), 1, anon_sym_SQUOTE, - ACTIONS(7095), 1, + ACTIONS(7183), 1, anon_sym_BQUOTE, - ACTIONS(7237), 1, - aux_sym_path_token1, - STATE(2508), 1, + STATE(3446), 1, sym_val_string, - STATE(3705), 1, + STATE(3737), 1, sym_comment, - STATE(2643), 4, + STATE(3780), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [112490] = 9, + [113002] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1436), 1, + ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(7053), 1, - anon_sym_DQUOTE, - ACTIONS(7055), 1, - anon_sym_SQUOTE, - ACTIONS(7057), 1, - anon_sym_BQUOTE, - ACTIONS(7239), 1, - aux_sym_path_token1, - STATE(3706), 1, - sym_comment, - STATE(3823), 1, - sym_val_string, - STATE(3725), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112521] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7241), 1, + ACTIONS(7287), 1, anon_sym_DQUOTE, - ACTIONS(7243), 1, + ACTIONS(7289), 1, anon_sym_SQUOTE, - ACTIONS(7245), 1, + ACTIONS(7291), 1, anon_sym_BQUOTE, - ACTIONS(7247), 1, + ACTIONS(7293), 1, aux_sym_path_token1, - ACTIONS(7249), 1, - sym_raw_string_begin, - STATE(333), 1, + STATE(414), 1, sym_val_string, - STATE(3707), 1, + STATE(3738), 1, sym_comment, - STATE(342), 4, + STATE(442), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [112552] = 10, + [113033] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, + ACTIONS(3255), 1, anon_sym_LPAREN2, - ACTIONS(6154), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6156), 1, + ACTIONS(5140), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6659), 1, - aux_sym__unquoted_in_list_token2, - STATE(3708), 1, + ACTIONS(5142), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5184), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7267), 1, + anon_sym_DOLLAR, + STATE(3064), 1, + sym__immediate_decimal, + STATE(3739), 1, sym_comment, - STATE(3816), 1, + ACTIONS(7295), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3452), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113066] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(786), 1, sym__immediate_decimal, - ACTIONS(6158), 2, + STATE(3740), 1, + sym_comment, + ACTIONS(6660), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4147), 2, + ACTIONS(7213), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(785), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112585] = 4, + [113097] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3709), 1, + ACTIONS(7297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7299), 1, + aux_sym__immediate_decimal_token5, + STATE(3741), 1, sym_comment, - ACTIONS(863), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(865), 6, + ACTIONS(1730), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [112606] = 10, + ACTIONS(1732), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [113122] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6497), 1, - anon_sym_DOLLAR, - ACTIONS(6499), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(6501), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(5332), 1, + anon_sym_DOLLAR, + ACTIONS(5964), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6503), 1, + ACTIONS(7301), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6659), 1, - aux_sym__unquoted_in_list_token2, - STATE(3710), 1, + STATE(3742), 1, sym_comment, - STATE(4331), 1, + STATE(3834), 1, sym__immediate_decimal, - ACTIONS(6505), 2, + ACTIONS(7303), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4337), 2, + STATE(3963), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112639] = 9, + [113155] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7253), 1, - anon_sym_SQUOTE, - ACTIONS(7255), 1, - anon_sym_BQUOTE, - ACTIONS(7257), 1, - aux_sym_path_token1, - STATE(412), 1, - sym_val_string, - STATE(3711), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(5332), 1, + anon_sym_DOLLAR, + ACTIONS(6124), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7305), 1, + aux_sym__immediate_decimal_token2, + STATE(3743), 1, sym_comment, - STATE(418), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112670] = 6, - ACTIONS(3), 1, + STATE(4241), 1, + sym__immediate_decimal, + ACTIONS(7307), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(774), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113188] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7259), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7261), 1, - aux_sym__immediate_decimal_token5, - STATE(3712), 1, + STATE(3744), 1, sym_comment, - ACTIONS(1732), 2, + ACTIONS(866), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(868), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112695] = 5, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [113209] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7263), 1, - aux_sym__immediate_decimal_token5, - STATE(3713), 1, + STATE(3745), 1, sym_comment, - ACTIONS(767), 2, + ACTIONS(747), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(769), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [112718] = 6, - ACTIONS(103), 1, + [113230] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7265), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7267), 1, - aux_sym__immediate_decimal_token5, - STATE(3714), 1, + ACTIONS(3366), 1, + anon_sym_LPAREN2, + ACTIONS(7309), 1, + anon_sym_DOLLAR, + STATE(3002), 1, + sym__immediate_decimal, + STATE(3746), 1, sym_comment, - ACTIONS(1730), 4, - sym__space, + ACTIONS(4998), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7311), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3313), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113258] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3149), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [112743] = 4, + ACTIONS(7313), 1, + anon_sym_DOLLAR, + STATE(3073), 1, + sym__immediate_decimal, + STATE(3747), 1, + sym_comment, + ACTIONS(6674), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7315), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3068), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113286] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3715), 1, + STATE(3748), 1, sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(866), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + sym__unquoted_pattern_in_record, + ACTIONS(868), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [112764] = 6, - ACTIONS(103), 1, + [113306] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7269), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(2599), 1, + sym__immediate_decimal, + STATE(3749), 1, + sym_comment, + ACTIONS(4924), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7271), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4926), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(790), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113334] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7001), 1, aux_sym__immediate_decimal_token5, - STATE(3716), 1, + STATE(3750), 1, sym_comment, - ACTIONS(1730), 4, + ACTIONS(1784), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1732), 4, + ACTIONS(1786), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [112789] = 4, + [113356] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3717), 1, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(7313), 1, + anon_sym_DOLLAR, + STATE(3073), 1, + sym__immediate_decimal, + STATE(3751), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(4988), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7317), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3068), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113384] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3752), 1, + sym_comment, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, + ACTIONS(777), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -235393,228 +237113,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [112810] = 4, - ACTIONS(103), 1, + [113404] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3718), 1, + STATE(3753), 1, sym_comment, - ACTIONS(767), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(769), 6, + ACTIONS(7319), 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, + [113422] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [112831] = 4, - ACTIONS(103), 1, + STATE(933), 1, + sym__immediate_decimal, + STATE(3754), 1, + sym_comment, + ACTIONS(1649), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1651), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(790), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113450] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3719), 1, + STATE(3755), 1, sym_comment, - ACTIONS(863), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(775), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(865), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(777), 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, - [112852] = 9, - ACTIONS(103), 1, + [113470] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(7273), 1, - anon_sym_DQUOTE, - ACTIONS(7275), 1, - anon_sym_SQUOTE, - ACTIONS(7277), 1, - anon_sym_BQUOTE, - ACTIONS(7279), 1, - aux_sym_path_token1, - STATE(509), 1, - sym_val_string, - STATE(3720), 1, + ACTIONS(3255), 1, + anon_sym_LPAREN2, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + STATE(3071), 1, + sym__immediate_decimal, + STATE(3756), 1, sym_comment, - STATE(502), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112883] = 9, + ACTIONS(5142), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5144), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3545), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113498] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(2938), 1, + STATE(2005), 1, + sym__immediate_decimal, + STATE(3757), 1, + sym_comment, + ACTIONS(4002), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4004), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2010), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113526] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1655), 1, anon_sym_DOLLAR, - STATE(804), 1, + ACTIONS(1657), 1, + anon_sym_LPAREN2, + STATE(985), 1, sym__immediate_decimal, - STATE(3721), 1, + STATE(3758), 1, sym_comment, - ACTIONS(6669), 2, + ACTIONS(1661), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6971), 2, + STATE(982), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113554] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(951), 1, + sym__immediate_decimal, + STATE(3759), 1, + sym_comment, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(803), 2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(774), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112914] = 8, + [113582] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR, - STATE(3722), 1, - sym_comment, - STATE(4418), 1, + STATE(788), 1, sym__immediate_decimal, - ACTIONS(6447), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6449), 2, + STATE(3760), 1, + sym_comment, + ACTIONS(1612), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(796), 2, + ACTIONS(1673), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(782), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112942] = 8, + [113610] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - STATE(718), 1, + STATE(788), 1, sym__immediate_decimal, - STATE(3723), 1, + STATE(3761), 1, sym_comment, - ACTIONS(1609), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1611), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(717), 2, + STATE(782), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112970] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4179), 1, - anon_sym_DOT_DOT2, - ACTIONS(7281), 1, - sym_filesize_unit, - ACTIONS(7283), 1, - sym_duration_unit, - ACTIONS(7285), 1, - sym__unquoted_pattern, - STATE(3724), 1, - sym_comment, - ACTIONS(4181), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [112998] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - sym__entry_separator, - STATE(3725), 1, - sym_comment, - ACTIONS(1508), 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, - [113018] = 8, + [113638] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2720), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - STATE(3726), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(3762), 1, sym_comment, - STATE(4198), 1, + STATE(4562), 1, sym__immediate_decimal, - ACTIONS(6437), 2, + ACTIONS(6421), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7287), 2, + ACTIONS(6423), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4014), 2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113046] = 8, + [113666] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3773), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - STATE(3727), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(3763), 1, sym_comment, - STATE(5011), 1, + STATE(4968), 1, sym__immediate_decimal, - ACTIONS(6743), 2, + ACTIONS(6917), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7287), 2, + ACTIONS(6919), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4337), 2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113074] = 8, + [113694] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1806), 1, + sym__unquoted_pattern, + ACTIONS(7321), 1, + anon_sym_DOT_DOT2, + ACTIONS(7325), 1, + sym_filesize_unit, + ACTIONS(7327), 1, + sym_duration_unit, + STATE(3764), 1, + sym_comment, + ACTIONS(7323), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(884), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113722] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2511), 1, + sym_path, + STATE(2946), 1, + sym_cell_path, + STATE(3765), 1, + sym_comment, + ACTIONS(1866), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [113748] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - STATE(951), 1, + STATE(1524), 1, sym__immediate_decimal, - STATE(3728), 1, + STATE(3766), 1, sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1645), 2, + ACTIONS(3493), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(824), 2, + ACTIONS(3495), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1305), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113102] = 4, + [113776] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1514), 1, + ACTIONS(1532), 1, sym__entry_separator, - STATE(3729), 1, + STATE(3767), 1, sym_comment, - ACTIONS(1512), 8, + ACTIONS(1530), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -235623,168 +237399,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113122] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3730), 1, - sym_comment, - ACTIONS(863), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(865), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [113142] = 8, + [113796] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_LPAREN2, - ACTIONS(7289), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - STATE(2969), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(698), 1, sym__immediate_decimal, - STATE(3731), 1, + STATE(3768), 1, sym_comment, - ACTIONS(4988), 2, + ACTIONS(1610), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7291), 2, + ACTIONS(1612), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3310), 2, + STATE(696), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113170] = 8, + [113824] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR, - ACTIONS(1687), 1, + ACTIONS(6050), 1, anon_sym_LPAREN2, - STATE(1022), 1, - sym__immediate_decimal, - STATE(3732), 1, + STATE(3769), 1, sym_comment, - ACTIONS(1718), 2, + STATE(4422), 1, + sym__immediate_decimal, + ACTIONS(6628), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1720), 2, + ACTIONS(7329), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1307), 2, + STATE(4626), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113198] = 4, + [113852] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1522), 1, + ACTIONS(884), 1, sym__entry_separator, - STATE(3733), 1, + ACTIONS(6604), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6970), 1, + anon_sym_DOT_DOT2, + ACTIONS(6974), 1, + sym_filesize_unit, + ACTIONS(6976), 1, + sym_duration_unit, + STATE(3770), 1, sym_comment, - ACTIONS(1520), 8, - anon_sym_COLON, + ACTIONS(785), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113218] = 8, + ACTIONS(6972), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113882] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - STATE(795), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(788), 1, sym__immediate_decimal, - STATE(3734), 1, + STATE(3771), 1, sym_comment, - ACTIONS(5859), 2, + ACTIONS(1612), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6413), 2, + ACTIONS(1673), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(794), 2, + STATE(782), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113246] = 8, + [113910] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - STATE(1996), 1, + STATE(2081), 1, sym__immediate_decimal, - STATE(3735), 1, + STATE(3772), 1, sym_comment, - ACTIONS(3962), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3964), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(796), 2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113274] = 8, + [113938] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(7293), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - STATE(3214), 1, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(951), 1, sym__immediate_decimal, - STATE(3736), 1, + STATE(3773), 1, sym_comment, - ACTIONS(6647), 2, + ACTIONS(1612), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1673), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7295), 2, + STATE(774), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113966] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(979), 1, + sym__immediate_decimal, + STATE(3774), 1, + sym_comment, + ACTIONS(1612), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3213), 2, + ACTIONS(1673), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113302] = 9, + [113994] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4179), 1, - anon_sym_DOT_DOT2, - ACTIONS(5061), 1, - sym__unquoted_pattern, - ACTIONS(6910), 1, - sym_filesize_unit, - ACTIONS(6912), 1, - sym_duration_unit, - STATE(3737), 1, + STATE(3775), 1, sym_comment, - ACTIONS(847), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(4181), 2, + 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, - [113332] = 4, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [114014] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3738), 1, + STATE(3776), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, + ACTIONS(749), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -235792,51 +237572,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [113352] = 5, + [114034] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6987), 1, - aux_sym__immediate_decimal_token5, - STATE(3739), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, + anon_sym_LPAREN2, + STATE(979), 1, + sym__immediate_decimal, + STATE(3777), 1, sym_comment, - ACTIONS(1792), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1790), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113374] = 8, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(790), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114062] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1602), 1, + anon_sym_DOLLAR, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + STATE(1506), 1, + sym__immediate_decimal, + STATE(3778), 1, + sym_comment, + ACTIONS(3452), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3454), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(790), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114090] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3803), 1, anon_sym_DOLLAR, - STATE(3740), 1, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + STATE(3779), 1, sym_comment, - STATE(4306), 1, + STATE(4455), 1, sym__immediate_decimal, - ACTIONS(6030), 2, + ACTIONS(6844), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6032), 2, + ACTIONS(7331), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(796), 2, + STATE(4430), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113402] = 4, + [114118] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1530), 1, + ACTIONS(1524), 1, sym__entry_separator, - STATE(3741), 1, + STATE(3780), 1, sym_comment, - ACTIONS(1528), 8, + ACTIONS(1522), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -235845,50 +237648,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113422] = 8, + [114138] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3347), 1, + ACTIONS(3149), 1, anon_sym_LPAREN2, - ACTIONS(7293), 1, + ACTIONS(7313), 1, anon_sym_DOLLAR, - STATE(3214), 1, - sym__immediate_decimal, - STATE(3742), 1, + STATE(3781), 1, sym_comment, - ACTIONS(4984), 2, + STATE(4234), 1, + sym__immediate_decimal, + ACTIONS(6445), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7297), 2, + ACTIONS(7333), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3213), 2, + STATE(3074), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113450] = 4, - ACTIONS(103), 1, + [114166] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1502), 1, - sym__entry_separator, - STATE(3743), 1, + ACTIONS(7273), 1, + aux_sym__immediate_decimal_token5, + STATE(3782), 1, sym_comment, - ACTIONS(1500), 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, - [113470] = 4, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1784), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114188] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1506), 1, + ACTIONS(1482), 1, sym__entry_separator, - STATE(3744), 1, + STATE(3783), 1, sym_comment, - ACTIONS(1504), 8, + ACTIONS(1480), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -235897,71 +237701,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113490] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7299), 1, - aux_sym__immediate_decimal_token5, - STATE(3745), 1, - sym_comment, - ACTIONS(1848), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1846), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113512] = 8, + [114208] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3773), 1, + ACTIONS(3819), 1, anon_sym_DOLLAR, - ACTIONS(6150), 1, + ACTIONS(6427), 1, anon_sym_LPAREN2, - STATE(3746), 1, + STATE(3784), 1, sym_comment, - STATE(4486), 1, + STATE(4422), 1, sym__immediate_decimal, - ACTIONS(6621), 2, + ACTIONS(6429), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, + ACTIONS(7335), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4396), 2, + STATE(4626), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113540] = 8, - ACTIONS(3), 1, + [114236] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3347), 1, - anon_sym_LPAREN2, - ACTIONS(7293), 1, - anon_sym_DOLLAR, - STATE(3747), 1, + ACTIONS(7005), 1, + aux_sym__immediate_decimal_token5, + STATE(3785), 1, sym_comment, - STATE(4330), 1, - sym__immediate_decimal, - ACTIONS(6423), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7303), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3215), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113568] = 6, + ACTIONS(1784), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1786), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114258] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7305), 1, - anon_sym_DOT, - ACTIONS(7307), 1, + ACTIONS(7337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7339), 1, aux_sym__immediate_decimal_token5, - STATE(3748), 1, + STATE(3786), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, @@ -235972,132 +237756,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [113592] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3840), 1, - anon_sym_DOLLAR, - ACTIONS(6499), 1, - anon_sym_LPAREN2, - STATE(3749), 1, - sym_comment, - STATE(4395), 1, - sym__immediate_decimal, - ACTIONS(6501), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7309), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4394), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113620] = 8, + [114282] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3347), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - ACTIONS(7293), 1, + ACTIONS(3830), 1, anon_sym_DOLLAR, - STATE(2767), 1, + STATE(2664), 1, sym__immediate_decimal, - STATE(3750), 1, + STATE(3787), 1, sym_comment, - ACTIONS(4966), 2, + ACTIONS(4946), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7311), 2, + ACTIONS(4948), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3215), 2, + STATE(1305), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113648] = 8, + [114310] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_LPAREN2, - ACTIONS(3789), 1, - anon_sym_DOLLAR, - STATE(3478), 1, - sym__immediate_decimal, - STATE(3751), 1, + STATE(3788), 1, sym_comment, - ACTIONS(5051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(5170), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(3475), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113676] = 8, + ACTIONS(866), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(868), 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, + [114330] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(3149), 1, anon_sym_LPAREN2, - STATE(951), 1, + ACTIONS(7313), 1, + anon_sym_DOLLAR, + STATE(2843), 1, sym__immediate_decimal, - STATE(3752), 1, + STATE(3789), 1, sym_comment, - ACTIONS(4002), 2, + ACTIONS(4968), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, + ACTIONS(7341), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(824), 2, + STATE(3074), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113704] = 8, + [114358] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(3255), 1, anon_sym_LPAREN2, - STATE(917), 1, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + STATE(3543), 1, sym__immediate_decimal, - STATE(3753), 1, + STATE(3790), 1, sym_comment, - ACTIONS(1665), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1667), 2, + ACTIONS(5054), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(796), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113732] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(795), 1, - sym__immediate_decimal, - STATE(3754), 1, - sym_comment, - ACTIONS(4002), 2, + ACTIONS(5217), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(794), 2, + STATE(3542), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113760] = 3, + [114386] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3755), 1, + STATE(3791), 1, sym_comment, - ACTIONS(7313), 9, + ACTIONS(7343), 9, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -236107,429 +237847,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [113778] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7315), 1, - anon_sym_DOT, - ACTIONS(7317), 1, - aux_sym__immediate_decimal_token5, - STATE(3756), 1, - sym_comment, - ACTIONS(1792), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1790), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113802] = 8, + [114404] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR, - STATE(795), 1, + ACTIONS(1657), 1, + anon_sym_LPAREN2, + STATE(1303), 1, sym__immediate_decimal, - STATE(3757), 1, + STATE(3792), 1, sym_comment, - ACTIONS(6669), 2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6971), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(794), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113830] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3773), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - STATE(3758), 1, - sym_comment, - STATE(4555), 1, - sym__immediate_decimal, - ACTIONS(6583), 2, + ACTIONS(1728), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7319), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4396), 2, + STATE(1302), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113858] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1828), 1, - sym__unquoted_pattern, - ACTIONS(7321), 1, - anon_sym_DOT_DOT2, - ACTIONS(7325), 1, - sym_filesize_unit, - ACTIONS(7327), 1, - sym_duration_unit, - STATE(3759), 1, - sym_comment, - ACTIONS(7323), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113886] = 8, + [114432] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(3366), 1, anon_sym_LPAREN2, - ACTIONS(3806), 1, + ACTIONS(7309), 1, anon_sym_DOLLAR, - STATE(2664), 1, + STATE(3310), 1, sym__immediate_decimal, - STATE(3760), 1, + STATE(3793), 1, sym_comment, - ACTIONS(4926), 2, + ACTIONS(5074), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4928), 2, + ACTIONS(7345), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1307), 2, + STATE(3307), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113914] = 8, + [114460] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3840), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR, - ACTIONS(6499), 1, + ACTIONS(6050), 1, anon_sym_LPAREN2, - STATE(3761), 1, + STATE(3794), 1, sym_comment, - STATE(4197), 1, + STATE(5008), 1, sym__immediate_decimal, - ACTIONS(6501), 2, + ACTIONS(6628), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7309), 2, + ACTIONS(7329), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4396), 2, + STATE(4430), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113942] = 8, + [114488] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR, - STATE(2616), 1, + ACTIONS(1657), 1, + anon_sym_LPAREN2, + STATE(1306), 1, sym__immediate_decimal, - STATE(3762), 1, + STATE(3795), 1, sym_comment, - ACTIONS(4922), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4924), 2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(796), 2, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1305), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113970] = 3, + [114516] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3763), 1, + ACTIONS(4153), 1, + anon_sym_DOT_DOT2, + ACTIONS(7347), 1, + sym_filesize_unit, + ACTIONS(7349), 1, + sym_duration_unit, + ACTIONS(7351), 1, + sym__unquoted_pattern, + STATE(3796), 1, sym_comment, - ACTIONS(7329), 9, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, + ACTIONS(4155), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(884), 3, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113988] = 8, - ACTIONS(3), 1, + [114544] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_LPAREN2, - ACTIONS(3789), 1, - anon_sym_DOLLAR, - STATE(3114), 1, - sym__immediate_decimal, - STATE(3764), 1, + ACTIONS(7353), 1, + aux_sym__immediate_decimal_token5, + STATE(3797), 1, sym_comment, - ACTIONS(5126), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5128), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3491), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114016] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3773), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, + ACTIONS(1832), 4, anon_sym_LPAREN2, - STATE(3765), 1, - sym_comment, - STATE(4933), 1, - sym__immediate_decimal, - ACTIONS(6743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7287), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4396), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114044] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1834), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114566] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR, - ACTIONS(1687), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - STATE(1524), 1, + STATE(1295), 1, sym__immediate_decimal, - STATE(3766), 1, + STATE(3798), 1, sym_comment, - ACTIONS(3484), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3486), 2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1307), 2, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1294), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114072] = 8, + [114594] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - STATE(2023), 1, + STATE(1982), 1, sym__immediate_decimal, - STATE(3767), 1, + STATE(3799), 1, sym_comment, - ACTIONS(4002), 2, + ACTIONS(4006), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, + ACTIONS(4008), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(796), 2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114100] = 6, + [114622] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7331), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7333), 1, + ACTIONS(7355), 1, + anon_sym_DOT, + ACTIONS(7357), 1, aux_sym__immediate_decimal_token5, - STATE(3768), 1, + STATE(3800), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1786), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, + ACTIONS(1784), 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, - [114124] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(1484), 1, - sym__immediate_decimal, - STATE(3769), 1, - sym_comment, - ACTIONS(3438), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3440), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(796), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114152] = 4, + [114646] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3770), 1, + ACTIONS(1518), 1, + sym__entry_separator, + STATE(3801), 1, sym_comment, - ACTIONS(739), 3, + ACTIONS(1516), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, 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, - [114172] = 8, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [114666] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_DOLLAR, - ACTIONS(1687), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - STATE(1295), 1, + ACTIONS(3830), 1, + anon_sym_DOLLAR, + STATE(1303), 1, sym__immediate_decimal, - STATE(3771), 1, + STATE(3802), 1, sym_comment, - ACTIONS(1693), 2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, ACTIONS(1728), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1294), 2, + STATE(1302), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114200] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7335), 1, - aux_sym__immediate_decimal_token5, - STATE(3772), 1, - sym_comment, - ACTIONS(1846), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1848), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [114222] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3773), 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, - [114242] = 8, + [114694] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - ACTIONS(3806), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR, - STATE(1306), 1, + STATE(788), 1, sym__immediate_decimal, - STATE(3774), 1, + STATE(3803), 1, sym_comment, - ACTIONS(1693), 2, + ACTIONS(6660), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1728), 2, + ACTIONS(7213), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1305), 2, + STATE(782), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114270] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token5, - STATE(3775), 1, - sym_comment, - ACTIONS(1790), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1792), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [114292] = 6, + [114722] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7337), 1, + ACTIONS(2706), 1, + anon_sym_DOLLAR, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + STATE(3804), 1, + sym_comment, + STATE(4242), 1, + sym__immediate_decimal, + ACTIONS(6475), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7339), 1, - aux_sym__immediate_decimal_token5, - STATE(3776), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7329), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4128), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114750] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3805), 1, sym_comment, - ACTIONS(1732), 2, + ACTIONS(775), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(777), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114316] = 8, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [114770] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR, - STATE(3777), 1, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + STATE(3806), 1, sym_comment, - STATE(5069), 1, + STATE(5095), 1, sym__immediate_decimal, - ACTIONS(6926), 2, + ACTIONS(6628), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6928), 2, + ACTIONS(7329), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(796), 2, + STATE(4502), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114344] = 6, + [114798] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7341), 1, + ACTIONS(7359), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7343), 1, + ACTIONS(7361), 1, aux_sym__immediate_decimal_token5, - STATE(3778), 1, + STATE(3807), 1, sym_comment, ACTIONS(1732), 3, anon_sym_RBRACE, @@ -236540,847 +238152,925 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [114368] = 4, + [114822] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3779), 1, + ACTIONS(7363), 1, + anon_sym_DOT, + ACTIONS(7365), 1, + aux_sym__immediate_decimal_token5, + STATE(3808), 1, sym_comment, - ACTIONS(767), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(769), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(741), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [114388] = 4, + [114846] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1474), 1, + sym__entry_separator, + STATE(3809), 1, + sym_comment, + ACTIONS(1472), 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, + [114866] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3780), 1, + STATE(3810), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(866), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(865), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(868), 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, - [114408] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT2, - STATE(2450), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2914), 1, - sym_cell_path, - STATE(3781), 1, - sym_comment, - ACTIONS(1883), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [114434] = 7, + [114886] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT2, - STATE(2450), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2981), 1, - sym_cell_path, - STATE(3782), 1, + STATE(3811), 1, sym_comment, - ACTIONS(1907), 5, - anon_sym_EQ, + 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, - [114460] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [114906] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR, - STATE(795), 1, - sym__immediate_decimal, - STATE(3783), 1, + ACTIONS(6050), 1, + anon_sym_LPAREN2, + STATE(3812), 1, sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1645), 2, + STATE(4605), 1, + sym__immediate_decimal, + ACTIONS(6648), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(794), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114488] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(795), 1, - sym__immediate_decimal, - STATE(3784), 1, - sym_comment, - ACTIONS(1611), 2, + ACTIONS(7367), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1645), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(794), 2, + STATE(4430), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114516] = 8, + [114934] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1470), 1, + sym__entry_separator, + STATE(3813), 1, + sym_comment, + ACTIONS(1468), 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, + [114954] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - STATE(926), 1, - sym__immediate_decimal, - STATE(3785), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(3814), 1, sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1645), 2, + STATE(4295), 1, + sym__immediate_decimal, + ACTIONS(6124), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(796), 2, + ACTIONS(6126), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114544] = 5, + [114982] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7345), 1, + ACTIONS(7217), 1, aux_sym__immediate_decimal_token5, - STATE(3786), 1, + STATE(3815), 1, sym_comment, - ACTIONS(1846), 4, + ACTIONS(1784), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 4, + ACTIONS(1786), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [114566] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3773), 1, - anon_sym_DOLLAR, - ACTIONS(6150), 1, - anon_sym_LPAREN2, - STATE(3787), 1, - sym_comment, - STATE(4395), 1, - sym__immediate_decimal, - ACTIONS(6743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7287), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4394), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114594] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(1975), 1, - sym__immediate_decimal, - STATE(3788), 1, - sym_comment, - ACTIONS(3968), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3970), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1983), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114622] = 8, + [115004] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1657), 1, anon_sym_LPAREN2, - STATE(926), 1, + STATE(1147), 1, sym__immediate_decimal, - STATE(3789), 1, + STATE(3816), 1, sym_comment, - ACTIONS(4002), 2, + ACTIONS(1718), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4004), 2, + ACTIONS(1720), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(796), 2, + STATE(1305), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114650] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6975), 1, - aux_sym__immediate_decimal_token5, - STATE(3790), 1, - sym_comment, - ACTIONS(1790), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1792), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [114672] = 5, + [115032] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7347), 1, + ACTIONS(7369), 1, aux_sym__immediate_decimal_token5, - STATE(3791), 1, + STATE(3817), 1, sym_comment, - ACTIONS(1846), 4, + ACTIONS(1832), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1848), 4, + ACTIONS(1834), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [114694] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3792), 1, - sym_comment, - ACTIONS(767), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(769), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [114714] = 8, + [115054] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_DOLLAR, - ACTIONS(1687), 1, + ACTIONS(1606), 1, anon_sym_LPAREN2, - STATE(1306), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR, + STATE(788), 1, sym__immediate_decimal, - STATE(3793), 1, + STATE(3818), 1, sym_comment, - ACTIONS(1693), 2, + ACTIONS(5966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1728), 2, + ACTIONS(6487), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1305), 2, + STATE(782), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114742] = 8, + [115082] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, + ACTIONS(3819), 1, anon_sym_DOLLAR, - ACTIONS(1687), 1, + ACTIONS(6427), 1, anon_sym_LPAREN2, - STATE(1309), 1, - sym__immediate_decimal, - STATE(3794), 1, + STATE(3819), 1, sym_comment, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1728), 2, + STATE(4338), 1, + sym__immediate_decimal, + ACTIONS(6429), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1307), 2, + ACTIONS(7335), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4430), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114770] = 9, + [115110] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2511), 1, + sym_path, + STATE(3026), 1, + sym_cell_path, + STATE(3820), 1, + sym_comment, + ACTIONS(1885), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [115136] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7371), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token5, + STATE(3821), 1, + sym_comment, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115160] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6916), 1, + ACTIONS(884), 1, + sym__space, + ACTIONS(4153), 1, anon_sym_DOT_DOT2, - ACTIONS(6920), 1, + ACTIONS(5046), 1, + sym__unquoted_pattern, + ACTIONS(6956), 1, sym_filesize_unit, - ACTIONS(6922), 1, + ACTIONS(6958), 1, sym_duration_unit, - STATE(3795), 1, + STATE(3822), 1, sym_comment, - ACTIONS(847), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6918), 2, + ACTIONS(785), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(4155), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114800] = 6, + [115190] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7375), 1, + aux_sym__immediate_decimal_token5, + STATE(3823), 1, + sym_comment, + ACTIONS(1834), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1832), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115212] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2511), 1, + sym_path, + STATE(2936), 1, + sym_cell_path, + STATE(3824), 1, + sym_comment, + ACTIONS(1893), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [115238] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7349), 1, + ACTIONS(7377), 1, anon_sym_DOT, - ACTIONS(7351), 1, + ACTIONS(7379), 1, aux_sym__immediate_decimal_token5, - STATE(3796), 1, + STATE(3825), 1, sym_comment, - ACTIONS(1792), 3, + ACTIONS(1786), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1790), 4, + ACTIONS(1784), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [114824] = 8, - ACTIONS(3), 1, + [115262] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_LPAREN2, - ACTIONS(7289), 1, - anon_sym_DOLLAR, - STATE(3309), 1, - sym__immediate_decimal, - STATE(3797), 1, + ACTIONS(7381), 1, + aux_sym__immediate_decimal_token5, + STATE(3826), 1, sym_comment, - ACTIONS(5041), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7353), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3308), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114852] = 4, + ACTIONS(1832), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1834), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [115284] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3798), 1, - sym_comment, - ACTIONS(767), 2, - anon_sym_DOT_DOT2, + ACTIONS(1963), 1, sym__unquoted_pattern, - ACTIONS(769), 7, + ACTIONS(7383), 1, + anon_sym_DOT_DOT2, + STATE(3827), 1, + sym_comment, + ACTIONS(7385), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1953), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, + [115307] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3828), 1, + sym_comment, + ACTIONS(1919), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114872] = 4, + sym__entry_separator, + ACTIONS(1921), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [115326] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3799), 1, + ACTIONS(7387), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7389), 1, + aux_sym__immediate_decimal_token5, + STATE(3829), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(865), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [114892] = 8, + [115349] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_DOLLAR, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - STATE(936), 1, - sym__immediate_decimal, - STATE(3800), 1, + ACTIONS(5020), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, + STATE(2328), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3830), 1, sym_comment, - ACTIONS(1691), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(962), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114920] = 7, + STATE(4639), 1, + sym_cell_path, + ACTIONS(7391), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115374] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5089), 1, + ACTIONS(1870), 1, anon_sym_DOT2, - STATE(2450), 1, + STATE(430), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, + STATE(470), 1, sym_path, - STATE(2941), 1, + STATE(949), 1, sym_cell_path, - STATE(3801), 1, - sym_comment, - ACTIONS(1887), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [114946] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7011), 1, - aux_sym__immediate_decimal_token5, - STATE(3802), 1, - sym_comment, - ACTIONS(1790), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1792), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [114968] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7357), 1, - anon_sym_DASH2, - STATE(3803), 1, + STATE(3831), 1, sym_comment, - ACTIONS(7355), 7, + ACTIONS(7393), 4, + anon_sym_in, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [114987] = 7, + anon_sym_nu, + anon_sym_env, + [115399] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7361), 1, + ACTIONS(7397), 1, anon_sym_DOT2, - STATE(2586), 1, + STATE(1964), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2851), 1, + STATE(2119), 1, sym_path, - STATE(3052), 1, + STATE(2194), 1, sym_cell_path, - STATE(3804), 1, + STATE(3832), 1, sym_comment, - ACTIONS(7359), 4, + ACTIONS(7395), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115012] = 5, + [115424] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7363), 1, - aux_sym__immediate_decimal_token5, - STATE(3805), 1, + STATE(3833), 1, sym_comment, - ACTIONS(1848), 2, + ACTIONS(1921), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 5, + ACTIONS(1919), 6, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115033] = 7, + [115443] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(2298), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3806), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(7399), 1, + anon_sym_DOT_DOT2, + STATE(3834), 1, sym_comment, - STATE(4343), 1, - sym_cell_path, - ACTIONS(7365), 4, + ACTIONS(7401), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2090), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115058] = 4, + [115466] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3807), 1, - sym_comment, - ACTIONS(1895), 4, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2090), 1, + sym__space, + ACTIONS(2094), 1, anon_sym_LPAREN2, + ACTIONS(7403), 1, + anon_sym_DOT_DOT2, + STATE(3835), 1, + sym_comment, + ACTIONS(2092), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7405), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1897), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [115077] = 4, + [115493] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3808), 1, + STATE(3836), 1, sym_comment, - ACTIONS(1730), 4, + ACTIONS(1832), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1732), 4, + ACTIONS(1834), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [115096] = 7, + [115512] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(5020), 1, anon_sym_DOT2, - STATE(428), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(458), 1, + STATE(470), 1, sym_path, - STATE(934), 1, + STATE(949), 1, sym_cell_path, - STATE(3809), 1, + STATE(2328), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3837), 1, sym_comment, - ACTIONS(7367), 4, + ACTIONS(7407), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115121] = 7, + [115537] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(2362), 1, anon_sym_DOT2, - STATE(458), 1, + STATE(669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(703), 1, sym_path, - STATE(934), 1, + STATE(1342), 1, sym_cell_path, - STATE(2298), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3810), 1, + STATE(3838), 1, sym_comment, - ACTIONS(7369), 4, + ACTIONS(7409), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115146] = 9, - ACTIONS(103), 1, + [115562] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__table_head_separator, - ACTIONS(7374), 1, - anon_sym_DOT_DOT, - ACTIONS(7376), 1, + ACTIONS(7413), 1, anon_sym_DOT2, - STATE(3811), 1, - sym_comment, - STATE(4133), 1, + STATE(2508), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4582), 1, + STATE(2592), 1, sym_path, - STATE(4665), 1, + STATE(3104), 1, sym_cell_path, - ACTIONS(7371), 2, - anon_sym_RBRACK, - sym__entry_separator, - [115175] = 4, + STATE(3839), 1, + sym_comment, + ACTIONS(7411), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115587] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3812), 1, + ACTIONS(7415), 1, + aux_sym__immediate_decimal_token5, + STATE(3840), 1, sym_comment, - ACTIONS(1848), 2, + ACTIONS(1834), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 6, - anon_sym_if, + ACTIONS(1832), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115194] = 7, + [115608] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7365), 1, + aux_sym__immediate_decimal_token5, + STATE(3841), 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, + [115629] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(5233), 1, anon_sym_DOT2, - STATE(428), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(458), 1, + STATE(703), 1, sym_path, - STATE(934), 1, + STATE(1342), 1, sym_cell_path, - STATE(3813), 1, + STATE(2432), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3842), 1, sym_comment, - ACTIONS(7378), 4, + ACTIONS(7417), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115219] = 7, + [115654] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1868), 1, + sym__table_head_separator, + ACTIONS(7422), 1, + anon_sym_DOT_DOT, + ACTIONS(7424), 1, + anon_sym_DOT2, + STATE(3843), 1, + sym_comment, + STATE(4137), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4521), 1, + sym_path, + STATE(4870), 1, + sym_cell_path, + ACTIONS(7419), 2, + anon_sym_RBRACK, + sym__entry_separator, + [115683] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7382), 1, + ACTIONS(2362), 1, anon_sym_DOT2, - STATE(1941), 1, + STATE(669), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2050), 1, + STATE(703), 1, sym_path, - STATE(2171), 1, + STATE(1342), 1, sym_cell_path, - STATE(3814), 1, + STATE(3844), 1, sym_comment, - ACTIONS(7380), 4, + ACTIONS(7426), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115244] = 5, + [115708] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3845), 1, + sym_comment, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115727] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7307), 1, + ACTIONS(7428), 1, aux_sym__immediate_decimal_token5, - STATE(3815), 1, + STATE(3846), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 5, + ACTIONS(777), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [115265] = 8, + [115748] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1972), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(7384), 1, - anon_sym_DOT_DOT2, - STATE(3816), 1, + STATE(3847), 1, sym_comment, - ACTIONS(1974), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7386), 2, + ACTIONS(1730), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115292] = 7, + ACTIONS(1732), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [115767] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7390), 1, + ACTIONS(5095), 1, anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(3817), 1, - sym_comment, - STATE(4013), 1, + STATE(2459), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4905), 1, + STATE(2511), 1, + sym_path, + STATE(3143), 1, sym_cell_path, - ACTIONS(7388), 4, + STATE(3848), 1, + sym_comment, + ACTIONS(7430), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115317] = 4, - ACTIONS(103), 1, + [115792] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3818), 1, + ACTIONS(7434), 1, + anon_sym_DASH2, + STATE(3849), 1, sym_comment, - ACTIONS(1730), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [115336] = 5, - ACTIONS(103), 1, + ACTIONS(7432), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [115811] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7351), 1, + ACTIONS(7357), 1, aux_sym__immediate_decimal_token5, - STATE(3819), 1, + STATE(3850), 1, sym_comment, - ACTIONS(1792), 3, - anon_sym_RBRACE, + ACTIONS(1786), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1790), 4, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(1784), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [115357] = 4, + [115832] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3820), 1, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(7436), 1, + anon_sym_alias, + ACTIONS(7438), 1, + anon_sym_const, + ACTIONS(7440), 1, + anon_sym_def, + ACTIONS(7442), 1, + anon_sym_use, + ACTIONS(7444), 1, + anon_sym_extern, + ACTIONS(7446), 1, + anon_sym_module, + STATE(3851), 1, sym_comment, - ACTIONS(1846), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [115376] = 7, + [115863] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7394), 1, + ACTIONS(1870), 1, anon_sym_DOT2, - STATE(2482), 1, + STATE(430), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2642), 1, + STATE(470), 1, sym_path, - STATE(3231), 1, + STATE(949), 1, sym_cell_path, - STATE(3821), 1, + STATE(3852), 1, sym_comment, - ACTIONS(7392), 4, + ACTIONS(7448), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115401] = 10, - ACTIONS(103), 1, + [115888] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(7396), 1, - anon_sym_alias, - ACTIONS(7398), 1, - anon_sym_const, - ACTIONS(7400), 1, - anon_sym_def, - ACTIONS(7402), 1, - anon_sym_use, - ACTIONS(7404), 1, - anon_sym_extern, - ACTIONS(7406), 1, - anon_sym_module, - STATE(3822), 1, + ACTIONS(7452), 1, + anon_sym_DOT2, + STATE(2604), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, + sym_path, + STATE(3143), 1, + sym_cell_path, + STATE(3853), 1, + sym_comment, + ACTIONS(7450), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115913] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7456), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3854), 1, sym_comment, - [115432] = 7, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4798), 1, + sym_cell_path, + ACTIONS(7454), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115938] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1444), 1, sym__entry_separator, - ACTIONS(7408), 1, + ACTIONS(7458), 1, + anon_sym_DOT2, + STATE(3855), 1, + sym_comment, + STATE(3914), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4235), 1, + sym_path, + STATE(4554), 1, + sym_cell_path, + ACTIONS(1442), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [115965] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1450), 1, + sym__entry_separator, + ACTIONS(7460), 1, anon_sym_QMARK2, - ACTIONS(7410), 1, + ACTIONS(7462), 1, anon_sym_BANG, - STATE(3823), 1, + STATE(3856), 1, sym_comment, - STATE(4208), 1, + STATE(4283), 1, sym__path_suffix, - ACTIONS(1442), 4, + ACTIONS(1448), 4, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT2, - [115457] = 7, + [115990] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3857), 1, + sym_comment, + ACTIONS(1832), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1834), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [116009] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(1870), 1, anon_sym_DOT2, - STATE(2554), 1, + STATE(430), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2676), 1, + STATE(470), 1, sym_path, - STATE(3274), 1, + STATE(949), 1, sym_cell_path, - STATE(3824), 1, + STATE(3858), 1, sym_comment, - ACTIONS(7412), 4, + ACTIONS(7464), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115482] = 4, + [116034] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3825), 1, - sym_comment, - ACTIONS(1895), 4, - sym__space, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2090), 1, + sym__entry_separator, + ACTIONS(2094), 1, anon_sym_LPAREN2, + ACTIONS(7466), 1, + anon_sym_DOT_DOT2, + STATE(3859), 1, + sym_comment, + ACTIONS(2092), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7468), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1897), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [115501] = 4, + [116061] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3826), 1, + STATE(3860), 1, sym_comment, ACTIONS(1730), 4, anon_sym_LPAREN2, @@ -237392,204 +239082,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [115520] = 7, - ACTIONS(3), 1, + [116080] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1877), 1, - anon_sym_DOT2, - STATE(428), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(458), 1, - sym_path, - STATE(934), 1, - sym_cell_path, - STATE(3827), 1, + STATE(3861), 1, sym_comment, - ACTIONS(7416), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115545] = 7, + ACTIONS(1919), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1921), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [116099] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5089), 1, + ACTIONS(7472), 1, anon_sym_DOT2, - STATE(2450), 1, + STATE(2544), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, + STATE(2724), 1, sym_path, - STATE(3052), 1, + STATE(3378), 1, sym_cell_path, - STATE(3828), 1, + STATE(3862), 1, sym_comment, - ACTIONS(7418), 4, + ACTIONS(7470), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115570] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3829), 1, - sym_comment, - ACTIONS(1846), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1848), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [115589] = 8, + [116124] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1982), 1, + ACTIONS(1953), 1, sym__entry_separator, - ACTIONS(1986), 1, + ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(1992), 1, + ACTIONS(1963), 1, sym__unquoted_pattern_in_list, - ACTIONS(7420), 1, + ACTIONS(7474), 1, anon_sym_DOT_DOT2, - STATE(3830), 1, + STATE(3863), 1, sym_comment, - ACTIONS(1984), 2, + ACTIONS(1955), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7422), 2, + ACTIONS(7476), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115616] = 4, + [116151] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3831), 1, + ACTIONS(1868), 1, + sym__table_head_separator, + ACTIONS(7478), 1, + anon_sym_DOT2, + STATE(3864), 1, + sym_comment, + STATE(4388), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(5088), 1, + sym_path, + STATE(5469), 1, + sym_cell_path, + ACTIONS(7422), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__entry_separator, + [116178] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3865), 1, sym_comment, - ACTIONS(1895), 4, + ACTIONS(1832), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1897), 4, + ACTIONS(1834), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [115635] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2358), 1, - anon_sym_DOT2, - STATE(526), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(715), 1, - sym_path, - STATE(1317), 1, - sym_cell_path, - STATE(3832), 1, - sym_comment, - ACTIONS(7424), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115660] = 4, - ACTIONS(3), 1, + [116197] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3833), 1, + ACTIONS(7379), 1, + aux_sym__immediate_decimal_token5, + STATE(3866), 1, sym_comment, - ACTIONS(1732), 2, + ACTIONS(1786), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(1784), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115679] = 7, + sym__entry_separator, + [116218] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(5020), 1, anon_sym_DOT2, - STATE(458), 1, + STATE(470), 1, sym_path, - STATE(2298), 1, + STATE(2328), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3834), 1, + STATE(3867), 1, sym_comment, - STATE(4627), 1, + STATE(4487), 1, sym_cell_path, - ACTIONS(7426), 4, + ACTIONS(7480), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115704] = 6, + [116243] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(7428), 1, - anon_sym_DOT_DOT2, - STATE(3835), 1, + STATE(3868), 1, sym_comment, - ACTIONS(7430), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 4, + ACTIONS(1834), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1832), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115727] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT2, - STATE(715), 1, - sym_path, - STATE(1317), 1, - sym_cell_path, - STATE(2409), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3836), 1, - sym_comment, - ACTIONS(7432), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115752] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116262] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1972), 1, - sym__space, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(7434), 1, - anon_sym_DOT_DOT2, - STATE(3837), 1, + STATE(3869), 1, sym_comment, - ACTIONS(1974), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7436), 2, + ACTIONS(1730), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115779] = 6, + sym__entry_separator, + ACTIONS(1732), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [116281] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7438), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7440), 1, + ACTIONS(7482), 1, + anon_sym_DOT, + ACTIONS(7484), 1, aux_sym__immediate_decimal_token5, - STATE(3838), 1, + STATE(3870), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -237599,9521 +239249,9073 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [115802] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1885), 1, - sym__table_head_separator, - ACTIONS(7442), 1, - anon_sym_DOT2, - STATE(3839), 1, - sym_comment, - STATE(4354), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4916), 1, - sym_path, - STATE(5246), 1, - sym_cell_path, - ACTIONS(7374), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__entry_separator, - [115829] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3840), 1, - sym_comment, - ACTIONS(1897), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1895), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115848] = 4, + [116304] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3841), 1, + STATE(3871), 1, sym_comment, - ACTIONS(1846), 4, + ACTIONS(1919), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1848), 4, + ACTIONS(1921), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [115867] = 5, - ACTIONS(3), 1, + [116323] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7317), 1, - aux_sym__immediate_decimal_token5, - STATE(3842), 1, - sym_comment, - ACTIONS(1792), 2, - anon_sym_DOT_DOT2, + ACTIONS(1953), 1, + sym__space, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, sym__unquoted_pattern, - ACTIONS(1790), 5, + ACTIONS(7486), 1, + anon_sym_DOT_DOT2, + STATE(3872), 1, + sym_comment, + ACTIONS(1955), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_SEMI, + ACTIONS(7488), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115888] = 5, + [116350] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7444), 1, + ACTIONS(7490), 1, aux_sym__immediate_decimal_token5, - STATE(3843), 1, + STATE(3873), 1, sym_comment, - ACTIONS(1848), 3, + ACTIONS(1834), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1846), 4, + ACTIONS(1832), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [115909] = 6, + [116371] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7446), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7492), 1, anon_sym_DOT, - ACTIONS(7448), 1, - aux_sym__immediate_decimal_token5, - STATE(3844), 1, + STATE(3874), 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, - [115932] = 8, + STATE(4496), 1, + sym__immediate_decimal, + ACTIONS(7494), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7496), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116395] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1982), 1, - sym__space, - ACTIONS(1986), 1, + ACTIONS(7498), 1, + anon_sym_DOT, + ACTIONS(7500), 1, + aux_sym__immediate_decimal_token5, + STATE(3875), 1, + sym_comment, + ACTIONS(1784), 2, anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(7450), 1, - anon_sym_DOT_DOT2, - STATE(3845), 1, + sym__entry_separator, + ACTIONS(1786), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [116417] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7502), 1, + anon_sym_QMARK2, + ACTIONS(7504), 1, + anon_sym_BANG, + STATE(3876), 1, + sym_comment, + STATE(4588), 1, + sym__path_suffix, + ACTIONS(1448), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [116439] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3877), 1, sym_comment, - ACTIONS(1984), 2, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 5, sym__newline, - anon_sym_SEMI, - ACTIONS(7452), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115959] = 5, + [116457] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7454), 1, - aux_sym__immediate_decimal_token5, - STATE(3846), 1, + STATE(3878), 1, sym_comment, - ACTIONS(767), 2, + ACTIONS(1834), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(769), 5, - anon_sym_LBRACE, + ACTIONS(1832), 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, - [115980] = 8, - ACTIONS(103), 1, + [116475] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1456), 1, - sym__entry_separator, - ACTIONS(7456), 1, - anon_sym_DOT2, - STATE(3847), 1, + STATE(3879), 1, sym_comment, - STATE(3903), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4313), 1, - sym_path, - STATE(4574), 1, - sym_cell_path, - ACTIONS(1454), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [116007] = 6, + ACTIONS(1921), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1919), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116493] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(7458), 1, + ACTIONS(7508), 1, anon_sym_DOT_DOT2, - STATE(3848), 1, + STATE(3880), 1, sym_comment, - ACTIONS(7460), 2, + ACTIONS(7510), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1982), 4, + ACTIONS(7506), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116030] = 7, + [116513] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2358), 1, - anon_sym_DOT2, - STATE(526), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(715), 1, - sym_path, - STATE(1317), 1, - sym_cell_path, - STATE(3849), 1, + ACTIONS(7508), 1, + anon_sym_DOT_DOT2, + STATE(3881), 1, sym_comment, - ACTIONS(7462), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [116055] = 8, + ACTIONS(7510), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7512), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116533] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2090), 1, sym__entry_separator, - ACTIONS(6659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7013), 1, + ACTIONS(2092), 1, + anon_sym_RBRACE, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, anon_sym_DOT_DOT2, - ACTIONS(7017), 1, - sym_filesize_unit, - ACTIONS(7019), 1, - sym_duration_unit, - STATE(3850), 1, + STATE(3882), 1, sym_comment, - ACTIONS(7015), 2, + ACTIONS(7516), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116081] = 4, + [116559] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3851), 1, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7436), 1, + anon_sym_alias, + ACTIONS(7438), 1, + anon_sym_const, + ACTIONS(7440), 1, + anon_sym_def, + ACTIONS(7442), 1, + anon_sym_use, + ACTIONS(7444), 1, + anon_sym_extern, + ACTIONS(7446), 1, + anon_sym_module, + STATE(3883), 1, sym_comment, - ACTIONS(1903), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1905), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [116099] = 8, + [116587] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(1885), 1, sym__entry_separator, - ACTIONS(7464), 1, + ACTIONS(7518), 1, anon_sym_DOT2, - STATE(352), 1, + STATE(367), 1, sym_path, - STATE(3852), 1, + STATE(3884), 1, sym_comment, - STATE(4013), 1, + STATE(4124), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4386), 1, + STATE(4461), 1, sym_cell_path, - ACTIONS(1893), 2, + ACTIONS(1887), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [116125] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1567), 1, - sym_parameter_bracks, - STATE(1608), 1, - sym_parameter_parens, - STATE(3853), 1, - sym_comment, - STATE(3860), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [116153] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1642), 1, - sym_parameter_parens, - STATE(1644), 1, - sym_parameter_bracks, - STATE(3854), 1, - sym_comment, - STATE(4312), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [116181] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1677), 1, - sym_parameter_parens, - STATE(1692), 1, - sym_parameter_bracks, - STATE(3855), 1, - sym_comment, - STATE(3862), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [116209] = 9, + [116613] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7396), 1, - anon_sym_alias, - ACTIONS(7398), 1, - anon_sym_const, - ACTIONS(7400), 1, - anon_sym_def, - ACTIONS(7402), 1, - anon_sym_use, - ACTIONS(7404), 1, - anon_sym_extern, - ACTIONS(7406), 1, - anon_sym_module, - STATE(3856), 1, + ACTIONS(5346), 1, + sym__entry_separator, + ACTIONS(7518), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3885), 1, sym_comment, - [116237] = 8, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4925), 1, + sym_cell_path, + ACTIONS(5344), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [116639] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1982), 1, + ACTIONS(1953), 1, sym__entry_separator, - ACTIONS(1984), 1, + ACTIONS(1955), 1, anon_sym_RBRACE, - ACTIONS(1986), 1, + ACTIONS(1957), 1, anon_sym_LPAREN2, - ACTIONS(1992), 1, + ACTIONS(1963), 1, sym__unquoted_pattern_in_record, - ACTIONS(7472), 1, + ACTIONS(7520), 1, anon_sym_DOT_DOT2, - STATE(3857), 1, + STATE(3886), 1, sym_comment, - ACTIONS(7474), 2, + ACTIONS(7522), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116263] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(7476), 1, - sym_identifier, - ACTIONS(7478), 1, - anon_sym_DOLLAR, - STATE(2788), 1, - sym_val_variable, - STATE(3858), 1, - sym_comment, - STATE(4196), 1, - sym__variable_name, - STATE(4388), 1, - sym__assignment_pattern, - [116291] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1634), 1, - sym_parameter_bracks, - STATE(1684), 1, - sym_parameter_parens, - STATE(3859), 1, - sym_comment, - STATE(3895), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [116319] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1565), 1, - sym_parameter_parens, - STATE(1617), 1, - sym_parameter_bracks, - STATE(3860), 1, - sym_comment, - STATE(4312), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [116347] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1639), 1, - sym_parameter_parens, - STATE(1640), 1, - sym_parameter_bracks, - STATE(3861), 1, - sym_comment, - STATE(3866), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [116375] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1643), 1, - sym_parameter_parens, - STATE(1665), 1, - sym_parameter_bracks, - STATE(3862), 1, - sym_comment, - STATE(4312), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [116403] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT2, - STATE(2450), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(3063), 1, - sym_cell_path, - STATE(3863), 1, - sym_comment, - ACTIONS(1891), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [116427] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT2, - STATE(2450), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(3004), 1, - sym_cell_path, - STATE(3864), 1, - sym_comment, - ACTIONS(1871), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [116451] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1670), 1, - sym_parameter_parens, - STATE(1671), 1, - sym_parameter_bracks, - STATE(3865), 1, - sym_comment, - STATE(3870), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [116479] = 9, + [116665] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1674), 1, - sym_parameter_parens, - STATE(1676), 1, - sym_parameter_bracks, - STATE(3866), 1, - sym_comment, - STATE(4312), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [116507] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3867), 1, + ACTIONS(3966), 1, + sym__newline, + ACTIONS(7524), 1, + anon_sym_RBRACK, + STATE(3887), 1, sym_comment, - ACTIONS(767), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(769), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [116525] = 6, - ACTIONS(3), 1, + STATE(4330), 1, + aux_sym__types_body_repeat1, + STATE(4882), 1, + sym_val_list, + STATE(4886), 1, + aux_sym__table_body_repeat1, + STATE(5391), 1, + sym__table_body, + [116693] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(7480), 1, - anon_sym_DOT_DOT2, - STATE(3868), 1, + STATE(3888), 1, sym_comment, - ACTIONS(7482), 2, + ACTIONS(1675), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1982), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116547] = 9, + sym__entry_separator, + ACTIONS(1677), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [116711] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym__newline, - ACTIONS(7484), 1, + ACTIONS(7526), 1, anon_sym_RBRACK, - STATE(3869), 1, + STATE(3889), 1, sym_comment, - STATE(4207), 1, + STATE(4330), 1, aux_sym__types_body_repeat1, - STATE(4719), 1, + STATE(4882), 1, sym_val_list, - STATE(4730), 1, + STATE(4886), 1, aux_sym__table_body_repeat1, - STATE(5273), 1, + STATE(5368), 1, sym__table_body, - [116575] = 9, + [116739] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1680), 1, + STATE(1554), 1, sym_parameter_parens, - STATE(1681), 1, + STATE(1555), 1, sym_parameter_bracks, - STATE(3870), 1, + STATE(3890), 1, sym_comment, - STATE(4312), 1, + STATE(4270), 1, aux_sym_decl_def_repeat1, - STATE(4670), 1, + STATE(4922), 1, sym_long_flag, - [116603] = 9, + [116767] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1682), 1, + STATE(1556), 1, sym_parameter_parens, - STATE(1687), 1, + STATE(1557), 1, sym_parameter_bracks, - STATE(3871), 1, + STATE(3891), 1, sym_comment, - STATE(3876), 1, + STATE(3944), 1, aux_sym_decl_def_repeat1, - STATE(4670), 1, + STATE(4922), 1, sym_long_flag, - [116631] = 5, + [116795] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3892), 1, + sym_comment, + ACTIONS(1905), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1907), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [116813] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(785), 1, + anon_sym_RBRACE, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(7534), 1, + anon_sym_DOT_DOT2, + ACTIONS(7538), 1, + sym_filesize_unit, + ACTIONS(7540), 1, + sym_duration_unit, + STATE(3893), 1, + sym_comment, + ACTIONS(7536), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116839] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7419), 1, + anon_sym_RBRACK, + ACTIONS(7422), 1, + anon_sym_DOT_DOT, + ACTIONS(7518), 1, + anon_sym_DOT2, + ACTIONS(7542), 1, + sym__entry_separator, + STATE(367), 1, + sym_path, + STATE(3894), 1, + sym_comment, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4548), 1, + sym_cell_path, + [116867] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7488), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1806), 1, + sym__unquoted_pattern, + ACTIONS(7545), 1, anon_sym_DOT_DOT2, - STATE(3872), 1, + ACTIONS(7549), 1, + sym_filesize_unit, + ACTIONS(7551), 1, + sym_duration_unit, + STATE(3895), 1, sym_comment, - ACTIONS(7490), 2, + ACTIONS(7547), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7486), 4, + [116893] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1732), 1, + sym__unquoted_pattern, + ACTIONS(7553), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7555), 1, + aux_sym__immediate_decimal_token5, + STATE(3896), 1, + sym_comment, + ACTIONS(1730), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116651] = 9, + [116915] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, - anon_sym_LBRACK, - ACTIONS(3958), 1, - sym__newline, - ACTIONS(7492), 1, - anon_sym_RBRACK, - STATE(3873), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(7557), 1, + anon_sym_DOT, + STATE(3897), 1, sym_comment, - STATE(4207), 1, - aux_sym__types_body_repeat1, - STATE(4719), 1, - sym_val_list, - STATE(4730), 1, - aux_sym__table_body_repeat1, - STATE(5083), 1, - sym__table_body, - [116679] = 9, + STATE(4436), 1, + sym__immediate_decimal, + ACTIONS(6658), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6660), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116939] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1539), 1, + STATE(1630), 1, sym_parameter_bracks, - STATE(1618), 1, + STATE(1704), 1, sym_parameter_parens, - STATE(3874), 1, + STATE(3898), 1, sym_comment, - STATE(4312), 1, + STATE(3915), 1, aux_sym_decl_def_repeat1, - STATE(4670), 1, + STATE(4922), 1, sym_long_flag, - [116707] = 9, + [116967] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, - sym__newline, - ACTIONS(7494), 1, - anon_sym_RBRACK, - STATE(3875), 1, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1575), 1, + sym_parameter_parens, + STATE(1576), 1, + sym_parameter_bracks, + STATE(3899), 1, sym_comment, - STATE(4207), 1, - aux_sym__types_body_repeat1, - STATE(4719), 1, - sym_val_list, - STATE(4730), 1, - aux_sym__table_body_repeat1, - STATE(5172), 1, - sym__table_body, - [116735] = 9, + STATE(4270), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [116995] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(7559), 1, + sym_identifier, + ACTIONS(7561), 1, + anon_sym_DOLLAR, + STATE(2821), 1, + sym__variable_name, + STATE(2822), 1, + sym_val_variable, + STATE(3900), 1, + sym_comment, + STATE(4497), 1, + sym__assignment_pattern, + [117023] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1533), 1, + STATE(1577), 1, sym_parameter_parens, - STATE(1534), 1, + STATE(1582), 1, sym_parameter_bracks, - STATE(3876), 1, + STATE(3901), 1, sym_comment, - STATE(4312), 1, + STATE(3905), 1, aux_sym_decl_def_repeat1, - STATE(4670), 1, + STATE(4922), 1, sym_long_flag, - [116763] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3877), 1, - sym_comment, - ACTIONS(1732), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116781] = 6, + [117051] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7496), 1, - anon_sym_DOT, - ACTIONS(7498), 1, - aux_sym__immediate_decimal_token5, - STATE(3878), 1, - sym_comment, - ACTIONS(1790), 2, - anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2090), 1, sym__entry_separator, - ACTIONS(1792), 3, + ACTIONS(2092), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [116803] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3879), 1, - sym_comment, - ACTIONS(1848), 2, + ACTIONS(2094), 1, + anon_sym_LPAREN2, + ACTIONS(7563), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1846), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(3902), 1, + sym_comment, + ACTIONS(7565), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116821] = 9, + [117077] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2754), 1, + ACTIONS(2732), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, + ACTIONS(2738), 1, anon_sym_COLON2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7478), 1, + ACTIONS(7567), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(3880), 1, + STATE(3903), 1, sym_comment, - STATE(4196), 1, + STATE(4310), 1, sym__variable_name, - STATE(4391), 1, + STATE(4504), 1, + sym__assignment_pattern, + [117105] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(7559), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_DOLLAR, + STATE(2822), 1, + sym_val_variable, + STATE(3904), 1, + sym_comment, + STATE(4310), 1, + sym__variable_name, + STATE(4508), 1, sym__assignment_pattern, - [116849] = 4, + [117133] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3881), 1, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1543), 1, + sym_parameter_parens, + STATE(1545), 1, + sym_parameter_bracks, + STATE(3905), 1, + sym_comment, + STATE(4270), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [117161] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7569), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7571), 1, + aux_sym__immediate_decimal_token5, + STATE(3906), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(1732), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(865), 5, + ACTIONS(1730), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [116867] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3771), 1, - anon_sym_LBRACK, - ACTIONS(3958), 1, - sym__newline, - ACTIONS(7500), 1, - anon_sym_RBRACK, - STATE(3882), 1, - sym_comment, - STATE(4207), 1, - aux_sym__types_body_repeat1, - STATE(4719), 1, - sym_val_list, - STATE(4730), 1, - aux_sym__table_body_repeat1, - STATE(5377), 1, - sym__table_body, - [116895] = 9, + [117183] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1637), 1, + STATE(1546), 1, sym_parameter_parens, - STATE(1638), 1, + STATE(1547), 1, sym_parameter_bracks, - STATE(3883), 1, + STATE(3907), 1, sym_comment, - STATE(4312), 1, + STATE(4270), 1, aux_sym_decl_def_repeat1, - STATE(4670), 1, + STATE(4922), 1, sym_long_flag, - [116923] = 8, + [117211] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5348), 1, + ACTIONS(1889), 1, sym__entry_separator, - ACTIONS(7464), 1, + ACTIONS(7458), 1, anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(3884), 1, + STATE(3908), 1, sym_comment, - STATE(4013), 1, + STATE(3914), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4897), 1, + STATE(4235), 1, + sym_path, + STATE(4579), 1, sym_cell_path, - ACTIONS(5346), 2, + ACTIONS(1891), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [116949] = 8, + anon_sym_DOT_DOT, + [117237] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(1901), 1, sym__entry_separator, - ACTIONS(7456), 1, + ACTIONS(7458), 1, anon_sym_DOT2, - STATE(3885), 1, + STATE(3909), 1, sym_comment, - STATE(3903), 1, + STATE(3914), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4313), 1, + STATE(4235), 1, sym_path, - STATE(4407), 1, + STATE(4374), 1, sym_cell_path, - ACTIONS(1913), 2, + ACTIONS(1903), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116975] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1646), 1, - sym_parameter_parens, - STATE(1647), 1, - sym_parameter_bracks, - STATE(3886), 1, - sym_comment, - STATE(4312), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [117003] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7502), 1, - anon_sym_DOT_DOT2, - STATE(3887), 1, - sym_comment, - ACTIONS(7504), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117023] = 8, + [117263] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1887), 1, - sym__entry_separator, - ACTIONS(7464), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(3888), 1, - sym_comment, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4470), 1, - sym_cell_path, - ACTIONS(1889), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [117049] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1662), 1, - sym_parameter_parens, - STATE(1663), 1, - sym_parameter_bracks, - STATE(3889), 1, + ACTIONS(7573), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7575), 1, + aux_sym__immediate_decimal_token5, + STATE(3910), 1, sym_comment, - STATE(3901), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [117077] = 4, + ACTIONS(1730), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [117285] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3890), 1, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7440), 1, + anon_sym_def, + ACTIONS(7442), 1, + anon_sym_use, + ACTIONS(7444), 1, + anon_sym_extern, + ACTIONS(7446), 1, + anon_sym_module, + ACTIONS(7577), 1, + anon_sym_alias, + ACTIONS(7579), 1, + anon_sym_const, + STATE(3911), 1, sym_comment, - ACTIONS(1897), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1895), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [117095] = 7, + [117313] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5089), 1, + ACTIONS(5095), 1, anon_sym_DOT2, - STATE(2450), 1, + STATE(2459), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, + STATE(2511), 1, sym_path, - STATE(3068), 1, + STATE(2998), 1, sym_cell_path, - STATE(3891), 1, + STATE(3912), 1, sym_comment, - ACTIONS(1911), 3, + ACTIONS(1872), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [117119] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3892), 1, - sym_comment, - ACTIONS(1732), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1730), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [117137] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7506), 1, - anon_sym_alias, - ACTIONS(7508), 1, - anon_sym_const, - ACTIONS(7510), 1, - anon_sym_def, - ACTIONS(7512), 1, - anon_sym_use, - ACTIONS(7514), 1, - anon_sym_extern, - ACTIONS(7516), 1, - anon_sym_module, - STATE(3893), 1, - sym_comment, - [117165] = 9, + [117337] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym__newline, - ACTIONS(7518), 1, + ACTIONS(7581), 1, anon_sym_RBRACK, - STATE(3894), 1, + STATE(3913), 1, sym_comment, - STATE(4207), 1, + STATE(4330), 1, aux_sym__types_body_repeat1, - STATE(4719), 1, + STATE(4882), 1, sym_val_list, - STATE(4730), 1, + STATE(4886), 1, aux_sym__table_body_repeat1, - STATE(5169), 1, + STATE(5319), 1, sym__table_body, - [117193] = 9, - ACTIONS(3), 1, + [117365] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1576), 1, - sym_parameter_bracks, - STATE(1641), 1, - sym_parameter_parens, - STATE(3895), 1, + ACTIONS(1528), 1, + sym__entry_separator, + ACTIONS(7458), 1, + anon_sym_DOT2, + STATE(3914), 1, sym_comment, - STATE(4312), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [117221] = 9, + STATE(3919), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4235), 1, + sym_path, + ACTIONS(1526), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [117389] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1660), 1, - sym_parameter_bracks, - STATE(1693), 1, + STATE(1688), 1, sym_parameter_parens, - STATE(3874), 1, - aux_sym_decl_def_repeat1, - STATE(3896), 1, + STATE(1689), 1, + sym_parameter_bracks, + STATE(3915), 1, sym_comment, - STATE(4670), 1, + STATE(4270), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, sym_long_flag, - [117249] = 5, - ACTIONS(3), 1, + [117417] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7520), 1, + ACTIONS(1953), 1, + sym__entry_separator, + ACTIONS(1955), 1, + anon_sym_RBRACK, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7583), 1, anon_sym_DOT_DOT2, - STATE(3897), 1, + STATE(3916), 1, sym_comment, - ACTIONS(7522), 2, + ACTIONS(7585), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117269] = 5, + [117443] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7524), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(7587), 1, anon_sym_DOT_DOT2, - STATE(3898), 1, + STATE(3917), 1, sym_comment, - ACTIONS(7526), 2, + ACTIONS(7589), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2112), 4, - anon_sym_if, + ACTIONS(2090), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117289] = 5, + [117465] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7528), 1, - anon_sym_DOT_DOT2, - STATE(3899), 1, - sym_comment, - ACTIONS(7530), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117309] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7534), 1, - aux_sym__immediate_decimal_token5, - STATE(3900), 1, - sym_comment, - ACTIONS(1732), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117331] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_DASH_DASH, - STATE(1631), 1, - sym_parameter_parens, - STATE(1636), 1, - sym_parameter_bracks, - STATE(3901), 1, - sym_comment, - STATE(4312), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [117359] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1538), 1, + STATE(1690), 1, sym_parameter_parens, - STATE(1540), 1, + STATE(1691), 1, sym_parameter_bracks, - STATE(3883), 1, + STATE(3907), 1, aux_sym_decl_def_repeat1, - STATE(3902), 1, + STATE(3918), 1, sym_comment, - STATE(4670), 1, + STATE(4922), 1, sym_long_flag, - [117387] = 7, + [117493] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1538), 1, sym__entry_separator, - ACTIONS(7456), 1, + ACTIONS(7591), 1, anon_sym_DOT2, - STATE(3903), 1, + STATE(4235), 1, + sym_path, + STATE(3919), 2, sym_comment, - STATE(3945), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4313), 1, - sym_path, - ACTIONS(1524), 3, + ACTIONS(1536), 3, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, - [117411] = 8, + [117515] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7426), 1, - sym__entry_separator, - ACTIONS(7456), 1, + ACTIONS(7458), 1, anon_sym_DOT2, - STATE(3903), 1, + ACTIONS(7594), 1, + anon_sym_RBRACK, + ACTIONS(7598), 1, + anon_sym_DOT_DOT, + ACTIONS(7600), 1, + sym__entry_separator, + STATE(3914), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3904), 1, + STATE(3920), 1, sym_comment, - STATE(4313), 1, + STATE(4235), 1, sym_path, - STATE(4779), 1, + STATE(4736), 1, sym_cell_path, - ACTIONS(7536), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [117437] = 8, + [117543] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1828), 1, + ACTIONS(1963), 1, sym__unquoted_pattern, - ACTIONS(7538), 1, + ACTIONS(7604), 1, anon_sym_DOT_DOT2, - ACTIONS(7542), 1, - sym_filesize_unit, - ACTIONS(7544), 1, - sym_duration_unit, - STATE(3905), 1, + STATE(3921), 1, sym_comment, - ACTIONS(7540), 2, + ACTIONS(7606), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117463] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7400), 1, - anon_sym_def, - ACTIONS(7402), 1, - anon_sym_use, - ACTIONS(7404), 1, - anon_sym_extern, - ACTIONS(7406), 1, - anon_sym_module, - ACTIONS(7546), 1, - anon_sym_alias, - ACTIONS(7548), 1, - anon_sym_const, - STATE(3906), 1, - sym_comment, - [117491] = 9, + ACTIONS(1953), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117565] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(5095), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2511), 1, + sym_path, + STATE(3170), 1, + sym_cell_path, + STATE(3922), 1, + sym_comment, + ACTIONS(1889), 3, anon_sym_LBRACK, - ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1690), 1, - sym_parameter_parens, - STATE(1691), 1, - sym_parameter_bracks, - STATE(3907), 1, - sym_comment, - STATE(3957), 1, - aux_sym_decl_def_repeat1, - STATE(4670), 1, - sym_long_flag, - [117519] = 8, + [117589] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1456), 1, + ACTIONS(884), 1, sym__entry_separator, - ACTIONS(7464), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(372), 1, - sym_cell_path, - STATE(3908), 1, + ACTIONS(6604), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7249), 1, + anon_sym_DOT_DOT2, + ACTIONS(7253), 1, + sym_filesize_unit, + ACTIONS(7255), 1, + sym_duration_unit, + STATE(3923), 1, sym_comment, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1454), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [117545] = 9, + ACTIONS(7251), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117615] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7456), 1, + ACTIONS(7458), 1, anon_sym_DOT2, - ACTIONS(7550), 1, - anon_sym_RBRACK, - ACTIONS(7554), 1, - anon_sym_DOT_DOT, - ACTIONS(7556), 1, + ACTIONS(7480), 1, sym__entry_separator, - STATE(3903), 1, + STATE(3914), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3909), 1, + STATE(3924), 1, sym_comment, - STATE(4313), 1, + STATE(4235), 1, sym_path, - STATE(4755), 1, + STATE(4726), 1, sym_cell_path, - [117573] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(847), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(7560), 1, - anon_sym_DOT_DOT2, - ACTIONS(7564), 1, - sym_filesize_unit, - ACTIONS(7566), 1, - sym_duration_unit, - STATE(3910), 1, - sym_comment, - ACTIONS(7562), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117599] = 8, + ACTIONS(7598), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [117641] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(7391), 1, sym__entry_separator, - ACTIONS(7464), 1, + ACTIONS(7458), 1, anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(3911), 1, - sym_comment, - STATE(4013), 1, + STATE(3914), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4448), 1, + STATE(3925), 1, + sym_comment, + STATE(4235), 1, + sym_path, + STATE(4749), 1, sym_cell_path, - ACTIONS(1885), 2, + ACTIONS(7608), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [117625] = 9, + anon_sym_DOT_DOT, + [117667] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, - sym__newline, - ACTIONS(7568), 1, - anon_sym_RBRACK, - STATE(3912), 1, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1551), 1, + sym_parameter_parens, + STATE(1552), 1, + sym_parameter_bracks, + STATE(3899), 1, + aux_sym_decl_def_repeat1, + STATE(3926), 1, sym_comment, - STATE(4207), 1, - aux_sym__types_body_repeat1, - STATE(4719), 1, - sym_val_list, - STATE(4730), 1, - aux_sym__table_body_repeat1, - STATE(5336), 1, - sym__table_body, - [117653] = 4, + STATE(4922), 1, + sym_long_flag, + [117695] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3913), 1, - sym_comment, - ACTIONS(1842), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5403), 1, sym__entry_separator, - ACTIONS(1844), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [117671] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7376), 1, + ACTIONS(7518), 1, anon_sym_DOT2, - STATE(3914), 1, + STATE(367), 1, + sym_path, + STATE(3927), 1, sym_comment, - STATE(4133), 1, + STATE(4124), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4582), 1, - sym_path, - STATE(4665), 1, + STATE(4864), 1, sym_cell_path, - ACTIONS(1885), 3, + ACTIONS(5401), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [117695] = 7, + anon_sym_RBRACE, + [117721] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7570), 1, - anon_sym_DOT2, - STATE(2291), 1, - sym_cell_path, - STATE(2500), 1, - sym_path, - STATE(3915), 1, + ACTIONS(1786), 1, + sym__unquoted_pattern, + ACTIONS(7610), 1, + anon_sym_DOT, + ACTIONS(7612), 1, + aux_sym__immediate_decimal_token5, + STATE(3928), 1, sym_comment, - STATE(4151), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1456), 3, - anon_sym_EQ, + ACTIONS(1784), 4, + anon_sym_if, sym__newline, - anon_sym_COLON, - [117719] = 9, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117743] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym__newline, - ACTIONS(7572), 1, + ACTIONS(7614), 1, anon_sym_RBRACK, - STATE(3916), 1, + STATE(3929), 1, sym_comment, - STATE(4207), 1, + STATE(4330), 1, aux_sym__types_body_repeat1, - STATE(4719), 1, + STATE(4882), 1, sym_val_list, - STATE(4730), 1, + STATE(4886), 1, aux_sym__table_body_repeat1, - STATE(5198), 1, + STATE(5528), 1, sym__table_body, - [117747] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7488), 1, - anon_sym_DOT_DOT2, - STATE(3917), 1, - sym_comment, - ACTIONS(7490), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7574), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117767] = 9, + [117771] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2754), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(7476), 1, - sym_identifier, - ACTIONS(7576), 1, - anon_sym_DOLLAR, - STATE(2787), 1, - sym__variable_name, - STATE(2788), 1, - sym_val_variable, - STATE(3918), 1, - sym_comment, - STATE(4385), 1, - sym__assignment_pattern, - [117795] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5344), 1, - sym__entry_separator, - ACTIONS(7464), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(3919), 1, + ACTIONS(7440), 1, + anon_sym_def, + ACTIONS(7442), 1, + anon_sym_use, + ACTIONS(7444), 1, + anon_sym_extern, + ACTIONS(7446), 1, + anon_sym_module, + ACTIONS(7616), 1, + anon_sym_alias, + ACTIONS(7618), 1, + anon_sym_const, + STATE(3930), 1, sym_comment, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4659), 1, - sym_cell_path, - ACTIONS(5342), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [117821] = 9, + [117799] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym__newline, - ACTIONS(7578), 1, + ACTIONS(7620), 1, anon_sym_RBRACK, - STATE(3920), 1, + STATE(3931), 1, sym_comment, - STATE(4207), 1, + STATE(4330), 1, aux_sym__types_body_repeat1, - STATE(4719), 1, + STATE(4882), 1, sym_val_list, - STATE(4730), 1, + STATE(4886), 1, aux_sym__table_body_repeat1, - STATE(5298), 1, + STATE(5172), 1, sym__table_body, - [117849] = 6, + [117827] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, - ACTIONS(7580), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7582), 1, - aux_sym__immediate_decimal_token5, - STATE(3921), 1, - sym_comment, - ACTIONS(1730), 4, - anon_sym_if, + ACTIONS(3801), 1, + anon_sym_LBRACK, + ACTIONS(3966), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117871] = 8, - ACTIONS(103), 1, + ACTIONS(7622), 1, + anon_sym_RBRACK, + STATE(3932), 1, + sym_comment, + STATE(4330), 1, + aux_sym__types_body_repeat1, + STATE(4882), 1, + sym_val_list, + STATE(4886), 1, + aux_sym__table_body_repeat1, + STATE(5291), 1, + sym__table_body, + [117855] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1871), 1, - sym__entry_separator, - ACTIONS(7464), 1, + ACTIONS(5095), 1, anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(3922), 1, - sym_comment, - STATE(4013), 1, + STATE(2459), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4358), 1, + STATE(2511), 1, + sym_path, + STATE(3180), 1, sym_cell_path, - ACTIONS(1874), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [117897] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7584), 1, - anon_sym_DOT, - ACTIONS(7586), 1, - aux_sym__immediate_decimal_token5, - STATE(3923), 1, + STATE(3933), 1, sym_comment, - ACTIONS(1792), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1790), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117919] = 9, + ACTIONS(1901), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [117879] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym__newline, - ACTIONS(7588), 1, + ACTIONS(7624), 1, anon_sym_RBRACK, - STATE(3924), 1, + STATE(3934), 1, sym_comment, - STATE(4207), 1, + STATE(4330), 1, aux_sym__types_body_repeat1, - STATE(4719), 1, + STATE(4882), 1, sym_val_list, - STATE(4730), 1, + STATE(4886), 1, aux_sym__table_body_repeat1, - STATE(5212), 1, + STATE(5385), 1, sym__table_body, - [117947] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7590), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7592), 1, - aux_sym__immediate_decimal_token5, - STATE(3925), 1, - sym_comment, - ACTIONS(1730), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1732), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [117969] = 4, + [117907] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3926), 1, + ACTIONS(7424), 1, + anon_sym_DOT2, + STATE(3935), 1, sym_comment, - ACTIONS(1915), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1917), 4, + STATE(4137), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4521), 1, + sym_path, + STATE(4870), 1, + sym_cell_path, + ACTIONS(1868), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [117987] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1972), 1, sym__entry_separator, - ACTIONS(1974), 1, - anon_sym_RBRACK, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(7594), 1, - anon_sym_DOT_DOT2, - STATE(3927), 1, - sym_comment, - ACTIONS(7596), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118013] = 6, + sym__table_head_separator, + [117931] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(7598), 1, - anon_sym_DOT_DOT2, - STATE(3928), 1, + ACTIONS(7626), 1, + anon_sym_DOT2, + STATE(2302), 1, + sym_cell_path, + STATE(2511), 1, + sym_path, + STATE(3936), 1, sym_comment, - ACTIONS(7600), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 3, + STATE(4195), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 3, + anon_sym_EQ, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118035] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3929), 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, - [118053] = 5, + anon_sym_COLON, + [117955] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7602), 1, - aux_sym__immediate_decimal_token5, - STATE(3930), 1, - sym_comment, - ACTIONS(767), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(769), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [118073] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3931), 1, - sym_comment, - ACTIONS(1848), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1846), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [118091] = 8, + ACTIONS(3801), 1, + anon_sym_LBRACK, + ACTIONS(3966), 1, + sym__newline, + ACTIONS(7628), 1, + anon_sym_RBRACK, + STATE(3937), 1, + sym_comment, + STATE(4330), 1, + aux_sym__types_body_repeat1, + STATE(4882), 1, + sym_val_list, + STATE(4886), 1, + aux_sym__table_body_repeat1, + STATE(5493), 1, + sym__table_body, + [117983] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5368), 1, + ACTIONS(1872), 1, sym__entry_separator, - ACTIONS(7464), 1, + ACTIONS(7518), 1, anon_sym_DOT2, - STATE(352), 1, + STATE(367), 1, sym_path, - STATE(3932), 1, + STATE(3938), 1, sym_comment, - STATE(4013), 1, + STATE(4124), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4723), 1, + STATE(4614), 1, sym_cell_path, - ACTIONS(5366), 2, + ACTIONS(1875), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [118117] = 6, - ACTIONS(103), 1, + [118009] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7604), 1, + ACTIONS(7630), 1, anon_sym_DOT, - ACTIONS(7606), 1, + ACTIONS(7632), 1, aux_sym__immediate_decimal_token5, - STATE(3933), 1, - sym_comment, - ACTIONS(1790), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1792), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [118139] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3934), 1, - sym_comment, - ACTIONS(1897), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1895), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118157] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3935), 1, + STATE(3939), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1786), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 5, + ACTIONS(1784), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [118175] = 6, + [118031] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7608), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7610), 1, - aux_sym__immediate_decimal_token5, - STATE(3936), 1, + STATE(3940), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_LPAREN2, - sym__entry_separator, ACTIONS(1732), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [118197] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7376), 1, - anon_sym_DOT2, - STATE(3937), 1, - sym_comment, - STATE(4133), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4582), 1, - sym_path, - STATE(4910), 1, - sym_cell_path, - ACTIONS(1889), 3, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1730), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - [118221] = 6, + [118049] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7612), 1, - anon_sym_QMARK2, - ACTIONS(7614), 1, - anon_sym_BANG, - STATE(3938), 1, + STATE(3941), 1, sym_comment, - STATE(4546), 1, - sym__path_suffix, - ACTIONS(1442), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [118243] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(1854), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(7464), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(3939), 1, - sym_comment, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4392), 1, - sym_cell_path, - ACTIONS(1909), 2, + ACTIONS(1856), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [118269] = 9, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [118067] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym__newline, - ACTIONS(7616), 1, + ACTIONS(7634), 1, anon_sym_RBRACK, - STATE(3940), 1, + STATE(3942), 1, sym_comment, - STATE(4207), 1, + STATE(4330), 1, aux_sym__types_body_repeat1, - STATE(4719), 1, + STATE(4882), 1, sym_val_list, - STATE(4730), 1, + STATE(4886), 1, aux_sym__table_body_repeat1, - STATE(5459), 1, + STATE(5099), 1, sym__table_body, - [118297] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(7618), 1, - anon_sym_DOT, - STATE(3941), 1, - sym_comment, - STATE(4589), 1, - sym__immediate_decimal, - ACTIONS(6667), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6669), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [118321] = 8, + [118095] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1972), 1, - sym__entry_separator, - ACTIONS(1974), 1, + STATE(3943), 1, + sym_comment, + ACTIONS(1834), 3, anon_sym_RBRACE, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(7620), 1, anon_sym_DOT_DOT2, - STATE(3942), 1, - sym_comment, - ACTIONS(7622), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118347] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1982), 1, - sym__entry_separator, - ACTIONS(1984), 1, - anon_sym_RBRACK, - ACTIONS(1986), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1832), 4, anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7624), 1, - anon_sym_DOT_DOT2, - STATE(3943), 1, - sym_comment, - ACTIONS(7626), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118373] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1792), 1, - sym__unquoted_pattern, - ACTIONS(7628), 1, - anon_sym_DOT, - ACTIONS(7630), 1, - aux_sym__immediate_decimal_token5, - STATE(3944), 1, - sym_comment, - ACTIONS(1790), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118395] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1534), 1, sym__entry_separator, - ACTIONS(7632), 1, - anon_sym_DOT2, - STATE(4313), 1, - sym_path, - STATE(3945), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1532), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [118417] = 9, + [118113] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1573), 1, - sym_parameter_bracks, - STATE(1645), 1, + STATE(1589), 1, sym_parameter_parens, - STATE(3886), 1, - aux_sym_decl_def_repeat1, - STATE(3946), 1, + STATE(1590), 1, + sym_parameter_bracks, + STATE(3944), 1, sym_comment, - STATE(4670), 1, + STATE(4270), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, sym_long_flag, - [118445] = 5, - ACTIONS(3), 1, + [118141] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7448), 1, - aux_sym__immediate_decimal_token5, - STATE(3947), 1, + STATE(3945), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1921), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(1919), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [118159] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3946), 1, + sym_comment, + ACTIONS(866), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(868), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [118465] = 8, + [118177] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7365), 1, - sym__entry_separator, - ACTIONS(7456), 1, - anon_sym_DOT2, - STATE(3903), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7636), 1, + anon_sym_DOT, + ACTIONS(7638), 1, + aux_sym__immediate_decimal_token5, + STATE(3947), 1, + sym_comment, + ACTIONS(1784), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1786), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [118199] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(3948), 1, sym_comment, - STATE(4313), 1, - sym_path, - STATE(4715), 1, - sym_cell_path, - ACTIONS(7554), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118491] = 9, + 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, + [118217] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1688), 1, + STATE(1560), 1, sym_parameter_parens, - STATE(1689), 1, + STATE(1561), 1, sym_parameter_bracks, - STATE(3854), 1, - aux_sym_decl_def_repeat1, STATE(3949), 1, sym_comment, - STATE(4670), 1, + STATE(3952), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, sym_long_flag, - [118519] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7400), 1, - anon_sym_def, - ACTIONS(7402), 1, - anon_sym_use, - ACTIONS(7404), 1, - anon_sym_extern, - ACTIONS(7406), 1, - anon_sym_module, - ACTIONS(7635), 1, - anon_sym_alias, - ACTIONS(7637), 1, - anon_sym_const, - STATE(3950), 1, - sym_comment, - [118547] = 9, + [118245] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(3966), 1, sym__newline, - ACTIONS(7639), 1, + ACTIONS(7640), 1, anon_sym_RBRACK, - STATE(3951), 1, + STATE(3950), 1, sym_comment, - STATE(4207), 1, + STATE(4330), 1, aux_sym__types_body_repeat1, - STATE(4719), 1, + STATE(4882), 1, sym_val_list, - STATE(4730), 1, + STATE(4886), 1, aux_sym__table_body_repeat1, - STATE(5231), 1, + STATE(5247), 1, sym__table_body, - [118575] = 8, - ACTIONS(103), 1, + [118273] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - sym__entry_separator, - ACTIONS(7464), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1563), 1, + sym_parameter_parens, + STATE(1564), 1, + sym_parameter_bracks, + STATE(3951), 1, + sym_comment, + STATE(3954), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [118301] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1565), 1, + sym_parameter_parens, + STATE(1566), 1, + sym_parameter_bracks, STATE(3952), 1, sym_comment, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4407), 1, - sym_cell_path, - ACTIONS(1913), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [118601] = 9, - ACTIONS(103), 1, + STATE(4270), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [118329] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7400), 1, - anon_sym_def, - ACTIONS(7402), 1, - anon_sym_use, - ACTIONS(7404), 1, - anon_sym_extern, - ACTIONS(7406), 1, - anon_sym_module, - ACTIONS(7641), 1, - anon_sym_alias, - ACTIONS(7643), 1, - anon_sym_const, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1567), 1, + sym_parameter_parens, + STATE(1568), 1, + sym_parameter_bracks, STATE(3953), 1, sym_comment, - [118629] = 9, - ACTIONS(103), 1, + STATE(3956), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [118357] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7371), 1, - anon_sym_RBRACK, - ACTIONS(7374), 1, - anon_sym_DOT_DOT, - ACTIONS(7464), 1, - anon_sym_DOT2, - ACTIONS(7645), 1, - sym__entry_separator, - STATE(352), 1, - sym_path, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1569), 1, + sym_parameter_parens, + STATE(1570), 1, + sym_parameter_bracks, STATE(3954), 1, sym_comment, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4448), 1, - sym_cell_path, - [118657] = 9, - ACTIONS(103), 1, + STATE(4270), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [118385] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7400), 1, - anon_sym_def, - ACTIONS(7402), 1, - anon_sym_use, - ACTIONS(7404), 1, - anon_sym_extern, - ACTIONS(7406), 1, - anon_sym_module, - ACTIONS(7648), 1, - anon_sym_alias, - ACTIONS(7650), 1, - anon_sym_const, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1571), 1, + sym_parameter_parens, + STATE(1572), 1, + sym_parameter_bracks, STATE(3955), 1, sym_comment, - [118685] = 8, - ACTIONS(103), 1, + STATE(3958), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [118413] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1891), 1, - sym__entry_separator, - ACTIONS(7456), 1, - anon_sym_DOT2, - STATE(3903), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1573), 1, + sym_parameter_parens, + STATE(1574), 1, + sym_parameter_bracks, STATE(3956), 1, sym_comment, - STATE(4313), 1, - sym_path, - STATE(4386), 1, - sym_cell_path, - ACTIONS(1893), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118711] = 9, + STATE(4270), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [118441] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(7528), 1, anon_sym_LBRACK, - ACTIONS(7468), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7532), 1, anon_sym_DASH_DASH, - STATE(1536), 1, + STATE(1578), 1, sym_parameter_parens, - STATE(1537), 1, + STATE(1579), 1, sym_parameter_bracks, STATE(3957), 1, sym_comment, - STATE(4312), 1, + STATE(3959), 1, aux_sym_decl_def_repeat1, - STATE(4670), 1, + STATE(4922), 1, sym_long_flag, - [118739] = 7, + [118469] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7652), 1, - anon_sym_DOT, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1580), 1, + sym_parameter_parens, + STATE(1581), 1, + sym_parameter_bracks, STATE(3958), 1, sym_comment, - STATE(4524), 1, - sym__immediate_decimal, - ACTIONS(7654), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7656), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [118763] = 7, + STATE(4270), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [118497] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3413), 1, - sym__blosure, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1583), 1, + sym_parameter_parens, + STATE(1584), 1, + sym_parameter_bracks, STATE(3959), 1, sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [118786] = 7, + STATE(4270), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [118525] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3450), 1, - sym__blosure, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1585), 1, + sym_parameter_parens, + STATE(1586), 1, + sym_parameter_bracks, STATE(3960), 1, sym_comment, - STATE(3983), 1, - aux_sym__repeat_newline, - STATE(3141), 2, - sym_block, - sym_val_closure, - [118809] = 7, + STATE(3961), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [118553] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3452), 1, - sym__blosure, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1587), 1, + sym_parameter_parens, + STATE(1588), 1, + sym_parameter_bracks, STATE(3961), 1, sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [118832] = 8, + STATE(4270), 1, + aux_sym_decl_def_repeat1, + STATE(4922), 1, + sym_long_flag, + [118581] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5354), 1, - anon_sym_RBRACK, - ACTIONS(5356), 1, + ACTIONS(1866), 1, sym__entry_separator, - ACTIONS(7464), 1, + ACTIONS(7518), 1, anon_sym_DOT2, - STATE(352), 1, + STATE(367), 1, sym_path, STATE(3962), 1, sym_comment, - STATE(4013), 1, + STATE(4124), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4918), 1, + STATE(4548), 1, sym_cell_path, - [118857] = 7, + ACTIONS(1868), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [118607] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3452), 1, - sym__blosure, + ACTIONS(7642), 1, + anon_sym_DOT_DOT2, STATE(3963), 1, sym_comment, - STATE(3985), 1, - aux_sym__repeat_newline, - STATE(3141), 2, - sym_block, - sym_val_closure, - [118880] = 6, - ACTIONS(103), 1, + ACTIONS(7644), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2108), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118627] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7574), 1, - sym__entry_separator, - ACTIONS(7662), 1, - anon_sym_DOT_DOT2, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_DASH_DASH, + STATE(1635), 1, + sym_parameter_parens, + STATE(1639), 1, + sym_parameter_bracks, + STATE(3890), 1, + aux_sym_decl_def_repeat1, STATE(3964), 1, sym_comment, - ACTIONS(7660), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7664), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118901] = 6, + STATE(4922), 1, + sym_long_flag, + [118655] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7486), 1, + ACTIONS(1901), 1, sym__entry_separator, - ACTIONS(7662), 1, - anon_sym_DOT_DOT2, + ACTIONS(7518), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, STATE(3965), 1, sym_comment, - ACTIONS(7664), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7666), 2, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4374), 1, + sym_cell_path, + ACTIONS(1903), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118922] = 5, + anon_sym_RBRACE, + [118681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym__unquoted_pattern, - ACTIONS(7630), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7646), 1, + anon_sym_DOT_DOT2, STATE(3966), 1, sym_comment, - ACTIONS(1790), 4, + ACTIONS(7648), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2241), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118941] = 6, + [118701] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7668), 1, - anon_sym_DOT, - ACTIONS(7670), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7650), 1, + anon_sym_DOT_DOT2, STATE(3967), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(7652), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1792), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [118962] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7672), 1, - anon_sym_DOT2, - STATE(4582), 1, - sym_path, - STATE(3968), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1532), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [118981] = 7, + ACTIONS(2249), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118721] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(7654), 1, + anon_sym_DOT_DOT2, + STATE(3968), 1, + sym_comment, + ACTIONS(7656), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2257), 4, + anon_sym_if, sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118741] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3455), 1, - sym__blosure, + anon_sym_alias, + ACTIONS(7660), 1, + anon_sym_const, + ACTIONS(7662), 1, + anon_sym_def, + ACTIONS(7664), 1, + anon_sym_use, + ACTIONS(7666), 1, + anon_sym_extern, + ACTIONS(7668), 1, + anon_sym_module, STATE(3969), 1, sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [119004] = 6, - ACTIONS(3), 1, + [118769] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym__unquoted_pattern, - ACTIONS(7675), 1, - anon_sym_DOT, - ACTIONS(7677), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1444), 1, + sym__entry_separator, + ACTIONS(7518), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(383), 1, + sym_cell_path, STATE(3970), 1, sym_comment, - ACTIONS(1790), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119025] = 7, - ACTIONS(3), 1, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1442), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [118795] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3457), 1, - sym__blosure, + ACTIONS(7424), 1, + anon_sym_DOT2, STATE(3971), 1, sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [119048] = 7, - ACTIONS(3), 1, + STATE(4137), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4521), 1, + sym_path, + STATE(4863), 1, + sym_cell_path, + ACTIONS(1887), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [118819] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3457), 1, - sym__blosure, + ACTIONS(1889), 1, + sym__entry_separator, + ACTIONS(7518), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, STATE(3972), 1, sym_comment, - STATE(3992), 1, - aux_sym__repeat_newline, - STATE(3141), 2, - sym_block, - sym_val_closure, - [119071] = 8, - ACTIONS(103), 1, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4579), 1, + sym_cell_path, + ACTIONS(1891), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [118845] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, - sym_identifier, - ACTIONS(7576), 1, - anon_sym_DOLLAR, - STATE(2787), 1, - sym__variable_name, - STATE(2788), 1, - sym_val_variable, + ACTIONS(3801), 1, + anon_sym_LBRACK, + ACTIONS(3966), 1, + sym__newline, + ACTIONS(7670), 1, + anon_sym_RBRACK, STATE(3973), 1, sym_comment, - STATE(4385), 1, - sym__assignment_pattern, - [119096] = 8, + STATE(4330), 1, + aux_sym__types_body_repeat1, + STATE(4882), 1, + sym_val_list, + STATE(4886), 1, + aux_sym__table_body_repeat1, + STATE(5352), 1, + sym__table_body, + [118873] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, - sym_identifier, - ACTIONS(7478), 1, - anon_sym_DOLLAR, - STATE(2788), 1, - sym_val_variable, + ACTIONS(7672), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7674), 1, + aux_sym__immediate_decimal_token5, STATE(3974), 1, sym_comment, - STATE(4196), 1, - sym__variable_name, - STATE(4388), 1, - sym__assignment_pattern, - [119121] = 8, + ACTIONS(1730), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1732), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [118895] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, - sym_identifier, - ACTIONS(7478), 1, - anon_sym_DOLLAR, - STATE(2788), 1, - sym_val_variable, + ACTIONS(1893), 1, + sym__entry_separator, + ACTIONS(7518), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, STATE(3975), 1, sym_comment, - STATE(4196), 1, - sym__variable_name, - STATE(4391), 1, - sym__assignment_pattern, - [119146] = 7, - ACTIONS(3), 1, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4472), 1, + sym_cell_path, + ACTIONS(1895), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [118921] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3460), 1, - sym__blosure, STATE(3976), 1, sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [119169] = 5, + ACTIONS(1897), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1899), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [118939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7679), 1, - aux_sym__immediate_decimal_token5, STATE(3977), 1, sym_comment, - ACTIONS(1848), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1846), 3, + ACTIONS(777), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119188] = 7, + sym_filesize_unit, + sym_duration_unit, + [118957] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3460), 1, - sym__blosure, + ACTIONS(7484), 1, + aux_sym__immediate_decimal_token5, STATE(3978), 1, sym_comment, - STATE(3994), 1, - aux_sym__repeat_newline, - STATE(3141), 2, - sym_block, - sym_val_closure, - [119211] = 7, - ACTIONS(103), 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, + [118977] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7685), 1, - anon_sym_DQUOTE2, + ACTIONS(7676), 1, + aux_sym__immediate_decimal_token5, STATE(3979), 1, sym_comment, - STATE(3990), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, - sym_expr_interpolated, - ACTIONS(7683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [119234] = 7, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(777), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [118997] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6667), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6995), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7687), 1, - aux_sym_unquoted_token2, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7440), 1, + anon_sym_def, + ACTIONS(7442), 1, + anon_sym_use, + ACTIONS(7444), 1, + anon_sym_extern, + ACTIONS(7446), 1, + anon_sym_module, + ACTIONS(7678), 1, + anon_sym_alias, + ACTIONS(7680), 1, + anon_sym_const, STATE(3980), 1, sym_comment, - STATE(4569), 1, - sym__immediate_decimal, - ACTIONS(6997), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [119257] = 7, + [119025] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6926), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7003), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7687), 1, - aux_sym_unquoted_token2, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7440), 1, + anon_sym_def, + ACTIONS(7442), 1, + anon_sym_use, + ACTIONS(7444), 1, + anon_sym_extern, + ACTIONS(7446), 1, + anon_sym_module, + ACTIONS(7682), 1, + anon_sym_alias, + ACTIONS(7684), 1, + anon_sym_const, STATE(3981), 1, sym_comment, - STATE(5128), 1, - sym__immediate_decimal, - ACTIONS(7005), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [119280] = 6, - ACTIONS(3), 1, + [119053] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4179), 1, - anon_sym_DOT_DOT2, - ACTIONS(7687), 1, - sym__unquoted_pattern, + ACTIONS(5407), 1, + sym__entry_separator, + ACTIONS(7518), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, STATE(3982), 1, sym_comment, - ACTIONS(4181), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7689), 2, - sym_filesize_unit, - sym_duration_unit, - [119301] = 7, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4894), 1, + sym_cell_path, + ACTIONS(5405), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [119079] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3461), 1, + STATE(3530), 1, sym__blosure, STATE(3983), 1, sym_comment, - STATE(3141), 2, + STATE(4183), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, sym_val_closure, - [119324] = 7, + [119102] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3504), 1, + STATE(3587), 1, sym__blosure, STATE(3984), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [119347] = 7, + [119125] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3464), 1, + STATE(3587), 1, sym__blosure, STATE(3985), 1, sym_comment, - STATE(3141), 2, + STATE(3996), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, sym_val_closure, - [119370] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7007), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7654), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7691), 1, - aux_sym__immediate_decimal_token2, - STATE(3986), 1, - sym_comment, - STATE(4495), 1, - sym__immediate_decimal, - ACTIONS(7693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [119393] = 7, + [119148] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3464), 1, + STATE(3588), 1, sym__blosure, - STATE(3987), 1, + STATE(3986), 1, sym_comment, - STATE(3997), 1, + STATE(3998), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [119416] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7007), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7695), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7697), 1, - aux_sym__immediate_decimal_token2, - STATE(3988), 1, - sym_comment, - STATE(5319), 1, - sym__immediate_decimal, - ACTIONS(7699), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [119439] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7007), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7701), 1, - anon_sym_DOT_DOT2, - STATE(3989), 1, - sym_comment, - ACTIONS(7703), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7705), 2, - sym_filesize_unit, - sym_duration_unit, - [119460] = 7, + [119171] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7707), 1, + ACTIONS(7692), 1, anon_sym_DQUOTE2, - STATE(3990), 1, + STATE(3987), 1, sym_comment, - STATE(4136), 1, + STATE(4182), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [119483] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1848), 1, - sym__unquoted_pattern, - ACTIONS(7709), 1, - aux_sym__immediate_decimal_token5, - STATE(3991), 1, - sym_comment, - ACTIONS(1846), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119502] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3465), 1, - sym__blosure, - STATE(3992), 1, - sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [119525] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern_in_record, - STATE(3993), 1, - sym_comment, - STATE(5448), 1, - sym__immediate_decimal, - ACTIONS(7695), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7711), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [119546] = 7, + [119194] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3467), 1, + STATE(3592), 1, sym__blosure, - STATE(3994), 1, - sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [119569] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3995), 1, + STATE(3988), 1, sym_comment, - ACTIONS(1508), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119584] = 7, + STATE(3210), 2, + sym_block, + sym_val_closure, + [119217] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3467), 1, + STATE(3592), 1, sym__blosure, - STATE(3996), 1, + STATE(3989), 1, sym_comment, STATE(4000), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [119607] = 7, + [119240] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3468), 1, + STATE(3593), 1, sym__blosure, - STATE(3997), 1, + STATE(3990), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [119630] = 5, + [119263] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(3998), 1, - sym_comment, - STATE(4558), 1, - sym_block, - ACTIONS(7713), 4, + ACTIONS(2935), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119649] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3999), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3594), 1, + sym__blosure, + STATE(3991), 1, sym_comment, - STATE(4560), 1, + STATE(3210), 2, sym_block, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119668] = 7, + sym_val_closure, + [119286] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3469), 1, + STATE(3594), 1, sym__blosure, - STATE(4000), 1, + STATE(3992), 1, sym_comment, - STATE(3141), 2, + STATE(4001), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, sym_val_closure, - [119691] = 3, + [119309] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4001), 1, + ACTIONS(1714), 1, + sym__space, + ACTIONS(7694), 1, + anon_sym_DOT_DOT2, + STATE(3993), 1, sym_comment, - ACTIONS(1512), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119706] = 3, - ACTIONS(103), 1, + ACTIONS(1588), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119330] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4002), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3596), 1, + sym__blosure, + STATE(3994), 1, sym_comment, - ACTIONS(1520), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119721] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3691), 1, - sym__entry_separator, - ACTIONS(7464), 1, - anon_sym_DOT2, - ACTIONS(7715), 1, - anon_sym_RBRACE, - STATE(352), 1, - sym_path, STATE(4003), 1, - sym_comment, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4358), 1, - sym_cell_path, - [119746] = 7, + aux_sym__repeat_newline, + STATE(3210), 2, + sym_block, + sym_val_closure, + [119353] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT2, - STATE(2450), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(3004), 1, - sym_cell_path, - STATE(4004), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3598), 1, + sym__blosure, + STATE(3995), 1, sym_comment, - ACTIONS(5360), 2, - anon_sym_EQ, - anon_sym_GT2, - [119769] = 7, + STATE(3210), 2, + sym_block, + sym_val_closure, + [119376] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3111), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3599), 1, sym__blosure, - STATE(4005), 1, + STATE(3996), 1, sym_comment, - STATE(4020), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [119792] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4006), 1, - sym_comment, - ACTIONS(1528), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119807] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4007), 1, - sym_comment, - ACTIONS(1500), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119822] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4008), 1, - sym_comment, - ACTIONS(1504), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119837] = 7, + [119399] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3486), 1, + STATE(3599), 1, sym__blosure, - STATE(4009), 1, + STATE(3997), 1, sym_comment, - STATE(4023), 1, + STATE(4005), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [119860] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7660), 1, - anon_sym_DOT_DOT, - ACTIONS(7662), 1, - anon_sym_DOT_DOT2, - ACTIONS(7719), 1, - anon_sym_RBRACK, - ACTIONS(7721), 1, - sym__entry_separator, - STATE(4010), 1, - sym_comment, - ACTIONS(7664), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119883] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7662), 1, - anon_sym_DOT_DOT2, - ACTIONS(7666), 1, - anon_sym_DOT_DOT, - ACTIONS(7723), 1, - anon_sym_RBRACK, - ACTIONS(7726), 1, - sym__entry_separator, - STATE(4011), 1, - sym_comment, - ACTIONS(7664), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119906] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6914), 1, - anon_sym_LPAREN2, - ACTIONS(7731), 1, - sym__entry_separator, - STATE(2272), 1, - aux_sym__types_body_repeat2, - STATE(4012), 1, - sym_comment, - STATE(4991), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7729), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119929] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - sym__entry_separator, - ACTIONS(7464), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(4013), 1, - sym_comment, - STATE(4016), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [119952] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2170), 1, - sym__entry_separator, - ACTIONS(7734), 1, - anon_sym_DOT_DOT2, - STATE(4014), 1, - sym_comment, - ACTIONS(2172), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7736), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119973] = 5, - ACTIONS(103), 1, + [119422] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7606), 1, - aux_sym__immediate_decimal_token5, - STATE(4015), 1, - sym_comment, - ACTIONS(1790), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1792), 3, + ACTIONS(2935), 1, sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [119992] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1534), 1, - sym__entry_separator, - ACTIONS(7738), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, - ACTIONS(1532), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(4016), 2, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3600), 1, + sym__blosure, + STATE(3998), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [120013] = 7, + STATE(3210), 2, + sym_block, + sym_val_closure, + [119445] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3167), 1, + STATE(3600), 1, sym__blosure, - STATE(4017), 1, + STATE(3999), 1, sym_comment, - STATE(4019), 1, + STATE(4006), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120036] = 7, + [119468] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3466), 1, - sym__blosure, - STATE(3959), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(4018), 1, + STATE(3601), 1, + sym__blosure, + STATE(4000), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120059] = 7, + [119491] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3168), 1, + STATE(3602), 1, sym__blosure, - STATE(4019), 1, + STATE(4001), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120082] = 7, + [119514] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(3602), 1, + sym__blosure, + STATE(4002), 1, + sym_comment, + STATE(4008), 1, aux_sym__repeat_newline, - STATE(3170), 1, + STATE(3210), 2, + sym_block, + sym_val_closure, + [119537] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3603), 1, sym__blosure, - STATE(4020), 1, + STATE(4003), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120105] = 7, + [119560] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3168), 1, + STATE(3603), 1, sym__blosure, - STATE(4021), 1, + STATE(4004), 1, sym_comment, - STATE(4075), 1, + STATE(4009), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120128] = 7, + [119583] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3413), 1, - sym__blosure, - STATE(3984), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(4022), 1, + STATE(3604), 1, + sym__blosure, + STATE(4005), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120151] = 7, + [119606] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3470), 1, + STATE(3605), 1, sym__blosure, - STATE(4023), 1, + STATE(4006), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120174] = 7, + [119629] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3480), 1, + STATE(3605), 1, sym__blosure, - STATE(4024), 1, + STATE(4007), 1, sym_comment, - STATE(4097), 1, + STATE(4011), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120197] = 7, + [119652] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3514), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3416), 1, sym__blosure, - STATE(4025), 1, + STATE(4008), 1, sym_comment, - STATE(4067), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120220] = 7, + [119675] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3170), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3538), 1, sym__blosure, - STATE(4026), 1, + STATE(4009), 1, sym_comment, - STATE(4027), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120243] = 7, + [119698] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3051), 1, + STATE(3538), 1, sym__blosure, - STATE(4027), 1, + STATE(4010), 1, sym_comment, - STATE(3141), 2, + STATE(4012), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, sym_val_closure, - [120266] = 7, + [119721] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3513), 1, + STATE(3521), 1, sym__blosure, - STATE(4028), 1, + STATE(4011), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120289] = 7, + [119744] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3051), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3420), 1, sym__blosure, - STATE(4029), 1, + STATE(4012), 1, sym_comment, - STATE(4057), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120312] = 7, + [119767] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3513), 1, + STATE(3221), 1, sym__blosure, - STATE(4030), 1, + STATE(4013), 1, sym_comment, - STATE(4066), 1, + STATE(4078), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [120335] = 7, + [119790] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3470), 1, + STATE(3519), 1, sym__blosure, - STATE(4028), 1, - aux_sym__repeat_newline, - STATE(4031), 1, + STATE(4014), 1, sym_comment, - STATE(3141), 2, + STATE(4079), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, sym_val_closure, - [120358] = 8, + [119813] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5370), 1, + ACTIONS(7698), 1, anon_sym_RBRACK, - ACTIONS(5372), 1, + ACTIONS(7700), 1, + anon_sym_DOT_DOT, + ACTIONS(7702), 1, + anon_sym_DOT_DOT2, + ACTIONS(7706), 1, sym__entry_separator, - ACTIONS(7464), 1, + STATE(4015), 1, + sym_comment, + ACTIONS(7704), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119836] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7273), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7708), 1, + anon_sym_DOT, + STATE(4016), 1, + sym_comment, + ACTIONS(1784), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119855] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7712), 1, + anon_sym_AT, + STATE(4998), 1, + sym_attribute, + STATE(4017), 2, + sym_comment, + aux_sym_attribute_list_repeat1, + ACTIONS(7710), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [119874] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7518), 1, anon_sym_DOT2, - STATE(352), 1, + ACTIONS(7715), 1, + anon_sym_RBRACE, + ACTIONS(7717), 1, + sym__entry_separator, + STATE(367), 1, sym_path, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4032), 1, + STATE(4018), 1, sym_comment, - STATE(4927), 1, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4963), 1, sym_cell_path, - [120383] = 6, + [119899] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2104), 1, - sym__entry_separator, - ACTIONS(7741), 1, + ACTIONS(2108), 1, + sym__space, + ACTIONS(7719), 1, anon_sym_DOT_DOT2, - STATE(4033), 1, + STATE(4019), 1, sym_comment, - ACTIONS(2106), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7743), 2, + ACTIONS(2110), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7721), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120404] = 6, + [119920] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7723), 1, + sym_long_flag_identifier, + ACTIONS(7725), 1, + anon_sym_EQ2, + STATE(4020), 1, + sym_comment, + STATE(4738), 1, + sym__flag_equals_value, + ACTIONS(4290), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [119941] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, - sym__entry_separator, - ACTIONS(7745), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT2, - STATE(4034), 1, - sym_comment, - ACTIONS(2114), 2, + ACTIONS(7727), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7747), 2, + ACTIONS(7730), 1, + anon_sym_DOT_DOT, + ACTIONS(7732), 1, + sym__entry_separator, + STATE(4021), 1, + sym_comment, + ACTIONS(7704), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120425] = 7, + [119964] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7737), 1, + sym__entry_separator, + STATE(2275), 1, + aux_sym__types_body_repeat2, + STATE(4022), 1, + sym_comment, + STATE(5028), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7735), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119987] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(3081), 1, - sym__blosure, - STATE(4035), 1, + STATE(4023), 1, sym_comment, - STATE(4060), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(4537), 1, sym_block, - sym_val_closure, - [120448] = 6, + ACTIONS(7740), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120006] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + sym__unquoted_pattern, + ACTIONS(7612), 1, + aux_sym__immediate_decimal_token5, + STATE(4024), 1, + sym_comment, + ACTIONS(1784), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120025] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(1714), 1, sym__entry_separator, - ACTIONS(7749), 1, + ACTIONS(7742), 1, anon_sym_DOT_DOT2, - STATE(4036), 1, + STATE(4025), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(1588), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7751), 2, + ACTIONS(7744), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120046] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7746), 1, + sym_identifier, + ACTIONS(7748), 1, + anon_sym_DOLLAR, + STATE(2894), 1, + sym__variable_name, + STATE(3247), 1, + sym_val_variable, + STATE(4026), 1, + sym_comment, + STATE(4848), 1, + sym__assignment_pattern, + [120071] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7632), 1, + aux_sym__immediate_decimal_token5, + STATE(4027), 1, + sym_comment, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1784), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120469] = 5, + [120090] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1834), 1, + sym__unquoted_pattern, + ACTIONS(7750), 1, + aux_sym__immediate_decimal_token5, + STATE(4028), 1, + sym_comment, + ACTIONS(1832), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120109] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4029), 1, + sym_comment, + ACTIONS(1522), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120124] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7559), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_DOLLAR, + STATE(2822), 1, + sym_val_variable, + STATE(4030), 1, + sym_comment, + STATE(4289), 1, + sym__variable_name, + STATE(4854), 1, + sym__assignment_pattern, + [120149] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(57), 1, + anon_sym_AT, + STATE(4017), 1, + aux_sym_attribute_list_repeat1, + STATE(4031), 1, + sym_comment, + STATE(4998), 1, + sym_attribute, + ACTIONS(7752), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [120170] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4032), 1, + sym_comment, + ACTIONS(1530), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120185] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7753), 1, + STATE(4033), 1, + sym_comment, + ACTIONS(1480), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120200] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4034), 1, + sym_comment, + STATE(4481), 1, + sym_block, + ACTIONS(7754), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120219] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1732), 1, + sym__unquoted_pattern, + ACTIONS(7756), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7758), 1, aux_sym__immediate_decimal_token5, + STATE(4035), 1, + sym_comment, + ACTIONS(1730), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120240] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + STATE(4036), 1, + sym_comment, + STATE(5400), 1, + sym__immediate_decimal, + ACTIONS(7760), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7762), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [120261] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3872), 1, + anon_sym_LBRACE, STATE(4037), 1, sym_comment, - ACTIONS(1846), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1848), 3, + STATE(4499), 1, + sym_block, + ACTIONS(7764), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120280] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4038), 1, + sym_comment, + STATE(4500), 1, + sym_block, + ACTIONS(7764), 4, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120299] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, sym__unquoted_pattern, - [120488] = 8, + STATE(4039), 1, + sym_comment, + STATE(5112), 1, + sym__immediate_decimal, + ACTIONS(6917), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6919), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [120320] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7766), 1, + sym__newline, + ACTIONS(7768), 1, + anon_sym_SEMI, + ACTIONS(7770), 1, + anon_sym_RPAREN, + STATE(1378), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4040), 1, + sym_comment, + STATE(4563), 1, + aux_sym__block_body_repeat1, + STATE(4838), 1, + aux_sym__repeat_newline, + [120345] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2822), 1, + ACTIONS(2933), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7755), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7757), 1, + ACTIONS(7567), 1, anon_sym_DOLLAR, - STATE(2731), 1, - sym__variable_name, - STATE(3206), 1, + STATE(2822), 1, sym_val_variable, - STATE(4038), 1, + STATE(4041), 1, sym_comment, - STATE(4744), 1, + STATE(4289), 1, + sym__variable_name, + STATE(4862), 1, sym__assignment_pattern, - [120513] = 8, + [120370] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7766), 1, + sym__newline, + ACTIONS(7768), 1, + anon_sym_SEMI, + ACTIONS(7772), 1, + anon_sym_RPAREN, + STATE(1378), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4042), 1, + sym_comment, + STATE(4409), 1, + aux_sym__block_body_repeat1, + STATE(4838), 1, + aux_sym__repeat_newline, + [120395] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1907), 1, + STATE(4043), 1, + sym_comment, + ACTIONS(1516), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120410] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4044), 1, + sym_comment, + ACTIONS(1468), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120425] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4045), 1, + sym_comment, + ACTIONS(1472), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120440] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(5332), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + sym_identifier, + STATE(2822), 1, + sym_val_variable, + STATE(4046), 1, + sym_comment, + STATE(5472), 1, + sym__variable_name, + [120465] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5486), 1, + sym__space, + ACTIONS(7774), 1, + anon_sym_EQ2, + ACTIONS(7776), 1, + sym_short_flag_identifier, + STATE(3219), 1, + sym__flag_equals_value, + STATE(4047), 1, + sym_comment, + ACTIONS(5484), 2, + sym__newline, + anon_sym_SEMI, + [120488] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5492), 1, + sym__space, + ACTIONS(7694), 1, + anon_sym_DOT_DOT2, + STATE(4048), 1, + sym_comment, + ACTIONS(5490), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120509] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7638), 1, + aux_sym__immediate_decimal_token5, + STATE(4049), 1, + sym_comment, + ACTIONS(1784), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1786), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [120528] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + sym__unquoted_pattern, + STATE(4050), 1, + sym_comment, + STATE(5144), 1, + sym__immediate_decimal, + ACTIONS(6917), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6919), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [120549] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1893), 1, sym__entry_separator, - ACTIONS(1909), 1, + ACTIONS(1895), 1, anon_sym_GT2, - ACTIONS(7456), 1, + ACTIONS(7458), 1, anon_sym_DOT2, - STATE(3903), 1, + STATE(3914), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4039), 1, + STATE(4051), 1, sym_comment, - STATE(4313), 1, + STATE(4235), 1, sym_path, - STATE(4392), 1, + STATE(4472), 1, sym_cell_path, - [120538] = 8, + [120574] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(1866), 1, sym__entry_separator, - ACTIONS(1885), 1, + ACTIONS(1868), 1, anon_sym_GT2, - ACTIONS(7456), 1, + ACTIONS(7458), 1, anon_sym_DOT2, - STATE(3903), 1, + STATE(3914), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4040), 1, + STATE(4052), 1, sym_comment, - STATE(4313), 1, + STATE(4235), 1, sym_path, - STATE(4448), 1, + STATE(4548), 1, sym_cell_path, - [120563] = 8, + [120599] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(1885), 1, sym__entry_separator, - ACTIONS(1889), 1, + ACTIONS(1887), 1, anon_sym_GT2, - ACTIONS(7456), 1, + ACTIONS(7458), 1, anon_sym_DOT2, - STATE(3903), 1, + STATE(3914), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4041), 1, + STATE(4053), 1, sym_comment, - STATE(4313), 1, + STATE(4235), 1, sym_path, - STATE(4470), 1, + STATE(4461), 1, sym_cell_path, - [120588] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7759), 1, - sym_long_flag_identifier, - ACTIONS(7761), 1, - anon_sym_EQ2, - STATE(4042), 1, - sym_comment, - STATE(4833), 1, - sym__flag_equals_value, - ACTIONS(4282), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120609] = 7, + [120624] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7763), 1, + ACTIONS(7778), 1, anon_sym_DQUOTE2, - STATE(4043), 1, + STATE(4054), 1, sym_comment, - STATE(4049), 1, + STATE(4057), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [120632] = 7, + [120647] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4187), 1, + ACTIONS(4161), 1, aux_sym_unquoted_token2, - ACTIONS(6667), 1, + ACTIONS(6658), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6995), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token2, - STATE(4044), 1, + STATE(4055), 1, sym_comment, - STATE(4569), 1, + STATE(4453), 1, sym__immediate_decimal, - ACTIONS(6997), 2, + ACTIONS(7009), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [120655] = 7, + [120670] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4187), 1, + ACTIONS(4161), 1, aux_sym_unquoted_token2, - ACTIONS(6926), 1, + ACTIONS(6917), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7003), 1, + ACTIONS(7013), 1, aux_sym__immediate_decimal_token2, - STATE(4045), 1, + STATE(4056), 1, sym_comment, - STATE(5128), 1, + STATE(5371), 1, sym__immediate_decimal, - ACTIONS(7005), 2, + ACTIONS(7015), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [120678] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1462), 1, - sym__entry_separator, - ACTIONS(7765), 1, - anon_sym_QMARK2, - STATE(4046), 1, - sym_comment, - ACTIONS(1460), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [120697] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4047), 1, - sym_comment, - STATE(4508), 1, - sym_block, - ACTIONS(7767), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120716] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3408), 1, - sym__blosure, - STATE(4048), 1, - sym_comment, - STATE(4105), 1, - aux_sym__repeat_newline, - STATE(3141), 2, - sym_block, - sym_val_closure, - [120739] = 7, + [120693] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7780), 1, anon_sym_DQUOTE2, - STATE(4049), 1, + STATE(4057), 1, sym_comment, - STATE(4136), 1, + STATE(4182), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [120762] = 6, + [120716] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1699), 1, - sym__entry_separator, - ACTIONS(7771), 1, - anon_sym_DOT_DOT2, - STATE(4050), 1, + ACTIONS(7782), 1, + aux_sym__immediate_decimal_token5, + STATE(4058), 1, sym_comment, - ACTIONS(1615), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7773), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120783] = 7, + ACTIONS(1832), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1834), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [120735] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(3504), 1, - sym__blosure, - STATE(4051), 1, + STATE(4059), 1, sym_comment, - STATE(4061), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(4578), 1, sym_block, - sym_val_closure, - [120806] = 7, + ACTIONS(7784), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120754] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3411), 1, - sym__blosure, - STATE(4052), 1, + STATE(4060), 1, sym_comment, - STATE(3141), 2, + STATE(4580), 1, sym_block, - sym_val_closure, - [120829] = 8, + ACTIONS(7784), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120773] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5360), 1, - sym__entry_separator, - ACTIONS(5752), 1, - anon_sym_GT2, - ACTIONS(7456), 1, + ACTIONS(7518), 1, anon_sym_DOT2, - STATE(3903), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4053), 1, - sym_comment, - STATE(4313), 1, + ACTIONS(7786), 1, + anon_sym_RBRACE, + ACTIONS(7788), 1, + sym__entry_separator, + STATE(367), 1, sym_path, - STATE(4358), 1, - sym_cell_path, - [120854] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3411), 1, - sym__blosure, - STATE(4054), 1, + STATE(4061), 1, sym_comment, - STATE(4117), 1, - aux_sym__repeat_newline, - STATE(3141), 2, - sym_block, - sym_val_closure, - [120877] = 8, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(5016), 1, + sym_cell_path, + [120798] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2822), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7478), 1, + ACTIONS(7561), 1, anon_sym_DOLLAR, - STATE(2788), 1, - sym_val_variable, - STATE(4055), 1, - sym_comment, - STATE(4179), 1, + STATE(2791), 1, sym__variable_name, - STATE(4888), 1, - sym__assignment_pattern, - [120902] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4282), 1, - sym__space, - ACTIONS(7775), 1, - sym_long_flag_identifier, - ACTIONS(7777), 1, - anon_sym_EQ2, - STATE(3193), 1, - sym__flag_equals_value, - STATE(4056), 1, + STATE(2822), 1, + sym_val_variable, + STATE(4062), 1, sym_comment, - ACTIONS(4280), 2, - sym__newline, - anon_sym_SEMI, - [120925] = 7, + STATE(4900), 1, + sym__assignment_pattern_parenthesized, + [120823] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3087), 1, + STATE(3522), 1, sym__blosure, - STATE(4057), 1, + STATE(4063), 1, sym_comment, - STATE(3141), 2, + STATE(4151), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, sym_val_closure, - [120948] = 6, + [120846] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(4058), 1, + ACTIONS(7790), 1, + anon_sym_DOT2, + STATE(2511), 1, + sym_path, + STATE(4064), 2, sym_comment, - STATE(4079), 1, - aux_sym_attribute_list_repeat1, - STATE(4941), 1, - sym_attribute, - ACTIONS(7779), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [120969] = 8, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [120865] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7506), 1, + sym__entry_separator, + ACTIONS(7702), 1, + anon_sym_DOT_DOT2, + STATE(4065), 1, + sym_comment, + ACTIONS(7700), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7704), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120886] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, - sym_identifier, - ACTIONS(7478), 1, - anon_sym_DOLLAR, - STATE(2788), 1, - sym_val_variable, - STATE(4059), 1, + ACTIONS(7512), 1, + sym__entry_separator, + ACTIONS(7702), 1, + anon_sym_DOT_DOT2, + STATE(4066), 1, sym_comment, - STATE(4179), 1, - sym__variable_name, - STATE(4707), 1, - sym__assignment_pattern, - [120994] = 7, + ACTIONS(7704), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7730), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [120907] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3094), 1, + STATE(3525), 1, sym__blosure, - STATE(4060), 1, + STATE(4067), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [121017] = 7, + [120930] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3416), 1, + STATE(3525), 1, sym__blosure, - STATE(4061), 1, + STATE(4068), 1, sym_comment, - STATE(3141), 2, + STATE(4161), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, sym_val_closure, - [121040] = 7, + [120953] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym__entry_separator, + ACTIONS(5738), 1, + anon_sym_GT2, + ACTIONS(7458), 1, + anon_sym_DOT2, + STATE(3914), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4069), 1, + sym_comment, + STATE(4235), 1, + sym_path, + STATE(4614), 1, + sym_cell_path, + [120978] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(7793), 1, + aux_sym__immediate_decimal_token5, + STATE(4070), 1, + sym_comment, + ACTIONS(1834), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1832), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120997] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3416), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3150), 1, sym__blosure, - STATE(4062), 1, + STATE(4071), 1, sym_comment, - STATE(4121), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [121063] = 7, + [121020] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1464), 1, + sym__entry_separator, + ACTIONS(7795), 1, + anon_sym_QMARK2, + STATE(4072), 1, + sym_comment, + ACTIONS(1462), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [121039] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3417), 1, + STATE(3530), 1, sym__blosure, - STATE(4063), 1, + STATE(4073), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [121086] = 7, + [121062] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7559), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_DOLLAR, + STATE(2822), 1, + sym_val_variable, + STATE(4074), 1, + sym_comment, + STATE(4343), 1, + sym__variable_name, + STATE(4904), 1, + sym__assignment_pattern_parenthesized, + [121087] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7737), 1, + sym__entry_separator, + STATE(2280), 1, + aux_sym__types_body_repeat2, + STATE(4075), 1, + sym_comment, + STATE(5028), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7797), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [121110] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3417), 1, + STATE(3187), 1, sym__blosure, - STATE(4064), 1, + STATE(4076), 1, sym_comment, - STATE(4122), 1, + STATE(4140), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [121109] = 7, + [121133] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3509), 1, + STATE(3445), 1, sym__blosure, - STATE(4063), 1, - aux_sym__repeat_newline, - STATE(4065), 1, + STATE(4077), 1, sym_comment, - STATE(3141), 2, + STATE(4141), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, sym_val_closure, - [121132] = 7, + [121156] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3528), 1, + STATE(3189), 1, sym__blosure, - STATE(4066), 1, + STATE(4078), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [121155] = 7, + [121179] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3418), 1, + STATE(3448), 1, sym__blosure, - STATE(4067), 1, + STATE(4079), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [121178] = 5, + [121202] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7586), 1, - aux_sym__immediate_decimal_token5, - STATE(4068), 1, - sym_comment, - ACTIONS(1792), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1790), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121197] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(5273), 1, - anon_sym_DOLLAR, - ACTIONS(7476), 1, - sym_identifier, - STATE(2788), 1, - sym_val_variable, - STATE(4069), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern_in_record, + STATE(4080), 1, sym_comment, - STATE(5454), 1, - sym__variable_name, - [121222] = 7, + STATE(5373), 1, + sym__immediate_decimal, + ACTIONS(7760), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7762), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [121223] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3418), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3533), 1, sym__blosure, - STATE(4070), 1, + STATE(4081), 1, sym_comment, - STATE(4125), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [121245] = 7, + [121246] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3528), 1, + STATE(3533), 1, sym__blosure, - STATE(4071), 1, + STATE(4082), 1, sym_comment, - STATE(4076), 1, + STATE(4196), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [121268] = 7, + [121269] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3419), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3534), 1, sym__blosure, - STATE(4072), 1, + STATE(4083), 1, sym_comment, - STATE(4131), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [121291] = 7, + [121292] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3582), 1, + STATE(3189), 1, sym__blosure, - STATE(4052), 1, - aux_sym__repeat_newline, - STATE(4073), 1, + STATE(4084), 1, sym_comment, - STATE(3141), 2, + STATE(4149), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, sym_val_closure, - [121314] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7781), 1, - anon_sym_DQUOTE2, - STATE(4074), 1, - sym_comment, - STATE(4081), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, - sym_expr_interpolated, - ACTIONS(7683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [121337] = 7, + [121315] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3081), 1, + STATE(3448), 1, sym__blosure, - STATE(4075), 1, + STATE(4085), 1, sym_comment, - STATE(3141), 2, + STATE(4150), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, sym_val_closure, - [121360] = 7, + [121338] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3422), 1, - sym__blosure, - STATE(4076), 1, + STATE(4086), 1, sym_comment, - STATE(3141), 2, + STATE(4365), 1, sym_block, - sym_val_closure, - [121383] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7783), 1, + ACTIONS(7799), 4, sym__newline, - ACTIONS(7785), 1, anon_sym_SEMI, - ACTIONS(7787), 1, anon_sym_RPAREN, - STATE(1365), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4077), 1, - sym_comment, - STATE(4626), 1, - aux_sym__block_body_repeat1, - STATE(4654), 1, - aux_sym__repeat_newline, - [121408] = 5, + anon_sym_RBRACE, + [121357] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(4078), 1, + STATE(4087), 1, sym_comment, - STATE(4439), 1, + STATE(4366), 1, sym_block, - ACTIONS(7789), 4, + ACTIONS(7799), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121427] = 5, - ACTIONS(3), 1, + [121376] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7793), 1, - anon_sym_AT, - STATE(4941), 1, - sym_attribute, - STATE(4079), 2, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7559), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_DOLLAR, + STATE(2822), 1, + sym_val_variable, + STATE(4088), 1, sym_comment, - aux_sym_attribute_list_repeat1, - ACTIONS(7791), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [121446] = 5, + STATE(4343), 1, + sym__variable_name, + STATE(4778), 1, + sym__assignment_pattern_parenthesized, + [121401] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1462), 1, + ACTIONS(3683), 1, sym__entry_separator, - ACTIONS(7765), 1, - anon_sym_BANG, - STATE(4080), 1, - sym_comment, - ACTIONS(1460), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, + ACTIONS(7518), 1, anon_sym_DOT2, - [121465] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7796), 1, - anon_sym_DQUOTE2, - STATE(4081), 1, + ACTIONS(7801), 1, + anon_sym_RBRACE, + STATE(367), 1, + sym_path, + STATE(4089), 1, sym_comment, - STATE(4136), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, - sym_expr_interpolated, - ACTIONS(7683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [121488] = 5, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4614), 1, + sym_cell_path, + [121426] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(4082), 1, + STATE(3534), 1, + sym__blosure, + STATE(4090), 1, sym_comment, - STATE(4517), 1, + STATE(4103), 1, + aux_sym__repeat_newline, + STATE(3210), 2, sym_block, - ACTIONS(7798), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121507] = 6, - ACTIONS(103), 1, + sym_val_closure, + [121449] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1699), 1, - sym__space, - ACTIONS(7800), 1, - anon_sym_DOT_DOT2, - STATE(4083), 1, - sym_comment, - ACTIONS(1615), 2, + ACTIONS(2935), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(7802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121528] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7464), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - anon_sym_RBRACE, - ACTIONS(7806), 1, - sym__entry_separator, - STATE(352), 1, - sym_path, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4084), 1, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3539), 1, + sym__blosure, + STATE(3984), 1, + aux_sym__repeat_newline, + STATE(4091), 1, sym_comment, - STATE(5049), 1, - sym_cell_path, - [121553] = 6, - ACTIONS(103), 1, + STATE(3210), 2, + sym_block, + sym_val_closure, + [121472] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2170), 1, - sym__space, - ACTIONS(7808), 1, + ACTIONS(4153), 1, anon_sym_DOT_DOT2, - STATE(4085), 1, + ACTIONS(7807), 1, + sym__unquoted_pattern, + STATE(4092), 1, sym_comment, - ACTIONS(2172), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7810), 2, + ACTIONS(4155), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121574] = 7, + ACTIONS(7805), 2, + sym_filesize_unit, + sym_duration_unit, + [121493] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(7809), 1, anon_sym_DQUOTE2, - STATE(4086), 1, + STATE(4093), 1, sym_comment, - STATE(4090), 1, + STATE(4099), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [121597] = 7, + [121516] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6667), 1, + ACTIONS(7811), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6995), 1, + ACTIONS(7813), 1, + aux_sym__immediate_decimal_token5, + STATE(4094), 1, + sym_comment, + ACTIONS(1730), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1732), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [121537] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6658), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7285), 1, + ACTIONS(7351), 1, aux_sym_unquoted_token2, - STATE(4087), 1, + STATE(4095), 1, sym_comment, - STATE(4569), 1, + STATE(4453), 1, sym__immediate_decimal, - ACTIONS(6997), 2, + ACTIONS(7009), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [121620] = 7, + [121560] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6926), 1, + ACTIONS(6917), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7003), 1, + ACTIONS(7013), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7285), 1, + ACTIONS(7351), 1, aux_sym_unquoted_token2, - STATE(4088), 1, + STATE(4096), 1, sym_comment, - STATE(5128), 1, + STATE(5371), 1, sym__immediate_decimal, - ACTIONS(7005), 2, + ACTIONS(7015), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [121643] = 6, + [121583] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_record, - STATE(4089), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3563), 1, + sym__blosure, + STATE(4097), 1, sym_comment, - STATE(5453), 1, - sym__immediate_decimal, - ACTIONS(7695), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7711), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [121664] = 7, + STATE(3210), 2, + sym_block, + sym_val_closure, + [121606] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2511), 1, + sym_path, + STATE(2998), 1, + sym_cell_path, + STATE(4098), 1, + sym_comment, + ACTIONS(5379), 2, + anon_sym_EQ, + anon_sym_GT2, + [121629] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7814), 1, + ACTIONS(7815), 1, anon_sym_DQUOTE2, - STATE(4090), 1, + STATE(4099), 1, sym_comment, - STATE(4136), 1, + STATE(4182), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [121687] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4091), 1, - sym_comment, - STATE(4533), 1, - sym_block, - ACTIONS(7816), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121706] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7818), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7820), 1, - aux_sym__immediate_decimal_token5, - STATE(4092), 1, - sym_comment, - ACTIONS(1730), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1732), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121727] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4093), 1, - sym_comment, - STATE(4534), 1, - sym_block, - ACTIONS(7816), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121746] = 7, + [121652] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7822), 1, + ACTIONS(7817), 1, anon_sym_DQUOTE2, - STATE(4094), 1, + STATE(4100), 1, sym_comment, - STATE(4098), 1, + STATE(4104), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [121769] = 7, + [121675] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5118), 1, + ACTIONS(5132), 1, aux_sym_unquoted_token2, - ACTIONS(6667), 1, + ACTIONS(6658), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6995), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token2, - STATE(4095), 1, + STATE(4101), 1, sym_comment, - STATE(4569), 1, + STATE(4453), 1, sym__immediate_decimal, - ACTIONS(6997), 2, + ACTIONS(7009), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [121792] = 7, + [121698] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5118), 1, + ACTIONS(5132), 1, aux_sym_unquoted_token2, - ACTIONS(6926), 1, + ACTIONS(6917), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7003), 1, + ACTIONS(7013), 1, aux_sym__immediate_decimal_token2, - STATE(4096), 1, + STATE(4102), 1, sym_comment, - STATE(5128), 1, + STATE(5371), 1, sym__immediate_decimal, - ACTIONS(7005), 2, + ACTIONS(7015), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [121815] = 7, + [121721] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3514), 1, + STATE(3586), 1, sym__blosure, - STATE(4097), 1, + STATE(4103), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [121838] = 7, + [121744] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7824), 1, + ACTIONS(7819), 1, anon_sym_DQUOTE2, - STATE(4098), 1, + STATE(4104), 1, sym_comment, - STATE(4136), 1, + STATE(4182), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [121861] = 8, + [121767] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7464), 1, - anon_sym_DOT2, - ACTIONS(7826), 1, - anon_sym_RBRACE, - ACTIONS(7828), 1, + ACTIONS(1464), 1, sym__entry_separator, - STATE(352), 1, - sym_path, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4099), 1, + ACTIONS(7795), 1, + anon_sym_BANG, + STATE(4105), 1, sym_comment, - STATE(5021), 1, - sym_cell_path, - [121886] = 7, + ACTIONS(1462), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [121786] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7830), 1, + ACTIONS(7821), 1, anon_sym_DQUOTE2, - STATE(4100), 1, + STATE(4106), 1, sym_comment, - STATE(4103), 1, + STATE(4110), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [121909] = 7, + [121809] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5061), 1, + ACTIONS(5046), 1, aux_sym_unquoted_token2, - ACTIONS(6667), 1, + ACTIONS(6658), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6995), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token2, - STATE(4101), 1, + STATE(4107), 1, sym_comment, - STATE(4569), 1, + STATE(4453), 1, sym__immediate_decimal, - ACTIONS(6997), 2, + ACTIONS(7009), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [121932] = 7, + [121832] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5061), 1, + ACTIONS(5046), 1, aux_sym_unquoted_token2, - ACTIONS(6926), 1, + ACTIONS(6917), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7003), 1, + ACTIONS(7013), 1, aux_sym__immediate_decimal_token2, - STATE(4102), 1, + STATE(4108), 1, sym_comment, - STATE(5128), 1, + STATE(5371), 1, sym__immediate_decimal, - ACTIONS(7005), 2, + ACTIONS(7015), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [121955] = 7, - ACTIONS(103), 1, + [121855] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7832), 1, - anon_sym_DQUOTE2, - STATE(4103), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3474), 1, + sym__blosure, + STATE(4067), 1, + aux_sym__repeat_newline, + STATE(4109), 1, sym_comment, - STATE(4136), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, - sym_expr_interpolated, - ACTIONS(7683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [121978] = 7, + STATE(3210), 2, + sym_block, + sym_val_closure, + [121878] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7834), 1, + ACTIONS(7823), 1, anon_sym_DQUOTE2, - STATE(4104), 1, + STATE(4110), 1, sym_comment, - STATE(4108), 1, + STATE(4182), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122001] = 7, + [121901] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3429), 1, + STATE(3134), 1, sym__blosure, - STATE(4105), 1, + STATE(4111), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122024] = 8, - ACTIONS(103), 1, + [121924] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, - sym_identifier, - ACTIONS(7576), 1, - anon_sym_DOLLAR, - STATE(2776), 1, - sym__variable_name, - STATE(2788), 1, - sym_val_variable, - STATE(4106), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3485), 1, + sym__blosure, + STATE(4112), 1, sym_comment, - STATE(4830), 1, - sym__assignment_pattern_parenthesized, - [122049] = 8, - ACTIONS(103), 1, + STATE(3210), 2, + sym_block, + sym_val_closure, + [121947] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, - sym_identifier, - ACTIONS(7478), 1, - anon_sym_DOLLAR, - STATE(2788), 1, - sym_val_variable, - STATE(4107), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3134), 1, + sym__blosure, + STATE(4071), 1, + aux_sym__repeat_newline, + STATE(4113), 1, sym_comment, - STATE(4228), 1, - sym__variable_name, - STATE(4845), 1, - sym__assignment_pattern_parenthesized, - [122074] = 7, + STATE(3210), 2, + sym_block, + sym_val_closure, + [121970] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3485), 1, + sym__blosure, + STATE(4073), 1, + aux_sym__repeat_newline, + STATE(4114), 1, + sym_comment, + STATE(3210), 2, + sym_block, + sym_val_closure, + [121993] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7836), 1, + ACTIONS(7825), 1, anon_sym_DQUOTE2, - STATE(4108), 1, + STATE(4115), 1, sym_comment, - STATE(4136), 1, + STATE(4119), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122097] = 6, + [122016] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2104), 1, + ACTIONS(2241), 1, sym__space, - ACTIONS(7838), 1, + ACTIONS(7827), 1, anon_sym_DOT_DOT2, - STATE(4109), 1, + STATE(4116), 1, sym_comment, - ACTIONS(2106), 2, + ACTIONS(2243), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7840), 2, + ACTIONS(7829), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [122118] = 6, + [122037] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2249), 1, sym__space, - ACTIONS(7842), 1, + ACTIONS(7831), 1, anon_sym_DOT_DOT2, - STATE(4110), 1, + STATE(4117), 1, sym_comment, - ACTIONS(2114), 2, + ACTIONS(2251), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7844), 2, + ACTIONS(7833), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [122139] = 8, + [122058] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3490), 1, + sym__blosure, + STATE(4081), 1, + aux_sym__repeat_newline, + STATE(4118), 1, + sym_comment, + STATE(3210), 2, + sym_block, + sym_val_closure, + [122081] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, - sym_identifier, - ACTIONS(7478), 1, - anon_sym_DOLLAR, - STATE(2788), 1, - sym_val_variable, - STATE(4111), 1, + ACTIONS(7688), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_DQUOTE2, + STATE(4119), 1, sym_comment, - STATE(4228), 1, - sym__variable_name, - STATE(4857), 1, - sym__assignment_pattern_parenthesized, - [122164] = 7, + STATE(4182), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4384), 1, + sym_expr_interpolated, + ACTIONS(7690), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [122104] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(7837), 1, + anon_sym_if, + ACTIONS(7839), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7841), 1, + anon_sym_PIPE, + ACTIONS(7843), 1, + anon_sym_EQ_GT, + STATE(4120), 1, + sym_comment, + STATE(4486), 1, + aux_sym_match_pattern_repeat1, + STATE(5328), 1, + sym_match_guard, + [122129] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3429), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3494), 1, sym__blosure, - STATE(4112), 1, + STATE(4121), 1, sym_comment, - STATE(4142), 1, + STATE(3210), 2, + sym_block, + sym_val_closure, + [122152] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7688), 1, + anon_sym_LPAREN, + ACTIONS(7845), 1, + anon_sym_DQUOTE2, + STATE(4122), 1, + sym_comment, + STATE(4125), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4384), 1, + sym_expr_interpolated, + ACTIONS(7690), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [122175] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3494), 1, + sym__blosure, + STATE(4083), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(4123), 1, + sym_comment, + STATE(3210), 2, sym_block, sym_val_closure, - [122187] = 6, + [122198] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1528), 1, + sym__entry_separator, + ACTIONS(7518), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(4124), 1, + sym_comment, + STATE(4179), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1526), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [122221] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7688), 1, + anon_sym_LPAREN, + ACTIONS(7847), 1, + anon_sym_DQUOTE2, + STATE(4125), 1, + sym_comment, + STATE(4182), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4384), 1, + sym_expr_interpolated, + ACTIONS(7690), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [122244] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7849), 1, + anon_sym_DOT, + ACTIONS(7851), 1, + aux_sym__immediate_decimal_token5, + STATE(4126), 1, + sym_comment, + ACTIONS(1784), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [122265] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2257), 1, sym__space, - ACTIONS(7846), 1, + ACTIONS(7853), 1, anon_sym_DOT_DOT2, - STATE(4113), 1, + STATE(4127), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(2259), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7848), 2, + ACTIONS(7855), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122286] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + sym__entry_separator, + ACTIONS(7857), 1, + anon_sym_DOT_DOT2, + STATE(4128), 1, + sym_comment, + ACTIONS(2110), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7859), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [122208] = 7, + [122307] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7850), 1, + ACTIONS(7861), 1, anon_sym_DQUOTE2, - STATE(4114), 1, + STATE(4129), 1, sym_comment, - STATE(4115), 1, + STATE(4132), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122231] = 7, + [122330] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7852), 1, + ACTIONS(7863), 1, anon_sym_DQUOTE2, - STATE(4115), 1, + STATE(4130), 1, sym_comment, - STATE(4136), 1, + STATE(4182), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122254] = 7, + [122353] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7865), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7867), 1, + aux_sym__immediate_decimal_token5, + STATE(4131), 1, + sym_comment, + ACTIONS(1730), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [122374] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7688), 1, anon_sym_LPAREN, - ACTIONS(7854), 1, + ACTIONS(7869), 1, anon_sym_DQUOTE2, - STATE(4116), 1, + STATE(4132), 1, sym_comment, - STATE(4119), 1, + STATE(4182), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, + STATE(4384), 1, sym_expr_interpolated, - ACTIONS(7683), 2, + ACTIONS(7690), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122277] = 7, + [122397] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3430), 1, + STATE(3138), 1, sym__blosure, - STATE(4117), 1, + STATE(4133), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122300] = 7, + [122420] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3430), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3496), 1, sym__blosure, - STATE(4118), 1, + STATE(4134), 1, sym_comment, - STATE(4144), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122323] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7856), 1, - anon_sym_DQUOTE2, - STATE(4119), 1, - sym_comment, - STATE(4136), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4475), 1, - sym_expr_interpolated, - ACTIONS(7683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [122346] = 7, + [122443] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3431), 1, + STATE(3496), 1, sym__blosure, - STATE(4120), 1, - sym_comment, - STATE(4146), 1, + STATE(4097), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(4135), 1, + sym_comment, + STATE(3210), 2, sym_block, sym_val_closure, - [122369] = 7, + [122466] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(1786), 1, + sym__unquoted_pattern, + ACTIONS(7871), 1, + anon_sym_DOT, + ACTIONS(7873), 1, + aux_sym__immediate_decimal_token5, + STATE(4136), 1, + sym_comment, + ACTIONS(1784), 3, sym__newline, - ACTIONS(7658), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122487] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7424), 1, + anon_sym_DOT2, + STATE(4137), 1, + sym_comment, + STATE(4156), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4521), 1, + sym_path, + ACTIONS(1526), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [122508] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7875), 1, + anon_sym_DOT, + ACTIONS(7877), 1, + aux_sym__immediate_decimal_token5, + STATE(4138), 1, + sym_comment, + ACTIONS(1784), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1786), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [122529] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7879), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7881), 1, + aux_sym__immediate_decimal_token5, + STATE(4139), 1, + sym_comment, + ACTIONS(1730), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1732), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [122550] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3434), 1, + STATE(3093), 1, sym__blosure, - STATE(4121), 1, + STATE(4140), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122392] = 7, + [122573] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3435), 1, + STATE(3418), 1, sym__blosure, - STATE(4122), 1, + STATE(4141), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122415] = 7, + [122596] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3435), 1, + STATE(3093), 1, sym__blosure, - STATE(4123), 1, - sym_comment, - STATE(4171), 1, + STATE(4111), 1, aux_sym__repeat_newline, - STATE(3141), 2, + STATE(4142), 1, + sym_comment, + STATE(3210), 2, sym_block, sym_val_closure, - [122438] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7498), 1, - aux_sym__immediate_decimal_token5, - STATE(4124), 1, - sym_comment, - ACTIONS(1790), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1792), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [122457] = 7, + [122619] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3436), 1, + STATE(3418), 1, sym__blosure, - STATE(4125), 1, + STATE(4112), 1, + aux_sym__repeat_newline, + STATE(4143), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122480] = 8, - ACTIONS(3), 1, + [122642] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(461), 1, - anon_sym_RPAREN, - ACTIONS(7783), 1, - sym__newline, - ACTIONS(7785), 1, - anon_sym_SEMI, - STATE(1365), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4126), 1, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7559), 1, + sym_identifier, + ACTIONS(7561), 1, + anon_sym_DOLLAR, + STATE(2821), 1, + sym__variable_name, + STATE(2822), 1, + sym_val_variable, + STATE(4144), 1, sym_comment, - STATE(4440), 1, - aux_sym__block_body_repeat1, - STATE(4654), 1, - aux_sym__repeat_newline, - [122505] = 5, + STATE(4497), 1, + sym__assignment_pattern, + [122667] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7858), 1, - aux_sym__immediate_decimal_token5, - STATE(4127), 1, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7559), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_DOLLAR, + STATE(2822), 1, + sym_val_variable, + STATE(4145), 1, sym_comment, - ACTIONS(1846), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1848), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [122524] = 6, - ACTIONS(103), 1, + STATE(4310), 1, + sym__variable_name, + STATE(4504), 1, + sym__assignment_pattern, + [122692] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7860), 1, - anon_sym_DOT, - ACTIONS(7862), 1, - aux_sym__immediate_decimal_token5, - STATE(4128), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3429), 1, + sym__blosure, + STATE(4121), 1, + aux_sym__repeat_newline, + STATE(4146), 1, sym_comment, - ACTIONS(1790), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1792), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [122545] = 7, + STATE(3210), 2, + sym_block, + sym_val_closure, + [122715] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__space, - ACTIONS(7777), 1, - anon_sym_EQ2, - ACTIONS(7864), 1, - sym_short_flag_identifier, - STATE(3146), 1, - sym__flag_equals_value, - STATE(4129), 1, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7559), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_DOLLAR, + STATE(2822), 1, + sym_val_variable, + STATE(4147), 1, sym_comment, - ACTIONS(5458), 2, - sym__newline, - anon_sym_SEMI, - [122568] = 6, + STATE(4310), 1, + sym__variable_name, + STATE(4508), 1, + sym__assignment_pattern, + [122740] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5511), 1, + ACTIONS(4290), 1, sym__space, - ACTIONS(7800), 1, - anon_sym_DOT_DOT2, - STATE(4130), 1, + ACTIONS(7774), 1, + anon_sym_EQ2, + ACTIONS(7883), 1, + sym_long_flag_identifier, + STATE(3058), 1, + sym__flag_equals_value, + STATE(4148), 1, sym_comment, - ACTIONS(5509), 2, + ACTIONS(4288), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122589] = 7, + [122763] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3437), 1, + STATE(3101), 1, sym__blosure, - STATE(4131), 1, + STATE(4149), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122612] = 7, + [122786] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3437), 1, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3433), 1, sym__blosure, - STATE(4132), 1, + STATE(4150), 1, sym_comment, - STATE(4172), 1, - aux_sym__repeat_newline, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122635] = 6, - ACTIONS(103), 1, + [122809] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7376), 1, - anon_sym_DOT2, - STATE(3968), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4133), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3575), 1, + sym__blosure, + STATE(4151), 1, sym_comment, - STATE(4582), 1, - sym_path, - ACTIONS(1524), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [122656] = 6, + STATE(3210), 2, + sym_block, + sym_val_closure, + [122832] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7866), 1, - anon_sym_DOT, - ACTIONS(7868), 1, - aux_sym__immediate_decimal_token5, - STATE(4134), 1, + ACTIONS(6658), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7007), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7807), 1, + aux_sym_unquoted_token2, + STATE(4152), 1, sym_comment, - ACTIONS(1790), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1792), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [122677] = 7, + STATE(4453), 1, + sym__immediate_decimal, + ACTIONS(7009), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122855] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3438), 1, + STATE(3101), 1, sym__blosure, - STATE(3961), 1, + STATE(4133), 1, aux_sym__repeat_newline, - STATE(4135), 1, + STATE(4153), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122700] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_LPAREN, - ACTIONS(7876), 1, - anon_sym_DQUOTE2, - STATE(4475), 1, - sym_expr_interpolated, - ACTIONS(7873), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(4136), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [122721] = 4, + [122878] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4137), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3575), 1, + sym__blosure, + STATE(3988), 1, + aux_sym__repeat_newline, + STATE(4154), 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, - [122738] = 4, + STATE(3210), 2, + sym_block, + sym_val_closure, + [122901] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4138), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3433), 1, + sym__blosure, + STATE(4134), 1, + aux_sym__repeat_newline, + STATE(4155), 1, sym_comment, - ACTIONS(767), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(769), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [122755] = 4, - ACTIONS(3), 1, + STATE(3210), 2, + sym_block, + sym_val_closure, + [122924] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4139), 1, + ACTIONS(7885), 1, + anon_sym_DOT2, + STATE(4521), 1, + sym_path, + STATE(4156), 2, sym_comment, - ACTIONS(863), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(865), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [122772] = 6, - ACTIONS(3), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1536), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [122943] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - STATE(4140), 1, - sym_comment, - STATE(5262), 1, - sym__immediate_decimal, - ACTIONS(6926), 2, + ACTIONS(7011), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7494), 1, aux_sym__immediate_decimal_token1, + ACTIONS(7888), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6928), 2, + STATE(4157), 1, + sym_comment, + STATE(4511), 1, + sym__immediate_decimal, + ACTIONS(7890), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [122793] = 6, - ACTIONS(3), 1, + [122966] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern, - STATE(4141), 1, - sym_comment, - STATE(5170), 1, - sym__immediate_decimal, - ACTIONS(6926), 2, + ACTIONS(7011), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7760), 1, aux_sym__immediate_decimal_token1, + ACTIONS(7892), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6928), 2, + STATE(4158), 1, + sym_comment, + STATE(5193), 1, + sym__immediate_decimal, + ACTIONS(7894), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [122814] = 7, + [122989] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7688), 1, + anon_sym_LPAREN, + ACTIONS(7896), 1, + anon_sym_DQUOTE2, + STATE(3987), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4159), 1, + sym_comment, + STATE(4384), 1, + sym_expr_interpolated, + ACTIONS(7690), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [123012] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7688), 1, + anon_sym_LPAREN, + ACTIONS(7898), 1, + anon_sym_DQUOTE2, + STATE(4130), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4160), 1, + sym_comment, + STATE(4384), 1, + sym_expr_interpolated, + ACTIONS(7690), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [123035] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(3441), 1, + STATE(3579), 1, sym__blosure, - STATE(4142), 1, + STATE(4161), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122837] = 7, + [123058] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6917), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7013), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7807), 1, + aux_sym_unquoted_token2, + STATE(4162), 1, + sym_comment, + STATE(5371), 1, + sym__immediate_decimal, + ACTIONS(7015), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [123081] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3441), 1, + STATE(3579), 1, sym__blosure, - STATE(3969), 1, + STATE(3990), 1, aux_sym__repeat_newline, - STATE(4143), 1, + STATE(4163), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122860] = 7, + [123104] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3442), 1, + STATE(3581), 1, sym__blosure, - STATE(4144), 1, + STATE(3991), 1, + aux_sym__repeat_newline, + STATE(4164), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [122883] = 6, + [123127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7878), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7880), 1, - aux_sym__immediate_decimal_token5, - STATE(4145), 1, + ACTIONS(7011), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7900), 1, + anon_sym_DOT_DOT2, + STATE(4165), 1, sym_comment, - ACTIONS(1730), 2, + ACTIONS(7902), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122904] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3443), 1, - sym__blosure, - STATE(4146), 1, - sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [122927] = 6, + ACTIONS(7904), 2, + sym_filesize_unit, + sym_duration_unit, + [123148] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2170), 1, + ACTIONS(2108), 1, sym__entry_separator, - ACTIONS(7882), 1, + ACTIONS(7906), 1, anon_sym_DOT_DOT2, - STATE(4147), 1, + STATE(4166), 1, sym_comment, - ACTIONS(2172), 2, + ACTIONS(2110), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7884), 2, + ACTIONS(7908), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [122948] = 6, + [123169] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2104), 1, + ACTIONS(2241), 1, sym__entry_separator, - ACTIONS(7886), 1, + ACTIONS(7910), 1, anon_sym_DOT_DOT2, - STATE(4148), 1, + STATE(4167), 1, sym_comment, - ACTIONS(2106), 2, + ACTIONS(2243), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7888), 2, + ACTIONS(7912), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [122969] = 6, + [123190] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2249), 1, sym__entry_separator, - ACTIONS(7890), 1, + ACTIONS(7914), 1, anon_sym_DOT_DOT2, - STATE(4149), 1, + STATE(4168), 1, sym_comment, - ACTIONS(2114), 2, + ACTIONS(2251), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7892), 2, + ACTIONS(7916), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [122990] = 6, + [123211] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2257), 1, sym__entry_separator, - ACTIONS(7894), 1, + ACTIONS(7918), 1, anon_sym_DOT_DOT2, - STATE(4150), 1, + STATE(4169), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(2259), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7896), 2, + ACTIONS(7920), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123011] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7570), 1, - anon_sym_DOT2, - STATE(2500), 1, - sym_path, - STATE(4151), 1, - sym_comment, - STATE(4165), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [123032] = 7, + [123232] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6667), 1, + ACTIONS(6658), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6995), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7898), 1, + ACTIONS(7922), 1, aux_sym_unquoted_token2, - STATE(4152), 1, + STATE(4170), 1, sym_comment, - STATE(4569), 1, + STATE(4453), 1, sym__immediate_decimal, - ACTIONS(6997), 2, + ACTIONS(7009), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [123055] = 8, + [123255] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(459), 1, + anon_sym_RPAREN, + ACTIONS(7766), 1, + sym__newline, + ACTIONS(7768), 1, + anon_sym_SEMI, + STATE(1378), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4171), 1, + sym_comment, + STATE(4458), 1, + aux_sym__block_body_repeat1, + STATE(4838), 1, + aux_sym__repeat_newline, + [123280] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7576), 1, + ACTIONS(7561), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(2850), 1, + STATE(2895), 1, sym__variable_name, - STATE(4153), 1, + STATE(4172), 1, sym_comment, - STATE(4385), 1, + STATE(4497), 1, sym__assignment_pattern, - [123080] = 8, + [123305] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7478), 1, + ACTIONS(7567), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(4154), 1, + STATE(4173), 1, sym_comment, - STATE(4190), 1, + STATE(4209), 1, sym__variable_name, - STATE(4388), 1, + STATE(4504), 1, sym__assignment_pattern, - [123105] = 8, + [123330] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7478), 1, + ACTIONS(7567), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(4155), 1, + STATE(4174), 1, sym_comment, - STATE(4190), 1, + STATE(4209), 1, sym__variable_name, - STATE(4391), 1, + STATE(4508), 1, sym__assignment_pattern, - [123130] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7900), 1, - anon_sym_if, - ACTIONS(7902), 1, - sym__newline, - ACTIONS(7904), 1, - anon_sym_PIPE, - ACTIONS(7906), 1, - anon_sym_EQ_GT, - STATE(4156), 1, - sym_comment, - STATE(4483), 1, - aux_sym_match_pattern_repeat1, - STATE(5227), 1, - sym_match_guard, - [123155] = 7, + [123355] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6926), 1, + ACTIONS(6917), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7003), 1, + ACTIONS(7013), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7898), 1, + ACTIONS(7922), 1, aux_sym_unquoted_token2, - STATE(4157), 1, + STATE(4175), 1, sym_comment, - STATE(5128), 1, + STATE(5371), 1, sym__immediate_decimal, - ACTIONS(7005), 2, + ACTIONS(7015), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [123178] = 7, + [123378] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4153), 1, + anon_sym_DOT_DOT2, + ACTIONS(7922), 1, + sym__unquoted_pattern, + STATE(4176), 1, + sym_comment, + ACTIONS(4155), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7805), 2, + sym_filesize_unit, + sym_duration_unit, + [123399] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6914), 1, - anon_sym_LPAREN2, - ACTIONS(7731), 1, + ACTIONS(5348), 1, + anon_sym_RBRACK, + ACTIONS(5350), 1, sym__entry_separator, - STATE(2277), 1, - aux_sym__types_body_repeat2, - STATE(4158), 1, + ACTIONS(7518), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4177), 1, sym_comment, - STATE(4991), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7908), 2, + STATE(5090), 1, + sym_cell_path, + [123424] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7500), 1, + aux_sym__immediate_decimal_token5, + STATE(4178), 1, + sym_comment, + ACTIONS(1784), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1786), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, - [123201] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern_in_list, + [123443] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6987), 1, + ACTIONS(1538), 1, + sym__entry_separator, + ACTIONS(7924), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + ACTIONS(1536), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(4179), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + [123464] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7927), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7910), 1, + STATE(4180), 1, + sym_comment, + ACTIONS(1832), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1834), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [123483] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7929), 1, anon_sym_DOT, - STATE(4159), 1, + ACTIONS(7931), 1, + aux_sym__immediate_decimal_token5, + STATE(4181), 1, sym_comment, - ACTIONS(1790), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123220] = 7, - ACTIONS(3), 1, + ACTIONS(1784), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1786), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [123504] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3443), 1, - sym__blosure, - STATE(3971), 1, - aux_sym__repeat_newline, - STATE(4160), 1, + ACTIONS(7933), 1, + anon_sym_LPAREN, + ACTIONS(7939), 1, + anon_sym_DQUOTE2, + STATE(4384), 1, + sym_expr_interpolated, + ACTIONS(7936), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(4182), 2, sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [123243] = 7, + aux_sym__inter_double_quotes_repeat1, + [123525] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(7658), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(3446), 1, - sym__blosure, - STATE(3976), 1, + STATE(503), 1, aux_sym__repeat_newline, - STATE(4161), 1, + STATE(3584), 1, + sym__blosure, + STATE(4183), 1, sym_comment, - STATE(3141), 2, + STATE(3210), 2, sym_block, sym_val_closure, - [123266] = 8, + [123548] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7576), 1, + ACTIONS(7561), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(2982), 1, + STATE(3034), 1, sym__variable_name, - STATE(4162), 1, + STATE(4184), 1, sym_comment, - STATE(4385), 1, + STATE(4497), 1, sym__assignment_pattern, - [123291] = 8, + [123573] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7478), 1, + ACTIONS(7567), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(4163), 1, + STATE(4185), 1, sym_comment, - STATE(4318), 1, + STATE(4331), 1, sym__variable_name, - STATE(4388), 1, + STATE(4504), 1, sym__assignment_pattern, - [123316] = 8, + [123598] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7478), 1, + ACTIONS(7567), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(4164), 1, + STATE(4186), 1, sym_comment, - STATE(4318), 1, + STATE(4331), 1, sym__variable_name, - STATE(4391), 1, + STATE(4508), 1, sym__assignment_pattern, - [123341] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7912), 1, - anon_sym_DOT2, - STATE(2500), 1, - sym_path, - STATE(4165), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1534), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [123360] = 8, + [123623] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7576), 1, + ACTIONS(7561), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(2923), 1, + STATE(3004), 1, sym__variable_name, - STATE(4166), 1, + STATE(4187), 1, sym_comment, - STATE(4830), 1, + STATE(4900), 1, sym__assignment_pattern_parenthesized, - [123385] = 8, + [123648] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7478), 1, + ACTIONS(7567), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(4167), 1, + STATE(4188), 1, sym_comment, - STATE(4271), 1, + STATE(4282), 1, sym__variable_name, - STATE(4845), 1, + STATE(4904), 1, sym__assignment_pattern_parenthesized, - [123410] = 8, + [123673] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7559), 1, sym_identifier, - ACTIONS(7478), 1, + ACTIONS(7567), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(4168), 1, + STATE(4189), 1, sym_comment, - STATE(4271), 1, + STATE(4282), 1, sym__variable_name, - STATE(4857), 1, + STATE(4778), 1, sym__assignment_pattern_parenthesized, - [123435] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, - ACTIONS(7915), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7917), 1, - aux_sym__immediate_decimal_token5, - STATE(4169), 1, - sym_comment, - ACTIONS(1730), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123456] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7919), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7921), 1, - aux_sym__immediate_decimal_token5, - STATE(4170), 1, - sym_comment, - ACTIONS(1730), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1732), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [123477] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3448), 1, - sym__blosure, - STATE(4171), 1, - sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [123500] = 7, + [123698] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3450), 1, - sym__blosure, - STATE(4172), 1, + STATE(4190), 1, sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [123523] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4179), 1, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - ACTIONS(7898), 1, - sym__unquoted_pattern, - STATE(4173), 1, - sym_comment, - ACTIONS(4181), 2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7689), 2, sym_filesize_unit, sym_duration_unit, - [123544] = 5, + [123715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4174), 1, + STATE(4191), 1, sym_comment, - STATE(4438), 1, - sym_block, - ACTIONS(7789), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123563] = 8, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(777), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [123732] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7783), 1, - sym__newline, - ACTIONS(7785), 1, - anon_sym_SEMI, - ACTIONS(7923), 1, - anon_sym_RPAREN, - STATE(1365), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4175), 1, + STATE(4192), 1, sym_comment, - STATE(4469), 1, - aux_sym__block_body_repeat1, - STATE(4654), 1, - aux_sym__repeat_newline, - [123588] = 6, + ACTIONS(866), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(868), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [123749] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7925), 1, - anon_sym_DQUOTE, - STATE(4176), 1, - sym_comment, - STATE(4377), 1, - aux_sym_string_content_repeat1, - STATE(5180), 1, - sym_string_content, - ACTIONS(7927), 2, - sym__escaped_str_content, - sym_escape_sequence, - [123608] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1848), 1, - sym__unquoted_pattern, - STATE(4177), 1, + ACTIONS(2241), 1, + sym__entry_separator, + ACTIONS(7941), 1, + anon_sym_DOT_DOT2, + STATE(4193), 1, sym_comment, - ACTIONS(1846), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123624] = 4, + ACTIONS(2243), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7943), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123770] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4178), 1, - sym_comment, - ACTIONS(2360), 2, - anon_sym_LPAREN2, + ACTIONS(2249), 1, sym__entry_separator, - ACTIONS(2362), 3, + ACTIONS(7945), 1, + anon_sym_DOT_DOT2, + STATE(4194), 1, + sym_comment, + ACTIONS(2251), 2, anon_sym_RBRACK, anon_sym_RBRACE, - sym__unquoted_pattern_in_list, - [123640] = 7, + ACTIONS(7947), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123791] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5545), 1, + ACTIONS(7626), 1, + anon_sym_DOT2, + STATE(2511), 1, + sym_path, + STATE(4064), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4195), 1, + sym_comment, + ACTIONS(1528), 3, anon_sym_EQ, - ACTIONS(7929), 1, + sym__newline, anon_sym_COLON, - STATE(4179), 1, - sym_comment, - STATE(4854), 1, - aux_sym__repeat_newline, - STATE(5255), 1, - sym_param_type, - [123662] = 7, + [123812] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7931), 1, - sym_identifier, - ACTIONS(7933), 1, - anon_sym_DOLLAR, - STATE(2788), 1, - sym_val_variable, - STATE(4180), 1, - sym_comment, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3585), 1, + sym__blosure, STATE(4196), 1, - sym__variable_name, - STATE(4489), 1, - sym__assignment_pattern, - [123684] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7935), 1, - anon_sym_DQUOTE, - STATE(4181), 1, sym_comment, - STATE(4377), 1, - aux_sym_string_content_repeat1, - STATE(5464), 1, - sym_string_content, - ACTIONS(7927), 2, - sym__escaped_str_content, - sym_escape_sequence, - [123704] = 7, + STATE(3210), 2, + sym_block, + sym_val_closure, + [123835] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_SQUOTE2, - ACTIONS(7941), 1, - sym_unescaped_interpolated_content, - STATE(4182), 1, + ACTIONS(2257), 1, + sym__entry_separator, + ACTIONS(7949), 1, + anon_sym_DOT_DOT2, + STATE(4197), 1, sym_comment, - STATE(4189), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4836), 1, - sym_expr_interpolated, - [123726] = 4, + ACTIONS(2259), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7951), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123856] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(4183), 1, - sym_comment, - ACTIONS(2608), 4, - anon_sym_if, + ACTIONS(2935), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123742] = 5, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3585), 1, + sym__blosure, + STATE(3995), 1, + aux_sym__repeat_newline, + STATE(4198), 1, + sym_comment, + STATE(3210), 2, + sym_block, + sym_val_closure, + [123879] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7943), 1, - aux_sym__immediate_decimal_token5, - STATE(4184), 1, - sym_comment, - ACTIONS(1846), 2, - anon_sym_LPAREN2, + ACTIONS(5412), 1, + anon_sym_RBRACK, + ACTIONS(5414), 1, sym__entry_separator, - ACTIONS(1848), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [123760] = 6, + ACTIONS(7518), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4199), 1, + sym_comment, + STATE(5047), 1, + sym_cell_path, + [123904] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7945), 1, + ACTIONS(7953), 1, anon_sym_DQUOTE, - STATE(4185), 1, + STATE(4200), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5129), 1, + STATE(5275), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [123780] = 7, + [123924] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7941), 1, - sym_unescaped_interpolated_content, - ACTIONS(7947), 1, - anon_sym_SQUOTE2, - STATE(4186), 1, + ACTIONS(2340), 1, + sym__entry_separator, + ACTIONS(7957), 1, + anon_sym_LBRACK2, + STATE(4201), 1, sym_comment, - STATE(4205), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4836), 1, - sym_expr_interpolated, - [123802] = 5, + ACTIONS(2342), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123942] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7949), 1, - aux_sym__immediate_decimal_token5, - STATE(4187), 1, + ACTIONS(7959), 1, + anon_sym_LT, + STATE(4202), 1, sym_comment, - ACTIONS(1846), 2, - anon_sym_LPAREN2, + ACTIONS(5243), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(1848), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [123820] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7951), 1, + ACTIONS(6230), 2, anon_sym_RBRACK, - ACTIONS(7954), 1, - anon_sym_DOT_DOT, - STATE(4188), 1, - sym_comment, - STATE(4209), 1, - aux_sym_parameter_repeat2, - ACTIONS(1398), 2, - sym__newline, - anon_sym_COMMA, - [123840] = 7, + anon_sym_GT2, + [123960] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, - sym_unescaped_interpolated_content, - ACTIONS(7956), 1, + ACTIONS(7963), 1, anon_sym_SQUOTE2, - STATE(4189), 1, + ACTIONS(7965), 1, + sym_unescaped_interpolated_content, + STATE(4203), 1, sym_comment, - STATE(4192), 1, + STATE(4208), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4836), 1, + STATE(4714), 1, sym_expr_interpolated, - [123862] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5728), 1, - anon_sym_EQ, - ACTIONS(7929), 1, - anon_sym_COLON, - STATE(4190), 1, - sym_comment, - STATE(4854), 1, - aux_sym__repeat_newline, - STATE(5179), 1, - sym_param_type, - [123884] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1356), 1, - aux_sym__block_body_repeat1, - STATE(4191), 1, - sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(447), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123902] = 6, + [123982] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7958), 1, - anon_sym_LPAREN, - ACTIONS(7961), 1, - anon_sym_SQUOTE2, - ACTIONS(7963), 1, - sym_unescaped_interpolated_content, - STATE(4836), 1, - sym_expr_interpolated, - STATE(4192), 2, + STATE(4204), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [123922] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2608), 1, + ACTIONS(1730), 2, sym__space, - ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(4193), 1, - sym_comment, - ACTIONS(2610), 2, + ACTIONS(1732), 3, sym__newline, anon_sym_SEMI, - [123942] = 6, + sym__unquoted_pattern, + [123998] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7966), 1, + ACTIONS(7967), 1, anon_sym_DQUOTE, - STATE(4194), 1, + STATE(4205), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5133), 1, + STATE(5289), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [123962] = 7, + [124018] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, + ACTIONS(7965), 1, sym_unescaped_interpolated_content, - ACTIONS(7968), 1, + ACTIONS(7969), 1, anon_sym_SQUOTE2, - STATE(4195), 1, + STATE(4206), 1, sym_comment, - STATE(4201), 1, + STATE(4217), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4836), 1, + STATE(4714), 1, sym_expr_interpolated, - [123984] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5653), 1, - anon_sym_EQ, - ACTIONS(7929), 1, - anon_sym_COLON, - STATE(4196), 1, - sym_comment, - STATE(4854), 1, - aux_sym__repeat_newline, - STATE(5507), 1, - sym_param_type, - [124006] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2572), 1, - sym__entry_separator, - ACTIONS(2576), 1, - anon_sym_LPAREN2, - STATE(4197), 1, - sym_comment, - ACTIONS(2574), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124026] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1972), 1, - sym__entry_separator, - ACTIONS(1974), 1, - anon_sym_RBRACE, - ACTIONS(7970), 1, - anon_sym_DOT_DOT2, - STATE(4198), 1, - sym_comment, - ACTIONS(7972), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [124046] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4199), 1, - sym_comment, - STATE(4720), 1, - sym_block, - ACTIONS(7789), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124064] = 5, + [124040] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(4200), 1, + STATE(4207), 1, sym_comment, - STATE(4733), 1, + STATE(4689), 1, sym_block, - ACTIONS(7789), 3, + ACTIONS(7754), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124082] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7941), 1, - sym_unescaped_interpolated_content, - ACTIONS(7974), 1, - anon_sym_SQUOTE2, - STATE(4192), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4201), 1, - sym_comment, - STATE(4836), 1, - sym_expr_interpolated, - [124104] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7771), 1, - anon_sym_DOT_DOT2, - ACTIONS(7976), 1, - anon_sym_RBRACE, - ACTIONS(7978), 1, - sym__entry_separator, - STATE(4202), 1, - sym_comment, - ACTIONS(7773), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [124124] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7980), 1, - anon_sym_DQUOTE, - STATE(4203), 1, - sym_comment, - STATE(4377), 1, - aux_sym_string_content_repeat1, - STATE(5284), 1, - sym_string_content, - ACTIONS(7927), 2, - sym__escaped_str_content, - sym_escape_sequence, - [124144] = 7, + [124058] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, + ACTIONS(7965), 1, sym_unescaped_interpolated_content, - ACTIONS(7982), 1, + ACTIONS(7971), 1, anon_sym_SQUOTE2, - STATE(4204), 1, + STATE(4208), 1, sym_comment, - STATE(4210), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4836), 1, - sym_expr_interpolated, - [124166] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7941), 1, - sym_unescaped_interpolated_content, - ACTIONS(7984), 1, - anon_sym_SQUOTE2, - STATE(4192), 1, + STATE(4327), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4205), 1, - sym_comment, - STATE(4836), 1, + STATE(4714), 1, sym_expr_interpolated, - [124188] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2616), 1, - sym__entry_separator, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - sym__unquoted_pattern_in_list, - STATE(4206), 1, - sym_comment, - ACTIONS(2618), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124208] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3771), 1, - anon_sym_LBRACK, - ACTIONS(3958), 1, - sym__newline, - STATE(1995), 1, - aux_sym__types_body_repeat1, - STATE(4207), 1, - sym_comment, - STATE(4823), 1, - sym_val_list, - STATE(4839), 1, - aux_sym__table_body_repeat1, - [124230] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1553), 1, - sym__entry_separator, - STATE(4208), 1, - sym_comment, - ACTIONS(1551), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [124246] = 4, + [124080] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6889), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7986), 2, + ACTIONS(2935), 1, sym__newline, - anon_sym_COMMA, - STATE(4209), 2, - sym_comment, - aux_sym_parameter_repeat2, - [124262] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7941), 1, - sym_unescaped_interpolated_content, - ACTIONS(7989), 1, - anon_sym_SQUOTE2, - STATE(4192), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4210), 1, + ACTIONS(5766), 1, + anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_COLON, + STATE(4209), 1, sym_comment, - STATE(4836), 1, - sym_expr_interpolated, - [124284] = 6, + STATE(4732), 1, + aux_sym__repeat_newline, + STATE(5305), 1, + sym_param_type, + [124102] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7771), 1, + ACTIONS(7742), 1, anon_sym_DOT_DOT2, - ACTIONS(7991), 1, + ACTIONS(7975), 1, anon_sym_RBRACE, - ACTIONS(7993), 1, - sym__entry_separator, - STATE(4211), 1, - sym_comment, - ACTIONS(7773), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [124304] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - sym__entry_separator, - STATE(4212), 1, - sym_comment, - ACTIONS(1468), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [124320] = 4, + ACTIONS(7977), 1, + sym__entry_separator, + STATE(4210), 1, + sym_comment, + ACTIONS(7744), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124122] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(2596), 1, sym__unquoted_pattern, - STATE(4213), 1, + STATE(4211), 1, sym_comment, - ACTIONS(1895), 4, + ACTIONS(2590), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [124336] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2608), 1, - sym__entry_separator, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_list, - STATE(4214), 1, - sym_comment, - ACTIONS(2610), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124356] = 4, + [124138] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4215), 1, + STATE(4212), 1, sym_comment, - ACTIONS(2360), 2, + ACTIONS(2570), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2362), 3, + ACTIONS(2572), 3, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, sym__unquoted_pattern_in_list, - [124372] = 5, - ACTIONS(3), 1, + [124154] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4216), 1, + STATE(4213), 1, sym_comment, - STATE(4855), 1, - sym_block, - ACTIONS(7767), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124390] = 6, + ACTIONS(6505), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6507), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [124170] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7771), 1, + ACTIONS(7742), 1, anon_sym_DOT_DOT2, - ACTIONS(7995), 1, + ACTIONS(7979), 1, anon_sym_RBRACE, - ACTIONS(7997), 1, + ACTIONS(7981), 1, sym__entry_separator, - STATE(4217), 1, + STATE(4214), 1, sym_comment, - ACTIONS(7773), 2, + ACTIONS(7744), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [124410] = 6, + [124190] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7999), 1, + ACTIONS(7983), 1, anon_sym_DQUOTE, - STATE(4218), 1, + STATE(4215), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5391), 1, + STATE(5376), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [124430] = 7, + [124210] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, + ACTIONS(7965), 1, sym_unescaped_interpolated_content, - ACTIONS(8001), 1, + ACTIONS(7985), 1, anon_sym_SQUOTE2, - STATE(4219), 1, + STATE(4216), 1, sym_comment, STATE(4222), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4836), 1, + STATE(4714), 1, + sym_expr_interpolated, + [124232] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7961), 1, + anon_sym_LPAREN, + ACTIONS(7965), 1, + sym_unescaped_interpolated_content, + ACTIONS(7987), 1, + anon_sym_SQUOTE2, + STATE(4217), 1, + sym_comment, + STATE(4327), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4714), 1, sym_expr_interpolated, - [124452] = 7, + [124254] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7931), 1, - sym_identifier, - ACTIONS(7933), 1, + ACTIONS(7989), 1, + anon_sym_RBRACK, + ACTIONS(7992), 1, + anon_sym_DOT_DOT, + STATE(4218), 1, + sym_comment, + STATE(4296), 1, + aux_sym_parameter_repeat2, + ACTIONS(1398), 2, + sym__newline, + anon_sym_COMMA, + [124274] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4219), 1, + sym_comment, + STATE(4296), 1, + aux_sym_parameter_repeat2, + ACTIONS(1398), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7992), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124292] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5326), 1, anon_sym_DOLLAR, - STATE(2788), 1, + ACTIONS(7746), 1, + sym_identifier, + STATE(2939), 1, + sym__variable_name, + STATE(3247), 1, sym_val_variable, STATE(4220), 1, sym_comment, - STATE(4228), 1, - sym__variable_name, - STATE(4674), 1, - sym__assignment_pattern_parenthesized, - [124474] = 7, + [124314] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(3030), 1, - sym_block, + ACTIONS(1784), 1, + sym__entry_separator, + ACTIONS(7005), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7994), 1, + anon_sym_DOT, STATE(4221), 1, sym_comment, - STATE(4430), 1, - aux_sym__repeat_newline, - [124496] = 7, + ACTIONS(1786), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [124334] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, + ACTIONS(7965), 1, sym_unescaped_interpolated_content, - ACTIONS(8003), 1, + ACTIONS(7996), 1, anon_sym_SQUOTE2, - STATE(4192), 1, - aux_sym__inter_single_quotes_repeat1, STATE(4222), 1, sym_comment, - STATE(4836), 1, + STATE(4327), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4714), 1, sym_expr_interpolated, - [124518] = 6, + [124356] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1226), 1, - sym__entry_separator, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern_in_list, STATE(4223), 1, sym_comment, - ACTIONS(1012), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124538] = 4, + ACTIONS(1832), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1834), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [124372] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4224), 1, sym_comment, - ACTIONS(2360), 2, + ACTIONS(1919), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(2362), 3, + ACTIONS(1921), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [124554] = 4, + [124388] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3870), 1, + anon_sym_LBRACE, STATE(4225), 1, sym_comment, - ACTIONS(1732), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1730), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [124570] = 6, + STATE(4771), 1, + sym_block, + ACTIONS(7784), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124406] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8005), 1, + ACTIONS(7998), 1, anon_sym_DQUOTE, STATE(4226), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5501), 1, + STATE(5483), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [124590] = 7, + [124426] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, + ACTIONS(7965), 1, sym_unescaped_interpolated_content, - ACTIONS(8007), 1, + ACTIONS(8000), 1, anon_sym_SQUOTE2, STATE(4227), 1, sym_comment, STATE(4231), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4836), 1, + STATE(4714), 1, sym_expr_interpolated, - [124612] = 7, + [124448] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5627), 1, - anon_sym_EQ, - ACTIONS(7929), 1, - anon_sym_COLON, + STATE(1367), 1, + aux_sym__block_body_repeat1, STATE(4228), 1, sym_comment, - STATE(4854), 1, - aux_sym__repeat_newline, - STATE(5478), 1, - sym_param_type, - [124634] = 6, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3064), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124466] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1234), 1, - sym__entry_separator, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern_in_list, + ACTIONS(1784), 1, + sym__space, + ACTIONS(7217), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8002), 1, + anon_sym_DOT, STATE(4229), 1, sym_comment, - ACTIONS(1020), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124654] = 6, + ACTIONS(1786), 2, + sym__newline, + anon_sym_SEMI, + [124486] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(2652), 1, - sym__space, STATE(4230), 1, sym_comment, - ACTIONS(2654), 2, - sym__newline, - anon_sym_SEMI, - [124674] = 7, + ACTIONS(2570), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2572), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [124502] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, + ACTIONS(7965), 1, sym_unescaped_interpolated_content, - ACTIONS(8009), 1, + ACTIONS(8004), 1, anon_sym_SQUOTE2, - STATE(4192), 1, - aux_sym__inter_single_quotes_repeat1, STATE(4231), 1, sym_comment, - STATE(4836), 1, + STATE(4327), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4714), 1, sym_expr_interpolated, - [124696] = 6, - ACTIONS(3), 1, + [124524] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8011), 1, - anon_sym_QMARK2, - ACTIONS(8013), 1, - anon_sym_BANG, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7559), 1, + sym_identifier, + ACTIONS(7561), 1, + anon_sym_DOLLAR, + STATE(2822), 1, + sym_val_variable, + STATE(2844), 1, + sym__variable_name, STATE(4232), 1, sym_comment, - STATE(4993), 1, - sym__path_suffix, - ACTIONS(1444), 2, - sym__table_head_separator, - anon_sym_DOT2, - [124716] = 6, - ACTIONS(103), 1, + [124546] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1699), 1, - sym__space, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(1786), 1, sym__unquoted_pattern, + ACTIONS(7873), 1, + aux_sym__immediate_decimal_token5, STATE(4233), 1, sym_comment, - ACTIONS(1615), 2, + ACTIONS(1784), 3, sym__newline, - anon_sym_SEMI, - [124736] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5273), 1, - anon_sym_DOLLAR, - ACTIONS(7476), 1, - sym_identifier, - STATE(2788), 1, - sym_val_variable, - STATE(4234), 1, - sym_comment, - STATE(5096), 1, - sym__variable_name, - [124758] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124564] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2616), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2584), 1, sym__space, - ACTIONS(2620), 1, + ACTIONS(2588), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, - sym__unquoted_pattern, - STATE(4235), 1, + STATE(4234), 1, sym_comment, - ACTIONS(2618), 2, + ACTIONS(2586), 2, sym__newline, anon_sym_SEMI, - [124778] = 6, + [124584] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8015), 1, - anon_sym_DQUOTE, - STATE(4236), 1, + ACTIONS(1547), 1, + sym__entry_separator, + STATE(4235), 1, sym_comment, - STATE(4377), 1, - aux_sym_string_content_repeat1, - STATE(5097), 1, - sym_string_content, - ACTIONS(7927), 2, - sym__escaped_str_content, - sym_escape_sequence, - [124798] = 6, - ACTIONS(103), 1, + ACTIONS(1545), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [124600] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1982), 1, - sym__space, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern, - STATE(4237), 1, + STATE(1368), 1, + aux_sym__block_body_repeat1, + STATE(4236), 1, sym_comment, - ACTIONS(1984), 2, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [124818] = 6, + ACTIONS(3060), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124618] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8017), 1, + ACTIONS(8006), 1, anon_sym_DQUOTE, - STATE(4238), 1, + STATE(4237), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5112), 1, + STATE(5523), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [124838] = 5, + [124638] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7961), 1, + anon_sym_LPAREN, + ACTIONS(7965), 1, + sym_unescaped_interpolated_content, + ACTIONS(8008), 1, + anon_sym_SQUOTE2, + STATE(4238), 1, + sym_comment, + STATE(4243), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4714), 1, + sym_expr_interpolated, + [124660] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, STATE(4239), 1, sym_comment, - STATE(4760), 1, + STATE(4773), 1, sym_block, - ACTIONS(7713), 3, + ACTIONS(7784), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124856] = 4, - ACTIONS(103), 1, + [124678] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1885), 1, + sym__table_head_separator, + ACTIONS(8010), 1, + anon_sym_DOT2, STATE(4240), 1, sym_comment, - ACTIONS(1730), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1732), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [124872] = 6, - ACTIONS(103), 1, + STATE(4388), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(5088), 1, + sym_path, + STATE(5253), 1, + sym_cell_path, + [124700] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8019), 1, - anon_sym_DQUOTE, + ACTIONS(1641), 1, + sym__unquoted_pattern, STATE(4241), 1, sym_comment, - STATE(4377), 1, - aux_sym_string_content_repeat1, - STATE(5125), 1, - sym_string_content, - ACTIONS(7927), 2, - sym__escaped_str_content, - sym_escape_sequence, - [124892] = 7, + ACTIONS(2090), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124716] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7941), 1, - sym_unescaped_interpolated_content, - ACTIONS(8021), 1, - anon_sym_SQUOTE2, - STATE(4192), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4242), 1, - sym_comment, - STATE(4836), 1, - sym_expr_interpolated, - [124914] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1972), 1, - anon_sym_LBRACE, - ACTIONS(8023), 1, + ACTIONS(2090), 1, + sym__entry_separator, + ACTIONS(2092), 1, + anon_sym_RBRACE, + ACTIONS(8012), 1, anon_sym_DOT_DOT2, - STATE(4243), 1, + STATE(4242), 1, sym_comment, - ACTIONS(8025), 2, + ACTIONS(8014), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [124934] = 6, + [124736] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8027), 1, - anon_sym_DQUOTE, - STATE(4244), 1, + ACTIONS(7961), 1, + anon_sym_LPAREN, + ACTIONS(7965), 1, + sym_unescaped_interpolated_content, + ACTIONS(8016), 1, + anon_sym_SQUOTE2, + STATE(4243), 1, sym_comment, - STATE(4377), 1, - aux_sym_string_content_repeat1, - STATE(5136), 1, - sym_string_content, - ACTIONS(7927), 2, - sym__escaped_str_content, - sym_escape_sequence, - [124954] = 7, + STATE(4327), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4714), 1, + sym_expr_interpolated, + [124758] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(1866), 1, sym__table_head_separator, - ACTIONS(8029), 1, + ACTIONS(8010), 1, anon_sym_DOT2, - STATE(4245), 1, + STATE(4244), 1, sym_comment, - STATE(4354), 1, + STATE(4388), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4916), 1, + STATE(5088), 1, sym_path, - STATE(5246), 1, + STATE(5469), 1, sym_cell_path, - [124976] = 4, + [124780] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4246), 1, - sym_comment, - ACTIONS(1730), 2, + ACTIONS(2590), 1, + sym__space, + ACTIONS(2594), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1732), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [124992] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4247), 1, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(4245), 1, sym_comment, - ACTIONS(1897), 2, + ACTIONS(2592), 2, + sym__newline, + anon_sym_SEMI, + [124800] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7698), 1, + anon_sym_RBRACK, + ACTIONS(7706), 1, + sym__entry_separator, + ACTIONS(7742), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1895), 3, - anon_sym_LBRACE, + STATE(4246), 1, + sym_comment, + ACTIONS(7744), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [125008] = 4, + [124820] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8018), 1, + anon_sym_DQUOTE, + STATE(4247), 1, + sym_comment, + STATE(4658), 1, + aux_sym_string_content_repeat1, + STATE(5113), 1, + sym_string_content, + ACTIONS(7955), 2, + sym__escaped_str_content, + sym_escape_sequence, + [124840] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2622), 1, + ACTIONS(1963), 1, sym__unquoted_pattern, STATE(4248), 1, sym_comment, - ACTIONS(2616), 4, + ACTIONS(2574), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125024] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8031), 1, - anon_sym_DQUOTE, - STATE(4249), 1, - sym_comment, - STATE(4377), 1, - aux_sym_string_content_repeat1, - STATE(5145), 1, - sym_string_content, - ACTIONS(7927), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125044] = 4, + [124856] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8033), 1, + ACTIONS(8020), 1, anon_sym_BANG, - STATE(4250), 1, + STATE(4249), 1, sym_comment, - ACTIONS(1460), 4, + ACTIONS(1462), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [125060] = 4, + [124872] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4251), 1, + STATE(4250), 1, sym_comment, - ACTIONS(1846), 2, + ACTIONS(6529), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1848), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [125076] = 4, - ACTIONS(103), 1, + ACTIONS(6531), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [124888] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4252), 1, + STATE(4251), 1, sym_comment, - ACTIONS(1895), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1897), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [125092] = 6, + STATE(5107), 1, + sym__immediate_decimal, + ACTIONS(7760), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7762), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [124906] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8035), 1, + ACTIONS(8022), 1, anon_sym_DQUOTE, - STATE(4253), 1, + STATE(4252), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5152), 1, + STATE(5127), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [125112] = 6, + [124926] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8024), 1, + aux_sym__immediate_decimal_token5, + STATE(4253), 1, + sym_comment, + ACTIONS(1832), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1834), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [124944] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8037), 1, + ACTIONS(8026), 1, anon_sym_DQUOTE, STATE(4254), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5159), 1, + STATE(5140), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [125132] = 4, - ACTIONS(3), 1, + [124964] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2634), 1, - sym__unquoted_pattern, STATE(4255), 1, sym_comment, - ACTIONS(1234), 4, - anon_sym_if, + ACTIONS(2570), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2572), 3, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125148] = 6, + anon_sym_SEMI, + sym__unquoted_pattern, + [124980] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8039), 1, - anon_sym_DQUOTE, + ACTIONS(2598), 1, + sym__space, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4256), 1, sym_comment, - STATE(4377), 1, - aux_sym_string_content_repeat1, - STATE(5166), 1, - sym_string_content, - ACTIONS(7927), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125168] = 6, + ACTIONS(2600), 2, + sym__newline, + anon_sym_SEMI, + [125000] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8041), 1, + ACTIONS(8028), 1, anon_sym_DQUOTE, STATE(4257), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5173), 1, + STATE(5151), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [125188] = 6, + [125020] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4353), 1, - sym__space, - ACTIONS(7777), 1, - anon_sym_EQ2, - STATE(3200), 1, - sym__flag_equals_value, + ACTIONS(7931), 1, + aux_sym__immediate_decimal_token5, STATE(4258), 1, sym_comment, - ACTIONS(4351), 2, - sym__newline, - anon_sym_SEMI, - [125208] = 7, + ACTIONS(1784), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1786), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [125038] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5360), 1, - sym__entry_separator, - ACTIONS(7464), 1, - anon_sym_DOT2, - STATE(352), 1, - sym_path, - STATE(4013), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(8030), 1, + anon_sym_DQUOTE, STATE(4259), 1, sym_comment, - STATE(4358), 1, - sym_cell_path, - [125230] = 6, - ACTIONS(103), 1, + STATE(4658), 1, + aux_sym_string_content_repeat1, + STATE(5161), 1, + sym_string_content, + ACTIONS(7955), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125058] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7771), 1, - anon_sym_DOT_DOT2, - ACTIONS(8043), 1, - anon_sym_RBRACE, - ACTIONS(8045), 1, - sym__entry_separator, STATE(4260), 1, sym_comment, - ACTIONS(7773), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125250] = 6, + STATE(5101), 1, + sym__immediate_decimal, + ACTIONS(6917), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6919), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [125076] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8047), 1, + ACTIONS(8032), 1, anon_sym_DQUOTE, STATE(4261), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5186), 1, + STATE(5168), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [125270] = 4, - ACTIONS(3), 1, + [125096] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2090), 1, + sym__space, + ACTIONS(2094), 1, + anon_sym_LPAREN2, STATE(4262), 1, sym_comment, - ACTIONS(1848), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1846), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125286] = 6, + ACTIONS(2092), 2, + sym__newline, + anon_sym_SEMI, + [125116] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7725), 1, + anon_sym_EQ2, + STATE(4263), 1, + sym_comment, + STATE(4895), 1, + sym__flag_equals_value, + ACTIONS(4412), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [125134] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8049), 1, + ACTIONS(8034), 1, anon_sym_DQUOTE, - STATE(4263), 1, + STATE(4264), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5192), 1, + STATE(5175), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [125306] = 7, + [125154] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7931), 1, - sym_identifier, - ACTIONS(7933), 1, - anon_sym_DOLLAR, - STATE(2788), 1, - sym_val_variable, - STATE(4179), 1, - sym__variable_name, - STATE(4264), 1, + STATE(4265), 1, sym_comment, - STATE(4756), 1, - sym__assignment_pattern, - [125328] = 6, + ACTIONS(1834), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1832), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125170] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8051), 1, + ACTIONS(8036), 1, anon_sym_DQUOTE, - STATE(4265), 1, + STATE(4266), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5449), 1, + STATE(5182), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [125348] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4266), 1, - sym_comment, - STATE(5102), 1, - sym__immediate_decimal, - ACTIONS(7695), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7711), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [125366] = 7, + [125190] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5273), 1, - anon_sym_DOLLAR, - ACTIONS(7476), 1, - sym_identifier, - STATE(2788), 1, - sym_val_variable, + ACTIONS(8038), 1, + anon_sym_DQUOTE, STATE(4267), 1, sym_comment, - STATE(5454), 1, - sym__variable_name, - [125388] = 4, - ACTIONS(3), 1, + STATE(4658), 1, + aux_sym_string_content_repeat1, + STATE(5189), 1, + sym_string_content, + ACTIONS(7955), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125210] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2634), 1, - sym__unquoted_pattern, + ACTIONS(8040), 1, + anon_sym_DQUOTE, STATE(4268), 1, sym_comment, - ACTIONS(1226), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125404] = 4, + STATE(4658), 1, + aux_sym_string_content_repeat1, + STATE(5316), 1, + sym_string_content, + ACTIONS(7955), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125230] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8033), 1, - anon_sym_QMARK2, + ACTIONS(8042), 1, + anon_sym_DQUOTE, STATE(4269), 1, sym_comment, - ACTIONS(1460), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [125420] = 4, + STATE(4658), 1, + aux_sym_string_content_repeat1, + STATE(5196), 1, + sym_string_content, + ACTIONS(7955), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125250] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, - STATE(4270), 1, + ACTIONS(8044), 1, + anon_sym_DASH_DASH, + STATE(4922), 1, + sym_long_flag, + ACTIONS(4390), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + STATE(4270), 2, sym_comment, - ACTIONS(1730), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125436] = 7, - ACTIONS(3), 1, + aux_sym_decl_def_repeat1, + [125268] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5822), 1, - anon_sym_EQ, - ACTIONS(7929), 1, - anon_sym_COLON, + ACTIONS(8047), 1, + anon_sym_DQUOTE, STATE(4271), 1, sym_comment, - STATE(4854), 1, - aux_sym__repeat_newline, - STATE(5245), 1, - sym_param_type, - [125458] = 6, + STATE(4658), 1, + aux_sym_string_content_repeat1, + STATE(5202), 1, + sym_string_content, + ACTIONS(7955), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125288] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8053), 1, + ACTIONS(8049), 1, anon_sym_DQUOTE, STATE(4272), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5329), 1, + STATE(5208), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [125478] = 7, - ACTIONS(3), 1, + [125308] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1887), 1, - sym__table_head_separator, - ACTIONS(8029), 1, - anon_sym_DOT2, + ACTIONS(8051), 1, + aux_sym__immediate_decimal_token5, STATE(4273), 1, sym_comment, - STATE(4354), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4916), 1, - sym_path, - STATE(5358), 1, - sym_cell_path, - [125500] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4274), 1, - sym_comment, - STATE(5219), 1, - sym__immediate_decimal, - ACTIONS(6926), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6928), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [125518] = 7, + ACTIONS(1832), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1834), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [125326] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, + ACTIONS(7965), 1, sym_unescaped_interpolated_content, - ACTIONS(8055), 1, + ACTIONS(8053), 1, anon_sym_SQUOTE2, - STATE(4242), 1, + STATE(4274), 1, + sym_comment, + STATE(4327), 1, aux_sym__inter_single_quotes_repeat1, + STATE(4714), 1, + sym_expr_interpolated, + [125348] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3870), 1, + anon_sym_LBRACE, STATE(4275), 1, sym_comment, - STATE(4836), 1, - sym_expr_interpolated, - [125540] = 7, - ACTIONS(103), 1, + STATE(4784), 1, + sym_block, + ACTIONS(7799), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125366] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7941), 1, - sym_unescaped_interpolated_content, - ACTIONS(8057), 1, - anon_sym_SQUOTE2, - STATE(4192), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(3870), 1, + anon_sym_LBRACE, STATE(4276), 1, sym_comment, - STATE(4836), 1, - sym_expr_interpolated, - [125562] = 7, + STATE(4795), 1, + sym_block, + ACTIONS(7799), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125384] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, + ACTIONS(7965), 1, sym_unescaped_interpolated_content, - ACTIONS(8059), 1, + ACTIONS(8055), 1, anon_sym_SQUOTE2, - STATE(4276), 1, - aux_sym__inter_single_quotes_repeat1, STATE(4277), 1, sym_comment, - STATE(4836), 1, + STATE(4314), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4714), 1, sym_expr_interpolated, - [125584] = 4, + [125406] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1992), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, + ACTIONS(2090), 1, + anon_sym_LBRACE, + ACTIONS(8057), 1, + anon_sym_DOT_DOT2, STATE(4278), 1, sym_comment, - ACTIONS(1982), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125600] = 5, + ACTIONS(8059), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125426] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7670), 1, - aux_sym__immediate_decimal_token5, + STATE(1366), 1, + aux_sym__block_body_repeat1, STATE(4279), 1, sym_comment, - ACTIONS(1790), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1792), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [125618] = 6, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(461), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125444] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7719), 1, - anon_sym_RBRACK, - ACTIONS(7721), 1, - sym__entry_separator, - ACTIONS(7771), 1, - anon_sym_DOT_DOT2, + ACTIONS(8061), 1, + anon_sym_LT, STATE(4280), 1, sym_comment, - ACTIONS(7773), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125638] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4281), 1, - sym_comment, - STATE(4796), 1, - sym_block, - ACTIONS(7816), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125656] = 7, + ACTIONS(5243), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6230), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [125462] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2822), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(5279), 1, + ACTIONS(5332), 1, anon_sym_DOLLAR, - ACTIONS(7755), 1, + ACTIONS(7559), 1, sym_identifier, - STATE(3028), 1, - sym__variable_name, - STATE(3206), 1, + STATE(2822), 1, sym_val_variable, - STATE(4282), 1, + STATE(4281), 1, sym_comment, - [125678] = 5, + STATE(5472), 1, + sym__variable_name, + [125484] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4283), 1, - sym_comment, - STATE(4798), 1, - sym_block, - ACTIONS(7816), 3, - ts_builtin_sym_end, + ACTIONS(2935), 1, sym__newline, - anon_sym_SEMI, - [125696] = 6, + ACTIONS(5999), 1, + anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_COLON, + STATE(4282), 1, + sym_comment, + STATE(4732), 1, + aux_sym__repeat_newline, + STATE(5261), 1, + sym_param_type, + [125506] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2652), 1, + ACTIONS(1478), 1, sym__entry_separator, - STATE(4284), 1, + STATE(4283), 1, sym_comment, - ACTIONS(2654), 2, + ACTIONS(1476), 4, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_DOT_DOT, - [125716] = 5, + anon_sym_DOT2, + [125522] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8061), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(8063), 1, + anon_sym_QMARK2, + ACTIONS(8065), 1, + anon_sym_BANG, + STATE(4284), 1, + sym_comment, + STATE(4989), 1, + sym__path_suffix, + ACTIONS(1450), 2, + sym__table_head_separator, + anon_sym_DOT2, + [125542] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1953), 1, + anon_sym_LBRACE, + ACTIONS(1963), 1, + sym__unquoted_pattern, + ACTIONS(8067), 1, + anon_sym_DOT_DOT2, STATE(4285), 1, sym_comment, - ACTIONS(1846), 2, + ACTIONS(8069), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [125734] = 4, + [125562] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2674), 1, + ACTIONS(2608), 1, sym__unquoted_pattern, STATE(4286), 1, sym_comment, - ACTIONS(7486), 4, + ACTIONS(1216), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125750] = 4, - ACTIONS(3), 1, + [125578] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1828), 1, + ACTIONS(1216), 1, + sym__space, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, sym__unquoted_pattern, STATE(4287), 1, sym_comment, - ACTIONS(968), 4, + ACTIONS(1218), 2, + sym__newline, + anon_sym_SEMI, + [125598] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(4288), 1, + sym_comment, + ACTIONS(1234), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125614] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(5762), 1, + anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_COLON, + STATE(4289), 1, + sym_comment, + STATE(4732), 1, + aux_sym__repeat_newline, + STATE(5411), 1, + sym_param_type, + [125636] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1234), 1, + sym__space, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(4290), 1, + sym_comment, + ACTIONS(1226), 2, + sym__newline, + anon_sym_SEMI, + [125656] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1963), 1, + sym__unquoted_pattern, + STATE(4291), 1, + sym_comment, + ACTIONS(1953), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125766] = 6, + [125672] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5734), 1, + ACTIONS(5776), 1, sym__space, - ACTIONS(7777), 1, + ACTIONS(7774), 1, anon_sym_EQ2, - STATE(3149), 1, + STATE(3224), 1, sym__flag_equals_value, - STATE(4288), 1, + STATE(4292), 1, sym_comment, - ACTIONS(5732), 2, + ACTIONS(5774), 2, sym__newline, anon_sym_SEMI, - [125786] = 6, + [125692] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1982), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2090), 1, sym__entry_separator, - ACTIONS(1986), 1, + ACTIONS(2094), 1, anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_list, - STATE(4289), 1, + STATE(4293), 1, sym_comment, - ACTIONS(1984), 2, + ACTIONS(2092), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [125806] = 6, + [125712] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1982), 1, - sym__entry_separator, - ACTIONS(1984), 1, - anon_sym_RBRACE, - ACTIONS(8063), 1, - anon_sym_DOT_DOT2, - STATE(4290), 1, + ACTIONS(8071), 1, + anon_sym_DQUOTE, + STATE(4294), 1, sym_comment, - ACTIONS(8065), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125826] = 5, - ACTIONS(103), 1, + STATE(4658), 1, + aux_sym_string_content_repeat1, + STATE(5499), 1, + sym_string_content, + ACTIONS(7955), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125732] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8067), 1, - anon_sym_LT, - STATE(4291), 1, + ACTIONS(1653), 1, + sym__unquoted_pattern, + STATE(4295), 1, sym_comment, - ACTIONS(5302), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6378), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [125844] = 7, + ACTIONS(2584), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125748] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1456), 1, - anon_sym_COLON2, - ACTIONS(5016), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(501), 1, - sym_cell_path, - STATE(2298), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4292), 1, + ACTIONS(6978), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8073), 2, + sym__newline, + anon_sym_COMMA, + STATE(4296), 2, sym_comment, - [125866] = 5, + aux_sym_parameter_repeat2, + [125764] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8069), 1, - anon_sym_LT, - STATE(4293), 1, + ACTIONS(7961), 1, + anon_sym_LPAREN, + ACTIONS(7965), 1, + sym_unescaped_interpolated_content, + ACTIONS(8076), 1, + anon_sym_SQUOTE2, + STATE(4274), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4297), 1, sym_comment, - ACTIONS(5302), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6378), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [125884] = 4, - ACTIONS(103), 1, + STATE(4714), 1, + sym_expr_interpolated, + [125786] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4294), 1, + ACTIONS(1834), 1, + sym__unquoted_pattern, + ACTIONS(8078), 1, + aux_sym__immediate_decimal_token5, + STATE(4298), 1, sym_comment, - ACTIONS(6443), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6445), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [125900] = 5, + ACTIONS(1832), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125804] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7868), 1, + ACTIONS(8080), 1, aux_sym__immediate_decimal_token5, - STATE(4295), 1, + STATE(4299), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1832), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1792), 2, + ACTIONS(1834), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [125918] = 6, + [125822] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7771), 1, - anon_sym_DOT_DOT2, - ACTIONS(8071), 1, - anon_sym_RBRACE, - ACTIONS(8073), 1, + ACTIONS(8020), 1, + anon_sym_QMARK2, + STATE(4300), 1, + sym_comment, + ACTIONS(1462), 4, + anon_sym_RBRACK, sym__entry_separator, - STATE(4296), 1, + sym__table_head_separator, + anon_sym_DOT2, + [125838] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4412), 1, + sym__space, + ACTIONS(7774), 1, + anon_sym_EQ2, + STATE(3176), 1, + sym__flag_equals_value, + STATE(4301), 1, + sym_comment, + ACTIONS(4410), 2, + sym__newline, + anon_sym_SEMI, + [125858] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4302), 1, sym_comment, - ACTIONS(7773), 2, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [125938] = 5, + [125874] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(4297), 1, + STATE(4303), 1, sym_comment, - STATE(4675), 1, + STATE(4833), 1, sym_block, - ACTIONS(7798), 3, + ACTIONS(7740), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125956] = 5, + [125892] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2164), 1, - sym__entry_separator, - ACTIONS(8075), 1, - anon_sym_LBRACK2, - STATE(4298), 1, - sym_comment, - ACTIONS(2166), 3, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7727), 1, anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(7730), 1, anon_sym_DOT_DOT, - [125974] = 7, - ACTIONS(103), 1, + ACTIONS(7732), 1, + sym__entry_separator, + STATE(4304), 1, + sym_comment, + [125914] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7476), 1, + ACTIONS(7851), 1, + aux_sym__immediate_decimal_token5, + STATE(4305), 1, + sym_comment, + ACTIONS(1784), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [125932] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8082), 1, sym_identifier, - ACTIONS(7576), 1, + ACTIONS(8084), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(2806), 1, + STATE(4306), 1, + sym_comment, + STATE(4310), 1, sym__variable_name, - STATE(4299), 1, + STATE(4485), 1, + sym__assignment_pattern, + [125954] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1732), 1, + sym__unquoted_pattern, + STATE(4307), 1, + sym_comment, + ACTIONS(1730), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125970] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7742), 1, + anon_sym_DOT_DOT2, + ACTIONS(8086), 1, + anon_sym_RBRACE, + ACTIONS(8088), 1, + sym__entry_separator, + STATE(4308), 1, sym_comment, - [125996] = 7, + ACTIONS(7744), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125990] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7931), 1, + ACTIONS(8082), 1, sym_identifier, - ACTIONS(7933), 1, + ACTIONS(8084), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(4190), 1, + STATE(4289), 1, sym__variable_name, - STATE(4300), 1, + STATE(4309), 1, sym_comment, - STATE(4489), 1, + STATE(4723), 1, sym__assignment_pattern, - [126018] = 5, + [126012] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1359), 1, - aux_sym__block_body_repeat1, - STATE(4301), 1, - sym_comment, - ACTIONS(153), 2, + ACTIONS(2935), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(3061), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126036] = 6, + ACTIONS(5676), 1, + anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_COLON, + STATE(4310), 1, + sym_comment, + STATE(4732), 1, + aux_sym__repeat_newline, + STATE(5526), 1, + sym_param_type, + [126034] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4311), 1, + sym_comment, + ACTIONS(1921), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1919), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126050] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2574), 1, sym__entry_separator, - ACTIONS(7011), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8077), 1, - anon_sym_DOT, - STATE(4302), 1, + STATE(4312), 1, sym_comment, - ACTIONS(1792), 2, + ACTIONS(2576), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [126056] = 4, + anon_sym_DOT_DOT, + [126070] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4303), 1, + ACTIONS(1953), 1, + sym__entry_separator, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_list, + STATE(4313), 1, sym_comment, - ACTIONS(1846), 2, - sym__space, + ACTIONS(1955), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126090] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7961), 1, + anon_sym_LPAREN, + ACTIONS(7965), 1, + sym_unescaped_interpolated_content, + ACTIONS(8090), 1, + anon_sym_SQUOTE2, + STATE(4314), 1, + sym_comment, + STATE(4327), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4714), 1, + sym_expr_interpolated, + [126112] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7877), 1, + aux_sym__immediate_decimal_token5, + STATE(4315), 1, + sym_comment, + ACTIONS(1784), 2, anon_sym_LPAREN2, - ACTIONS(1848), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [126072] = 5, + sym__entry_separator, + ACTIONS(1786), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [126130] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_EQ2, - STATE(4304), 1, + ACTIONS(1444), 1, + anon_sym_COLON2, + ACTIONS(5020), 1, + anon_sym_DOT2, + STATE(470), 1, + sym_path, + STATE(518), 1, + sym_cell_path, + STATE(2328), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4316), 1, sym_comment, - STATE(4727), 1, - sym__flag_equals_value, - ACTIONS(4353), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [126090] = 4, + [126152] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4305), 1, + ACTIONS(7742), 1, + anon_sym_DOT_DOT2, + ACTIONS(8092), 1, + anon_sym_RBRACE, + ACTIONS(8094), 1, + sym__entry_separator, + STATE(4317), 1, sym_comment, - ACTIONS(1895), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1897), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [126106] = 4, + ACTIONS(7744), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126172] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5332), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + sym_identifier, + STATE(2822), 1, + sym_val_variable, + STATE(4318), 1, + sym_comment, + STATE(5282), 1, + sym__variable_name, + [126194] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(2572), 1, sym__unquoted_pattern, - STATE(4306), 1, + STATE(4319), 1, sym_comment, - ACTIONS(2572), 4, + ACTIONS(2570), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [126122] = 4, + [126210] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(4307), 1, + STATE(4320), 1, sym_comment, - ACTIONS(1972), 4, + ACTIONS(2598), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [126138] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4308), 1, - sym_comment, - ACTIONS(6491), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6493), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [126154] = 6, + [126226] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(1714), 1, sym__space, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8079), 1, - anon_sym_DOT, - STATE(4309), 1, - sym_comment, - ACTIONS(1792), 2, - sym__newline, - anon_sym_SEMI, - [126174] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1792), 1, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, sym__unquoted_pattern, - ACTIONS(7677), 1, - aux_sym__immediate_decimal_token5, - STATE(4310), 1, - sym_comment, - ACTIONS(1790), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126192] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4209), 1, - aux_sym_parameter_repeat2, - STATE(4311), 1, + STATE(4321), 1, sym_comment, - ACTIONS(1398), 2, + ACTIONS(1588), 2, sym__newline, - anon_sym_COMMA, - ACTIONS(7954), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126210] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8081), 1, - anon_sym_DASH_DASH, - STATE(4670), 1, - sym_long_flag, - ACTIONS(4394), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4312), 2, - sym_comment, - aux_sym_decl_def_repeat1, - [126228] = 4, + anon_sym_SEMI, + [126246] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1545), 1, + ACTIONS(2598), 1, sym__entry_separator, - STATE(4313), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_list, + STATE(4322), 1, sym_comment, - ACTIONS(1543), 4, + ACTIONS(2600), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [126244] = 7, + [126266] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7931), 1, + ACTIONS(8082), 1, sym_identifier, - ACTIONS(7933), 1, + ACTIONS(8084), 1, anon_sym_DOLLAR, - STATE(2788), 1, + STATE(2822), 1, sym_val_variable, - STATE(4314), 1, - sym_comment, - STATE(4318), 1, + STATE(4209), 1, sym__variable_name, - STATE(4489), 1, + STATE(4323), 1, + sym_comment, + STATE(4485), 1, sym__assignment_pattern, - [126266] = 6, + [126288] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8084), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - STATE(4315), 1, + STATE(4324), 1, sym_comment, - STATE(4377), 1, + STATE(4658), 1, aux_sym_string_content_repeat1, - STATE(5362), 1, + STATE(5284), 1, sym_string_content, - ACTIONS(7927), 2, + ACTIONS(7955), 2, sym__escaped_str_content, sym_escape_sequence, - [126286] = 7, + [126308] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, + ACTIONS(7965), 1, sym_unescaped_interpolated_content, - ACTIONS(8086), 1, + ACTIONS(8098), 1, anon_sym_SQUOTE2, - STATE(4316), 1, + STATE(4325), 1, sym_comment, - STATE(4333), 1, + STATE(4340), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4836), 1, + STATE(4714), 1, sym_expr_interpolated, - [126308] = 7, + [126330] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7365), 1, + ACTIONS(7480), 1, sym__entry_separator, - ACTIONS(7464), 1, + ACTIONS(7518), 1, anon_sym_DOT2, - STATE(352), 1, + STATE(367), 1, sym_path, - STATE(4013), 1, + STATE(4124), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4317), 1, + STATE(4326), 1, sym_comment, - STATE(4715), 1, + STATE(4726), 1, sym_cell_path, - [126330] = 7, - ACTIONS(3), 1, + [126352] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(5940), 1, - anon_sym_EQ, - ACTIONS(7929), 1, - anon_sym_COLON, - STATE(4318), 1, + ACTIONS(8100), 1, + anon_sym_LPAREN, + ACTIONS(8103), 1, + anon_sym_SQUOTE2, + ACTIONS(8105), 1, + sym_unescaped_interpolated_content, + STATE(4714), 1, + sym_expr_interpolated, + STATE(4327), 2, sym_comment, - STATE(4854), 1, - aux_sym__repeat_newline, - STATE(5373), 1, - sym_param_type, - [126352] = 7, + aux_sym__inter_single_quotes_repeat1, + [126372] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7426), 1, + ACTIONS(7391), 1, sym__entry_separator, - ACTIONS(7464), 1, + ACTIONS(7518), 1, anon_sym_DOT2, - STATE(352), 1, + STATE(367), 1, sym_path, - STATE(4013), 1, + STATE(4124), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4319), 1, + STATE(4328), 1, sym_comment, - STATE(4779), 1, + STATE(4749), 1, sym_cell_path, - [126374] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7931), 1, - sym_identifier, - ACTIONS(7933), 1, - anon_sym_DOLLAR, - STATE(2788), 1, - sym_val_variable, - STATE(4271), 1, - sym__variable_name, - STATE(4320), 1, - sym_comment, - STATE(4674), 1, - sym__assignment_pattern_parenthesized, - [126396] = 6, + [126394] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1972), 1, - sym__space, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - STATE(4321), 1, + STATE(4329), 1, sym_comment, - ACTIONS(1974), 2, - sym__newline, - anon_sym_SEMI, - [126416] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2672), 1, + ACTIONS(1730), 2, anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7666), 1, - anon_sym_DOT_DOT, - ACTIONS(7723), 1, - anon_sym_RBRACK, - ACTIONS(7726), 1, sym__entry_separator, - STATE(4322), 1, - sym_comment, - [126438] = 5, + ACTIONS(1732), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [126410] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1848), 1, - sym__unquoted_pattern, - ACTIONS(8088), 1, - aux_sym__immediate_decimal_token5, - STATE(4323), 1, - sym_comment, - ACTIONS(1846), 3, + ACTIONS(3801), 1, + anon_sym_LBRACK, + ACTIONS(3966), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126456] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1982), 1, - anon_sym_LBRACE, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(8090), 1, - anon_sym_DOT_DOT2, - STATE(4324), 1, + STATE(1988), 1, + aux_sym__types_body_repeat1, + STATE(4330), 1, sym_comment, - ACTIONS(8092), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126476] = 6, - ACTIONS(103), 1, + STATE(4712), 1, + sym_val_list, + STATE(4717), 1, + aux_sym__table_body_repeat1, + [126432] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1226), 1, - sym__space, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(4325), 1, - sym_comment, - ACTIONS(1012), 2, + ACTIONS(2935), 1, sym__newline, - anon_sym_SEMI, - [126496] = 5, + ACTIONS(6031), 1, + anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_COLON, + STATE(4331), 1, + sym_comment, + STATE(4732), 1, + aux_sym__repeat_newline, + STATE(5324), 1, + sym_param_type, + [126454] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7862), 1, - aux_sym__immediate_decimal_token5, - STATE(4326), 1, + STATE(4332), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1832), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1792), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [126514] = 6, + ACTIONS(1834), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [126470] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1234), 1, - sym__space, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern, - STATE(4327), 1, + STATE(4333), 1, sym_comment, - ACTIONS(1020), 2, - sym__newline, - anon_sym_SEMI, - [126534] = 5, + ACTIONS(1919), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1921), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [126486] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1354), 1, - aux_sym__block_body_repeat1, - STATE(4328), 1, + ACTIONS(1834), 1, + sym__unquoted_pattern, + STATE(4334), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(1832), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - ACTIONS(3066), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126552] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126502] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2362), 1, + ACTIONS(1806), 1, sym__unquoted_pattern, - STATE(4329), 1, + STATE(4335), 1, sym_comment, - ACTIONS(2360), 4, + ACTIONS(884), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [126568] = 6, + [126518] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2572), 1, - sym__space, - ACTIONS(2576), 1, - anon_sym_LPAREN2, - STATE(4330), 1, + ACTIONS(7742), 1, + anon_sym_DOT_DOT2, + ACTIONS(8108), 1, + anon_sym_RBRACE, + ACTIONS(8110), 1, + sym__entry_separator, + STATE(4336), 1, sym_comment, - ACTIONS(2574), 2, - sym__newline, - anon_sym_SEMI, - [126588] = 6, + ACTIONS(7744), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126538] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8082), 1, + sym_identifier, + ACTIONS(8084), 1, + anon_sym_DOLLAR, + STATE(2822), 1, + sym_val_variable, + STATE(4337), 1, + sym_comment, + STATE(4343), 1, + sym__variable_name, + STATE(4763), 1, + sym__assignment_pattern_parenthesized, + [126560] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1653), 1, sym__unquoted_pattern_in_list, - ACTIONS(1972), 1, + ACTIONS(2584), 1, sym__entry_separator, - ACTIONS(1976), 1, + ACTIONS(2588), 1, anon_sym_LPAREN2, - STATE(4331), 1, + STATE(4338), 1, sym_comment, - ACTIONS(1974), 2, + ACTIONS(2586), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [126608] = 4, - ACTIONS(3), 1, + [126580] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1992), 1, - sym__unquoted_pattern, - STATE(4332), 1, + ACTIONS(5379), 1, + sym__entry_separator, + ACTIONS(7518), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(4124), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4339), 1, sym_comment, - ACTIONS(2652), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126624] = 7, + STATE(4614), 1, + sym_cell_path, + [126602] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7961), 1, anon_sym_LPAREN, - ACTIONS(7941), 1, + ACTIONS(7965), 1, sym_unescaped_interpolated_content, - ACTIONS(8094), 1, + ACTIONS(8112), 1, anon_sym_SQUOTE2, - STATE(4192), 1, + STATE(4327), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4333), 1, + STATE(4340), 1, sym_comment, - STATE(4836), 1, + STATE(4714), 1, sym_expr_interpolated, - [126646] = 5, + [126624] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4334), 1, - sym_comment, - STATE(4762), 1, - sym_block, - ACTIONS(7713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126664] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2634), 1, + ACTIONS(1921), 1, sym__unquoted_pattern, - STATE(4335), 1, + STATE(4341), 1, sym_comment, - ACTIONS(1234), 3, + ACTIONS(1919), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [126679] = 3, + [126640] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4336), 1, - sym_comment, - ACTIONS(8096), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126692] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2170), 1, - sym__entry_separator, - STATE(4337), 1, + ACTIONS(8082), 1, + sym_identifier, + ACTIONS(8084), 1, + anon_sym_DOLLAR, + STATE(2822), 1, + sym_val_variable, + STATE(4331), 1, + sym__variable_name, + STATE(4342), 1, sym_comment, - ACTIONS(2172), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [126707] = 3, + STATE(4485), 1, + sym__assignment_pattern, + [126662] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4338), 1, - sym_comment, - ACTIONS(8098), 4, + ACTIONS(2935), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126720] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - STATE(2277), 1, - aux_sym__types_body_repeat2, - STATE(4339), 1, - sym_comment, - ACTIONS(7908), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126737] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - STATE(2263), 1, - aux_sym__types_body_repeat2, - STATE(4340), 1, - sym_comment, - ACTIONS(8100), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126754] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - STATE(2264), 1, - aux_sym__types_body_repeat2, - STATE(4341), 1, - sym_comment, - ACTIONS(8100), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126771] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4342), 1, + ACTIONS(5626), 1, + anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_COLON, + STATE(4343), 1, sym_comment, - ACTIONS(8102), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126784] = 3, + STATE(4732), 1, + aux_sym__repeat_newline, + STATE(5103), 1, + sym_param_type, + [126684] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4343), 1, + ACTIONS(2580), 1, + sym__unquoted_pattern, + STATE(4344), 1, sym_comment, - ACTIONS(8104), 4, + ACTIONS(7512), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [126797] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(1625), 1, - anon_sym_COLON2, - ACTIONS(8106), 1, - anon_sym_RBRACE, - STATE(1469), 1, - aux_sym__types_body_repeat2, - STATE(4344), 1, - sym_comment, - [126816] = 6, + [126700] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(1625), 1, - anon_sym_COLON2, - ACTIONS(8108), 1, - anon_sym_RBRACE, - STATE(1470), 1, - aux_sym__types_body_repeat2, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(2964), 1, + sym_block, STATE(4345), 1, sym_comment, - [126835] = 5, + STATE(4459), 1, + aux_sym__repeat_newline, + [126722] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8112), 1, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, + ACTIONS(2574), 1, sym__space, STATE(4346), 1, sym_comment, - STATE(4584), 1, - aux_sym_attribute_repeat1, - ACTIONS(8110), 2, + ACTIONS(2576), 2, sym__newline, anon_sym_SEMI, - [126852] = 5, + [126742] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7486), 1, - sym__entry_separator, + ACTIONS(8114), 1, + anon_sym_DQUOTE, STATE(4347), 1, sym_comment, - ACTIONS(7666), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126869] = 3, + STATE(4658), 1, + aux_sym_string_content_repeat1, + STATE(5147), 1, + sym_string_content, + ACTIONS(7955), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126762] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8082), 1, + sym_identifier, + ACTIONS(8084), 1, + anon_sym_DOLLAR, + STATE(2822), 1, + sym_val_variable, + STATE(4282), 1, + sym__variable_name, STATE(4348), 1, sym_comment, - ACTIONS(8114), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126882] = 3, - ACTIONS(3), 1, + STATE(4763), 1, + sym__assignment_pattern_parenthesized, + [126784] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7961), 1, + anon_sym_LPAREN, + ACTIONS(7965), 1, + sym_unescaped_interpolated_content, + ACTIONS(8116), 1, + anon_sym_SQUOTE2, STATE(4349), 1, sym_comment, - ACTIONS(8116), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126895] = 5, - ACTIONS(103), 1, + STATE(4354), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4714), 1, + sym_expr_interpolated, + [126806] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(5061), 1, - sym__unquoted_pattern, + ACTIONS(3870), 1, + anon_sym_LBRACE, STATE(4350), 1, sym_comment, - ACTIONS(847), 2, - sym__newline, - anon_sym_SEMI, - [126912] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3056), 1, - anon_sym_RPAREN, - ACTIONS(8118), 2, + STATE(4871), 1, + sym_block, + ACTIONS(7764), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(4351), 2, - sym_comment, - aux_sym__block_body_repeat1, - [126927] = 4, + [126824] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4352), 1, + ACTIONS(2590), 1, + sym__entry_separator, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern_in_list, + STATE(4351), 1, sym_comment, - ACTIONS(8121), 2, + ACTIONS(2592), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8123), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [126942] = 5, + [126844] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8125), 1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4352), 1, + sym_comment, + STATE(4875), 1, + sym_block, + ACTIONS(7764), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(8128), 1, - anon_sym_PIPE, - ACTIONS(8131), 1, - anon_sym_EQ_GT, - STATE(4353), 2, + anon_sym_SEMI, + [126862] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1216), 1, + sym__entry_separator, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern_in_list, + STATE(4353), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [126959] = 6, - ACTIONS(3), 1, + ACTIONS(1218), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126882] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, - sym__table_head_separator, - ACTIONS(8029), 1, - anon_sym_DOT2, + ACTIONS(7961), 1, + anon_sym_LPAREN, + ACTIONS(7965), 1, + sym_unescaped_interpolated_content, + ACTIONS(8118), 1, + anon_sym_SQUOTE2, + STATE(4327), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4354), 1, sym_comment, - STATE(4361), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4916), 1, - sym_path, - [126978] = 6, + STATE(4714), 1, + sym_expr_interpolated, + [126904] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(1234), 1, sym__entry_separator, - ACTIONS(8133), 1, - anon_sym_LBRACK, - ACTIONS(8135), 1, - anon_sym_RBRACK, - STATE(1913), 1, - aux_sym__types_body_repeat2, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern_in_list, STATE(4355), 1, sym_comment, - [126997] = 5, + ACTIONS(1226), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126924] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - STATE(2272), 1, - aux_sym__types_body_repeat2, + ACTIONS(1953), 1, + sym__space, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, STATE(4356), 1, sym_comment, - ACTIONS(7729), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [127014] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(1955), 2, sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3163), 1, - sym_block, + anon_sym_SEMI, + [126944] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1953), 1, + sym__entry_separator, + ACTIONS(1955), 1, + anon_sym_RBRACE, + ACTIONS(8120), 1, + anon_sym_DOT_DOT2, STATE(4357), 1, sym_comment, - [127033] = 4, + ACTIONS(8122), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126964] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(1514), 1, sym__entry_separator, STATE(4358), 1, sym_comment, - ACTIONS(1909), 3, + ACTIONS(1512), 4, anon_sym_RBRACK, anon_sym_GT2, - anon_sym_RBRACE, - [127048] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [126980] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1730), 1, - anon_sym_LBRACE, - ACTIONS(1732), 1, - sym__unquoted_pattern, - ACTIONS(8137), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8139), 1, - aux_sym__immediate_decimal_token5, STATE(4359), 1, sym_comment, - [127067] = 4, + ACTIONS(8124), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8126), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [126995] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2562), 1, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7698), 1, + anon_sym_RBRACK, + ACTIONS(7706), 1, sym__entry_separator, STATE(4360), 1, sym_comment, - ACTIONS(2564), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127082] = 5, - ACTIONS(3), 1, + STATE(5028), 1, + sym__expr_parenthesized_immediate, + [127014] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1534), 1, - sym__table_head_separator, - ACTIONS(8141), 1, - anon_sym_DOT2, - STATE(4916), 1, - sym_path, - STATE(4361), 2, + ACTIONS(2590), 1, + sym__entry_separator, + ACTIONS(2592), 1, + anon_sym_RBRACK, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern_in_list, + STATE(4361), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [127099] = 3, + [127033] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4362), 1, + ACTIONS(8128), 1, + sym__newline, + ACTIONS(8131), 1, + anon_sym_PIPE, + ACTIONS(8134), 1, + anon_sym_EQ_GT, + STATE(4362), 2, sym_comment, - ACTIONS(8144), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [127112] = 6, - ACTIONS(103), 1, + aux_sym_match_pattern_repeat1, + [127050] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(7995), 1, - anon_sym_RBRACE, - ACTIONS(7997), 1, - sym__entry_separator, STATE(4363), 1, sym_comment, - STATE(5058), 1, - sym__expr_parenthesized_immediate, - [127131] = 6, - ACTIONS(103), 1, + ACTIONS(8136), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127063] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2652), 1, - sym__entry_separator, - ACTIONS(2654), 1, - anon_sym_RBRACK, STATE(4364), 1, sym_comment, - [127150] = 6, + ACTIONS(8136), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127076] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - STATE(4091), 1, - sym_parameter_parens, - STATE(4093), 1, - sym_parameter_bracks, STATE(4365), 1, sym_comment, - [127169] = 5, + ACTIONS(8138), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127089] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(8146), 1, - anon_sym_DOT_DOT2, STATE(4366), 1, sym_comment, - ACTIONS(8148), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127186] = 5, + ACTIONS(8138), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2170), 1, - anon_sym_LBRACE, - ACTIONS(8150), 1, - anon_sym_DOT_DOT2, STATE(4367), 1, sym_comment, - ACTIONS(8152), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127203] = 6, - ACTIONS(103), 1, + ACTIONS(8140), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127115] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1982), 1, - sym__entry_separator, - ACTIONS(1984), 1, - anon_sym_RBRACK, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_list, STATE(4368), 1, sym_comment, - [127222] = 6, - ACTIONS(103), 1, + ACTIONS(8140), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127128] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6914), 1, - anon_sym_LPAREN2, - ACTIONS(8154), 1, - anon_sym_RBRACK, - ACTIONS(8156), 1, - sym__entry_separator, STATE(4369), 1, sym_comment, - STATE(5088), 1, - sym__expr_parenthesized_immediate, - [127241] = 4, - ACTIONS(103), 1, + ACTIONS(8142), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127141] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2405), 1, - sym__entry_separator, STATE(4370), 1, sym_comment, - ACTIONS(2407), 3, - anon_sym_RBRACK, + ACTIONS(8142), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127256] = 4, + [127154] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2104), 1, - sym__entry_separator, - STATE(4371), 1, + ACTIONS(8144), 1, + sym__space, + ACTIONS(6035), 2, + sym__newline, + anon_sym_SEMI, + STATE(4371), 2, sym_comment, - ACTIONS(2106), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127271] = 4, - ACTIONS(103), 1, + aux_sym_attribute_repeat1, + [127169] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2112), 1, - sym__entry_separator, STATE(4372), 1, sym_comment, - ACTIONS(2114), 3, - anon_sym_RBRACK, + ACTIONS(8147), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127286] = 3, + [127182] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4373), 1, sym_comment, - ACTIONS(8158), 4, + ACTIONS(8147), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127299] = 4, + [127195] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2398), 1, sym__entry_separator, STATE(4374), 1, sym_comment, - ACTIONS(2122), 3, + ACTIONS(2400), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [127314] = 4, + [127210] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(3872), 1, + anon_sym_LBRACE, STATE(4375), 1, sym_comment, - ACTIONS(5302), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6378), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [127329] = 3, + STATE(4581), 1, + sym_block, + [127229] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4376), 1, sym_comment, - ACTIONS(7313), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [127342] = 5, - ACTIONS(103), 1, + ACTIONS(1524), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127242] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8160), 1, - anon_sym_DQUOTE, + ACTIONS(8149), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + anon_sym_LPAREN, + STATE(4225), 1, + sym_parameter_parens, + STATE(4239), 1, + sym_parameter_bracks, STATE(4377), 1, sym_comment, - STATE(4400), 1, - aux_sym_string_content_repeat1, - ACTIONS(7927), 2, - sym__escaped_str_content, - sym_escape_sequence, - [127359] = 4, - ACTIONS(3), 1, + [127261] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern, STATE(4378), 1, sym_comment, - ACTIONS(7486), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127374] = 3, + ACTIONS(5389), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6515), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [127276] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2241), 1, + anon_sym_LBRACE, + ACTIONS(8153), 1, + anon_sym_DOT_DOT2, STATE(4379), 1, sym_comment, - ACTIONS(7329), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [127387] = 5, + ACTIONS(8155), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127293] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2104), 1, + ACTIONS(2249), 1, anon_sym_LBRACE, - ACTIONS(8162), 1, + ACTIONS(8157), 1, anon_sym_DOT_DOT2, STATE(4380), 1, sym_comment, - ACTIONS(8164), 2, + ACTIONS(8159), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127404] = 5, + [127310] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(8166), 1, - anon_sym_DOT_DOT2, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4381), 1, sym_comment, - ACTIONS(8168), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127421] = 5, + ACTIONS(2598), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127325] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_LBRACE, - ACTIONS(8170), 1, - anon_sym_DOT_DOT2, STATE(4382), 1, sym_comment, - ACTIONS(8172), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127438] = 5, - ACTIONS(103), 1, + ACTIONS(7407), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [127338] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7574), 1, - sym__entry_separator, - ACTIONS(7771), 1, + ACTIONS(2257), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, anon_sym_DOT_DOT2, STATE(4383), 1, sym_comment, - ACTIONS(7773), 2, + ACTIONS(8163), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127455] = 5, + [127355] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7486), 1, - sym__entry_separator, - ACTIONS(7771), 1, - anon_sym_DOT_DOT2, + ACTIONS(8165), 1, + anon_sym_LPAREN, STATE(4384), 1, sym_comment, - ACTIONS(7773), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127472] = 3, - ACTIONS(3), 1, + ACTIONS(8167), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [127370] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7506), 1, + sym__entry_separator, + ACTIONS(7742), 1, + anon_sym_DOT_DOT2, STATE(4385), 1, sym_comment, - ACTIONS(8174), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127485] = 4, + ACTIONS(7744), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127387] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2409), 1, + ACTIONS(7512), 1, sym__entry_separator, + ACTIONS(7742), 1, + anon_sym_DOT_DOT2, STATE(4386), 1, sym_comment, - ACTIONS(2411), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127500] = 3, - ACTIONS(3), 1, + ACTIONS(7744), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127404] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4387), 1, sym_comment, - ACTIONS(7791), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [127513] = 3, + ACTIONS(1730), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1732), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [127419] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1528), 1, + sym__table_head_separator, + ACTIONS(8010), 1, + anon_sym_DOT2, STATE(4388), 1, sym_comment, - ACTIONS(8176), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127526] = 6, + STATE(4435), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(5088), 1, + sym_path, + [127438] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8178), 1, - anon_sym_COLON, - ACTIONS(8180), 1, - anon_sym_GT2, - ACTIONS(8182), 1, - sym__entry_separator, STATE(4389), 1, sym_comment, - STATE(4997), 1, - sym__collection_annotation, - [127545] = 5, + ACTIONS(5383), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6509), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [127453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8184), 1, - anon_sym_LBRACE, - STATE(3255), 1, - sym__blosure, STATE(4390), 1, sym_comment, - STATE(3249), 2, - sym_block, - sym_val_closure, - [127562] = 3, + ACTIONS(8140), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127466] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4391), 1, sym_comment, - ACTIONS(8186), 4, + ACTIONS(8140), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127575] = 4, + [127479] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2578), 1, - sym__entry_separator, STATE(4392), 1, sym_comment, - ACTIONS(2580), 3, + ACTIONS(5385), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6511), 2, anon_sym_RBRACK, anon_sym_GT2, - anon_sym_RBRACE, - [127590] = 4, + [127494] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_parameter_parens, + STATE(4060), 1, + sym_parameter_bracks, STATE(4393), 1, sym_comment, - ACTIONS(1972), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127605] = 4, - ACTIONS(103), 1, + [127513] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2425), 1, - sym__entry_separator, STATE(4394), 1, sym_comment, - ACTIONS(2427), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127620] = 4, - ACTIONS(103), 1, + ACTIONS(1532), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127526] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2429), 1, - sym__entry_separator, STATE(4395), 1, sym_comment, - ACTIONS(2431), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127635] = 4, - ACTIONS(103), 1, + ACTIONS(1482), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127539] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2433), 1, - sym__entry_separator, + ACTIONS(5830), 1, + sym__newline, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, + anon_sym_COLON, + STATE(3577), 1, + aux_sym__repeat_newline, STATE(4396), 1, sym_comment, - ACTIONS(2435), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127650] = 4, - ACTIONS(103), 1, + [127558] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - sym__entry_separator, STATE(4397), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_RBRACK, + ACTIONS(8142), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127665] = 3, + [127571] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4398), 1, sym_comment, - ACTIONS(8188), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [127678] = 6, - ACTIONS(103), 1, + ACTIONS(8142), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127584] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6914), 1, - anon_sym_LPAREN2, - ACTIONS(8190), 1, - anon_sym_RBRACK, - ACTIONS(8192), 1, - sym__entry_separator, STATE(4399), 1, sym_comment, - STATE(5088), 1, - sym__expr_parenthesized_immediate, - [127697] = 4, - ACTIONS(103), 1, + ACTIONS(8147), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127597] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8194), 1, - anon_sym_DQUOTE, - ACTIONS(8196), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(4400), 2, + STATE(4400), 1, sym_comment, - aux_sym_string_content_repeat1, - [127712] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1617), 1, + ACTIONS(8147), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(1625), 1, - anon_sym_COLON2, - STATE(1480), 1, - aux_sym__types_body_repeat2, + [127610] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4401), 1, sym_comment, - [127731] = 3, + ACTIONS(8173), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127623] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4402), 1, sym_comment, - ACTIONS(8199), 4, + ACTIONS(8173), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127744] = 3, + [127636] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4403), 1, sym_comment, - ACTIONS(8201), 4, + ACTIONS(8175), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127757] = 4, + [127649] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1992), 1, - sym__unquoted_pattern, STATE(4404), 1, sym_comment, - ACTIONS(2652), 3, + ACTIONS(8175), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127772] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127662] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1992), 1, - sym__unquoted_pattern, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3126), 1, + anon_sym_SEMI, + STATE(1378), 1, + aux_sym__parenthesized_body_repeat1, STATE(4405), 1, sym_comment, - ACTIONS(1982), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127787] = 4, - ACTIONS(103), 1, + STATE(4838), 1, + aux_sym__repeat_newline, + [127681] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8203), 1, - anon_sym_LPAREN, STATE(4406), 1, sym_comment, - ACTIONS(8205), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [127802] = 4, + ACTIONS(8175), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127694] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2441), 1, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(6384), 1, sym__entry_separator, + ACTIONS(6386), 1, + anon_sym_RBRACE, STATE(4407), 1, sym_comment, - ACTIONS(2443), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127817] = 4, - ACTIONS(103), 1, + STATE(5470), 1, + sym__expr_parenthesized_immediate, + [127713] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2449), 1, - sym__entry_separator, STATE(4408), 1, sym_comment, - ACTIONS(2451), 3, - anon_sym_RBRACK, + ACTIONS(8175), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127832] = 4, - ACTIONS(103), 1, + [127726] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2453), 1, - sym__entry_separator, + ACTIONS(8179), 1, + anon_sym_RPAREN, STATE(4409), 1, sym_comment, - ACTIONS(2455), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127847] = 4, + STATE(4576), 1, + aux_sym__block_body_repeat1, + ACTIONS(8177), 2, + sym__newline, + anon_sym_SEMI, + [127743] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2457), 1, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(6388), 1, sym__entry_separator, + ACTIONS(6390), 1, + anon_sym_RBRACE, STATE(4410), 1, sym_comment, - ACTIONS(2459), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127862] = 4, + STATE(5470), 1, + sym__expr_parenthesized_immediate, + [127762] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2461), 1, - sym__entry_separator, STATE(4411), 1, sym_comment, - ACTIONS(2463), 3, + ACTIONS(1919), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1921), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127877] = 4, - ACTIONS(103), 1, + sym__unquoted_pattern_in_list, + [127777] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2465), 1, - sym__entry_separator, STATE(4412), 1, sym_comment, - ACTIONS(2467), 3, - anon_sym_RBRACK, + ACTIONS(8181), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127892] = 4, - ACTIONS(103), 1, + [127790] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2469), 1, - sym__entry_separator, STATE(4413), 1, sym_comment, - ACTIONS(2471), 3, - anon_sym_RBRACK, + ACTIONS(8181), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127907] = 4, - ACTIONS(103), 1, + [127803] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2473), 1, - sym__entry_separator, STATE(4414), 1, sym_comment, - ACTIONS(2475), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127922] = 4, - ACTIONS(103), 1, + ACTIONS(7426), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [127816] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4415), 1, sym_comment, - ACTIONS(5358), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6463), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [127937] = 4, + ACTIONS(8183), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127829] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1216), 1, + sym__entry_separator, + ACTIONS(1218), 1, + anon_sym_RBRACE, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern_in_record, STATE(4416), 1, sym_comment, - ACTIONS(5403), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6465), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [127952] = 5, - ACTIONS(3), 1, + [127848] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8184), 1, - anon_sym_LBRACE, - STATE(3404), 1, - sym__blosure, + ACTIONS(1226), 1, + anon_sym_RBRACE, + ACTIONS(1234), 1, + sym__entry_separator, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern_in_record, STATE(4417), 1, sym_comment, - STATE(3249), 2, - sym_block, - sym_val_closure, - [127969] = 4, + [127867] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(2608), 1, sym__unquoted_pattern, STATE(4418), 1, sym_comment, - ACTIONS(2572), 3, + ACTIONS(1216), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [127984] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4419), 1, - sym_comment, - ACTIONS(1846), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1848), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [127999] = 4, + [127882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2614), 1, + ACTIONS(2608), 1, sym__unquoted_pattern, - STATE(4420), 1, + STATE(4419), 1, sym_comment, - ACTIONS(2608), 3, + ACTIONS(1234), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [128014] = 4, + [127897] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4421), 1, + STATE(4420), 1, sym_comment, - ACTIONS(5382), 2, - anon_sym_AT2, + ACTIONS(2570), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6559), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128029] = 4, + ACTIONS(2572), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [127912] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4421), 1, + sym_comment, + ACTIONS(8183), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127925] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2414), 1, + sym__entry_separator, STATE(4422), 1, sym_comment, - ACTIONS(5384), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6467), 2, + ACTIONS(2416), 3, anon_sym_RBRACK, - anon_sym_GT2, - [128044] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [127940] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4423), 1, sym_comment, - ACTIONS(5386), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6469), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128059] = 4, - ACTIONS(103), 1, + ACTIONS(8185), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127953] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4424), 1, sym_comment, - ACTIONS(5390), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6471), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128074] = 4, - ACTIONS(103), 1, + ACTIONS(8185), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127966] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4425), 1, sym_comment, - ACTIONS(5392), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6473), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128089] = 6, + ACTIONS(8187), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127979] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - STATE(4078), 1, - sym_parameter_bracks, - STATE(4174), 1, - sym_parameter_parens, STATE(4426), 1, sym_comment, - [128108] = 4, + ACTIONS(8189), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127992] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2362), 1, - sym__unquoted_pattern, STATE(4427), 1, sym_comment, - ACTIONS(2360), 3, + ACTIONS(8191), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [128123] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128005] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2616), 1, - sym__entry_separator, - ACTIONS(2618), 1, - anon_sym_RBRACK, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - sym__unquoted_pattern_in_list, STATE(4428), 1, sym_comment, - [128142] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(8193), 4, sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(3155), 1, - sym_block, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128018] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(4429), 1, sym_comment, - STATE(4552), 1, - aux_sym__repeat_newline, - [128161] = 6, - ACTIONS(3), 1, + ACTIONS(5391), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6517), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128033] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(2972), 1, - sym_block, + ACTIONS(2418), 1, + sym__entry_separator, STATE(4430), 1, sym_comment, - [128180] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(2420), 3, anon_sym_RBRACK, - ACTIONS(1699), 1, - sym__entry_separator, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_list, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [128048] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4431), 1, sym_comment, - [128199] = 4, + ACTIONS(1518), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [128061] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(8207), 2, - sym__newline, - sym__space, - STATE(4432), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [128214] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4433), 1, + ACTIONS(884), 1, + sym__entry_separator, + STATE(4432), 1, sym_comment, - ACTIONS(8210), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(785), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [128227] = 5, + anon_sym_DOT_DOT, + [128076] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(4347), 1, sym__entry_separator, - ACTIONS(6659), 1, - sym__unquoted_pattern_in_list, - STATE(4434), 1, - sym_comment, - ACTIONS(847), 2, + ACTIONS(8195), 1, + anon_sym_LBRACK, + ACTIONS(8197), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [128244] = 3, + STATE(1932), 1, + aux_sym__types_body_repeat2, + STATE(4433), 1, + sym_comment, + [128095] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4435), 1, + STATE(4434), 1, sym_comment, - ACTIONS(8212), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128257] = 3, + ACTIONS(1470), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [128108] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4436), 1, + ACTIONS(1538), 1, + sym__table_head_separator, + ACTIONS(8199), 1, + anon_sym_DOT2, + STATE(5088), 1, + sym_path, + STATE(4435), 2, sym_comment, - ACTIONS(8212), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128270] = 6, + aux_sym__where_predicate_lhs_repeat1, + [128125] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LBRACE, - ACTIONS(1792), 1, + ACTIONS(1963), 1, sym__unquoted_pattern, - ACTIONS(8214), 1, - anon_sym_DOT, - ACTIONS(8216), 1, - aux_sym__immediate_decimal_token5, - STATE(4437), 1, + ACTIONS(8202), 1, + anon_sym_DOT_DOT2, + STATE(4436), 1, sym_comment, - [128289] = 3, + ACTIONS(8204), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128142] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4438), 1, + STATE(4437), 1, sym_comment, - ACTIONS(8218), 4, + ACTIONS(8206), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [128302] = 3, + [128155] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4438), 1, + sym_comment, + ACTIONS(1474), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [128168] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4439), 1, sym_comment, - ACTIONS(8218), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128315] = 5, + ACTIONS(8208), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128181] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7923), 1, - anon_sym_RPAREN, - STATE(4351), 1, - aux_sym__block_body_repeat1, + ACTIONS(8210), 1, + anon_sym_LBRACE, + STATE(3516), 1, + sym__blosure, STATE(4440), 1, sym_comment, - ACTIONS(8220), 2, - sym__newline, - anon_sym_SEMI, - [128332] = 3, - ACTIONS(3), 1, + STATE(3383), 2, + sym_block, + sym_val_closure, + [128198] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4441), 1, sym_comment, - ACTIONS(4464), 4, - sym__newline, + ACTIONS(8212), 2, anon_sym_RBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT, - [128345] = 5, - ACTIONS(3), 1, + ACTIONS(8214), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [128213] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3142), 1, - sym__blosure, + ACTIONS(1588), 1, + anon_sym_RBRACE, + ACTIONS(1714), 1, + sym__entry_separator, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern_in_record, STATE(4442), 1, sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [128362] = 5, - ACTIONS(3), 1, + [128232] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3264), 1, - sym__blosure, + ACTIONS(2450), 1, + sym__entry_separator, STATE(4443), 1, sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [128379] = 4, + ACTIONS(2452), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [128247] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2350), 1, + sym__entry_separator, STATE(4444), 1, sym_comment, - ACTIONS(1895), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1897), 2, + ACTIONS(2352), 3, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [128394] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [128262] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8146), 1, - anon_sym_DOT_DOT2, - ACTIONS(8222), 1, - anon_sym_LBRACE, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(8216), 1, + anon_sym_RBRACK, + ACTIONS(8218), 1, + sym__entry_separator, STATE(4445), 1, sym_comment, - ACTIONS(8148), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128411] = 6, + STATE(5519), 1, + sym__expr_parenthesized_immediate, + [128281] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8224), 1, - anon_sym_GT2, - ACTIONS(8226), 1, - anon_sym_AT2, - ACTIONS(8228), 1, - sym__entry_separator, STATE(4446), 1, sym_comment, - STATE(5012), 1, - sym_param_completer, - [128430] = 5, - ACTIONS(103), 1, + ACTIONS(1832), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1834), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [128296] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8112), 1, - sym__space, - STATE(4346), 1, - aux_sym_attribute_repeat1, + ACTIONS(8220), 1, + anon_sym_RBRACK, + STATE(3649), 1, + aux_sym_parameter_repeat2, STATE(4447), 1, sym_comment, - ACTIONS(8230), 2, + ACTIONS(1496), 2, sym__newline, - anon_sym_SEMI, - [128447] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + [128313] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1887), 1, - sym__entry_separator, STATE(4448), 1, sym_comment, - ACTIONS(1889), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [128462] = 6, + ACTIONS(8222), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128326] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4402), 1, - sym_block, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(8108), 1, + anon_sym_RBRACE, + ACTIONS(8110), 1, + sym__entry_separator, STATE(4449), 1, sym_comment, - [128481] = 3, + STATE(4986), 1, + sym__expr_parenthesized_immediate, + [128345] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4450), 1, sym_comment, - ACTIONS(8232), 4, + ACTIONS(8224), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128494] = 6, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128358] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4403), 1, - sym_block, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4451), 1, sym_comment, - [128513] = 3, + ACTIONS(2598), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128373] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1806), 1, + sym__unquoted_pattern, STATE(4452), 1, sym_comment, - ACTIONS(4143), 4, - ts_builtin_sym_end, + ACTIONS(884), 3, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [128526] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128388] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(8226), 1, + anon_sym_DOT_DOT2, STATE(4453), 1, sym_comment, - ACTIONS(4147), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [128539] = 3, - ACTIONS(3), 1, + ACTIONS(8228), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128405] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4814), 1, + sym__entry_separator, + STATE(2275), 1, + aux_sym__types_body_repeat2, STATE(4454), 1, sym_comment, - ACTIONS(8234), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128552] = 3, - ACTIONS(3), 1, + ACTIONS(7735), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128422] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1653), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2584), 1, + sym__entry_separator, + ACTIONS(2586), 1, + anon_sym_RBRACE, + ACTIONS(2588), 1, + anon_sym_LPAREN2, STATE(4455), 1, sym_comment, - ACTIONS(8234), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128565] = 6, + [128441] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(2963), 1, - sym_block, + ACTIONS(4814), 1, + sym__entry_separator, + STATE(2280), 1, + aux_sym__types_body_repeat2, STATE(4456), 1, sym_comment, - [128584] = 3, + ACTIONS(7797), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128458] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4457), 1, sym_comment, - ACTIONS(8236), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128597] = 3, + ACTIONS(7470), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128471] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7770), 1, + anon_sym_RPAREN, STATE(4458), 1, sym_comment, - ACTIONS(8236), 4, + STATE(4576), 1, + aux_sym__block_body_repeat1, + ACTIONS(8177), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128610] = 4, - ACTIONS(103), 1, + [128488] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3023), 1, + sym_block, STATE(4459), 1, sym_comment, - ACTIONS(8238), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8240), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [128625] = 3, + [128507] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2572), 1, + sym__unquoted_pattern, STATE(4460), 1, sym_comment, - ACTIONS(8212), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128638] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(8242), 1, + ACTIONS(2570), 3, anon_sym_LBRACK, - STATE(485), 1, - aux_sym__repeat_newline, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128522] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2660), 1, + sym__entry_separator, STATE(4461), 1, sym_comment, - STATE(5312), 1, - sym_val_list, - [128657] = 3, + ACTIONS(2662), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [128537] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8149), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + anon_sym_LPAREN, + STATE(4275), 1, + sym_parameter_parens, + STATE(4276), 1, + sym_parameter_bracks, STATE(4462), 1, sym_comment, - ACTIONS(8212), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128670] = 3, - ACTIONS(3), 1, + [128556] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(7975), 1, + anon_sym_RBRACE, + ACTIONS(7977), 1, + sym__entry_separator, STATE(4463), 1, sym_comment, - ACTIONS(1510), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [128683] = 4, - ACTIONS(3), 1, + STATE(4986), 1, + sym__expr_parenthesized_immediate, + [128575] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2622), 1, - sym__unquoted_pattern, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(8195), 1, + anon_sym_LBRACK, + ACTIONS(8230), 1, + anon_sym_RBRACK, + STATE(1932), 1, + aux_sym__types_body_repeat2, STATE(4464), 1, sym_comment, - ACTIONS(2616), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [128698] = 3, - ACTIONS(3), 1, + [128594] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, + sym__entry_separator, + ACTIONS(1598), 1, + anon_sym_COLON2, + STATE(1487), 1, + aux_sym__types_body_repeat2, STATE(4465), 1, sym_comment, - ACTIONS(8244), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128711] = 5, - ACTIONS(3), 1, + [128613] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3061), 1, - ts_builtin_sym_end, - STATE(1362), 1, - aux_sym__block_body_repeat1, + ACTIONS(8234), 1, + sym__space, STATE(4466), 1, sym_comment, - ACTIONS(55), 2, + STATE(4668), 1, + aux_sym_attribute_repeat1, + ACTIONS(8232), 2, sym__newline, anon_sym_SEMI, - [128728] = 3, - ACTIONS(3), 1, + [128630] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2372), 1, + sym__entry_separator, STATE(4467), 1, sym_comment, - ACTIONS(1514), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [128741] = 3, + ACTIONS(2374), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [128645] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4468), 1, sym_comment, - ACTIONS(1522), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [128754] = 5, - ACTIONS(3), 1, + ACTIONS(8236), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128658] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7787), 1, - anon_sym_RPAREN, - STATE(4351), 1, - aux_sym__block_body_repeat1, + ACTIONS(4814), 1, + sym__entry_separator, + STATE(2282), 1, + aux_sym__types_body_repeat2, STATE(4469), 1, sym_comment, - ACTIONS(8220), 2, - sym__newline, - anon_sym_SEMI, - [128771] = 4, + ACTIONS(8238), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128675] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(2598), 1, sym__entry_separator, + ACTIONS(2600), 1, + anon_sym_RBRACE, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_record, STATE(4470), 1, sym_comment, - ACTIONS(2666), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [128786] = 3, - ACTIONS(3), 1, + [128694] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4814), 1, + sym__entry_separator, + STATE(2283), 1, + aux_sym__types_body_repeat2, STATE(4471), 1, sym_comment, - ACTIONS(8246), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128799] = 6, - ACTIONS(3), 1, + ACTIONS(8238), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128711] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3092), 1, - anon_sym_SEMI, - STATE(1365), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(2668), 1, + sym__entry_separator, STATE(4472), 1, sym_comment, - STATE(4654), 1, - aux_sym__repeat_newline, - [128818] = 4, + ACTIONS(2670), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [128726] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - sym__unquoted_pattern, STATE(4473), 1, sym_comment, - ACTIONS(1226), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [128833] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4474), 1, - sym_comment, - ACTIONS(8248), 4, + ACTIONS(7448), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [128846] = 4, - ACTIONS(103), 1, + [128739] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8250), 1, - anon_sym_LPAREN, - STATE(4475), 1, + STATE(4474), 1, sym_comment, - ACTIONS(8252), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [128861] = 3, + ACTIONS(7319), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [128752] = 3, ACTIONS(3), 1, anon_sym_POUND, + STATE(4475), 1, + sym_comment, + ACTIONS(7506), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128765] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(4476), 1, sym_comment, - ACTIONS(1530), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [128874] = 3, + ACTIONS(5393), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6519), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128780] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4477), 1, sym_comment, - ACTIONS(1502), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [128887] = 3, + ACTIONS(8240), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128793] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4478), 1, sym_comment, - ACTIONS(1506), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [128900] = 6, + ACTIONS(7343), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [128806] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6914), 1, - anon_sym_LPAREN2, - ACTIONS(7719), 1, - anon_sym_RBRACK, - ACTIONS(7721), 1, + ACTIONS(2462), 1, sym__entry_separator, STATE(4479), 1, sym_comment, - STATE(4991), 1, - sym__expr_parenthesized_immediate, - [128919] = 6, + ACTIONS(2464), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [128821] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8254), 1, - anon_sym_LBRACK, - ACTIONS(8256), 1, - anon_sym_LPAREN, - STATE(4199), 1, - sym_parameter_parens, - STATE(4200), 1, - sym_parameter_bracks, STATE(4480), 1, sym_comment, - [128938] = 5, + ACTIONS(8242), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128834] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8258), 1, - anon_sym_RBRACK, - STATE(3587), 1, - aux_sym_parameter_repeat2, STATE(4481), 1, sym_comment, - ACTIONS(1484), 2, + ACTIONS(8244), 4, sym__newline, - anon_sym_COMMA, - [128955] = 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128847] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8254), 1, - anon_sym_LBRACK, - ACTIONS(8256), 1, - anon_sym_LPAREN, - STATE(4281), 1, - sym_parameter_parens, - STATE(4283), 1, - sym_parameter_bracks, STATE(4482), 1, sym_comment, - [128974] = 6, + ACTIONS(8246), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7902), 1, - sym__newline, - ACTIONS(7904), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, - anon_sym_EQ_GT, - STATE(4353), 1, - aux_sym_match_pattern_repeat1, STATE(4483), 1, sym_comment, - [128993] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4484), 1, - sym_comment, - ACTIONS(2360), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2362), 2, + ACTIONS(8248), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [129008] = 6, + [128873] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(5174), 1, anon_sym_LPAREN2, - ACTIONS(8071), 1, + ACTIONS(7979), 1, anon_sym_RBRACE, - ACTIONS(8073), 1, + ACTIONS(7981), 1, sym__entry_separator, - STATE(4485), 1, + STATE(4484), 1, sym_comment, - STATE(5058), 1, + STATE(4986), 1, sym__expr_parenthesized_immediate, - [129027] = 6, - ACTIONS(103), 1, + [128892] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2572), 1, - sym__entry_separator, - ACTIONS(2574), 1, - anon_sym_RBRACK, - ACTIONS(2576), 1, - anon_sym_LPAREN2, + STATE(4485), 1, + sym_comment, + ACTIONS(8250), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128905] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7839), 1, + sym__newline, + ACTIONS(7841), 1, + anon_sym_PIPE, + ACTIONS(8252), 1, + anon_sym_EQ_GT, + STATE(4362), 1, + aux_sym_match_pattern_repeat1, STATE(4486), 1, sym_comment, - [129046] = 5, + [128924] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3066), 1, - ts_builtin_sym_end, - STATE(1361), 1, - aux_sym__block_body_repeat1, STATE(4487), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(8254), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [129063] = 6, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128937] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - anon_sym_RBRACE, - ACTIONS(1699), 1, - sym__entry_separator, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_record, STATE(4488), 1, sym_comment, - [129082] = 3, - ACTIONS(3), 1, + ACTIONS(7454), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128950] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5480), 1, + anon_sym_COLON2, STATE(4489), 1, sym_comment, - ACTIONS(8262), 4, + STATE(4541), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5474), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129095] = 3, + sym__space, + [128967] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4490), 1, sym_comment, - ACTIONS(4151), 4, - ts_builtin_sym_end, + ACTIONS(7512), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [129108] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5826), 1, - sym__newline, - ACTIONS(8264), 1, - anon_sym_EQ, - ACTIONS(8266), 1, - anon_sym_COLON, - STATE(3537), 1, - aux_sym__repeat_newline, STATE(4491), 1, sym_comment, - [129127] = 3, + ACTIONS(4171), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [128993] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4492), 1, sym_comment, - ACTIONS(4149), 4, + ACTIONS(4191), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [129140] = 3, + [129006] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4493), 1, sym_comment, - ACTIONS(8268), 4, + ACTIONS(8256), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129153] = 4, + [129019] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2622), 1, - sym__unquoted_pattern, STATE(4494), 1, sym_comment, - ACTIONS(2616), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [129168] = 5, + ACTIONS(8256), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8270), 1, - anon_sym_DOT_DOT2, STATE(4495), 1, sym_comment, - ACTIONS(8272), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129185] = 4, + ACTIONS(8258), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - sym__unquoted_pattern, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8260), 1, + anon_sym_DOT_DOT2, STATE(4496), 1, sym_comment, - ACTIONS(968), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [129200] = 3, + ACTIONS(8262), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129062] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4497), 1, sym_comment, - ACTIONS(8274), 4, + ACTIONS(8264), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129213] = 3, + [129075] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4498), 1, sym_comment, - ACTIONS(7369), 4, + ACTIONS(8266), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [129226] = 3, + [129088] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4499), 1, sym_comment, - ACTIONS(8276), 4, + ACTIONS(8268), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129239] = 3, + [129101] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4500), 1, @@ -247123,17500 +248325,17769 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129252] = 3, + [129114] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2580), 1, + sym__unquoted_pattern, STATE(4501), 1, sym_comment, - ACTIONS(8278), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129265] = 3, - ACTIONS(3), 1, + ACTIONS(1714), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [129129] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2108), 1, + sym__entry_separator, STATE(4502), 1, sym_comment, - ACTIONS(8280), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2110), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [129278] = 3, + anon_sym_DOT_DOT, + [129144] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(3213), 1, + sym_block, STATE(4503), 1, sym_comment, - ACTIONS(8282), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129291] = 3, + STATE(4544), 1, + aux_sym__repeat_newline, + [129163] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4504), 1, sym_comment, - ACTIONS(8284), 4, + ACTIONS(8270), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129304] = 6, - ACTIONS(103), 1, + [129176] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8133), 1, - anon_sym_LBRACK, - ACTIONS(8286), 1, - anon_sym_RBRACK, - STATE(1913), 1, - aux_sym__types_body_repeat2, STATE(4505), 1, sym_comment, - [129323] = 6, - ACTIONS(103), 1, + ACTIONS(7411), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129189] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(8043), 1, - anon_sym_RBRACE, - ACTIONS(8045), 1, - sym__entry_separator, STATE(4506), 1, sym_comment, - STATE(5058), 1, - sym__expr_parenthesized_immediate, - [129342] = 3, + ACTIONS(1730), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [129204] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4507), 1, sym_comment, - ACTIONS(8288), 4, + ACTIONS(8272), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129355] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129217] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4508), 1, sym_comment, - ACTIONS(8290), 4, + ACTIONS(8274), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129368] = 3, - ACTIONS(3), 1, + [129230] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2580), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7512), 1, + sym__entry_separator, STATE(4509), 1, sym_comment, - ACTIONS(8292), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129381] = 6, + ACTIONS(7730), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [129247] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(3106), 1, - sym_block, - STATE(4357), 1, - aux_sym__repeat_newline, STATE(4510), 1, sym_comment, - [129400] = 6, - ACTIONS(103), 1, + ACTIONS(7417), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129260] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1641), 1, sym__unquoted_pattern_in_record, - ACTIONS(1972), 1, - sym__entry_separator, - ACTIONS(1974), 1, - anon_sym_RBRACE, - ACTIONS(1976), 1, - anon_sym_LPAREN2, + ACTIONS(8276), 1, + anon_sym_DOT_DOT2, STATE(4511), 1, sym_comment, - [129419] = 3, + ACTIONS(8278), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129277] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4512), 1, sym_comment, - ACTIONS(7462), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [129432] = 4, + ACTIONS(8280), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129290] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4513), 1, - sym_comment, - ACTIONS(1846), 2, + ACTIONS(1957), 1, anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2574), 1, sym__entry_separator, - ACTIONS(1848), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [129447] = 4, - ACTIONS(103), 1, + ACTIONS(2576), 1, + anon_sym_RBRACK, + STATE(4513), 1, + sym_comment, + [129309] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4514), 1, sym_comment, - ACTIONS(1895), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1897), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [129462] = 6, + ACTIONS(8282), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129322] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(6252), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2090), 1, sym__entry_separator, - ACTIONS(6254), 1, + ACTIONS(2092), 1, anon_sym_RBRACE, - STATE(4515), 1, - sym_comment, - STATE(5277), 1, - sym__expr_parenthesized_immediate, - [129481] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(2094), 1, anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym__entry_separator, - ACTIONS(6258), 1, - anon_sym_RBRACE, - STATE(4516), 1, + STATE(4515), 1, sym_comment, - STATE(5277), 1, - sym__expr_parenthesized_immediate, - [129500] = 3, + [129341] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4517), 1, + STATE(4516), 1, sym_comment, - ACTIONS(8294), 4, + ACTIONS(8284), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129513] = 6, + [129354] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1972), 1, + ACTIONS(1953), 1, sym__entry_separator, - ACTIONS(1974), 1, + ACTIONS(1955), 1, anon_sym_RBRACK, - ACTIONS(1976), 1, + ACTIONS(1957), 1, anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_list, + STATE(4517), 1, + sym_comment, + [129373] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4518), 1, sym_comment, - [129532] = 5, + ACTIONS(7450), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129386] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5430), 1, - anon_sym_COLON2, + ACTIONS(2546), 1, + sym__entry_separator, STATE(4519), 1, sym_comment, - STATE(4548), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5424), 2, - sym__newline, - sym__space, - [129549] = 6, + ACTIONS(2548), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [129401] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_RBRACK, - ACTIONS(1226), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern_in_list, + ACTIONS(1598), 1, + anon_sym_COLON2, + ACTIONS(8286), 1, + anon_sym_RBRACE, + STATE(1491), 1, + aux_sym__types_body_repeat2, STATE(4520), 1, sym_comment, - [129568] = 3, - ACTIONS(3), 1, + [129420] = 3, + ACTIONS(103), 1, anon_sym_POUND, STATE(4521), 1, sym_comment, - ACTIONS(8296), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129581] = 3, + ACTIONS(1545), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [129433] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4522), 1, sym_comment, - ACTIONS(8296), 4, + ACTIONS(8288), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129594] = 3, + [129446] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, STATE(4523), 1, sym_comment, - ACTIONS(8298), 4, + ACTIONS(2090), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129607] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129461] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8300), 1, - anon_sym_DOT_DOT2, STATE(4524), 1, sym_comment, - ACTIONS(8302), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129624] = 3, - ACTIONS(3), 1, + ACTIONS(8290), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129474] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4525), 1, + ACTIONS(3456), 1, + anon_sym_COLON2, + ACTIONS(8292), 2, + sym__newline, + sym__space, + STATE(4525), 2, sym_comment, - ACTIONS(8304), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [129637] = 6, + aux_sym_pipe_element_parenthesized_repeat1, + [129489] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1020), 1, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(8295), 1, anon_sym_RBRACK, - ACTIONS(1234), 1, + ACTIONS(8297), 1, sym__entry_separator, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern_in_list, STATE(4526), 1, sym_comment, - [129656] = 3, - ACTIONS(3), 1, + STATE(5519), 1, + sym__expr_parenthesized_immediate, + [129508] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4527), 1, sym_comment, - ACTIONS(8298), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1730), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1732), 2, anon_sym_RBRACE, - [129669] = 3, + sym__unquoted_pattern_in_record, + [129523] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4528), 1, sym_comment, - ACTIONS(8306), 4, + ACTIONS(8299), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129682] = 3, - ACTIONS(3), 1, + [129536] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2466), 1, + sym__entry_separator, STATE(4529), 1, sym_comment, - ACTIONS(8306), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2468), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [129695] = 6, + anon_sym_DOT_DOT, + [129551] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6914), 1, - anon_sym_LPAREN2, - ACTIONS(8308), 1, - anon_sym_RBRACK, - ACTIONS(8310), 1, - sym__entry_separator, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(3003), 1, + sym_block, STATE(4530), 1, sym_comment, - STATE(5088), 1, - sym__expr_parenthesized_immediate, - [129714] = 6, - ACTIONS(3), 1, + [129570] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8254), 1, - anon_sym_LBRACK, - ACTIONS(8256), 1, - anon_sym_LPAREN, - STATE(4239), 1, - sym_parameter_parens, - STATE(4334), 1, - sym_parameter_bracks, + ACTIONS(1953), 1, + sym__entry_separator, + ACTIONS(1955), 1, + anon_sym_RBRACE, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_record, STATE(4531), 1, sym_comment, - [129733] = 3, - ACTIONS(3), 1, + [129589] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(8195), 1, + anon_sym_LBRACK, + ACTIONS(8301), 1, + anon_sym_RBRACK, + STATE(1932), 1, + aux_sym__types_body_repeat2, STATE(4532), 1, sym_comment, - ACTIONS(7412), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [129746] = 3, - ACTIONS(3), 1, + [129608] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(8303), 1, + anon_sym_RBRACK, + ACTIONS(8305), 1, + sym__entry_separator, STATE(4533), 1, sym_comment, - ACTIONS(8312), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129759] = 3, + STATE(5519), 1, + sym__expr_parenthesized_immediate, + [129627] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7351), 1, + sym__unquoted_pattern, STATE(4534), 1, sym_comment, - ACTIONS(8312), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129772] = 3, - ACTIONS(3), 1, + ACTIONS(884), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [129642] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2590), 1, + sym__entry_separator, + ACTIONS(2592), 1, + anon_sym_RBRACE, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern_in_record, STATE(4535), 1, sym_comment, - ACTIONS(4159), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [129785] = 3, - ACTIONS(3), 1, + [129661] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4536), 1, sym_comment, - ACTIONS(4165), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [129798] = 3, + ACTIONS(1832), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1834), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [129676] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4537), 1, sym_comment, - ACTIONS(8314), 4, + ACTIONS(8307), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129811] = 3, - ACTIONS(3), 1, + [129689] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4538), 1, sym_comment, - ACTIONS(8314), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1919), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1921), 2, anon_sym_RBRACE, - [129824] = 3, + sym__unquoted_pattern_in_record, + [129704] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8210), 1, + anon_sym_LBRACE, + STATE(3384), 1, + sym__blosure, STATE(4539), 1, sym_comment, - ACTIONS(8296), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129837] = 3, + STATE(3383), 2, + sym_block, + sym_val_closure, + [129721] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4540), 1, sym_comment, - ACTIONS(8296), 4, + ACTIONS(1832), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1834), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [129736] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8309), 1, + anon_sym_COLON2, + STATE(4525), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(4541), 1, + sym_comment, + ACTIONS(5474), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129850] = 3, + sym__space, + [129753] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4541), 1, + STATE(4542), 1, sym_comment, - ACTIONS(8298), 4, + ACTIONS(8311), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129863] = 3, + [129766] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4542), 1, + ACTIONS(8313), 1, + anon_sym_LBRACE, + ACTIONS(8315), 1, + anon_sym_DOT_DOT2, + STATE(4543), 1, sym_comment, - ACTIONS(7416), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [129876] = 3, + ACTIONS(8317), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129783] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4543), 1, - sym_comment, - ACTIONS(8298), 4, + ACTIONS(2935), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129889] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2652), 1, - sym__entry_separator, - ACTIONS(2654), 1, - anon_sym_RBRACE, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3179), 1, + sym_block, STATE(4544), 1, sym_comment, - [129908] = 6, - ACTIONS(103), 1, + [129802] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1982), 1, - sym__entry_separator, - ACTIONS(1984), 1, - anon_sym_RBRACE, - ACTIONS(1986), 1, - anon_sym_LPAREN2, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1732), 1, + sym__unquoted_pattern, STATE(4545), 1, sym_comment, - [129927] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4546), 1, - sym_comment, - ACTIONS(1551), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [129940] = 3, + ACTIONS(1730), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129817] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4547), 1, + STATE(4546), 1, sym_comment, - ACTIONS(7388), 4, + ACTIONS(8319), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [129953] = 5, + [129830] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8316), 1, - anon_sym_COLON2, - STATE(4432), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(4548), 1, - sym_comment, - ACTIONS(5424), 2, - sym__newline, - sym__space, - [129970] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2608), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2090), 1, sym__entry_separator, - ACTIONS(2610), 1, + ACTIONS(2092), 1, anon_sym_RBRACK, - ACTIONS(2612), 1, + ACTIONS(2094), 1, anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_list, - STATE(4549), 1, + STATE(4547), 1, sym_comment, - [129989] = 6, + [129849] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(1885), 1, sym__entry_separator, - ACTIONS(8133), 1, - anon_sym_LBRACK, - ACTIONS(8318), 1, + STATE(4548), 1, + sym_comment, + ACTIONS(1887), 3, anon_sym_RBRACK, - STATE(1913), 1, - aux_sym__types_body_repeat2, + anon_sym_GT2, + anon_sym_RBRACE, + [129864] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2608), 1, + sym__unquoted_pattern, + STATE(4549), 1, + sym_comment, + ACTIONS(1216), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [129879] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8210), 1, + anon_sym_LBRACE, + STATE(3569), 1, + sym__blosure, STATE(4550), 1, sym_comment, - [130008] = 4, + STATE(3383), 2, + sym_block, + sym_val_closure, + [129896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, + ACTIONS(2608), 1, sym__unquoted_pattern, STATE(4551), 1, sym_comment, - ACTIONS(1226), 3, + ACTIONS(1234), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [130023] = 6, + [129911] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3107), 1, - sym_block, STATE(4552), 1, sym_comment, - [130042] = 3, + ACTIONS(1919), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1921), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [129926] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(8321), 1, + anon_sym_LBRACK, + STATE(503), 1, + aux_sym__repeat_newline, STATE(4553), 1, sym_comment, - ACTIONS(8306), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130055] = 3, - ACTIONS(3), 1, + STATE(5295), 1, + sym_val_list, + [129945] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1582), 1, + sym__entry_separator, STATE(4554), 1, sym_comment, - ACTIONS(8320), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130068] = 6, - ACTIONS(103), 1, + ACTIONS(1580), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [129960] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2572), 1, - sym__entry_separator, - ACTIONS(2574), 1, - anon_sym_RBRACE, - ACTIONS(2576), 1, - anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern, STATE(4555), 1, sym_comment, - [130087] = 6, + ACTIONS(2574), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129975] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2608), 1, + ACTIONS(1216), 1, sym__entry_separator, - ACTIONS(2610), 1, - anon_sym_RBRACE, - ACTIONS(2612), 1, + ACTIONS(1218), 1, + anon_sym_RBRACK, + ACTIONS(2606), 1, anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_record, + ACTIONS(2608), 1, + sym__unquoted_pattern_in_list, STATE(4556), 1, sym_comment, - [130106] = 3, + [129994] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1963), 1, + sym__unquoted_pattern, STATE(4557), 1, sym_comment, - ACTIONS(8306), 4, + ACTIONS(1953), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130119] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130009] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1226), 1, + anon_sym_RBRACK, + ACTIONS(1234), 1, + sym__entry_separator, + ACTIONS(2606), 1, + anon_sym_LPAREN2, + ACTIONS(2608), 1, + sym__unquoted_pattern_in_list, STATE(4558), 1, sym_comment, - ACTIONS(8322), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130132] = 3, + [130028] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + STATE(4086), 1, + sym_parameter_parens, + STATE(4087), 1, + sym_parameter_bracks, STATE(4559), 1, sym_comment, - ACTIONS(7392), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130145] = 3, + [130047] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4560), 1, sym_comment, - ACTIONS(8322), 4, + ACTIONS(8323), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130158] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130060] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2454), 1, + sym__entry_separator, STATE(4561), 1, sym_comment, - ACTIONS(8324), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2456), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [130171] = 4, + anon_sym_DOT_DOT, + [130075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2362), 1, + ACTIONS(1653), 1, sym__unquoted_pattern, STATE(4562), 1, sym_comment, - ACTIONS(2360), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [130186] = 6, - ACTIONS(103), 1, + ACTIONS(2584), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130090] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2616), 1, - sym__entry_separator, - ACTIONS(2618), 1, - anon_sym_RBRACE, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - sym__unquoted_pattern_in_record, + ACTIONS(7772), 1, + anon_sym_RPAREN, STATE(4563), 1, sym_comment, - [130205] = 4, + STATE(4576), 1, + aux_sym__block_body_repeat1, + ACTIONS(8177), 2, + sym__newline, + anon_sym_SEMI, + [130107] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7285), 1, - sym__unquoted_pattern, STATE(4564), 1, sym_comment, - ACTIONS(968), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [130220] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4565), 1, - sym_comment, - ACTIONS(8324), 4, + ACTIONS(8325), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130233] = 3, + [130120] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(4565), 1, + sym_comment, + ACTIONS(2590), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130135] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8327), 1, + anon_sym_LPAREN, STATE(4566), 1, sym_comment, - ACTIONS(7432), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130246] = 3, + ACTIONS(8329), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [130150] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3218), 1, + sym_block, STATE(4567), 1, sym_comment, - ACTIONS(8326), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130259] = 3, - ACTIONS(3), 1, + [130169] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2406), 1, + sym__entry_separator, STATE(4568), 1, sym_comment, - ACTIONS(8326), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2408), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [130272] = 5, + anon_sym_DOT_DOT, + [130184] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(2580), 1, sym__unquoted_pattern, - ACTIONS(8328), 1, - anon_sym_DOT_DOT2, STATE(4569), 1, sym_comment, - ACTIONS(8330), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130289] = 3, + ACTIONS(7512), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130199] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1834), 1, + sym__unquoted_pattern, STATE(4570), 1, sym_comment, - ACTIONS(8332), 4, + ACTIONS(1832), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130302] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130214] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8315), 1, + anon_sym_DOT_DOT2, + ACTIONS(8331), 1, + anon_sym_LBRACE, STATE(4571), 1, sym_comment, - ACTIONS(8334), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130315] = 3, + ACTIONS(8317), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130231] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2572), 1, + sym__unquoted_pattern, STATE(4572), 1, sym_comment, - ACTIONS(8332), 4, + ACTIONS(2570), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130328] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130246] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2634), 1, - sym__unquoted_pattern, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4564), 1, + sym_block, STATE(4573), 1, sym_comment, - ACTIONS(1234), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [130343] = 4, - ACTIONS(103), 1, + [130265] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1580), 1, - sym__entry_separator, STATE(4574), 1, sym_comment, - ACTIONS(1578), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [130358] = 3, + ACTIONS(8333), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130278] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4575), 1, sym_comment, - ACTIONS(7359), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130371] = 6, + ACTIONS(8335), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130291] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_LBRACK, - ACTIONS(7468), 1, - anon_sym_LPAREN, - STATE(3998), 1, - sym_parameter_parens, - STATE(3999), 1, - sym_parameter_bracks, - STATE(4576), 1, + ACTIONS(3068), 1, + anon_sym_RPAREN, + ACTIONS(8337), 2, + sym__newline, + anon_sym_SEMI, + STATE(4576), 2, sym_comment, - [130390] = 3, + aux_sym__block_body_repeat1, + [130306] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4577), 1, sym_comment, - ACTIONS(8336), 4, + ACTIONS(8335), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130403] = 6, - ACTIONS(103), 1, + [130319] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8133), 1, - anon_sym_LBRACK, - ACTIONS(8338), 1, - anon_sym_RBRACK, - STATE(1913), 1, - aux_sym__types_body_repeat2, STATE(4578), 1, sym_comment, - [130422] = 5, - ACTIONS(3), 1, + ACTIONS(8340), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130332] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8184), 1, - anon_sym_LBRACE, - STATE(3451), 1, - sym__blosure, + ACTIONS(2378), 1, + sym__entry_separator, STATE(4579), 1, sym_comment, - STATE(3249), 2, - sym_block, - sym_val_closure, - [130439] = 3, + ACTIONS(2380), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130347] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4580), 1, sym_comment, - ACTIONS(8324), 4, + ACTIONS(8340), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130452] = 3, + [130360] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4581), 1, sym_comment, - ACTIONS(8324), 4, + ACTIONS(8342), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130465] = 3, - ACTIONS(103), 1, + [130373] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4582), 1, sym_comment, - ACTIONS(1543), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [130478] = 5, + ACTIONS(8344), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130386] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8146), 1, - anon_sym_DOT_DOT2, - ACTIONS(8340), 1, - anon_sym_LBRACE, STATE(4583), 1, sym_comment, - ACTIONS(8148), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130495] = 4, - ACTIONS(103), 1, + ACTIONS(8346), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130399] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8342), 1, - sym__space, - ACTIONS(5899), 2, + ACTIONS(3064), 1, + ts_builtin_sym_end, + STATE(1380), 1, + aux_sym__block_body_repeat1, + STATE(4584), 1, + sym_comment, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - STATE(4584), 2, - sym_comment, - aux_sym_attribute_repeat1, - [130510] = 6, + [130416] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_RBRACE, - ACTIONS(1226), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1598), 1, + anon_sym_COLON2, + ACTIONS(8348), 1, + anon_sym_RBRACE, + STATE(1490), 1, + aux_sym__types_body_repeat2, STATE(4585), 1, sym_comment, - [130529] = 6, + [130435] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_RBRACE, - ACTIONS(1234), 1, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8352), 1, + anon_sym_GT2, + ACTIONS(8354), 1, sym__entry_separator, - ACTIONS(2632), 1, - anon_sym_LPAREN2, - ACTIONS(2634), 1, - sym__unquoted_pattern_in_record, STATE(4586), 1, sym_comment, - [130548] = 4, - ACTIONS(103), 1, + STATE(4942), 1, + sym__collection_annotation, + [130454] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8345), 1, - anon_sym_LPAREN, STATE(4587), 1, sym_comment, - ACTIONS(8347), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [130563] = 5, - ACTIONS(3), 1, + ACTIONS(8356), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130467] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3356), 1, - sym__blosure, STATE(4588), 1, sym_comment, - STATE(3141), 2, - sym_block, - sym_val_closure, - [130580] = 5, + ACTIONS(1476), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [130480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(8349), 1, - anon_sym_DOT_DOT2, STATE(4589), 1, sym_comment, - ACTIONS(8351), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130597] = 6, - ACTIONS(103), 1, + ACTIONS(4195), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [130493] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6914), 1, - anon_sym_LPAREN2, - ACTIONS(8353), 1, - anon_sym_RBRACK, - ACTIONS(8355), 1, - sym__entry_separator, + ACTIONS(1784), 1, + anon_sym_LBRACE, + ACTIONS(1786), 1, + sym__unquoted_pattern, + ACTIONS(8358), 1, + anon_sym_DOT, + ACTIONS(8360), 1, + aux_sym__immediate_decimal_token5, STATE(4590), 1, sym_comment, - STATE(5088), 1, - sym__expr_parenthesized_immediate, - [130616] = 3, + [130512] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3060), 1, + ts_builtin_sym_end, + STATE(1387), 1, + aux_sym__block_body_repeat1, STATE(4591), 1, sym_comment, - ACTIONS(8326), 4, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130629] = 5, + [130529] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(447), 1, - ts_builtin_sym_end, - STATE(1373), 1, - aux_sym__block_body_repeat1, STATE(4592), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(4163), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130646] = 3, + anon_sym_LBRACE, + [130542] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4593), 1, sym_comment, - ACTIONS(8326), 4, + ACTIONS(8362), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130659] = 4, + [130555] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4594), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1732), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [130674] = 3, + ACTIONS(8362), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130568] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4595), 1, sym_comment, - ACTIONS(8332), 4, + ACTIONS(8364), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130687] = 3, + [130581] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4596), 1, sym_comment, - ACTIONS(8332), 4, + ACTIONS(8364), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130700] = 3, - ACTIONS(3), 1, + [130594] = 3, + ACTIONS(103), 1, anon_sym_POUND, STATE(4597), 1, sym_comment, - ACTIONS(8357), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130713] = 4, + ACTIONS(1512), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [130607] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4598), 1, sym_comment, - ACTIONS(1846), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [130728] = 4, + ACTIONS(8335), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130620] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4599), 1, sym_comment, - ACTIONS(1895), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1897), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [130743] = 3, + ACTIONS(8335), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130633] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4600), 1, sym_comment, - ACTIONS(8357), 4, + ACTIONS(8366), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130756] = 3, + [130646] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3211), 1, + sym__blosure, STATE(4601), 1, sym_comment, - ACTIONS(8359), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130769] = 3, + STATE(3210), 2, + sym_block, + sym_val_closure, + [130663] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4602), 1, sym_comment, - ACTIONS(8359), 4, + ACTIONS(8368), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130782] = 6, + [130676] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(6269), 1, + ACTIONS(2410), 1, sym__entry_separator, - ACTIONS(6271), 1, - anon_sym_RBRACE, STATE(4603), 1, sym_comment, - STATE(5277), 1, - sym__expr_parenthesized_immediate, - [130801] = 3, - ACTIONS(3), 1, + ACTIONS(2412), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130691] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4604), 1, + ACTIONS(8370), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4604), 2, sym_comment, - ACTIONS(8359), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130814] = 3, - ACTIONS(3), 1, + aux_sym_string_content_repeat1, + [130706] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1653), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2584), 1, + sym__entry_separator, + ACTIONS(2586), 1, + anon_sym_RBRACK, + ACTIONS(2588), 1, + anon_sym_LPAREN2, STATE(4605), 1, sym_comment, - ACTIONS(8359), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130827] = 3, + [130725] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4606), 1, sym_comment, - ACTIONS(8361), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130840] = 3, + ACTIONS(8375), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130738] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3370), 1, + sym__blosure, STATE(4607), 1, sym_comment, - ACTIONS(8361), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130853] = 3, - ACTIONS(3), 1, + STATE(3210), 2, + sym_block, + sym_val_closure, + [130755] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2598), 1, + sym__entry_separator, + ACTIONS(2600), 1, + anon_sym_RBRACK, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_list, STATE(4608), 1, sym_comment, - ACTIONS(8363), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130866] = 3, + [130774] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4609), 1, sym_comment, - ACTIONS(8363), 4, + ACTIONS(8344), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130879] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130787] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4610), 1, sym_comment, - ACTIONS(8365), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130892] = 3, + ACTIONS(8377), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130800] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4611), 1, sym_comment, - ACTIONS(8365), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130905] = 3, - ACTIONS(3), 1, + ACTIONS(8379), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130813] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4814), 1, + sym__entry_separator, + STATE(2285), 1, + aux_sym__types_body_repeat2, STATE(4612), 1, sym_comment, - ACTIONS(8367), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130918] = 3, - ACTIONS(3), 1, + ACTIONS(8381), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [130830] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4814), 1, + sym__entry_separator, + STATE(2273), 1, + aux_sym__types_body_repeat2, STATE(4613), 1, sym_comment, - ACTIONS(8369), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130931] = 3, - ACTIONS(3), 1, + ACTIONS(8381), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [130847] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1893), 1, + sym__entry_separator, STATE(4614), 1, sym_comment, - ACTIONS(8371), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130944] = 3, + ACTIONS(1895), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [130862] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7528), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + anon_sym_LPAREN, + STATE(4037), 1, + sym_parameter_parens, + STATE(4038), 1, + sym_parameter_bracks, STATE(4615), 1, sym_comment, - ACTIONS(8373), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130957] = 3, + [130881] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1921), 1, + sym__unquoted_pattern, STATE(4616), 1, sym_comment, - ACTIONS(8375), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130970] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4617), 1, - sym_comment, - ACTIONS(8371), 4, - anon_sym_if, + ACTIONS(1919), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [130983] = 3, - ACTIONS(3), 1, + [130896] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1588), 1, + anon_sym_RBRACK, + ACTIONS(1714), 1, + sym__entry_separator, + ACTIONS(2578), 1, + anon_sym_LPAREN2, + ACTIONS(2580), 1, + sym__unquoted_pattern_in_list, + STATE(4617), 1, + sym_comment, + [130915] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(6604), 1, + sym__unquoted_pattern_in_list, STATE(4618), 1, sym_comment, - ACTIONS(7574), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130996] = 3, + ACTIONS(785), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [130932] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_LBRACE, + ACTIONS(8383), 1, + anon_sym_DOT_DOT2, STATE(4619), 1, sym_comment, - ACTIONS(8377), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131009] = 3, - ACTIONS(3), 1, + ACTIONS(8385), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130949] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4620), 1, sym_comment, - ACTIONS(7486), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131022] = 3, + ACTIONS(5395), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6533), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [130964] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4621), 1, sym_comment, - ACTIONS(8379), 4, - anon_sym_if, + ACTIONS(4509), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131035] = 5, - ACTIONS(103), 1, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT, + [130977] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - STATE(2267), 1, - aux_sym__types_body_repeat2, + ACTIONS(1714), 1, + anon_sym_LBRACE, + ACTIONS(8315), 1, + anon_sym_DOT_DOT2, STATE(4622), 1, sym_comment, - ACTIONS(8381), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131052] = 5, + ACTIONS(8317), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130994] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(8387), 1, + anon_sym_RBRACK, + ACTIONS(8389), 1, sym__entry_separator, - STATE(2265), 1, - aux_sym__types_body_repeat2, STATE(4623), 1, sym_comment, - ACTIONS(8381), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131069] = 6, - ACTIONS(103), 1, + STATE(5519), 1, + sym__expr_parenthesized_immediate, + [131013] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1730), 1, + anon_sym_LBRACE, + ACTIONS(1732), 1, + sym__unquoted_pattern, + ACTIONS(8391), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8393), 1, + aux_sym__immediate_decimal_token5, + STATE(4624), 1, + sym_comment, + [131032] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(6273), 1, - sym__entry_separator, - ACTIONS(6275), 1, - anon_sym_RBRACE, - STATE(4624), 1, + ACTIONS(7686), 1, + anon_sym_LBRACE, + STATE(3331), 1, + sym__blosure, + STATE(4625), 1, sym_comment, - STATE(5277), 1, - sym__expr_parenthesized_immediate, - [131088] = 4, + STATE(3210), 2, + sym_block, + sym_val_closure, + [131049] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(2394), 1, sym__entry_separator, - STATE(4625), 1, + STATE(4626), 1, sym_comment, - ACTIONS(847), 3, + ACTIONS(2396), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [131103] = 5, + [131064] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8383), 1, - anon_sym_RPAREN, - STATE(4351), 1, + ACTIONS(461), 1, + ts_builtin_sym_end, + STATE(1373), 1, aux_sym__block_body_repeat1, - STATE(4626), 1, + STATE(4627), 1, sym_comment, - ACTIONS(8220), 2, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - [131120] = 3, + [131081] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4627), 1, + STATE(4628), 1, sym_comment, - ACTIONS(8385), 4, - anon_sym_if, + ACTIONS(8395), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131133] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131094] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2148), 1, + ACTIONS(2558), 1, sym__entry_separator, - STATE(4628), 1, + STATE(4629), 1, sym_comment, - ACTIONS(2150), 3, + ACTIONS(2560), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [131148] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(1625), 1, - anon_sym_COLON2, - ACTIONS(8387), 1, - anon_sym_RBRACE, - STATE(1466), 1, - aux_sym__types_body_repeat2, - STATE(4629), 1, - sym_comment, - [131167] = 3, + [131109] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4630), 1, sym_comment, - ACTIONS(7418), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [131180] = 4, + ACTIONS(8395), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131122] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern, STATE(4631), 1, sym_comment, - ACTIONS(1730), 3, + ACTIONS(8397), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131195] = 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131135] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(3547), 1, - sym_block, STATE(4632), 1, sym_comment, - STATE(4636), 1, - aux_sym__repeat_newline, - [131214] = 3, + ACTIONS(8397), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131148] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4633), 1, sym_comment, - ACTIONS(8389), 4, - anon_sym_if, + ACTIONS(8136), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131227] = 4, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131161] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4634), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1732), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [131242] = 6, + ACTIONS(7430), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [131174] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(3548), 1, - sym_block, STATE(4635), 1, sym_comment, - STATE(4637), 1, - aux_sym__repeat_newline, - [131261] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(8136), 4, sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3549), 1, - sym_block, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131187] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1957), 1, + anon_sym_LPAREN2, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2574), 1, + sym__entry_separator, + ACTIONS(2576), 1, + anon_sym_RBRACE, STATE(4636), 1, sym_comment, - [131280] = 6, - ACTIONS(3), 1, + [131206] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3551), 1, - sym_block, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(6394), 1, + sym__entry_separator, + ACTIONS(6396), 1, + anon_sym_RBRACE, STATE(4637), 1, sym_comment, - [131299] = 4, - ACTIONS(3), 1, + STATE(5470), 1, + sym__expr_parenthesized_immediate, + [131225] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1848), 1, - sym__unquoted_pattern, STATE(4638), 1, sym_comment, - ACTIONS(1846), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131314] = 3, + ACTIONS(5387), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6513), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [131240] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4639), 1, sym_comment, - ACTIONS(8391), 4, + ACTIONS(8399), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [131327] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131253] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1897), 1, - sym__unquoted_pattern, + ACTIONS(1596), 1, + sym__entry_separator, + ACTIONS(1598), 1, + anon_sym_COLON2, + ACTIONS(8401), 1, + anon_sym_RBRACE, + STATE(1483), 1, + aux_sym__types_body_repeat2, STATE(4640), 1, sym_comment, - ACTIONS(1895), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131342] = 3, + [131272] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2458), 1, + sym__entry_separator, STATE(4641), 1, sym_comment, - ACTIONS(1468), 4, + ACTIONS(2460), 3, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [131355] = 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [131287] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4642), 1, sym_comment, - ACTIONS(8393), 4, - anon_sym_if, + ACTIONS(4143), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131368] = 6, + anon_sym_SEMI, + anon_sym_LBRACE, + [131300] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2935), 1, sym__newline, - ACTIONS(3898), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(3373), 1, + STATE(3549), 1, sym_block, STATE(4643), 1, sym_comment, - STATE(4645), 1, + STATE(4649), 1, aux_sym__repeat_newline, - [131387] = 6, - ACTIONS(3), 1, + [131319] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(3374), 1, - sym_block, + ACTIONS(8403), 1, + anon_sym_GT2, + ACTIONS(8405), 1, + anon_sym_AT2, + ACTIONS(8407), 1, + sym__entry_separator, STATE(4644), 1, sym_comment, - STATE(4646), 1, - aux_sym__repeat_newline, - [131406] = 6, + STATE(4943), 1, + sym_param_completer, + [131338] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3375), 1, - sym_block, STATE(4645), 1, sym_comment, - [131425] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(4173), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(3898), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(3377), 1, - sym_block, - STATE(4646), 1, - sym_comment, - [131444] = 4, + [131351] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2545), 1, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(6398), 1, sym__entry_separator, + ACTIONS(6400), 1, + anon_sym_RBRACE, + STATE(4646), 1, + sym_comment, + STATE(5470), 1, + sym__expr_parenthesized_immediate, + [131370] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4647), 1, sym_comment, - ACTIONS(2547), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131459] = 4, + ACTIONS(7710), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [131383] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(3550), 1, + sym_block, STATE(4648), 1, sym_comment, - ACTIONS(1699), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [131474] = 3, + STATE(4651), 1, + aux_sym__repeat_newline, + [131402] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3551), 1, + sym_block, STATE(4649), 1, sym_comment, - ACTIONS(8395), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [131487] = 4, - ACTIONS(103), 1, + [131421] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4650), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1732), 2, + ACTIONS(8409), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [131502] = 3, + [131434] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3553), 1, + sym_block, STATE(4651), 1, sym_comment, - ACTIONS(8236), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131514] = 3, + [131453] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8149), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + anon_sym_LPAREN, + STATE(4350), 1, + sym_parameter_parens, + STATE(4352), 1, + sym_parameter_bracks, STATE(4652), 1, sym_comment, - ACTIONS(8314), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131526] = 5, + [131472] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(2368), 1, sym__entry_separator, - ACTIONS(8397), 1, - anon_sym_RBRACE, - STATE(1472), 1, - aux_sym__types_body_repeat2, STATE(4653), 1, sym_comment, - [131542] = 5, + ACTIONS(2370), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [131487] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(3331), 1, - anon_sym_SEMI, - STATE(485), 1, - aux_sym__repeat_newline, STATE(4654), 1, sym_comment, - [131558] = 5, + ACTIONS(8409), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_RBRACK, - ACTIONS(8401), 1, - sym_hex_digit, STATE(4655), 1, sym_comment, - STATE(4658), 1, - aux_sym_val_binary_repeat1, - [131574] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4656), 1, - sym_comment, - ACTIONS(8326), 3, - ts_builtin_sym_end, + ACTIONS(8395), 4, sym__newline, anon_sym_SEMI, - [131586] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131513] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2481), 1, + ACTIONS(2241), 1, sym__entry_separator, - STATE(4657), 1, + STATE(4656), 1, sym_comment, - ACTIONS(2483), 2, + ACTIONS(2243), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [131600] = 5, + anon_sym_DOT_DOT, + [131528] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8403), 1, - anon_sym_RBRACK, - STATE(4658), 1, + STATE(4657), 1, sym_comment, - STATE(4876), 1, - aux_sym_val_binary_repeat1, - [131616] = 4, + ACTIONS(8395), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131541] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6356), 1, - sym__entry_separator, + ACTIONS(8411), 1, + anon_sym_DQUOTE, + STATE(4604), 1, + aux_sym_string_content_repeat1, + STATE(4658), 1, + sym_comment, + ACTIONS(7955), 2, + sym__escaped_str_content, + sym_escape_sequence, + [131558] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(3254), 1, + sym_block, + STATE(4567), 1, + aux_sym__repeat_newline, STATE(4659), 1, sym_comment, - ACTIONS(6354), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [131630] = 4, + [131577] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2485), 1, + ACTIONS(2249), 1, sym__entry_separator, STATE(4660), 1, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2251), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [131644] = 3, + anon_sym_DOT_DOT, + [131592] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(3391), 1, + sym_block, STATE(4661), 1, sym_comment, - ACTIONS(8296), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131656] = 5, + STATE(4663), 1, + aux_sym__repeat_newline, + [131611] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, - sym__unquoted_pattern, - ACTIONS(8405), 1, - aux_sym__immediate_decimal_token5, + STATE(3392), 1, + sym_block, STATE(4662), 1, sym_comment, - [131672] = 5, - ACTIONS(103), 1, + STATE(4664), 1, + aux_sym__repeat_newline, + [131630] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4778), 1, - anon_sym_RBRACE, - ACTIONS(4780), 1, - sym__entry_separator, - STATE(2259), 1, - aux_sym__types_body_repeat2, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3393), 1, + sym_block, STATE(4663), 1, sym_comment, - [131688] = 3, + [131649] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(3395), 1, + sym_block, STATE(4664), 1, sym_comment, - ACTIONS(8357), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131700] = 3, - ACTIONS(103), 1, + [131668] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4665), 1, sym_comment, - ACTIONS(1889), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [131712] = 5, + ACTIONS(8397), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131681] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4096), 1, - anon_sym_AT2, - ACTIONS(5778), 1, - anon_sym_EQ, - STATE(3151), 1, - sym_param_completer, STATE(4666), 1, sym_comment, - [131728] = 4, + ACTIONS(8397), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131694] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5283), 1, - sym__entry_separator, + ACTIONS(884), 1, + sym__space, + ACTIONS(5046), 1, + sym__unquoted_pattern, STATE(4667), 1, sym_comment, - ACTIONS(5850), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [131742] = 5, - ACTIONS(3), 1, + ACTIONS(785), 2, + sym__newline, + anon_sym_SEMI, + [131711] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LBRACE, - ACTIONS(1792), 1, - sym__unquoted_pattern, - ACTIONS(8216), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(8234), 1, + sym__space, + STATE(4371), 1, + aux_sym_attribute_repeat1, STATE(4668), 1, sym_comment, - [131758] = 4, + ACTIONS(8413), 2, + sym__newline, + anon_sym_SEMI, + [131728] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5249), 1, + ACTIONS(2257), 1, sym__entry_separator, STATE(4669), 1, sym_comment, - ACTIONS(5818), 2, + ACTIONS(2259), 3, anon_sym_RBRACK, - anon_sym_GT2, - [131772] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [131743] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4670), 1, sym_comment, - ACTIONS(4615), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [131784] = 5, + ACTIONS(5243), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6230), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [131758] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(847), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6659), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8415), 1, + anon_sym_LPAREN, STATE(4671), 1, sym_comment, - [131800] = 5, - ACTIONS(3), 1, + ACTIONS(8417), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [131773] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8407), 1, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(8195), 1, + anon_sym_LBRACK, + ACTIONS(8419), 1, anon_sym_RBRACK, + STATE(1932), 1, + aux_sym__types_body_repeat2, STATE(4672), 1, sym_comment, - STATE(4677), 1, - aux_sym_val_binary_repeat1, - [131816] = 3, + [131792] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8421), 1, + anon_sym_RBRACK, + ACTIONS(8423), 1, + sym_hex_digit, STATE(4673), 1, sym_comment, - ACTIONS(8332), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131828] = 3, + STATE(4868), 1, + aux_sym_val_binary_repeat1, + [131808] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(8425), 1, + anon_sym_COLON, + STATE(503), 1, + aux_sym__repeat_newline, STATE(4674), 1, sym_comment, - ACTIONS(8409), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [131840] = 3, - ACTIONS(3), 1, + [131824] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(8427), 1, + anon_sym_RBRACK, + STATE(4464), 1, + aux_sym__types_body_repeat2, STATE(4675), 1, sym_comment, - ACTIONS(8294), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131852] = 3, + [131840] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4676), 1, sym_comment, - ACTIONS(8234), 3, - ts_builtin_sym_end, + ACTIONS(8429), 3, sym__newline, anon_sym_SEMI, - [131864] = 5, + anon_sym_RPAREN, + [131852] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8411), 1, - anon_sym_RBRACK, STATE(4677), 1, sym_comment, - STATE(4876), 1, - aux_sym_val_binary_repeat1, - [131880] = 5, - ACTIONS(103), 1, + ACTIONS(8431), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [131864] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8133), 1, - anon_sym_LBRACK, - STATE(1913), 1, - aux_sym__types_body_repeat2, STATE(4678), 1, sym_comment, - [131896] = 5, + ACTIONS(8140), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [131876] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4096), 1, - anon_sym_AT2, - ACTIONS(5778), 1, - anon_sym_EQ, - STATE(3152), 1, - sym_param_completer, STATE(4679), 1, sym_comment, - [131912] = 3, + ACTIONS(8140), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [131888] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4680), 1, sym_comment, - ACTIONS(8158), 3, + ACTIONS(8206), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131924] = 3, + [131900] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4681), 1, sym_comment, - ACTIONS(8336), 3, + ACTIONS(8280), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131936] = 3, + [131912] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8433), 1, + anon_sym_RBRACK, + ACTIONS(8435), 1, + anon_sym_DOT_DOT, STATE(4682), 1, sym_comment, - ACTIONS(8296), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131948] = 3, + STATE(5473), 1, + sym__match_pattern_rest, + [131928] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4683), 1, sym_comment, - ACTIONS(8413), 3, + ACTIONS(8284), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [131960] = 3, - ACTIONS(3), 1, + [131940] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1596), 1, + sym__entry_separator, + ACTIONS(8437), 1, + anon_sym_RBRACE, + STATE(1492), 1, + aux_sym__types_body_repeat2, STATE(4684), 1, sym_comment, - ACTIONS(8236), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131972] = 4, + [131956] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8415), 1, - anon_sym_GT2, + ACTIONS(2402), 1, + sym__entry_separator, STATE(4685), 1, sym_comment, - ACTIONS(8417), 2, - anon_sym_AT2, - sym__entry_separator, - [131986] = 4, + ACTIONS(2404), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [131970] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7574), 1, - sym__entry_separator, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3870), 1, + anon_sym_LBRACE, STATE(4686), 1, sym_comment, - ACTIONS(7660), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132000] = 3, - ACTIONS(3), 1, + STATE(4881), 1, + sym_block, + [131986] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(3466), 1, + sym__newline, + ACTIONS(3468), 1, + sym__space, + STATE(1414), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4687), 1, sym_comment, - ACTIONS(8306), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132012] = 3, + [132002] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4100), 1, + anon_sym_AT2, + ACTIONS(8440), 1, + anon_sym_GT2, STATE(4688), 1, sym_comment, - ACTIONS(8298), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132024] = 5, + STATE(5199), 1, + sym_param_completer, + [132018] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8419), 1, - anon_sym_RBRACK, STATE(4689), 1, sym_comment, - STATE(4694), 1, - aux_sym_val_binary_repeat1, - [132040] = 5, + ACTIONS(8244), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4096), 1, - anon_sym_AT2, - ACTIONS(5780), 1, - anon_sym_EQ, - STATE(3156), 1, - sym_param_completer, STATE(4690), 1, sym_comment, - [132056] = 5, - ACTIONS(3), 1, + ACTIONS(8246), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132042] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8421), 1, - anon_sym_export, - ACTIONS(8423), 1, - anon_sym_def, - ACTIONS(8425), 1, - anon_sym_extern, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(8442), 1, + anon_sym_GT2, + STATE(1996), 1, + aux_sym__types_body_repeat2, STATE(4691), 1, sym_comment, - [132072] = 5, + [132058] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8427), 1, - anon_sym_DOT, - ACTIONS(8429), 1, - aux_sym__immediate_decimal_token5, STATE(4692), 1, sym_comment, - [132088] = 5, - ACTIONS(3), 1, + ACTIONS(8288), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132070] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4096), 1, - anon_sym_AT2, - ACTIONS(8431), 1, - anon_sym_GT2, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(8444), 1, + anon_sym_RBRACK, + STATE(1984), 1, + aux_sym__types_body_repeat2, STATE(4693), 1, sym_comment, - STATE(5280), 1, - sym_param_completer, - [132104] = 5, + [132086] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8433), 1, - anon_sym_RBRACK, STATE(4694), 1, sym_comment, - STATE(4876), 1, - aux_sym_val_binary_repeat1, - [132120] = 3, - ACTIONS(103), 1, + ACTIONS(8147), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132098] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4100), 1, + anon_sym_AT2, + ACTIONS(5788), 1, + anon_sym_EQ, + STATE(3228), 1, + sym_param_completer, STATE(4695), 1, sym_comment, - ACTIONS(880), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [132132] = 3, + [132114] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4696), 1, sym_comment, - ACTIONS(8232), 3, + ACTIONS(8290), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132144] = 4, - ACTIONS(103), 1, + [132126] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8435), 1, - anon_sym_LPAREN, STATE(4697), 1, sym_comment, - ACTIONS(8437), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [132158] = 3, + ACTIONS(8299), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132138] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4100), 1, + anon_sym_AT2, + ACTIONS(5788), 1, + anon_sym_EQ, + STATE(3230), 1, + sym_param_completer, STATE(4698), 1, sym_comment, - ACTIONS(8439), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [132170] = 5, - ACTIONS(103), 1, + [132154] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8106), 1, - anon_sym_RBRACE, - STATE(1469), 1, - aux_sym__types_body_repeat2, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8446), 1, + anon_sym_RBRACK, STATE(4699), 1, sym_comment, - [132186] = 5, - ACTIONS(3), 1, + STATE(4794), 1, + aux_sym_val_binary_repeat1, + [132170] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8441), 1, - anon_sym_RBRACK, - ACTIONS(8443), 1, - anon_sym_DOT_DOT, + ACTIONS(2354), 1, + sym__entry_separator, STATE(4700), 1, sym_comment, - STATE(5322), 1, - sym__match_pattern_rest, - [132202] = 5, + ACTIONS(2356), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(5118), 1, - sym__unquoted_pattern, + ACTIONS(7837), 1, + anon_sym_if, + ACTIONS(8448), 1, + anon_sym_EQ_GT, STATE(4701), 1, sym_comment, - STATE(5065), 1, - sym__expr_parenthesized_immediate, - [132218] = 5, - ACTIONS(3), 1, + STATE(5328), 1, + sym_match_guard, + [132200] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4096), 1, - anon_sym_AT2, - ACTIONS(8445), 1, - anon_sym_GT2, + ACTIONS(2550), 1, + sym__entry_separator, STATE(4702), 1, sym_comment, - STATE(5148), 1, - sym_param_completer, - [132234] = 5, + ACTIONS(2552), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132214] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8447), 1, - anon_sym_GT2, - STATE(1973), 1, - aux_sym__types_body_repeat2, + ACTIONS(8450), 1, + sym__table_head_separator, STATE(4703), 1, sym_comment, - [132250] = 5, + ACTIONS(1588), 2, + anon_sym_RBRACK, + sym__entry_separator, + [132228] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4402), 1, - sym_block, + ACTIONS(1596), 1, + sym__entry_separator, + ACTIONS(8348), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym__types_body_repeat2, STATE(4704), 1, sym_comment, - [132266] = 3, + [132244] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4705), 1, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8248), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132278] = 3, + [132256] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4706), 1, sym_comment, - ACTIONS(8298), 3, + ACTIONS(8256), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132290] = 3, - ACTIONS(3), 1, + [132268] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8224), 1, + sym__entry_separator, STATE(4707), 1, sym_comment, - ACTIONS(8186), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132302] = 3, + ACTIONS(7422), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132282] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4708), 1, sym_comment, - ACTIONS(8102), 3, + ACTIONS(8185), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132314] = 3, + [132294] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4709), 1, sym_comment, - ACTIONS(8199), 3, + ACTIONS(8185), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132326] = 3, + [132306] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1832), 1, + anon_sym_LBRACE, + ACTIONS(1834), 1, + sym__unquoted_pattern, + ACTIONS(8452), 1, + aux_sym__immediate_decimal_token5, STATE(4710), 1, sym_comment, - ACTIONS(8201), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132338] = 4, + [132322] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8389), 1, + ACTIONS(4525), 1, sym__entry_separator, + ACTIONS(8454), 1, + anon_sym_RBRACK, + STATE(2056), 1, + aux_sym__types_body_repeat2, STATE(4711), 1, sym_comment, - ACTIONS(8449), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132352] = 4, + [132338] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8393), 1, + ACTIONS(4347), 1, sym__entry_separator, + ACTIONS(8456), 1, + anon_sym_RBRACK, + STATE(4672), 1, + aux_sym__types_body_repeat2, STATE(4712), 1, sym_comment, - ACTIONS(8451), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132366] = 4, + [132354] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2527), 1, + ACTIONS(5235), 1, sym__entry_separator, STATE(4713), 1, sym_comment, - ACTIONS(2529), 2, + ACTIONS(5826), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [132380] = 3, - ACTIONS(3), 1, + anon_sym_GT2, + [132368] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8458), 1, + anon_sym_LPAREN, STATE(4714), 1, sym_comment, - ACTIONS(2156), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [132392] = 4, - ACTIONS(103), 1, + ACTIONS(8460), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [132382] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8104), 1, - sym__entry_separator, - STATE(4715), 1, - sym_comment, - ACTIONS(8453), 2, + ACTIONS(8462), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132406] = 5, + ACTIONS(8464), 1, + sym_hex_digit, + STATE(4715), 2, + sym_comment, + aux_sym_val_binary_repeat1, + [132396] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8455), 1, - anon_sym_GT2, - STATE(1964), 1, - aux_sym__types_body_repeat2, + ACTIONS(8327), 1, + anon_sym_LPAREN, STATE(4716), 1, sym_comment, - [132422] = 4, - ACTIONS(103), 1, + ACTIONS(8329), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [132410] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2531), 1, - sym__entry_separator, + ACTIONS(3801), 1, + anon_sym_LBRACK, + STATE(4675), 1, + sym_val_list, STATE(4717), 1, sym_comment, - ACTIONS(2533), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132436] = 3, - ACTIONS(3), 1, + STATE(4731), 1, + aux_sym__table_body_repeat1, + [132426] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8467), 1, + anon_sym_GT2, STATE(4718), 1, sym_comment, - ACTIONS(8116), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132448] = 5, + ACTIONS(8469), 2, + anon_sym_AT2, + sym__entry_separator, + [132440] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(8457), 1, - anon_sym_RBRACK, - STATE(4505), 1, + ACTIONS(8401), 1, + anon_sym_RBRACE, + STATE(1481), 1, aux_sym__types_body_repeat2, STATE(4719), 1, sym_comment, - [132464] = 3, + [132456] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4100), 1, + anon_sym_AT2, + ACTIONS(5632), 1, + anon_sym_EQ, + STATE(3236), 1, + sym_param_completer, STATE(4720), 1, sym_comment, - ACTIONS(8218), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132476] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8459), 1, - anon_sym_RBRACK, - STATE(4721), 1, - sym_comment, - STATE(4748), 1, - aux_sym_val_binary_repeat1, - [132492] = 5, + [132472] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(4347), 1, sym__entry_separator, - ACTIONS(8461), 1, + ACTIONS(8471), 1, anon_sym_RBRACK, - STATE(1971), 1, + STATE(4532), 1, aux_sym__types_body_repeat2, - STATE(4722), 1, + STATE(4721), 1, sym_comment, - [132508] = 4, - ACTIONS(103), 1, + [132488] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6350), 1, - sym__entry_separator, - STATE(4723), 1, + ACTIONS(4100), 1, + anon_sym_AT2, + ACTIONS(8473), 1, + anon_sym_GT2, + STATE(4722), 1, sym_comment, - ACTIONS(6348), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132522] = 3, + STATE(5515), 1, + sym_param_completer, + [132504] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4724), 1, + STATE(4723), 1, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8250), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132534] = 3, - ACTIONS(3), 1, + [132516] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8323), 1, + sym__entry_separator, + STATE(4724), 1, + sym_comment, + ACTIONS(8475), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132530] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8189), 1, + sym__entry_separator, STATE(4725), 1, sym_comment, - ACTIONS(8212), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132546] = 3, - ACTIONS(3), 1, + ACTIONS(8477), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132544] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8254), 1, + sym__entry_separator, STATE(4726), 1, sym_comment, - ACTIONS(8463), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(8479), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, [132558] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4727), 1, sym_comment, - ACTIONS(4611), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [132570] = 4, + ACTIONS(8134), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [132570] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(1596), 1, sym__entry_separator, + ACTIONS(1598), 1, + anon_sym_COLON2, + STATE(1504), 1, + aux_sym__types_body_repeat2, STATE(4728), 1, sym_comment, - ACTIONS(2447), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132584] = 5, - ACTIONS(3), 1, + [132586] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6914), 1, - anon_sym_LPAREN2, + ACTIONS(4357), 1, + sym__entry_separator, + ACTIONS(8481), 1, + anon_sym_RBRACK, + STATE(1987), 1, + aux_sym__types_body_repeat2, STATE(4729), 1, sym_comment, - STATE(5028), 1, - sym__expr_parenthesized_immediate, - [132600] = 5, - ACTIONS(3), 1, + [132602] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3771), 1, - anon_sym_LBRACK, + ACTIONS(4788), 1, + sym__entry_separator, + ACTIONS(8483), 1, + anon_sym_RBRACE, + STATE(2266), 1, + aux_sym__types_body_repeat2, STATE(4730), 1, sym_comment, - STATE(4842), 1, + [132618] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8485), 1, + anon_sym_LBRACK, + STATE(5091), 1, sym_val_list, - STATE(4868), 1, + STATE(4731), 2, + sym_comment, aux_sym__table_body_repeat1, - [132616] = 3, + [132632] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4731), 1, - sym_comment, - ACTIONS(8212), 3, - ts_builtin_sym_end, + ACTIONS(2935), 1, sym__newline, - anon_sym_SEMI, - [132628] = 4, + ACTIONS(8488), 1, + anon_sym_COLON, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(4732), 1, + sym_comment, + [132648] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, - anon_sym_POUND_BANG, - ACTIONS(8465), 1, - sym__newline, - STATE(4732), 2, - aux_sym__repeat_newline, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(3096), 1, + sym_block, + STATE(4733), 1, sym_comment, - [132642] = 3, + [132664] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4733), 1, + STATE(4734), 1, sym_comment, - ACTIONS(8218), 3, + ACTIONS(8409), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132654] = 3, + [132676] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4734), 1, - sym_comment, - ACTIONS(4600), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [132666] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8468), 1, - anon_sym_RBRACE, - STATE(1468), 1, - aux_sym__types_body_repeat2, STATE(4735), 1, sym_comment, - [132682] = 4, + ACTIONS(8490), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [132688] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2551), 1, + ACTIONS(8479), 1, + anon_sym_DOT_DOT, + ACTIONS(8492), 1, + anon_sym_RBRACK, + ACTIONS(8495), 1, sym__entry_separator, STATE(4736), 1, sym_comment, - ACTIONS(2553), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132696] = 5, - ACTIONS(103), 1, + [132704] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1617), 1, - anon_sym_RBRACE, - ACTIONS(1623), 1, - sym__entry_separator, - STATE(1480), 1, - aux_sym__types_body_repeat2, STATE(4737), 1, sym_comment, - [132712] = 4, - ACTIONS(103), 1, + ACTIONS(8173), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132716] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8471), 1, - sym__table_head_separator, STATE(4738), 1, sym_comment, - ACTIONS(1615), 2, - anon_sym_RBRACK, - sym__entry_separator, - [132726] = 5, + ACTIONS(4639), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [132728] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LBRACE, - ACTIONS(7586), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8473), 1, - anon_sym_DOT, STATE(4739), 1, sym_comment, - [132742] = 3, + ACTIONS(8333), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132740] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4740), 1, sym_comment, - ACTIONS(8475), 3, + ACTIONS(8175), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [132754] = 3, + anon_sym_SEMI, + [132752] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4741), 1, sym_comment, - ACTIONS(4623), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [132766] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4742), 1, - sym_comment, - ACTIONS(8212), 3, + ACTIONS(8175), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132778] = 4, + [132764] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2558), 1, + ACTIONS(4788), 1, sym__entry_separator, - STATE(4743), 1, - sym_comment, - ACTIONS(2560), 2, - anon_sym_RBRACK, + ACTIONS(4805), 1, anon_sym_RBRACE, - [132792] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4744), 1, + STATE(2267), 1, + aux_sym__types_body_repeat2, + STATE(4742), 1, sym_comment, - ACTIONS(8174), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132804] = 5, + [132780] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4483), 1, + ACTIONS(5295), 1, sym__entry_separator, - ACTIONS(8477), 1, - anon_sym_RBRACK, - STATE(2056), 1, - aux_sym__types_body_repeat2, - STATE(4745), 1, + STATE(4743), 1, sym_comment, - [132820] = 3, + ACTIONS(5885), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [132794] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4746), 1, + STATE(4744), 1, sym_comment, - ACTIONS(8332), 3, + ACTIONS(8181), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132832] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(5182), 1, - sym__unquoted_pattern_in_record, - STATE(4747), 1, - sym_comment, - STATE(5078), 1, - sym__expr_parenthesized_immediate, - [132848] = 5, + [132806] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, + ACTIONS(8423), 1, sym_hex_digit, - ACTIONS(8479), 1, + ACTIONS(8498), 1, anon_sym_RBRACK, - STATE(4748), 1, + STATE(4745), 1, sym_comment, - STATE(4876), 1, + STATE(4751), 1, aux_sym_val_binary_repeat1, - [132864] = 3, + [132822] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4749), 1, + STATE(4746), 1, sym_comment, - ACTIONS(8274), 3, + ACTIONS(8136), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132876] = 5, + [132834] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(847), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, + ACTIONS(8344), 1, sym__entry_separator, - ACTIONS(7007), 1, - sym__unquoted_pattern_in_record, - STATE(4750), 1, + STATE(4747), 1, sym_comment, - [132892] = 5, + ACTIONS(8500), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132848] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(8344), 1, sym__entry_separator, - ACTIONS(8481), 1, + STATE(4748), 1, + sym_comment, + ACTIONS(8500), 2, anon_sym_RBRACK, - STATE(4355), 1, - aux_sym__types_body_repeat2, - STATE(4751), 1, + anon_sym_DOT_DOT, + [132862] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8399), 1, + sym__entry_separator, + STATE(4749), 1, sym_comment, - [132908] = 3, + ACTIONS(8502), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132876] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4752), 1, + STATE(4750), 1, sym_comment, - ACTIONS(8268), 3, + ACTIONS(8181), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132920] = 5, + [132888] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8504), 1, + anon_sym_RBRACK, + STATE(4715), 1, + aux_sym_val_binary_repeat1, + STATE(4751), 1, + sym_comment, + [132904] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(5046), 1, sym__unquoted_pattern, - STATE(4753), 1, + STATE(4752), 1, sym_comment, - STATE(5072), 1, + STATE(5052), 1, sym__expr_parenthesized_immediate, + [132920] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4100), 1, + anon_sym_AT2, + ACTIONS(8506), 1, + anon_sym_GT2, + STATE(4753), 1, + sym_comment, + STATE(5486), 1, + sym_param_completer, [132936] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7486), 1, + ACTIONS(5255), 1, sym__entry_separator, STATE(4754), 1, sym_comment, - ACTIONS(7666), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132950] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8453), 1, - anon_sym_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(5820), 2, anon_sym_RBRACK, - ACTIONS(8486), 1, - sym__entry_separator, - STATE(4755), 1, - sym_comment, - [132966] = 3, + anon_sym_GT2, + [132950] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4756), 1, + STATE(4755), 1, sym_comment, - ACTIONS(8262), 3, + ACTIONS(8183), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132978] = 3, + [132962] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4525), 1, + sym__entry_separator, + ACTIONS(8508), 1, + anon_sym_RBRACK, + STATE(2082), 1, + aux_sym__types_body_repeat2, + STATE(4756), 1, + sym_comment, + [132978] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1786), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8510), 1, + anon_sym_DOT, + ACTIONS(8512), 1, + aux_sym__immediate_decimal_token5, STATE(4757), 1, sym_comment, - ACTIONS(8391), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132990] = 3, + [132994] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4758), 1, sym_comment, - ACTIONS(8298), 3, + ACTIONS(8183), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133002] = 3, + [133006] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4759), 1, sym_comment, - ACTIONS(8268), 3, + ACTIONS(8136), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133014] = 3, + [133018] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4760), 1, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8335), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133026] = 4, + [133030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8489), 1, - anon_sym_BANG, STATE(4761), 1, sym_comment, - ACTIONS(1462), 2, - sym__table_head_separator, - anon_sym_DOT2, - [133040] = 3, + ACTIONS(8335), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133042] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4762), 1, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8240), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133052] = 3, + [133054] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4763), 1, sym_comment, - ACTIONS(8324), 3, - ts_builtin_sym_end, + ACTIONS(8514), 3, sym__newline, anon_sym_SEMI, - [133064] = 3, + anon_sym_RPAREN, + [133066] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(7011), 1, + sym__unquoted_pattern_in_record, STATE(4764), 1, sym_comment, - ACTIONS(8324), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133076] = 4, - ACTIONS(103), 1, + STATE(5080), 1, + sym__expr_parenthesized_immediate, + [133082] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8371), 1, - sym__entry_separator, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8516), 1, + anon_sym_RBRACK, STATE(4765), 1, sym_comment, - ACTIONS(8491), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133090] = 3, - ACTIONS(3), 1, + STATE(4768), 1, + aux_sym_val_binary_repeat1, + [133098] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1596), 1, + sym__entry_separator, + ACTIONS(8518), 1, + anon_sym_RBRACE, + STATE(1478), 1, + aux_sym__types_body_repeat2, STATE(4766), 1, sym_comment, - ACTIONS(8326), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133102] = 3, - ACTIONS(3), 1, + [133114] = 3, + ACTIONS(103), 1, anon_sym_POUND, STATE(4767), 1, sym_comment, - ACTIONS(8326), 3, - ts_builtin_sym_end, + ACTIONS(864), 3, sym__newline, - anon_sym_SEMI, - [133114] = 5, + sym__space, + anon_sym_COLON2, + [133126] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(7007), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8521), 1, + anon_sym_RBRACK, + STATE(4715), 1, + aux_sym_val_binary_repeat1, STATE(4768), 1, sym_comment, - STATE(5050), 1, - sym__expr_parenthesized_immediate, - [133130] = 3, + [133142] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8523), 1, + anon_sym_BANG, STATE(4769), 1, sym_comment, - ACTIONS(8332), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133142] = 3, + ACTIONS(1464), 2, + sym__table_head_separator, + anon_sym_DOT2, + [133156] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4770), 1, sym_comment, - ACTIONS(8365), 3, - ts_builtin_sym_end, + ACTIONS(3131), 3, sym__newline, anon_sym_SEMI, - [133154] = 3, + anon_sym_RPAREN, + [133168] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4771), 1, sym_comment, - ACTIONS(8365), 3, + ACTIONS(8340), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133166] = 3, - ACTIONS(3), 1, + [133180] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1714), 1, + sym__entry_separator, STATE(4772), 1, sym_comment, - ACTIONS(8276), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133178] = 3, + ACTIONS(1588), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [133194] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4773), 1, sym_comment, - ACTIONS(8332), 3, + ACTIONS(8340), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133190] = 5, + [133206] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(8493), 1, - anon_sym_COLON, - STATE(485), 1, - aux_sym__repeat_newline, + ACTIONS(8525), 1, + anon_sym_export, + ACTIONS(8527), 1, + anon_sym_def, + ACTIONS(8529), 1, + anon_sym_extern, STATE(4774), 1, sym_comment, - [133206] = 3, - ACTIONS(3), 1, + [133222] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1596), 1, + sym__entry_separator, + ACTIONS(8531), 1, + anon_sym_RBRACE, + STATE(1475), 1, + aux_sym__types_body_repeat2, STATE(4775), 1, sym_comment, - ACTIONS(8210), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133218] = 3, + [133238] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4776), 1, sym_comment, - ACTIONS(8244), 3, + ACTIONS(8173), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133230] = 4, - ACTIONS(103), 1, + [133250] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8371), 1, - sym__entry_separator, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8533), 1, + anon_sym_RBRACK, STATE(4777), 1, sym_comment, - ACTIONS(8491), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133244] = 5, - ACTIONS(103), 1, + STATE(4779), 1, + aux_sym_val_binary_repeat1, + [133266] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4483), 1, - sym__entry_separator, - ACTIONS(8495), 1, - anon_sym_RBRACK, - STATE(2028), 1, - aux_sym__types_body_repeat2, STATE(4778), 1, sym_comment, - [133260] = 4, - ACTIONS(103), 1, + ACTIONS(8535), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [133278] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8385), 1, - sym__entry_separator, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8537), 1, + anon_sym_RBRACK, + STATE(4715), 1, + aux_sym_val_binary_repeat1, STATE(4779), 1, sym_comment, - ACTIONS(8497), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133274] = 3, + [133294] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4780), 1, sym_comment, - ACTIONS(8278), 3, + ACTIONS(8187), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133286] = 5, - ACTIONS(103), 1, + [133306] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8499), 1, - anon_sym_RBRACK, - STATE(2001), 1, - aux_sym__types_body_repeat2, STATE(4781), 1, sym_comment, - [133302] = 3, + ACTIONS(8409), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133318] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4782), 1, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8356), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133314] = 3, - ACTIONS(3), 1, + [133330] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8539), 1, + anon_sym_LPAREN, STATE(4783), 1, sym_comment, - ACTIONS(8280), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133326] = 3, + ACTIONS(8541), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [133344] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4784), 1, sym_comment, - ACTIONS(8282), 3, + ACTIONS(8138), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133338] = 4, + [133356] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3086), 1, - anon_sym_RPAREN, STATE(4785), 1, sym_comment, - ACTIONS(2766), 2, + ACTIONS(8142), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133352] = 5, + [133368] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(8501), 1, - anon_sym_GT2, - STATE(2414), 1, + ACTIONS(8543), 1, + anon_sym_RBRACE, + STATE(1476), 1, aux_sym__types_body_repeat2, STATE(4786), 1, sym_comment, - [133368] = 5, + [133384] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(4347), 1, sym__entry_separator, - ACTIONS(8503), 1, - anon_sym_GT2, - STATE(2415), 1, + ACTIONS(8545), 1, + anon_sym_RBRACK, + STATE(1970), 1, aux_sym__types_body_repeat2, STATE(4787), 1, sym_comment, - [133384] = 5, - ACTIONS(103), 1, + [133400] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8505), 1, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8547), 1, anon_sym_RBRACK, - STATE(2004), 1, - aux_sym__types_body_repeat2, STATE(4788), 1, sym_comment, - [133400] = 5, + STATE(4793), 1, + aux_sym_val_binary_repeat1, + [133416] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4710), 1, - sym_block, + ACTIONS(5330), 1, + sym__entry_separator, STATE(4789), 1, sym_comment, - [133416] = 3, + ACTIONS(5842), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [133430] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(8549), 1, + anon_sym_COLON, + STATE(503), 1, + aux_sym__repeat_newline, STATE(4790), 1, sym_comment, - ACTIONS(8284), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133428] = 5, + [133446] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(4347), 1, sym__entry_separator, - ACTIONS(8507), 1, + ACTIONS(8551), 1, anon_sym_RBRACK, - STATE(1997), 1, + STATE(1985), 1, aux_sym__types_body_repeat2, STATE(4791), 1, sym_comment, - [133444] = 4, + [133462] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1915), 1, + ACTIONS(4347), 1, sym__entry_separator, + ACTIONS(8195), 1, + anon_sym_LBRACK, + STATE(1932), 1, + aux_sym__types_body_repeat2, STATE(4792), 1, sym_comment, - ACTIONS(1917), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133458] = 5, - ACTIONS(103), 1, + [133478] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8509), 1, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8553), 1, anon_sym_RBRACK, - STATE(2005), 1, - aux_sym__types_body_repeat2, + STATE(4715), 1, + aux_sym_val_binary_repeat1, STATE(4793), 1, sym_comment, - [133474] = 5, - ACTIONS(103), 1, + [133494] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3452), 1, - sym__newline, - ACTIONS(3454), 1, - sym__space, - STATE(1400), 1, - aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8555), 1, + anon_sym_RBRACK, + STATE(4715), 1, + aux_sym_val_binary_repeat1, STATE(4794), 1, sym_comment, - [133490] = 3, + [133510] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4795), 1, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8138), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133502] = 3, + [133522] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4796), 1, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8140), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133514] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8228), 1, - sym__entry_separator, - ACTIONS(8511), 1, - anon_sym_AT2, - STATE(4797), 1, - sym_comment, - STATE(5012), 1, - sym_param_completer, - [133530] = 3, + [133534] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4798), 1, + STATE(4797), 1, sym_comment, - ACTIONS(8312), 3, - ts_builtin_sym_end, + ACTIONS(8557), 3, sym__newline, anon_sym_SEMI, - [133542] = 5, + anon_sym_RPAREN, + [133546] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4709), 1, - sym_block, - STATE(4799), 1, + ACTIONS(2630), 1, + sym__entry_separator, + STATE(4798), 1, sym_comment, - [133558] = 3, + ACTIONS(2632), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [133560] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4800), 1, + STATE(4799), 1, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8559), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [133570] = 3, + [133572] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4801), 1, + STATE(4800), 1, sym_comment, - ACTIONS(8246), 3, + ACTIONS(8140), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133582] = 3, + [133584] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1846), 1, + sym__unquoted_pattern, + STATE(4801), 1, + sym_comment, + STATE(5070), 1, + sym__expr_parenthesized_immediate, + [133600] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4802), 1, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8142), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133594] = 5, - ACTIONS(3), 1, + [133612] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8515), 1, - anon_sym_RBRACK, - ACTIONS(8517), 1, - anon_sym_DOT_DOT, + ACTIONS(8561), 1, + anon_sym_DQUOTE, STATE(4803), 1, sym_comment, - STATE(5221), 1, - sym__match_pattern_rest, - [133610] = 3, + ACTIONS(8563), 2, + sym__escaped_str_content, + sym_escape_sequence, + [133626] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4804), 1, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8142), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133622] = 4, + [133638] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8377), 1, + ACTIONS(5281), 1, sym__entry_separator, STATE(4805), 1, sym_comment, - ACTIONS(8519), 2, + ACTIONS(5846), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133636] = 4, - ACTIONS(103), 1, + anon_sym_GT2, + [133652] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8521), 1, - anon_sym_DQUOTE, STATE(4806), 1, sym_comment, - ACTIONS(8523), 2, - sym__escaped_str_content, - sym_escape_sequence, - [133650] = 4, + ACTIONS(8142), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133664] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1377), 1, - aux_sym__block_body_repeat1, STATE(4807), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(8175), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133664] = 3, + [133676] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4808), 1, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8362), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133676] = 5, - ACTIONS(103), 1, + [133688] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5079), 1, - sym__entry_separator, - ACTIONS(8525), 1, - anon_sym_GT2, - STATE(2412), 1, - aux_sym__types_body_repeat2, + ACTIONS(1784), 1, + anon_sym_LBRACE, + ACTIONS(1786), 1, + sym__unquoted_pattern, + ACTIONS(8360), 1, + aux_sym__immediate_decimal_token5, STATE(4809), 1, sym_comment, - [133692] = 3, + [133704] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4810), 1, sym_comment, - ACTIONS(8361), 3, + ACTIONS(8147), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133704] = 3, + [133716] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4811), 1, sym_comment, - ACTIONS(8361), 3, + ACTIONS(8395), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133716] = 5, + [133728] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - anon_sym_if, - ACTIONS(8527), 1, - anon_sym_EQ_GT, STATE(4812), 1, sym_comment, - STATE(5227), 1, - sym_match_guard, - [133732] = 5, - ACTIONS(103), 1, + ACTIONS(8362), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133740] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8529), 1, - anon_sym_GT2, - STATE(1958), 1, - aux_sym__types_body_repeat2, STATE(4813), 1, sym_comment, - [133748] = 5, - ACTIONS(103), 1, + ACTIONS(8364), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133752] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8108), 1, - anon_sym_RBRACE, - STATE(1471), 1, - aux_sym__types_body_repeat2, STATE(4814), 1, sym_comment, - [133764] = 5, - ACTIONS(103), 1, + ACTIONS(8335), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133764] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8531), 1, - anon_sym_GT2, - STATE(1959), 1, - aux_sym__types_body_repeat2, STATE(4815), 1, sym_comment, - [133780] = 5, - ACTIONS(103), 1, + ACTIONS(8335), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133776] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8533), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, STATE(4816), 1, sym_comment, - [133796] = 3, + ACTIONS(8175), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133788] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4817), 1, sym_comment, - ACTIONS(8363), 3, + ACTIONS(8395), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133808] = 5, - ACTIONS(103), 1, + [133800] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8535), 1, - anon_sym_RBRACK, - STATE(1960), 1, - aux_sym__types_body_repeat2, STATE(4818), 1, sym_comment, - [133824] = 4, + ACTIONS(8366), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133812] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8114), 1, + ACTIONS(4357), 1, sym__entry_separator, - STATE(4819), 1, - sym_comment, - ACTIONS(7374), 2, + ACTIONS(8565), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133838] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8537), 1, - anon_sym_RBRACE, - STATE(1478), 1, + STATE(1972), 1, aux_sym__types_body_repeat2, - STATE(4820), 1, + STATE(4819), 1, sym_comment, - [133854] = 5, + [133828] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, + STATE(4820), 1, + sym_comment, + ACTIONS(8395), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(8539), 1, - anon_sym_COLON, - STATE(485), 1, - aux_sym__repeat_newline, + anon_sym_SEMI, + [133840] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1897), 1, + sym__entry_separator, STATE(4821), 1, sym_comment, - [133870] = 3, + ACTIONS(1899), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [133854] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4822), 1, sym_comment, - ACTIONS(8363), 3, + ACTIONS(8395), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133882] = 5, - ACTIONS(103), 1, + [133866] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8541), 1, - anon_sym_RBRACK, - STATE(4550), 1, - aux_sym__types_body_repeat2, STATE(4823), 1, sym_comment, - [133898] = 5, + ACTIONS(8147), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133878] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4564), 1, + sym_block, + STATE(4824), 1, + sym_comment, + [133894] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4483), 1, + ACTIONS(4357), 1, sym__entry_separator, - ACTIONS(8543), 1, + ACTIONS(8567), 1, anon_sym_RBRACK, - STATE(2029), 1, + STATE(1973), 1, aux_sym__types_body_repeat2, - STATE(4824), 1, + STATE(4825), 1, sym_comment, - [133914] = 3, + [133910] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4825), 1, + STATE(4826), 1, sym_comment, - ACTIONS(8545), 3, - sym__newline, + ACTIONS(2116), 3, anon_sym_LBRACK, - anon_sym_RBRACK, - [133926] = 3, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [133922] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4826), 1, + STATE(4827), 1, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8397), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133938] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym__entry_separator, - ACTIONS(4800), 1, - anon_sym_RBRACE, - STATE(2254), 1, - aux_sym__types_body_repeat2, - STATE(4827), 1, - sym_comment, - [133954] = 5, + [133934] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym__entry_separator, - ACTIONS(8547), 1, - anon_sym_RBRACE, - STATE(2260), 1, - aux_sym__types_body_repeat2, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4581), 1, + sym_block, STATE(4828), 1, sym_comment, - [133970] = 3, + [133950] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4829), 1, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8397), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133982] = 3, - ACTIONS(3), 1, + [133962] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2470), 1, + sym__entry_separator, STATE(4830), 1, sym_comment, - ACTIONS(8549), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [133994] = 5, + ACTIONS(2472), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [133976] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8551), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8553), 1, - aux_sym__immediate_decimal_token5, STATE(4831), 1, sym_comment, - [134010] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4832), 1, - sym_comment, - ACTIONS(8288), 3, + ACTIONS(8368), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134022] = 3, + [133988] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5060), 1, + sym__entry_separator, + ACTIONS(8569), 1, + anon_sym_GT2, + STATE(2412), 1, + aux_sym__types_body_repeat2, + STATE(4832), 1, + sym_comment, + [134004] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4833), 1, sym_comment, - ACTIONS(4631), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [134034] = 5, + ACTIONS(8307), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134016] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4096), 1, - anon_sym_AT2, - ACTIONS(5774), 1, - anon_sym_EQ, - STATE(3147), 1, - sym_param_completer, STATE(4834), 1, sym_comment, - [134050] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5298), 1, - sym__entry_separator, - STATE(4835), 1, - sym_comment, - ACTIONS(5885), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [134064] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8555), 1, - anon_sym_LPAREN, - STATE(4836), 1, - sym_comment, - ACTIONS(8557), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [134078] = 5, + ACTIONS(8397), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134028] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2642), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3898), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(4403), 1, + STATE(3003), 1, sym_block, - STATE(4837), 1, + STATE(4835), 1, sym_comment, - [134094] = 5, + [134044] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8559), 1, - anon_sym_RBRACK, - STATE(4838), 1, + STATE(4836), 1, sym_comment, - STATE(4876), 1, - aux_sym_val_binary_repeat1, - [134110] = 5, - ACTIONS(3), 1, + ACTIONS(8136), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134056] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3771), 1, - anon_sym_LBRACK, - STATE(4751), 1, - sym_val_list, - STATE(4839), 1, + ACTIONS(7698), 1, + anon_sym_RBRACK, + ACTIONS(7700), 1, + anon_sym_DOT_DOT, + ACTIONS(7706), 1, + sym__entry_separator, + STATE(4837), 1, sym_comment, - STATE(4868), 1, - aux_sym__table_body_repeat1, - [134126] = 3, + [134072] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4840), 1, - sym_comment, - ACTIONS(8234), 3, - ts_builtin_sym_end, + ACTIONS(2935), 1, sym__newline, + ACTIONS(3277), 1, anon_sym_SEMI, - [134138] = 5, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(4838), 1, + sym_comment, + [134088] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(5060), 1, sym__entry_separator, - ACTIONS(8561), 1, - anon_sym_RBRACE, - STATE(1465), 1, + ACTIONS(8571), 1, + anon_sym_GT2, + STATE(2415), 1, aux_sym__types_body_repeat2, - STATE(4841), 1, + STATE(4839), 1, sym_comment, - [134154] = 5, + [134104] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8564), 1, + ACTIONS(7727), 1, anon_sym_RBRACK, - STATE(4578), 1, - aux_sym__types_body_repeat2, - STATE(4842), 1, + ACTIONS(7730), 1, + anon_sym_DOT_DOT, + ACTIONS(7732), 1, + sym__entry_separator, + STATE(4840), 1, sym_comment, - [134170] = 4, + [134120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8489), 1, + ACTIONS(8523), 1, anon_sym_QMARK2, - STATE(4843), 1, + STATE(4841), 1, sym_comment, - ACTIONS(1462), 2, + ACTIONS(1464), 2, sym__table_head_separator, anon_sym_DOT2, - [134184] = 5, + [134134] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(1840), 1, - sym__unquoted_pattern, - STATE(4844), 1, + STATE(4842), 1, sym_comment, - STATE(4972), 1, - sym__expr_parenthesized_immediate, - [134200] = 3, + ACTIONS(8136), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134146] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4845), 1, + ACTIONS(3131), 1, + anon_sym_RPAREN, + STATE(4843), 1, sym_comment, - ACTIONS(8566), 3, + ACTIONS(2748), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [134212] = 4, + [134160] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2477), 1, + ACTIONS(2470), 1, sym__entry_separator, - STATE(4846), 1, + STATE(4844), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(2472), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [134226] = 4, + [134174] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2477), 1, + ACTIONS(1596), 1, sym__entry_separator, + ACTIONS(8573), 1, + anon_sym_RBRACE, + STATE(1479), 1, + aux_sym__types_body_repeat2, + STATE(4845), 1, + sym_comment, + [134190] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(8575), 1, + anon_sym_COLON, + STATE(503), 1, + aux_sym__repeat_newline, + STATE(4846), 1, + sym_comment, + [134206] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4847), 1, sym_comment, - ACTIONS(2479), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134240] = 3, + ACTIONS(2336), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134218] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4848), 1, sym_comment, - ACTIONS(8212), 3, + ACTIONS(8264), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134252] = 3, - ACTIONS(3), 1, + [134230] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(785), 1, + anon_sym_RBRACK, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(6604), 1, + sym__unquoted_pattern_in_list, STATE(4849), 1, sym_comment, - ACTIONS(8292), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134264] = 3, - ACTIONS(3), 1, + [134246] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(785), 1, + anon_sym_RBRACE, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(7011), 1, + sym__unquoted_pattern_in_record, STATE(4850), 1, sym_comment, - ACTIONS(3086), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134276] = 3, - ACTIONS(3), 1, + [134262] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1905), 1, + sym__entry_separator, STATE(4851), 1, sym_comment, - ACTIONS(2326), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [134288] = 5, - ACTIONS(103), 1, + ACTIONS(1907), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [134276] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8568), 1, - anon_sym_POUND_BANG, - ACTIONS(8570), 1, - sym__newline, - STATE(4732), 1, - aux_sym__repeat_newline, STATE(4852), 1, sym_comment, - [134304] = 4, + ACTIONS(8311), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134288] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1903), 1, + ACTIONS(2390), 1, sym__entry_separator, STATE(4853), 1, sym_comment, - ACTIONS(1905), 2, + ACTIONS(2392), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [134318] = 5, + anon_sym_RBRACE, + [134302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(8572), 1, - anon_sym_COLON, - STATE(485), 1, - aux_sym__repeat_newline, STATE(4854), 1, sym_comment, - [134334] = 3, + ACTIONS(8270), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134314] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4855), 1, sym_comment, - ACTIONS(8290), 3, + ACTIONS(8397), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134346] = 5, - ACTIONS(103), 1, + [134326] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5079), 1, - sym__entry_separator, - ACTIONS(8574), 1, - anon_sym_GT2, - STATE(2413), 1, - aux_sym__types_body_repeat2, + ACTIONS(8577), 1, + anon_sym_RBRACK, + ACTIONS(8579), 1, + anon_sym_DOT_DOT, STATE(4856), 1, sym_comment, - [134362] = 3, + STATE(5260), 1, + sym__match_pattern_rest, + [134342] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4857), 1, sym_comment, - ACTIONS(8576), 3, + ACTIONS(8191), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [134374] = 4, - ACTIONS(103), 1, + [134354] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - sym__entry_separator, STATE(4858), 1, sym_comment, - ACTIONS(5912), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [134388] = 3, - ACTIONS(3), 1, + ACTIONS(8325), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134366] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8407), 1, + sym__entry_separator, + ACTIONS(8581), 1, + anon_sym_AT2, STATE(4859), 1, sym_comment, - ACTIONS(8578), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134400] = 4, + STATE(4943), 1, + sym_param_completer, + [134382] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5300), 1, + ACTIONS(5060), 1, sym__entry_separator, + ACTIONS(8583), 1, + anon_sym_GT2, + STATE(2421), 1, + aux_sym__types_body_repeat2, STATE(4860), 1, sym_comment, - ACTIONS(5887), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [134414] = 4, + [134398] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8582), 1, - anon_sym_COMMA, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8585), 1, + anon_sym_RBRACK, STATE(4861), 1, sym_comment, - ACTIONS(8580), 2, - anon_sym_RBRACK, - sym_hex_digit, - [134428] = 4, - ACTIONS(103), 1, + STATE(4879), 1, + aux_sym_val_binary_repeat1, + [134414] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1699), 1, - sym__entry_separator, STATE(4862), 1, sym_comment, - ACTIONS(1615), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134442] = 5, + ACTIONS(8274), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134426] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(2963), 1, - sym_block, STATE(4863), 1, sym_comment, - [134458] = 3, - ACTIONS(3), 1, + ACTIONS(2662), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [134438] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5346), 1, + sym__entry_separator, STATE(4864), 1, sym_comment, - ACTIONS(8584), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134470] = 3, + ACTIONS(5344), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [134452] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4865), 1, sym_comment, - ACTIONS(8586), 3, + ACTIONS(8587), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134482] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8588), 1, + anon_sym_LBRACK, anon_sym_RBRACK, + [134464] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4858), 1, + sym_block, STATE(4866), 1, sym_comment, - STATE(4885), 1, - aux_sym_val_binary_repeat1, - [134498] = 5, - ACTIONS(103), 1, + [134480] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8387), 1, - anon_sym_RBRACE, - STATE(1467), 1, - aux_sym__types_body_repeat2, + ACTIONS(8591), 1, + anon_sym_COMMA, STATE(4867), 1, sym_comment, - [134514] = 4, + ACTIONS(8589), 2, + anon_sym_RBRACK, + sym_hex_digit, + [134494] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8590), 1, - anon_sym_LBRACK, - STATE(5007), 1, - sym_val_list, - STATE(4868), 2, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8593), 1, + anon_sym_RBRACK, + STATE(4715), 1, + aux_sym_val_binary_repeat1, + STATE(4868), 1, sym_comment, - aux_sym__table_body_repeat1, - [134528] = 5, - ACTIONS(103), 1, + [134510] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7660), 1, - anon_sym_DOT_DOT, - ACTIONS(7719), 1, - anon_sym_RBRACK, - ACTIONS(7721), 1, - sym__entry_separator, + STATE(1402), 1, + aux_sym__block_body_repeat1, STATE(4869), 1, sym_comment, - [134544] = 5, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + [134524] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7666), 1, - anon_sym_DOT_DOT, - ACTIONS(7723), 1, - anon_sym_RBRACK, - ACTIONS(7726), 1, - sym__entry_separator, STATE(4870), 1, sym_comment, - [134560] = 3, + ACTIONS(1887), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [134536] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4871), 1, sym_comment, - ACTIONS(8131), 3, + ACTIONS(8268), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [134572] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + [134548] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, + sym__entry_separator, + STATE(1487), 1, + aux_sym__types_body_repeat2, STATE(4872), 1, sym_comment, - ACTIONS(8096), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134584] = 5, + [134564] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(4347), 1, sym__entry_separator, - ACTIONS(1625), 1, - anon_sym_COLON2, - STATE(1498), 1, + ACTIONS(8595), 1, + anon_sym_GT2, + STATE(1978), 1, aux_sym__types_body_repeat2, STATE(4873), 1, sym_comment, - [134600] = 5, - ACTIONS(3), 1, + [134580] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8593), 1, - anon_sym_export, - ACTIONS(8595), 1, - anon_sym_def, + ACTIONS(1878), 1, + anon_sym_POUND_BANG, ACTIONS(8597), 1, - anon_sym_extern, - STATE(4874), 1, + sym__newline, + STATE(4874), 2, + aux_sym__repeat_newline, sym_comment, - [134616] = 3, + [134594] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4875), 1, sym_comment, - ACTIONS(8599), 3, + ACTIONS(8268), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [134628] = 4, + anon_sym_SEMI, + [134606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_RBRACK, - ACTIONS(8603), 1, - sym_hex_digit, - STATE(4876), 2, + ACTIONS(4100), 1, + anon_sym_AT2, + ACTIONS(8600), 1, + anon_sym_GT2, + STATE(4876), 1, sym_comment, - aux_sym_val_binary_repeat1, - [134642] = 4, + STATE(5245), 1, + sym_param_completer, + [134622] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8203), 1, - anon_sym_LPAREN, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(8602), 1, + anon_sym_GT2, + STATE(1981), 1, + aux_sym__types_body_repeat2, STATE(4877), 1, sym_comment, - ACTIONS(8205), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [134656] = 3, + [134638] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4878), 1, sym_comment, - ACTIONS(8296), 3, - ts_builtin_sym_end, + ACTIONS(8604), 3, sym__newline, anon_sym_SEMI, - [134668] = 3, + anon_sym_RPAREN, + [134650] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8423), 1, + sym_hex_digit, + ACTIONS(8606), 1, + anon_sym_RBRACK, + STATE(4715), 1, + aux_sym_val_binary_repeat1, STATE(4879), 1, sym_comment, - ACTIONS(8296), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134680] = 3, + [134666] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + sym__unquoted_pattern, STATE(4880), 1, sym_comment, - ACTIONS(8357), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134692] = 3, + STATE(5075), 1, + sym__expr_parenthesized_immediate, + [134682] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4881), 1, sym_comment, - ACTIONS(8395), 3, + ACTIONS(8342), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134704] = 3, - ACTIONS(3), 1, + [134694] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(8608), 1, + anon_sym_RBRACK, + STATE(4433), 1, + aux_sym__types_body_repeat2, STATE(4882), 1, sym_comment, - ACTIONS(8606), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134716] = 5, - ACTIONS(103), 1, + [134710] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(3103), 1, - sym_block, + ACTIONS(1732), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8610), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8612), 1, + aux_sym__immediate_decimal_token5, STATE(4883), 1, sym_comment, - [134732] = 3, - ACTIONS(3), 1, + [134726] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2426), 1, + sym__entry_separator, STATE(4884), 1, sym_comment, - ACTIONS(8098), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134744] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8608), 1, + ACTIONS(2428), 2, anon_sym_RBRACK, - STATE(4876), 1, - aux_sym_val_binary_repeat1, + anon_sym_RBRACE, + [134740] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2554), 1, + sym__entry_separator, STATE(4885), 1, sym_comment, - [134760] = 5, + ACTIONS(2556), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [134754] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_LPAREN2, - ACTIONS(5061), 1, - sym__unquoted_pattern, + ACTIONS(3801), 1, + anon_sym_LBRACK, + STATE(4721), 1, + sym_val_list, + STATE(4731), 1, + aux_sym__table_body_repeat1, STATE(4886), 1, sym_comment, - STATE(5056), 1, - sym__expr_parenthesized_immediate, - [134776] = 5, - ACTIONS(3), 1, + [134770] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4096), 1, - anon_sym_AT2, - ACTIONS(8610), 1, - anon_sym_GT2, + ACTIONS(4525), 1, + sym__entry_separator, + ACTIONS(8614), 1, + anon_sym_RBRACK, + STATE(2030), 1, + aux_sym__types_body_repeat2, STATE(4887), 1, sym_comment, - STATE(5177), 1, - sym_param_completer, - [134792] = 3, + [134786] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4888), 1, sym_comment, - ACTIONS(8176), 3, - ts_builtin_sym_end, + ACTIONS(8616), 3, sym__newline, anon_sym_SEMI, - [134804] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [134798] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - ACTIONS(8612), 1, - anon_sym_RBRACK, - STATE(1991), 1, - aux_sym__types_body_repeat2, + ACTIONS(4100), 1, + anon_sym_AT2, + ACTIONS(5786), 1, + anon_sym_EQ, + STATE(3222), 1, + sym_param_completer, STATE(4889), 1, sym_comment, - [134820] = 5, + [134814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8614), 1, - anon_sym_RBRACK, - STATE(4876), 1, - aux_sym_val_binary_repeat1, STATE(4890), 1, sym_comment, - [134836] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4096), 1, - anon_sym_AT2, - ACTIONS(8616), 1, - anon_sym_GT2, - STATE(4891), 1, - sym_comment, - STATE(5476), 1, - sym_param_completer, - [134852] = 5, + ACTIONS(8618), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134826] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8618), 1, + ACTIONS(4786), 1, anon_sym_RBRACE, - STATE(1463), 1, + ACTIONS(4788), 1, + sym__entry_separator, + STATE(2271), 1, aux_sym__types_body_repeat2, + STATE(4891), 1, + sym_comment, + [134842] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4892), 1, sym_comment, - [134868] = 5, + ACTIONS(8258), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134854] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4483), 1, + ACTIONS(4525), 1, sym__entry_separator, ACTIONS(8620), 1, anon_sym_RBRACK, - STATE(2153), 1, + STATE(2031), 1, aux_sym__types_body_repeat2, STATE(4893), 1, sym_comment, - [134884] = 3, - ACTIONS(3), 1, + [134870] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6333), 1, + sym__entry_separator, STATE(4894), 1, sym_comment, - ACTIONS(8622), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134896] = 3, + ACTIONS(6331), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [134884] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4895), 1, sym_comment, - ACTIONS(8326), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134908] = 4, - ACTIONS(103), 1, + ACTIONS(4614), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134896] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - sym__entry_separator, STATE(4896), 1, sym_comment, - ACTIONS(5820), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [134922] = 4, + ACTIONS(4618), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134908] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(4347), 1, sym__entry_separator, + ACTIONS(8622), 1, + anon_sym_GT2, + STATE(1968), 1, + aux_sym__types_body_repeat2, STATE(4897), 1, sym_comment, - ACTIONS(5342), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134936] = 5, + [134924] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(8624), 1, - anon_sym_COLON, - STATE(485), 1, - aux_sym__repeat_newline, STATE(4898), 1, sym_comment, - [134952] = 5, + ACTIONS(4635), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134936] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(5060), 1, sym__entry_separator, - ACTIONS(8626), 1, - anon_sym_RBRACK, - STATE(1990), 1, + ACTIONS(8624), 1, + anon_sym_GT2, + STATE(2413), 1, aux_sym__types_body_repeat2, STATE(4899), 1, sym_comment, - [134968] = 5, + [134952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8628), 1, - anon_sym_RBRACK, - STATE(4838), 1, - aux_sym_val_binary_repeat1, STATE(4900), 1, sym_comment, - [134984] = 4, + ACTIONS(8626), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134964] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2413), 1, + ACTIONS(1596), 1, sym__entry_separator, - STATE(4901), 1, - sym_comment, - ACTIONS(2415), 2, - anon_sym_RBRACK, + ACTIONS(8628), 1, anon_sym_RBRACE, - [134998] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2417), 1, - sym__entry_separator, - STATE(4902), 1, + STATE(1488), 1, + aux_sym__types_body_repeat2, + STATE(4901), 1, sym_comment, - ACTIONS(2419), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135012] = 3, + [134980] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4903), 1, + STATE(4902), 1, sym_comment, - ACTIONS(8314), 3, + ACTIONS(8147), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [135024] = 4, + [134992] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2421), 1, + ACTIONS(4357), 1, sym__entry_separator, + ACTIONS(8630), 1, + anon_sym_RBRACK, + STATE(1983), 1, + aux_sym__types_body_repeat2, + STATE(4903), 1, + sym_comment, + [135008] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4904), 1, sym_comment, - ACTIONS(2423), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135038] = 4, + ACTIONS(8632), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [135020] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2624), 1, - sym__entry_separator, + ACTIONS(8634), 1, + anon_sym_POUND_BANG, + ACTIONS(8636), 1, + sym__newline, + STATE(4874), 1, + aux_sym__repeat_newline, STATE(4905), 1, sym_comment, - ACTIONS(2626), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135052] = 5, + [135036] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - sym_hex_digit, - ACTIONS(8630), 1, - anon_sym_RBRACK, - STATE(4890), 1, - aux_sym_val_binary_repeat1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(5132), 1, + sym__unquoted_pattern, STATE(4906), 1, sym_comment, - [135068] = 5, - ACTIONS(103), 1, + STATE(4962), 1, + sym__expr_parenthesized_immediate, + [135052] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8182), 1, - sym__entry_separator, - ACTIONS(8632), 1, - anon_sym_COLON, + ACTIONS(8638), 1, + anon_sym_export, + ACTIONS(8640), 1, + anon_sym_def, + ACTIONS(8642), 1, + anon_sym_extern, STATE(4907), 1, sym_comment, - STATE(4997), 1, - sym__collection_annotation, - [135084] = 3, + [135068] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6968), 1, + anon_sym_LPAREN2, STATE(4908), 1, sym_comment, - ACTIONS(8298), 3, + STATE(4994), 1, + sym__expr_parenthesized_immediate, + [135084] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4909), 1, + sym_comment, + ACTIONS(8193), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [135096] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2922), 1, - sym__newline, - ACTIONS(8634), 1, - anon_sym_COLON, - STATE(485), 1, - aux_sym__repeat_newline, - STATE(4909), 1, - sym_comment, - [135112] = 3, - ACTIONS(103), 1, - anon_sym_POUND, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + ACTIONS(5184), 1, + sym__unquoted_pattern_in_record, STATE(4910), 1, sym_comment, - ACTIONS(2666), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [135124] = 4, + STATE(5042), 1, + sym__expr_parenthesized_immediate, + [135112] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8636), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(7506), 1, + sym__entry_separator, STATE(4911), 1, sym_comment, - STATE(5041), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [135137] = 4, - ACTIONS(3), 1, + ACTIONS(7700), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [135126] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4561), 1, - sym_block, + ACTIONS(8242), 1, + sym__entry_separator, STATE(4912), 1, sym_comment, - [135150] = 4, + ACTIONS(8644), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [135140] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_RBRACE, - ACTIONS(7993), 1, + ACTIONS(7512), 1, sym__entry_separator, STATE(4913), 1, sym_comment, - [135163] = 4, + ACTIONS(7730), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [135154] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4454), 1, - sym_block, STATE(4914), 1, sym_comment, - [135176] = 4, + ACTIONS(8646), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [135166] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8638), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(2474), 1, + sym__entry_separator, STATE(4915), 1, sym_comment, - STATE(5041), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [135189] = 3, - ACTIONS(3), 1, + ACTIONS(2476), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135180] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2478), 1, + sym__entry_separator, STATE(4916), 1, sym_comment, - ACTIONS(1545), 2, - sym__table_head_separator, - anon_sym_DOT2, - [135200] = 4, - ACTIONS(3), 1, + ACTIONS(2480), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135194] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4455), 1, - sym_block, + ACTIONS(5241), 1, + sym__entry_separator, STATE(4917), 1, sym_comment, - [135213] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6358), 1, + ACTIONS(5912), 2, anon_sym_RBRACK, - ACTIONS(6360), 1, - sym__entry_separator, + anon_sym_GT2, + [135208] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4918), 1, sym_comment, - [135226] = 4, - ACTIONS(3), 1, + ACTIONS(8256), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135220] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4767), 1, - sym_block, + ACTIONS(4347), 1, + sym__entry_separator, + ACTIONS(8648), 1, + anon_sym_RBRACK, + STATE(2003), 1, + aux_sym__types_body_repeat2, STATE(4919), 1, sym_comment, - [135239] = 4, + [135236] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(1784), 1, anon_sym_LBRACE, - STATE(4610), 1, - sym_block, + ACTIONS(7632), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8650), 1, + anon_sym_DOT, STATE(4920), 1, sym_comment, - [135252] = 4, + [135252] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4611), 1, - sym_block, + ACTIONS(2935), 1, + sym__newline, + ACTIONS(8652), 1, + anon_sym_COLON, + STATE(503), 1, + aux_sym__repeat_newline, STATE(4921), 1, sym_comment, - [135265] = 4, + [135268] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1234), 1, - anon_sym_LBRACE, - ACTIONS(2634), 1, - sym__unquoted_pattern, STATE(4922), 1, sym_comment, - [135278] = 4, - ACTIONS(3), 1, + ACTIONS(4610), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [135280] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4565), 1, - sym_block, + ACTIONS(1596), 1, + sym__entry_separator, + ACTIONS(8286), 1, + anon_sym_RBRACE, + STATE(1491), 1, + aux_sym__types_body_repeat2, STATE(4923), 1, sym_comment, - [135291] = 4, - ACTIONS(3), 1, + [135296] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4471), 1, - sym_block, + ACTIONS(2386), 1, + sym__entry_separator, STATE(4924), 1, sym_comment, - [135304] = 4, - ACTIONS(3), 1, + ACTIONS(2388), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135310] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(2674), 1, - sym__unquoted_pattern, + ACTIONS(6171), 1, + sym__entry_separator, STATE(4925), 1, sym_comment, - [135317] = 4, - ACTIONS(3), 1, + ACTIONS(6169), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135324] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1846), 1, - anon_sym_LBRACE, - ACTIONS(1848), 1, - sym__unquoted_pattern, + ACTIONS(8354), 1, + sym__entry_separator, + ACTIONS(8654), 1, + anon_sym_COLON, STATE(4926), 1, sym_comment, - [135330] = 4, + STATE(4942), 1, + sym__collection_annotation, + [135340] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5354), 1, - anon_sym_RBRACK, - ACTIONS(5356), 1, + ACTIONS(2382), 1, sym__entry_separator, STATE(4927), 1, sym_comment, - [135343] = 3, - ACTIONS(103), 1, + ACTIONS(2384), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135354] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8640), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4928), 2, + STATE(4928), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [135354] = 4, - ACTIONS(103), 1, + ACTIONS(8364), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135366] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym__entry_separator, - STATE(2275), 1, - aux_sym__types_body_repeat2, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(3381), 1, + sym_block, STATE(4929), 1, sym_comment, - [135367] = 4, + [135379] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, + ACTIONS(884), 1, anon_sym_LBRACE, - ACTIONS(2614), 1, + ACTIONS(1806), 1, sym__unquoted_pattern, STATE(4930), 1, sym_comment, - [135380] = 4, + [135392] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(4903), 1, + STATE(4796), 1, sym_block, STATE(4931), 1, sym_comment, - [135393] = 4, - ACTIONS(3), 1, + [135405] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4656), 1, - sym_block, + ACTIONS(8656), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4932), 1, sym_comment, - [135406] = 4, - ACTIONS(103), 1, + STATE(5062), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [135418] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2572), 1, - sym__entry_separator, - ACTIONS(2574), 1, - anon_sym_RBRACE, + ACTIONS(1234), 1, + anon_sym_LBRACE, + ACTIONS(2608), 1, + sym__unquoted_pattern, STATE(4933), 1, sym_comment, - [135419] = 4, + [135431] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(1963), 1, + sym__unquoted_pattern, + ACTIONS(2574), 1, anon_sym_LBRACE, - STATE(4652), 1, - sym_block, STATE(4934), 1, sym_comment, - [135432] = 4, - ACTIONS(103), 1, + [135444] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8643), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4709), 1, + sym_block, STATE(4935), 1, sym_comment, - STATE(5041), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [135445] = 4, + [135457] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(4826), 1, + STATE(4678), 1, sym_block, STATE(4936), 1, sym_comment, - [135458] = 4, + [135470] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(4509), 1, + STATE(4800), 1, sym_block, STATE(4937), 1, sym_comment, - [135471] = 4, - ACTIONS(103), 1, + [135483] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4403), 1, + sym_block, STATE(4938), 1, sym_comment, - STATE(5041), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [135484] = 4, + [135496] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2616), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, - sym__unquoted_pattern, + STATE(4404), 1, + sym_block, STATE(4939), 1, sym_comment, - [135497] = 4, + [135509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(4829), 1, + STATE(4368), 1, sym_block, STATE(4940), 1, sym_comment, - [135510] = 3, + [135522] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4593), 1, + sym_block, STATE(4941), 1, sym_comment, - ACTIONS(8647), 2, - sym__newline, - anon_sym_SEMI, - [135521] = 4, + [135535] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8649), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4928), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8658), 1, + anon_sym_GT2, + ACTIONS(8660), 1, + sym__entry_separator, STATE(4942), 1, sym_comment, - [135534] = 4, + [135548] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8651), 1, - anon_sym_RBRACK, - ACTIONS(8653), 1, + ACTIONS(8662), 1, + anon_sym_GT2, + ACTIONS(8664), 1, sym__entry_separator, STATE(4943), 1, sym_comment, - [135547] = 4, - ACTIONS(3), 1, + [135561] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4661), 1, - sym_block, + ACTIONS(8666), 1, + aux_sym__unquoted_with_expr_token1, STATE(4944), 1, sym_comment, - [135560] = 4, + STATE(5000), 1, + aux_sym__unquoted_with_expr_repeat1, + [135574] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(4895), 1, + STATE(4594), 1, sym_block, STATE(4945), 1, sym_comment, - [135573] = 4, + [135587] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2756), 1, - anon_sym_COLON2, + ACTIONS(7979), 1, + anon_sym_RBRACE, + ACTIONS(7981), 1, + sym__entry_separator, STATE(4946), 1, sym_comment, - [135586] = 4, + [135600] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(3366), 1, + STATE(4820), 1, sym_block, STATE(4947), 1, sym_comment, - [135599] = 4, + [135613] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8655), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4928), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8668), 1, + anon_sym_RBRACK, + ACTIONS(8670), 1, + sym__entry_separator, STATE(4948), 1, sym_comment, - [135612] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8657), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4928), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4949), 1, - sym_comment, - [135625] = 4, + [135626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(4811), 1, + STATE(4802), 1, sym_block, - STATE(4950), 1, + STATE(4949), 1, sym_comment, - [135638] = 4, + [135639] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8659), 1, - anon_sym_LPAREN2, - ACTIONS(8661), 1, - aux_sym__record_key_token1, - STATE(4951), 1, + ACTIONS(4525), 1, + sym__entry_separator, + STATE(2183), 1, + aux_sym__types_body_repeat2, + STATE(4950), 1, sym_comment, - [135651] = 4, + [135652] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(4591), 1, + STATE(4679), 1, sym_block, + STATE(4951), 1, + sym_comment, + [135665] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8672), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4952), 1, sym_comment, - [135664] = 4, + STATE(5062), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [135678] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(4593), 1, + STATE(4822), 1, sym_block, STATE(4953), 1, sym_comment, - [135677] = 4, + [135691] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6914), 1, - anon_sym_LPAREN2, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4369), 1, + sym_block, STATE(4954), 1, sym_comment, - STATE(5088), 1, - sym__expr_parenthesized_immediate, - [135690] = 4, + [135704] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1828), 1, - sym__unquoted_pattern, + ACTIONS(1786), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8512), 1, + aux_sym__immediate_decimal_token5, STATE(4955), 1, sym_comment, - [135703] = 3, + [135717] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4804), 1, + sym_block, STATE(4956), 1, sym_comment, - ACTIONS(8417), 2, - anon_sym_GT2, - anon_sym_AT2, - [135714] = 4, + [135730] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(4580), 1, + STATE(4602), 1, sym_block, STATE(4957), 1, sym_comment, - [135727] = 4, + [135743] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(4581), 1, + STATE(4370), 1, sym_block, STATE(4958), 1, sym_comment, - [135740] = 4, + [135756] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_RBRACK, - ACTIONS(8665), 1, - sym__entry_separator, + ACTIONS(8674), 1, + aux_sym__unquoted_with_expr_token1, STATE(4959), 1, sym_comment, - [135753] = 4, - ACTIONS(3), 1, + STATE(5000), 1, + aux_sym__unquoted_with_expr_repeat1, + [135769] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4804), 1, - sym_block, + ACTIONS(8676), 1, + anon_sym_RBRACK, + ACTIONS(8678), 1, + sym__entry_separator, STATE(4960), 1, sym_comment, - [135766] = 4, - ACTIONS(103), 1, + [135782] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7719), 1, + ACTIONS(6602), 1, + anon_sym_DOLLAR2, + ACTIONS(8680), 1, anon_sym_RBRACK, - ACTIONS(7721), 1, - sym__entry_separator, STATE(4961), 1, sym_comment, - [135779] = 4, - ACTIONS(3), 1, + [135795] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4682), 1, - sym_block, + ACTIONS(8682), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4944), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4962), 1, sym_comment, - [135792] = 4, - ACTIONS(3), 1, + [135808] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4808), 1, - sym_block, + ACTIONS(8684), 1, + anon_sym_RBRACE, + ACTIONS(8686), 1, + sym__entry_separator, STATE(4963), 1, sym_comment, - [135805] = 4, + [135821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6657), 1, - anon_sym_DOLLAR2, - ACTIONS(8667), 1, - anon_sym_RBRACK, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4964), 1, sym_comment, - [135818] = 4, + [135834] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - STATE(4601), 1, - sym_block, + ACTIONS(1963), 1, + sym__unquoted_pattern, STATE(4965), 1, sym_comment, - [135831] = 4, + [135847] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8669), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8688), 1, + anon_sym_RBRACE, + ACTIONS(8690), 1, + sym__entry_separator, STATE(4966), 1, sym_comment, - STATE(5001), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [135844] = 4, + [135860] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7486), 1, + ACTIONS(8692), 1, + anon_sym_RBRACE, + ACTIONS(8694), 1, sym__entry_separator, STATE(4967), 1, sym_comment, - [135857] = 4, - ACTIONS(103), 1, + [135873] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8671), 1, - anon_sym_RBRACK, - ACTIONS(8673), 1, - sym__entry_separator, + ACTIONS(1653), 1, + sym__unquoted_pattern, + ACTIONS(2584), 1, + anon_sym_LBRACE, STATE(4968), 1, sym_comment, - [135870] = 4, + [135886] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2652), 1, - sym__entry_separator, - ACTIONS(2654), 1, - anon_sym_RBRACE, + ACTIONS(884), 1, + anon_sym_COLON2, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, STATE(4969), 1, sym_comment, - [135883] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4602), 1, - sym_block, - STATE(4970), 1, - sym_comment, - [135896] = 4, + [135899] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8675), 1, + ACTIONS(8696), 1, aux_sym__unquoted_with_expr_token1, - STATE(4928), 1, + STATE(4970), 1, + sym_comment, + STATE(4985), 1, aux_sym__unquoted_with_expr_repeat1, + [135912] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4390), 1, + sym_block, STATE(4971), 1, sym_comment, - [135909] = 4, - ACTIONS(103), 1, + [135925] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8677), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4391), 1, + sym_block, STATE(4972), 1, sym_comment, - STATE(5000), 1, - aux_sym__unquoted_with_expr_repeat1, - [135922] = 4, + [135938] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8679), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8092), 1, + anon_sym_RBRACE, + ACTIONS(8094), 1, + sym__entry_separator, STATE(4973), 1, sym_comment, - STATE(5029), 1, - aux_sym__unquoted_with_expr_repeat1, - [135935] = 4, - ACTIONS(3), 1, + [135951] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4521), 1, - sym_block, + ACTIONS(4788), 1, + sym__entry_separator, + STATE(2281), 1, + aux_sym__types_body_repeat2, STATE(4974), 1, sym_comment, - [135948] = 4, - ACTIONS(3), 1, + [135964] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4840), 1, - sym_block, + ACTIONS(8698), 1, + aux_sym__unquoted_with_expr_token1, STATE(4975), 1, sym_comment, - [135961] = 4, + STATE(5000), 1, + aux_sym__unquoted_with_expr_repeat1, + [135977] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4522), 1, - sym_block, + ACTIONS(8700), 1, + anon_sym_DASH2, STATE(4976), 1, sym_comment, - [135974] = 4, - ACTIONS(103), 1, + STATE(5222), 1, + sym_param_short_flag, + [135990] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - STATE(2053), 1, - aux_sym__types_body_repeat2, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4406), 1, + sym_block, STATE(4977), 1, sym_comment, - [135987] = 4, + [136003] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(4676), 1, + STATE(4408), 1, sym_block, STATE(4978), 1, sym_comment, - [136000] = 4, - ACTIONS(103), 1, + [136016] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4412), 1, + sym_block, STATE(4979), 1, sym_comment, - STATE(5001), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [136013] = 4, + [136029] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(5946), 1, sym__entry_separator, - STATE(2083), 1, - aux_sym__types_body_repeat2, + ACTIONS(6720), 1, + anon_sym_GT2, STATE(4980), 1, sym_comment, - [136026] = 4, - ACTIONS(103), 1, + [136042] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2616), 1, - sym__entry_separator, - ACTIONS(2618), 1, - anon_sym_RBRACE, + ACTIONS(6602), 1, + anon_sym_DOLLAR2, + ACTIONS(8702), 1, + anon_sym_RBRACK, STATE(4981), 1, sym_comment, - [136039] = 4, + [136055] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1982), 1, + ACTIONS(5460), 1, sym__entry_separator, - ACTIONS(1984), 1, - anon_sym_RBRACE, + ACTIONS(6463), 1, + anon_sym_RBRACK, STATE(4982), 1, sym_comment, - [136052] = 3, - ACTIONS(103), 1, + [136068] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4413), 1, + sym_block, STATE(4983), 1, sym_comment, - ACTIONS(1966), 2, - anon_sym_POUND_BANG, - sym__newline, - [136063] = 4, - ACTIONS(3), 1, + [136081] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_LBRACE, - ACTIONS(1897), 1, - sym__unquoted_pattern, + ACTIONS(4347), 1, + sym__entry_separator, + STATE(2144), 1, + aux_sym__types_body_repeat2, STATE(4984), 1, sym_comment, - [136076] = 4, - ACTIONS(3), 1, + [136094] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4724), 1, - sym_block, + ACTIONS(8704), 1, + aux_sym__unquoted_with_expr_token1, STATE(4985), 1, sym_comment, - [136089] = 4, + STATE(5000), 1, + aux_sym__unquoted_with_expr_repeat1, + [136107] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8706), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4952), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4986), 1, + sym_comment, + [136120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(4537), 1, + STATE(4741), 1, sym_block, - STATE(4986), 1, + STATE(4987), 1, sym_comment, - [136102] = 4, + [136133] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8071), 1, - anon_sym_RBRACE, - ACTIONS(8073), 1, + ACTIONS(2580), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7512), 1, sym__entry_separator, - STATE(4987), 1, - sym_comment, - [136115] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4782), 1, - sym_block, STATE(4988), 1, sym_comment, - [136128] = 4, + [136146] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4538), 1, - sym_block, STATE(4989), 1, sym_comment, - [136141] = 4, + ACTIONS(1478), 2, + sym__table_head_separator, + anon_sym_DOT2, + [136157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(4539), 1, + STATE(4650), 1, sym_block, STATE(4990), 1, sym_comment, - [136154] = 4, - ACTIONS(103), 1, + [136170] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8683), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4966), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4423), 1, + sym_block, STATE(4991), 1, sym_comment, - [136167] = 4, + [136183] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(4810), 1, + STATE(4655), 1, sym_block, STATE(4992), 1, sym_comment, - [136180] = 3, + [136196] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4424), 1, + sym_block, STATE(4993), 1, sym_comment, - ACTIONS(1553), 2, - sym__table_head_separator, - anon_sym_DOT2, - [136191] = 4, - ACTIONS(3), 1, + [136209] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4540), 1, - sym_block, + ACTIONS(8708), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4994), 1, sym_comment, - [136204] = 4, - ACTIONS(3), 1, + STATE(5020), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136222] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4567), 1, - sym_block, + ACTIONS(1596), 1, + sym__entry_separator, + STATE(1504), 1, + aux_sym__types_body_repeat2, STATE(4995), 1, sym_comment, - [136217] = 4, + [136235] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_LPAREN2, + ACTIONS(2590), 1, + anon_sym_LBRACE, + ACTIONS(2596), 1, + sym__unquoted_pattern, STATE(4996), 1, sym_comment, - STATE(5277), 1, - sym__expr_parenthesized_immediate, - [136230] = 4, - ACTIONS(103), 1, + [136248] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8685), 1, - anon_sym_GT2, - ACTIONS(8687), 1, - sym__entry_separator, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(3372), 1, + sym_block, STATE(4997), 1, sym_comment, - [136243] = 4, + [136261] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4764), 1, - sym_block, STATE(4998), 1, sym_comment, - [136256] = 4, + ACTIONS(8710), 2, + sym__newline, + anon_sym_SEMI, + [136272] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2608), 1, + ACTIONS(7319), 1, sym__entry_separator, - ACTIONS(2610), 1, - anon_sym_RBRACE, + ACTIONS(8712), 1, + anon_sym_RBRACK, STATE(4999), 1, sym_comment, - [136269] = 4, + [136285] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8689), 1, + ACTIONS(8714), 1, aux_sym__unquoted_with_expr_token1, - STATE(4928), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(5000), 1, + STATE(5000), 2, sym_comment, - [136282] = 3, + aux_sym__unquoted_with_expr_repeat1, + [136296] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8691), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5001), 2, + STATE(5001), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [136293] = 3, - ACTIONS(3), 1, + ACTIONS(1965), 2, + anon_sym_POUND_BANG, + sym__newline, + [136307] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7343), 1, + sym__entry_separator, + ACTIONS(8717), 1, + anon_sym_RBRACK, STATE(5002), 1, sym_comment, - ACTIONS(1470), 2, - sym__table_head_separator, - anon_sym_DOT2, - [136304] = 4, - ACTIONS(103), 1, + [136320] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8694), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4938), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4657), 1, + sym_block, STATE(5003), 1, sym_comment, - [136317] = 4, + [136333] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8696), 1, - anon_sym_RBRACE, - ACTIONS(8698), 1, + ACTIONS(3823), 1, sym__entry_separator, + ACTIONS(8719), 1, + anon_sym_RBRACE, STATE(5004), 1, sym_comment, - [136330] = 4, + [136346] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4770), 1, - sym_block, STATE(5005), 1, sym_comment, - [136343] = 4, - ACTIONS(3), 1, + ACTIONS(1514), 2, + sym__table_head_separator, + anon_sym_DOT2, + [136357] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4801), 1, - sym_block, + ACTIONS(8108), 1, + anon_sym_RBRACE, + ACTIONS(8110), 1, + sym__entry_separator, STATE(5006), 1, sym_comment, - [136356] = 4, + [136370] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(5948), 1, sym__entry_separator, - STATE(4678), 1, - aux_sym__types_body_repeat2, + ACTIONS(6722), 1, + anon_sym_GT2, STATE(5007), 1, sym_comment, - [136369] = 4, - ACTIONS(3), 1, + [136383] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4878), 1, - sym_block, + ACTIONS(2584), 1, + sym__entry_separator, + ACTIONS(2586), 1, + anon_sym_RBRACE, STATE(5008), 1, sym_comment, - [136382] = 4, - ACTIONS(3), 1, + [136396] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4879), 1, - sym_block, + ACTIONS(2598), 1, + sym__entry_separator, + ACTIONS(2600), 1, + anon_sym_RBRACE, STATE(5009), 1, sym_comment, - [136395] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4771), 1, - sym_block, - STATE(5010), 1, - sym_comment, - [136408] = 4, + [136409] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1972), 1, + ACTIONS(2590), 1, sym__entry_separator, - ACTIONS(1974), 1, + ACTIONS(2592), 1, anon_sym_RBRACE, + STATE(5010), 1, + sym_comment, + [136422] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4812), 1, + sym_block, STATE(5011), 1, sym_comment, - [136421] = 4, - ACTIONS(103), 1, + [136435] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8700), 1, - anon_sym_GT2, - ACTIONS(8702), 1, - sym__entry_separator, STATE(5012), 1, sym_comment, - [136434] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6028), 1, - sym__entry_separator, - ACTIONS(6769), 1, + ACTIONS(8469), 2, anon_sym_GT2, + anon_sym_AT2, + [136446] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4740), 1, + sym_block, STATE(5013), 1, sym_comment, - [136447] = 4, + [136459] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6008), 1, + ACTIONS(8722), 1, + anon_sym_RBRACE, + ACTIONS(8724), 1, sym__entry_separator, - ACTIONS(6771), 1, - anon_sym_GT2, STATE(5014), 1, sym_comment, - [136460] = 4, - ACTIONS(103), 1, + [136472] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4483), 1, - sym__entry_separator, - STATE(2205), 1, - aux_sym__types_body_repeat2, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4831), 1, + sym_block, STATE(5015), 1, sym_comment, - [136473] = 4, + [136485] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8704), 1, - sym__newline, - ACTIONS(8706), 1, - sym__space, + ACTIONS(7715), 1, + anon_sym_RBRACE, + ACTIONS(7717), 1, + sym__entry_separator, STATE(5016), 1, sym_comment, - [136486] = 4, - ACTIONS(3), 1, + [136498] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8708), 1, - anon_sym_DASH2, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2738), 1, + anon_sym_COLON2, STATE(5017), 1, sym_comment, - STATE(5488), 1, - sym_param_short_flag, - [136499] = 4, + [136511] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8710), 1, - anon_sym_RBRACE, - ACTIONS(8712), 1, - sym__entry_separator, + ACTIONS(3497), 1, + sym__space, + STATE(1422), 1, + aux_sym_pipe_element_repeat1, STATE(5018), 1, sym_comment, - [136512] = 4, + [136524] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2360), 1, - anon_sym_LBRACE, - ACTIONS(2362), 1, - sym__unquoted_pattern, + ACTIONS(6968), 1, + anon_sym_LPAREN2, STATE(5019), 1, sym_comment, - [136525] = 4, + STATE(5519), 1, + sym__expr_parenthesized_immediate, + [136537] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8714), 1, - anon_sym_RBRACE, - ACTIONS(8716), 1, - sym__entry_separator, + ACTIONS(8726), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5020), 1, sym_comment, - [136538] = 4, - ACTIONS(103), 1, + STATE(5096), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136550] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7804), 1, - anon_sym_RBRACE, - ACTIONS(7806), 1, - sym__entry_separator, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4367), 1, + sym_block, STATE(5021), 1, sym_comment, - [136551] = 4, - ACTIONS(103), 1, + [136563] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3795), 1, - sym__entry_separator, - ACTIONS(8718), 1, - anon_sym_RBRACE, + ACTIONS(1919), 1, + anon_sym_LBRACE, + ACTIONS(1921), 1, + sym__unquoted_pattern, STATE(5022), 1, sym_comment, - [136564] = 4, + [136576] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8721), 1, - sym_identifier, - ACTIONS(8723), 1, - anon_sym_DOLLAR, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2090), 1, + anon_sym_LBRACE, STATE(5023), 1, sym_comment, - [136577] = 4, - ACTIONS(103), 1, + [136589] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, - sym__entry_separator, - STATE(2043), 1, - aux_sym__types_body_repeat2, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(2608), 1, + sym__unquoted_pattern, STATE(5024), 1, sym_comment, - [136590] = 4, - ACTIONS(103), 1, + [136602] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7976), 1, - anon_sym_RBRACE, - ACTIONS(7978), 1, - sym__entry_separator, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4750), 1, + sym_block, STATE(5025), 1, sym_comment, - [136603] = 4, + [136615] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(1832), 1, anon_sym_LBRACE, - STATE(4568), 1, - sym_block, + ACTIONS(1834), 1, + sym__unquoted_pattern, STATE(5026), 1, sym_comment, - [136616] = 4, - ACTIONS(3), 1, + [136628] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8429), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(4347), 1, + sym__entry_separator, + STATE(2132), 1, + aux_sym__types_body_repeat2, STATE(5027), 1, sym_comment, - [136629] = 4, + [136641] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8725), 1, + ACTIONS(8728), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(4979), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, STATE(5028), 1, sym_comment, - [136642] = 4, + STATE(5050), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136654] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8727), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4928), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(7975), 1, + anon_sym_RBRACE, + ACTIONS(7977), 1, + sym__entry_separator, STATE(5029), 1, sym_comment, - [136655] = 4, + [136667] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(5174), 1, anon_sym_LPAREN2, STATE(5030), 1, sym_comment, - STATE(5483), 1, + STATE(5470), 1, sym__expr_parenthesized_immediate, - [136668] = 4, - ACTIONS(103), 1, + [136680] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7995), 1, - anon_sym_RBRACE, - ACTIONS(7997), 1, - sym__entry_separator, + ACTIONS(1796), 1, + anon_sym_LPAREN2, STATE(5031), 1, sym_comment, - [136681] = 4, + STATE(5511), 1, + sym__expr_parenthesized_immediate, + [136693] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(3363), 1, + STATE(4654), 1, sym_block, STATE(5032), 1, sym_comment, - [136694] = 4, + [136706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1848), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8729), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4808), 1, + sym_block, STATE(5033), 1, sym_comment, - [136707] = 4, + [136719] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_COLON2, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(4814), 1, + sym__entry_separator, + STATE(2291), 1, + aux_sym__types_body_repeat2, STATE(5034), 1, sym_comment, - [136720] = 4, + [136732] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4849), 1, - sym_block, STATE(5035), 1, sym_comment, - [136733] = 4, - ACTIONS(103), 1, + ACTIONS(8730), 2, + anon_sym_RBRACK, + sym_hex_digit, + [136743] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3468), 1, - sym__space, - STATE(1405), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4744), 1, + sym_block, STATE(5036), 1, sym_comment, - [136746] = 4, - ACTIONS(3), 1, + [136756] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, - ACTIONS(1972), 1, - anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_RBRACE, + ACTIONS(8088), 1, + sym__entry_separator, STATE(5037), 1, sym_comment, - [136759] = 4, + [136769] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1226), 1, + ACTIONS(1730), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, + ACTIONS(1732), 1, sym__unquoted_pattern, STATE(5038), 1, sym_comment, - [136772] = 4, + [136782] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8732), 1, + anon_sym_LPAREN2, + ACTIONS(8734), 1, + aux_sym__record_key_token1, + STATE(5039), 1, + sym_comment, + [136795] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8731), 1, + ACTIONS(8736), 1, anon_sym_RBRACE, - ACTIONS(8733), 1, + ACTIONS(8738), 1, sym__entry_separator, - STATE(5039), 1, + STATE(5040), 1, sym_comment, - [136785] = 4, + [136808] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1730), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(1732), 1, - sym__unquoted_pattern, - STATE(5040), 1, + STATE(4852), 1, + sym_block, + STATE(5041), 1, sym_comment, - [136798] = 3, + [136821] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8735), 1, + ACTIONS(8740), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(5041), 2, - sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [136809] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - STATE(2279), 1, - aux_sym__types_body_repeat2, STATE(5042), 1, sym_comment, - [136822] = 4, + STATE(5084), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [136834] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8738), 1, - anon_sym_def, - ACTIONS(8740), 1, - anon_sym_extern, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4807), 1, + sym_block, STATE(5043), 1, sym_comment, - [136835] = 4, + [136847] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8043), 1, - anon_sym_RBRACE, - ACTIONS(8045), 1, - sym__entry_separator, + ACTIONS(8742), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5044), 1, sym_comment, - [136848] = 4, - ACTIONS(3), 1, + STATE(5085), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [136860] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(3283), 1, - sym_block, + ACTIONS(8744), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5000), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5045), 1, sym_comment, - [136861] = 4, - ACTIONS(3), 1, + [136873] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4766), 1, - sym_block, + ACTIONS(4357), 1, + sym__entry_separator, + STATE(2112), 1, + aux_sym__types_body_repeat2, STATE(5046), 1, sym_comment, - [136874] = 4, - ACTIONS(3), 1, + [136886] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(3625), 1, - sym_block, + ACTIONS(5348), 1, + anon_sym_RBRACK, + ACTIONS(5350), 1, + sym__entry_separator, STATE(5047), 1, sym_comment, - [136887] = 3, + [136899] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(3635), 1, + sym_block, STATE(5048), 1, sym_comment, - ACTIONS(8742), 2, - anon_sym_RBRACK, - sym_hex_digit, - [136898] = 4, + [136912] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8744), 1, - anon_sym_RBRACE, ACTIONS(8746), 1, - sym__entry_separator, + aux_sym__unquoted_with_expr_token1, + STATE(5000), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5049), 1, sym_comment, - [136911] = 4, + [136925] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8748), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4915), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5050), 1, sym_comment, - [136924] = 4, - ACTIONS(3), 1, + STATE(5096), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136938] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(3569), 1, - sym_block, + ACTIONS(7698), 1, + anon_sym_RBRACK, + ACTIONS(7706), 1, + sym__entry_separator, STATE(5051), 1, sym_comment, - [136937] = 4, - ACTIONS(3), 1, + [136951] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4604), 1, - sym_block, + ACTIONS(8750), 1, + aux_sym__unquoted_with_expr_token1, STATE(5052), 1, sym_comment, - [136950] = 4, - ACTIONS(103), 1, + STATE(5074), 1, + aux_sym__unquoted_with_expr_repeat1, + [136964] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - STATE(1498), 1, - aux_sym__types_body_repeat2, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(3595), 1, + sym_block, STATE(5053), 1, sym_comment, - [136963] = 4, + [136977] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7313), 1, - sym__entry_separator, - ACTIONS(8750), 1, - anon_sym_RBRACK, + ACTIONS(8752), 1, + aux_sym__unquoted_with_expr_token1, STATE(5054), 1, sym_comment, - [136976] = 4, - ACTIONS(103), 1, + STATE(5079), 1, + aux_sym__unquoted_with_expr_repeat1, + [136990] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7329), 1, - sym__entry_separator, - ACTIONS(8752), 1, - anon_sym_RBRACK, + ACTIONS(1834), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8754), 1, + aux_sym__immediate_decimal_token5, STATE(5055), 1, sym_comment, - [136989] = 4, - ACTIONS(103), 1, + [137003] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8754), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4708), 1, + sym_block, STATE(5056), 1, sym_comment, - STATE(5061), 1, - aux_sym__unquoted_with_expr_repeat1, - [137002] = 4, - ACTIONS(103), 1, + [137016] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8756), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2570), 1, + anon_sym_LBRACE, + ACTIONS(2572), 1, + sym__unquoted_pattern, STATE(5057), 1, sym_comment, - STATE(5062), 1, - aux_sym__unquoted_with_expr_repeat1, - [137015] = 4, - ACTIONS(103), 1, + [137029] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8758), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4911), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4734), 1, + sym_block, STATE(5058), 1, sym_comment, - [137028] = 4, + [137042] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8760), 1, - anon_sym_def, - ACTIONS(8762), 1, - anon_sym_extern, + ACTIONS(1714), 1, + anon_sym_LBRACE, + ACTIONS(2580), 1, + sym__unquoted_pattern, STATE(5059), 1, sym_comment, - [137041] = 4, + [137055] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(4605), 1, + STATE(4542), 1, sym_block, STATE(5060), 1, sym_comment, - [137054] = 4, - ACTIONS(103), 1, + [137068] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8764), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4928), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8756), 1, + anon_sym_def, + ACTIONS(8758), 1, + anon_sym_extern, STATE(5061), 1, sym_comment, - [137067] = 4, + [137081] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8766), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4928), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(5062), 1, + ACTIONS(8760), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5062), 2, sym_comment, - [137080] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [137092] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_LBRACE, - STATE(4763), 1, - sym_block, + ACTIONS(8763), 1, + anon_sym_def, + ACTIONS(8765), 1, + anon_sym_extern, STATE(5063), 1, sym_comment, - [137093] = 4, - ACTIONS(3), 1, + [137105] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1992), 1, - sym__unquoted_pattern, - ACTIONS(2652), 1, - anon_sym_LBRACE, + ACTIONS(5060), 1, + sym__entry_separator, + STATE(2469), 1, + aux_sym__types_body_repeat2, STATE(5064), 1, sym_comment, - [137106] = 4, - ACTIONS(103), 1, + [137118] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8768), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4942), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(3298), 1, + sym_block, STATE(5065), 1, sym_comment, - [137119] = 4, - ACTIONS(103), 1, + [137131] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8770), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4971), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4781), 1, + sym_block, STATE(5066), 1, sym_comment, - [137132] = 4, + [137144] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1216), 1, sym__entry_separator, - STATE(1481), 1, - aux_sym__types_body_repeat2, + ACTIONS(1218), 1, + anon_sym_RBRACE, STATE(5067), 1, sym_comment, - [137145] = 4, + [137157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1982), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(1992), 1, - sym__unquoted_pattern, + STATE(4811), 1, + sym_block, STATE(5068), 1, sym_comment, - [137158] = 4, - ACTIONS(3), 1, + [137170] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern, - ACTIONS(2572), 1, - anon_sym_LBRACE, + ACTIONS(1226), 1, + anon_sym_RBRACE, + ACTIONS(1234), 1, + sym__entry_separator, STATE(5069), 1, sym_comment, - [137171] = 4, - ACTIONS(3), 1, + [137183] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4606), 1, - sym_block, + ACTIONS(8767), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5045), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5070), 1, sym_comment, - [137184] = 4, + [137196] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_RBRACE, - ACTIONS(1226), 1, - sym__entry_separator, + ACTIONS(8769), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5049), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5071), 1, sym_comment, - [137197] = 4, - ACTIONS(103), 1, + [137209] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8772), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4948), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4817), 1, + sym_block, STATE(5072), 1, sym_comment, - [137210] = 4, + [137222] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8774), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4949), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8771), 1, + sym__newline, + ACTIONS(8773), 1, + sym__space, STATE(5073), 1, sym_comment, - [137223] = 4, + [137235] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5079), 1, - sym__entry_separator, - STATE(2428), 1, - aux_sym__types_body_repeat2, + ACTIONS(8775), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5000), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5074), 1, sym_comment, - [137236] = 4, + [137248] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_RBRACE, - ACTIONS(1234), 1, - sym__entry_separator, + ACTIONS(8777), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4959), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5075), 1, sym_comment, - [137249] = 4, - ACTIONS(3), 1, + [137261] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(4607), 1, - sym_block, + ACTIONS(8779), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4975), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5076), 1, sym_comment, - [137262] = 4, + [137274] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6657), 1, - anon_sym_DOLLAR2, - ACTIONS(8776), 1, - anon_sym_RBRACK, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4816), 1, + sym_block, STATE(5077), 1, sym_comment, - [137275] = 4, - ACTIONS(103), 1, + [137287] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8778), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4935), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4628), 1, + sym_block, STATE(5078), 1, sym_comment, - [137288] = 4, + [137300] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5442), 1, - sym__entry_separator, - ACTIONS(6459), 1, - anon_sym_RBRACK, + ACTIONS(8781), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5000), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5079), 1, sym_comment, - [137301] = 3, - ACTIONS(3), 1, + [137313] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8780), 1, - anon_sym_RBRACE, + ACTIONS(8783), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4932), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5080), 1, sym_comment, - [137311] = 3, + [137326] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8782), 1, - anon_sym_BQUOTE2, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4630), 1, + sym_block, STATE(5081), 1, sym_comment, - [137321] = 3, + [137339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8784), 1, + ACTIONS(8785), 1, sym_identifier, + ACTIONS(8787), 1, + anon_sym_DOLLAR, STATE(5082), 1, sym_comment, - [137331] = 3, + [137352] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8786), 1, - anon_sym_RBRACK, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4806), 1, + sym_block, STATE(5083), 1, sym_comment, - [137341] = 3, - ACTIONS(3), 1, + [137365] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8788), 1, - anon_sym_RPAREN, + ACTIONS(8789), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5062), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5084), 1, sym_comment, - [137351] = 3, + [137378] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8661), 1, - aux_sym__record_key_token1, + ACTIONS(8791), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5062), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5085), 1, sym_comment, - [137361] = 3, + [137391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8790), 1, - anon_sym_RBRACE, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4397), 1, + sym_block, STATE(5086), 1, sym_comment, - [137371] = 3, - ACTIONS(3), 1, + [137404] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8792), 1, - anon_sym_RBRACK, + ACTIONS(2574), 1, + sym__entry_separator, + ACTIONS(2576), 1, + anon_sym_RBRACE, STATE(5087), 1, sym_comment, - [137381] = 3, - ACTIONS(103), 1, + [137417] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8794), 1, - aux_sym__unquoted_in_list_with_expr_token1, STATE(5088), 1, sym_comment, - [137391] = 3, - ACTIONS(3), 1, + ACTIONS(1547), 2, + sym__table_head_separator, + anon_sym_DOT2, + [137428] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8796), 1, - sym_raw_string_end, + ACTIONS(8793), 1, + anon_sym_RBRACK, + ACTIONS(8795), 1, + sym__entry_separator, STATE(5089), 1, sym_comment, - [137401] = 3, - ACTIONS(3), 1, + [137441] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8798), 1, + ACTIONS(6173), 1, anon_sym_RBRACK, + ACTIONS(6175), 1, + sym__entry_separator, STATE(5090), 1, sym_comment, - [137411] = 3, + [137454] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1917), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(4347), 1, + sym__entry_separator, + STATE(4792), 1, + aux_sym__types_body_repeat2, STATE(5091), 1, sym_comment, - [137421] = 3, - ACTIONS(3), 1, + [137467] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8800), 1, - anon_sym_RPAREN, + ACTIONS(1953), 1, + sym__entry_separator, + ACTIONS(1955), 1, + anon_sym_RBRACE, STATE(5092), 1, sym_comment, - [137431] = 3, + [137480] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8802), 1, - anon_sym_RBRACK, + ACTIONS(3872), 1, + anon_sym_LBRACE, + STATE(4398), 1, + sym_block, STATE(5093), 1, sym_comment, - [137441] = 3, - ACTIONS(3), 1, + [137493] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8804), 1, - anon_sym_RPAREN, + ACTIONS(1596), 1, + sym__entry_separator, + STATE(1500), 1, + aux_sym__types_body_repeat2, STATE(5094), 1, sym_comment, - [137451] = 3, - ACTIONS(3), 1, + [137506] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8806), 1, + ACTIONS(2090), 1, + sym__entry_separator, + ACTIONS(2092), 1, anon_sym_RBRACE, STATE(5095), 1, sym_comment, - [137461] = 3, - ACTIONS(3), 1, + [137519] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8808), 1, - anon_sym_in, - STATE(5096), 1, + ACTIONS(8797), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5096), 2, sym_comment, - [137471] = 3, + aux_sym__unquoted_in_list_with_expr_repeat1, + [137530] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8810), 1, - anon_sym_DQUOTE, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(4785), 1, + sym_block, STATE(5097), 1, sym_comment, - [137481] = 3, + [137543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8812), 1, - anon_sym_SQUOTE2, + ACTIONS(8800), 1, + anon_sym_LT, STATE(5098), 1, sym_comment, - [137491] = 3, + [137553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8814), 1, - anon_sym_BQUOTE2, + ACTIONS(8802), 1, + anon_sym_RBRACK, STATE(5099), 1, sym_comment, - [137501] = 3, + [137563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8816), 1, + ACTIONS(8804), 1, anon_sym_RPAREN, STATE(5100), 1, sym_comment, - [137511] = 3, + [137573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8818), 1, - anon_sym_GT2, + ACTIONS(1653), 1, + sym__unquoted_pattern, STATE(5101), 1, sym_comment, - [137521] = 3, - ACTIONS(3), 1, + [137583] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8806), 1, + aux_sym_cmd_identifier_token6, STATE(5102), 1, sym_comment, - [137531] = 3, + [137593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8820), 1, - sym_identifier, + ACTIONS(6555), 1, + anon_sym_EQ, STATE(5103), 1, sym_comment, - [137541] = 3, - ACTIONS(3), 1, + [137603] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8822), 1, - sym_raw_string_end, + ACTIONS(2642), 1, + aux_sym_cmd_identifier_token2, STATE(5104), 1, sym_comment, - [137551] = 3, + [137613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2960), 1, - anon_sym_LBRACK2, + ACTIONS(8808), 1, + sym_raw_string_end, STATE(5105), 1, sym_comment, - [137561] = 3, + [137623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(313), 1, - anon_sym_RBRACE, + ACTIONS(7351), 1, + sym__unquoted_pattern, STATE(5106), 1, sym_comment, - [137571] = 3, + [137633] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(307), 1, - anon_sym_RBRACE, + ACTIONS(1653), 1, + sym__unquoted_pattern_in_record, STATE(5107), 1, sym_comment, - [137581] = 3, + [137643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8824), 1, - anon_sym_RBRACK, + ACTIONS(8810), 1, + anon_sym_EQ_GT, STATE(5108), 1, sym_comment, - [137591] = 3, + [137653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8826), 1, - anon_sym_RPAREN, + ACTIONS(8812), 1, + anon_sym_RBRACK, STATE(5109), 1, sym_comment, - [137601] = 3, + [137663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8828), 1, - anon_sym_RBRACE, + ACTIONS(5295), 1, + anon_sym_EQ2, STATE(5110), 1, sym_comment, - [137611] = 3, - ACTIONS(103), 1, + [137673] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8830), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8814), 1, + anon_sym_RBRACE, STATE(5111), 1, sym_comment, - [137621] = 3, + [137683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8832), 1, - anon_sym_DQUOTE, + ACTIONS(1963), 1, + sym__unquoted_pattern, STATE(5112), 1, sym_comment, - [137631] = 3, + [137693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8834), 1, - anon_sym_SQUOTE2, + ACTIONS(8816), 1, + anon_sym_DQUOTE, STATE(5113), 1, sym_comment, - [137641] = 3, + [137703] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8836), 1, - anon_sym_BQUOTE2, + ACTIONS(8818), 1, + anon_sym_SQUOTE2, STATE(5114), 1, sym_comment, - [137651] = 3, + [137713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8838), 1, - anon_sym_RPAREN, + ACTIONS(8820), 1, + anon_sym_BQUOTE2, STATE(5115), 1, sym_comment, - [137661] = 3, + [137723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8840), 1, - anon_sym_RBRACE, + ACTIONS(8822), 1, + anon_sym_RPAREN, STATE(5116), 1, sym_comment, - [137671] = 3, + [137733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(289), 1, - anon_sym_RBRACE, + ACTIONS(5281), 1, + anon_sym_EQ2, STATE(5117), 1, sym_comment, - [137681] = 3, + [137743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8842), 1, + ACTIONS(8824), 1, anon_sym_RBRACE, STATE(5118), 1, sym_comment, - [137691] = 3, + [137753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8844), 1, - sym_raw_string_end, + ACTIONS(8826), 1, + anon_sym_RBRACK, STATE(5119), 1, sym_comment, - [137701] = 3, + [137763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8846), 1, - anon_sym_RBRACE, + ACTIONS(8828), 1, + sym_raw_string_end, STATE(5120), 1, sym_comment, - [137711] = 3, + [137773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8848), 1, - sym__table_head_separator, + ACTIONS(8830), 1, + sym_identifier, STATE(5121), 1, sym_comment, - [137721] = 3, + [137783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8850), 1, - anon_sym_RBRACK, + ACTIONS(8331), 1, + anon_sym_LBRACE, STATE(5122), 1, sym_comment, - [137731] = 3, + [137793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8852), 1, - anon_sym_RBRACK, + ACTIONS(8832), 1, + anon_sym_RPAREN, STATE(5123), 1, sym_comment, - [137741] = 3, + [137803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8854), 1, - anon_sym_LBRACE, + ACTIONS(8834), 1, + anon_sym_RBRACK, STATE(5124), 1, sym_comment, - [137751] = 3, + [137813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8856), 1, - anon_sym_DQUOTE, + ACTIONS(8836), 1, + anon_sym_RBRACE, STATE(5125), 1, sym_comment, - [137761] = 3, + [137823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8858), 1, - anon_sym_SQUOTE2, + ACTIONS(299), 1, + anon_sym_RBRACE, STATE(5126), 1, sym_comment, - [137771] = 3, + [137833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8860), 1, - anon_sym_BQUOTE2, + ACTIONS(8838), 1, + anon_sym_DQUOTE, STATE(5127), 1, sym_comment, - [137781] = 3, + [137843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern, + ACTIONS(8840), 1, + anon_sym_SQUOTE2, STATE(5128), 1, sym_comment, - [137791] = 3, + [137853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8862), 1, - anon_sym_DQUOTE, + ACTIONS(8842), 1, + anon_sym_BQUOTE2, STATE(5129), 1, sym_comment, - [137801] = 3, + [137863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8864), 1, - sym_raw_string_end, + ACTIONS(8844), 1, + anon_sym_RPAREN, STATE(5130), 1, sym_comment, - [137811] = 3, + [137873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8866), 1, - anon_sym_SQUOTE2, + ACTIONS(8846), 1, + sym_long_flag_identifier, STATE(5131), 1, sym_comment, - [137821] = 3, + [137883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8868), 1, - anon_sym_BQUOTE2, + ACTIONS(311), 1, + anon_sym_RBRACE, STATE(5132), 1, sym_comment, - [137831] = 3, - ACTIONS(3), 1, + [137893] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8870), 1, - anon_sym_DQUOTE, + ACTIONS(8848), 1, + aux_sym_cmd_identifier_token6, STATE(5133), 1, sym_comment, - [137841] = 3, + [137903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8872), 1, - anon_sym_RBRACK, + ACTIONS(8850), 1, + sym_raw_string_end, STATE(5134), 1, sym_comment, - [137851] = 3, + [137913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8874), 1, - anon_sym_SQUOTE2, + ACTIONS(8852), 1, + anon_sym_EQ, STATE(5135), 1, sym_comment, - [137861] = 3, + [137923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8876), 1, - anon_sym_DQUOTE, + ACTIONS(8854), 1, + anon_sym_RBRACE, STATE(5136), 1, sym_comment, - [137871] = 3, + [137933] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8878), 1, - anon_sym_SQUOTE2, + ACTIONS(8856), 1, + anon_sym_RBRACE, STATE(5137), 1, sym_comment, - [137881] = 3, + [137943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8880), 1, - anon_sym_BQUOTE2, + ACTIONS(8858), 1, + anon_sym_RBRACK, STATE(5138), 1, sym_comment, - [137891] = 3, - ACTIONS(103), 1, + [137953] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8882), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(1921), 1, + sym__unquoted_pattern_in_record, STATE(5139), 1, sym_comment, - [137901] = 3, + [137963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8884), 1, - anon_sym_RBRACE, + ACTIONS(8860), 1, + anon_sym_DQUOTE, STATE(5140), 1, sym_comment, - [137911] = 3, + [137973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8886), 1, - sym_raw_string_end, + ACTIONS(8862), 1, + anon_sym_SQUOTE2, STATE(5141), 1, sym_comment, - [137921] = 3, + [137983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8888), 1, - anon_sym_RBRACK, + ACTIONS(8864), 1, + anon_sym_BQUOTE2, STATE(5142), 1, sym_comment, - [137931] = 3, + [137993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_BQUOTE2, + ACTIONS(8866), 1, + sym_param_short_flag_identifier, STATE(5143), 1, sym_comment, - [137941] = 3, - ACTIONS(103), 1, + [138003] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1905), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(2596), 1, + sym__unquoted_pattern, STATE(5144), 1, sym_comment, - [137951] = 3, + [138013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8892), 1, - anon_sym_DQUOTE, + ACTIONS(8868), 1, + sym_raw_string_end, STATE(5145), 1, sym_comment, - [137961] = 3, + [138023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8894), 1, - anon_sym_SQUOTE2, + ACTIONS(8870), 1, + anon_sym_RBRACK, STATE(5146), 1, sym_comment, - [137971] = 3, + [138033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8896), 1, - anon_sym_BQUOTE2, + ACTIONS(8872), 1, + anon_sym_DQUOTE, STATE(5147), 1, sym_comment, - [137981] = 3, + [138043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8898), 1, - anon_sym_GT2, + ACTIONS(8874), 1, + anon_sym_SQUOTE2, STATE(5148), 1, sym_comment, - [137991] = 3, + [138053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(309), 1, - anon_sym_RBRACE, + ACTIONS(8876), 1, + anon_sym_RBRACK, STATE(5149), 1, sym_comment, - [138001] = 3, + [138063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - sym_raw_string_end, + ACTIONS(359), 1, + anon_sym_RPAREN2, STATE(5150), 1, sym_comment, - [138011] = 3, - ACTIONS(103), 1, + [138073] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8902), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8878), 1, + anon_sym_DQUOTE, STATE(5151), 1, sym_comment, - [138021] = 3, + [138083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8904), 1, - anon_sym_DQUOTE, + ACTIONS(8880), 1, + anon_sym_SQUOTE2, STATE(5152), 1, sym_comment, - [138031] = 3, + [138093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8906), 1, - anon_sym_SQUOTE2, + ACTIONS(8882), 1, + anon_sym_BQUOTE2, STATE(5153), 1, sym_comment, - [138041] = 3, + [138103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8908), 1, + ACTIONS(8884), 1, anon_sym_BQUOTE2, STATE(5154), 1, sym_comment, - [138051] = 3, + [138113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8910), 1, - anon_sym_LBRACE, + ACTIONS(8886), 1, + sym_raw_string_end, STATE(5155), 1, sym_comment, - [138061] = 3, + [138123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2756), 1, - anon_sym_COLON2, + ACTIONS(8888), 1, + sym_raw_string_end, STATE(5156), 1, sym_comment, - [138071] = 3, + [138133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8912), 1, - sym_raw_string_end, + ACTIONS(8890), 1, + anon_sym_SQUOTE2, STATE(5157), 1, sym_comment, - [138081] = 3, + [138143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8914), 1, + ACTIONS(8892), 1, anon_sym_EQ, STATE(5158), 1, sym_comment, - [138091] = 3, - ACTIONS(3), 1, + [138153] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8916), 1, - anon_sym_DQUOTE, + ACTIONS(8894), 1, + aux_sym_cmd_identifier_token6, STATE(5159), 1, sym_comment, - [138101] = 3, - ACTIONS(3), 1, + [138163] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8918), 1, - anon_sym_SQUOTE2, + ACTIONS(8896), 1, + aux_sym_cmd_identifier_token2, STATE(5160), 1, sym_comment, - [138111] = 3, + [138173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8920), 1, - anon_sym_BQUOTE2, + ACTIONS(8898), 1, + anon_sym_DQUOTE, STATE(5161), 1, sym_comment, - [138121] = 3, + [138183] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8910), 1, - anon_sym_LBRACE, + ACTIONS(8900), 1, + anon_sym_SQUOTE2, STATE(5162), 1, sym_comment, - [138131] = 3, + [138193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8222), 1, - anon_sym_LBRACE, + ACTIONS(8902), 1, + anon_sym_BQUOTE2, STATE(5163), 1, sym_comment, - [138141] = 3, + [138203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8922), 1, - sym_raw_string_end, + ACTIONS(8904), 1, + anon_sym_LBRACE, STATE(5164), 1, sym_comment, - [138151] = 3, - ACTIONS(3), 1, + [138213] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8924), 1, - anon_sym_DASH_GT, + ACTIONS(8906), 1, + aux_sym__str_back_ticks_token1, STATE(5165), 1, sym_comment, - [138161] = 3, + [138223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8926), 1, - anon_sym_DQUOTE, + ACTIONS(8908), 1, + sym_raw_string_end, STATE(5166), 1, sym_comment, - [138171] = 3, - ACTIONS(3), 1, + [138233] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8928), 1, - anon_sym_SQUOTE2, + ACTIONS(8734), 1, + aux_sym__record_key_token1, STATE(5167), 1, sym_comment, - [138181] = 3, + [138243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8930), 1, - anon_sym_BQUOTE2, + ACTIONS(8910), 1, + anon_sym_DQUOTE, STATE(5168), 1, sym_comment, - [138191] = 3, + [138253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8932), 1, - anon_sym_RBRACK, + ACTIONS(8912), 1, + anon_sym_SQUOTE2, STATE(5169), 1, sym_comment, - [138201] = 3, + [138263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2614), 1, - sym__unquoted_pattern, + ACTIONS(8914), 1, + anon_sym_BQUOTE2, STATE(5170), 1, sym_comment, - [138211] = 3, + [138273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8934), 1, - sym_raw_string_end, + ACTIONS(8916), 1, + anon_sym_RBRACE, STATE(5171), 1, sym_comment, - [138221] = 3, + [138283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8936), 1, + ACTIONS(8918), 1, anon_sym_RBRACK, STATE(5172), 1, sym_comment, - [138231] = 3, + [138293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8938), 1, - anon_sym_DQUOTE, + ACTIONS(8920), 1, + sym_raw_string_end, STATE(5173), 1, sym_comment, - [138241] = 3, + [138303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8940), 1, - anon_sym_SQUOTE2, + ACTIONS(8922), 1, + anon_sym_RBRACE, STATE(5174), 1, sym_comment, - [138251] = 3, + [138313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_BQUOTE2, + ACTIONS(8924), 1, + anon_sym_DQUOTE, STATE(5175), 1, sym_comment, - [138261] = 3, + [138323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8944), 1, - anon_sym_LPAREN2, + ACTIONS(8926), 1, + anon_sym_SQUOTE2, STATE(5176), 1, sym_comment, - [138271] = 3, + [138333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8946), 1, - anon_sym_GT2, + ACTIONS(8928), 1, + anon_sym_BQUOTE2, STATE(5177), 1, sym_comment, - [138281] = 3, + [138343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8948), 1, - sym_raw_string_end, + ACTIONS(8930), 1, + anon_sym_RBRACK, STATE(5178), 1, sym_comment, - [138291] = 3, + [138353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_EQ, + ACTIONS(8932), 1, + anon_sym_RBRACE, STATE(5179), 1, sym_comment, - [138301] = 3, + [138363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8950), 1, - anon_sym_DQUOTE, + ACTIONS(8934), 1, + sym_raw_string_end, STATE(5180), 1, sym_comment, - [138311] = 3, + [138373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8952), 1, - anon_sym_SQUOTE2, + ACTIONS(8936), 1, + anon_sym_RPAREN, STATE(5181), 1, sym_comment, - [138321] = 3, + [138383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8954), 1, - anon_sym_BQUOTE2, + ACTIONS(8938), 1, + anon_sym_DQUOTE, STATE(5182), 1, sym_comment, - [138331] = 3, + [138393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_RBRACE, + ACTIONS(8940), 1, + anon_sym_SQUOTE2, STATE(5183), 1, sym_comment, - [138341] = 3, + [138403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8958), 1, - sym_raw_string_end, + ACTIONS(8942), 1, + anon_sym_BQUOTE2, STATE(5184), 1, sym_comment, - [138351] = 3, - ACTIONS(3), 1, + [138413] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_RPAREN, + ACTIONS(8944), 1, + aux_sym__str_single_quotes_token1, STATE(5185), 1, sym_comment, - [138361] = 3, - ACTIONS(3), 1, + [138423] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8962), 1, - anon_sym_DQUOTE, + ACTIONS(8946), 1, + aux_sym_cmd_identifier_token6, STATE(5186), 1, sym_comment, - [138371] = 3, + [138433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8964), 1, - anon_sym_SQUOTE2, + ACTIONS(8948), 1, + sym_raw_string_end, STATE(5187), 1, sym_comment, - [138381] = 3, + [138443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8966), 1, - anon_sym_BQUOTE2, + ACTIONS(4161), 1, + sym__unquoted_pattern, STATE(5188), 1, sym_comment, - [138391] = 3, + [138453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8968), 1, - anon_sym_EQ, + ACTIONS(8950), 1, + anon_sym_DQUOTE, STATE(5189), 1, sym_comment, - [138401] = 3, + [138463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8970), 1, - sym_raw_string_end, + ACTIONS(8952), 1, + anon_sym_SQUOTE2, STATE(5190), 1, sym_comment, - [138411] = 3, + [138473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8972), 1, - anon_sym_RBRACK, + ACTIONS(8954), 1, + anon_sym_BQUOTE2, STATE(5191), 1, sym_comment, - [138421] = 3, + [138483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8974), 1, - anon_sym_DQUOTE, + ACTIONS(8956), 1, + anon_sym_RBRACE, STATE(5192), 1, sym_comment, - [138431] = 3, + [138493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8976), 1, - anon_sym_SQUOTE2, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, STATE(5193), 1, sym_comment, - [138441] = 3, + [138503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8978), 1, - anon_sym_BQUOTE2, + ACTIONS(8958), 1, + sym_raw_string_end, STATE(5194), 1, sym_comment, - [138451] = 3, + [138513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8980), 1, - anon_sym_RPAREN, + ACTIONS(2608), 1, + sym__unquoted_pattern, STATE(5195), 1, sym_comment, - [138461] = 3, + [138523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8982), 1, - sym_raw_string_content, + ACTIONS(8960), 1, + anon_sym_DQUOTE, STATE(5196), 1, sym_comment, - [138471] = 3, + [138533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8984), 1, - anon_sym_RBRACE, + ACTIONS(8962), 1, + anon_sym_SQUOTE2, STATE(5197), 1, sym_comment, - [138481] = 3, + [138543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8986), 1, - anon_sym_RBRACK, + ACTIONS(8964), 1, + anon_sym_BQUOTE2, STATE(5198), 1, sym_comment, - [138491] = 3, + [138553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8988), 1, - anon_sym_RPAREN, + ACTIONS(8966), 1, + anon_sym_GT2, STATE(5199), 1, sym_comment, - [138501] = 3, + [138563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2168), 1, - anon_sym_LBRACK2, + ACTIONS(8968), 1, + sym_raw_string_end, STATE(5200), 1, sym_comment, - [138511] = 3, - ACTIONS(103), 1, + [138573] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8990), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(5241), 1, + anon_sym_EQ2, STATE(5201), 1, sym_comment, - [138521] = 3, - ACTIONS(103), 1, + [138583] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8992), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8970), 1, + anon_sym_DQUOTE, STATE(5202), 1, sym_comment, - [138531] = 3, + [138593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8994), 1, - anon_sym_LBRACE, + ACTIONS(8972), 1, + anon_sym_SQUOTE2, STATE(5203), 1, sym_comment, - [138541] = 3, - ACTIONS(103), 1, + [138603] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1905), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8974), 1, + anon_sym_BQUOTE2, STATE(5204), 1, sym_comment, - [138551] = 3, + [138613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8854), 1, - anon_sym_LBRACE, + ACTIONS(8976), 1, + anon_sym_RBRACK, STATE(5205), 1, sym_comment, - [138561] = 3, + [138623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8996), 1, - anon_sym_RPAREN, + ACTIONS(8978), 1, + sym_raw_string_end, STATE(5206), 1, sym_comment, - [138571] = 3, - ACTIONS(3), 1, + [138633] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8998), 1, - anon_sym_RBRACE, + ACTIONS(8980), 1, + aux_sym_cmd_identifier_token2, STATE(5207), 1, sym_comment, - [138581] = 3, - ACTIONS(103), 1, + [138643] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9000), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8982), 1, + anon_sym_DQUOTE, STATE(5208), 1, sym_comment, - [138591] = 3, + [138653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9002), 1, - anon_sym_LBRACE, + ACTIONS(8984), 1, + anon_sym_SQUOTE2, STATE(5209), 1, sym_comment, - [138601] = 3, + [138663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8340), 1, - anon_sym_LBRACE, + ACTIONS(8986), 1, + anon_sym_BQUOTE2, STATE(5210), 1, sym_comment, - [138611] = 3, - ACTIONS(3), 1, + [138673] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9004), 1, - anon_sym_LBRACE, + ACTIONS(8988), 1, + aux_sym_cmd_identifier_token2, STATE(5211), 1, sym_comment, - [138621] = 3, + [138683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9006), 1, - anon_sym_RBRACK, + ACTIONS(8990), 1, + sym_raw_string_content, STATE(5212), 1, sym_comment, - [138631] = 3, + [138693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_RBRACK, + ACTIONS(8992), 1, + anon_sym_RBRACE, STATE(5213), 1, sym_comment, - [138641] = 3, + [138703] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9010), 1, - anon_sym_RBRACE, + ACTIONS(8994), 1, + anon_sym_RBRACK, STATE(5214), 1, sym_comment, - [138651] = 3, + [138713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9012), 1, - anon_sym_RBRACE, + ACTIONS(8996), 1, + anon_sym_RPAREN, STATE(5215), 1, sym_comment, - [138661] = 3, + [138723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9014), 1, - anon_sym_COLON2, + ACTIONS(2344), 1, + anon_sym_LBRACK2, STATE(5216), 1, sym_comment, - [138671] = 3, - ACTIONS(3), 1, + [138733] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9016), 1, - anon_sym_RPAREN, + ACTIONS(8998), 1, + aux_sym__str_single_quotes_token1, STATE(5217), 1, sym_comment, - [138681] = 3, + [138743] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9018), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9000), 1, + aux_sym__str_back_ticks_token1, STATE(5218), 1, sym_comment, - [138691] = 3, + [138753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__unquoted_pattern, + ACTIONS(9002), 1, + anon_sym_RBRACK, STATE(5219), 1, sym_comment, - [138701] = 3, + [138763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9020), 1, - anon_sym_RBRACE, + ACTIONS(9004), 1, + anon_sym_EQ, STATE(5220), 1, sym_comment, - [138711] = 3, + [138773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9022), 1, - anon_sym_RBRACK, + ACTIONS(9006), 1, + anon_sym_RPAREN, STATE(5221), 1, sym_comment, - [138721] = 3, - ACTIONS(103), 1, + [138783] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9024), 1, - sym__space, + ACTIONS(9008), 1, + anon_sym_RPAREN, STATE(5222), 1, sym_comment, - [138731] = 3, - ACTIONS(103), 1, + [138793] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9026), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9010), 1, + anon_sym_RPAREN, STATE(5223), 1, sym_comment, - [138741] = 3, + [138803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9028), 1, - anon_sym_RBRACE, + ACTIONS(9012), 1, + anon_sym_RPAREN, STATE(5224), 1, sym_comment, - [138751] = 3, + [138813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9030), 1, + ACTIONS(9014), 1, anon_sym_RBRACK, STATE(5225), 1, sym_comment, - [138761] = 3, - ACTIONS(103), 1, + [138823] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9032), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8313), 1, + anon_sym_LBRACE, STATE(5226), 1, sym_comment, - [138771] = 3, + [138833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8260), 1, - anon_sym_EQ_GT, + ACTIONS(9016), 1, + anon_sym_LBRACE, STATE(5227), 1, sym_comment, - [138781] = 3, + [138843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9034), 1, - anon_sym_RPAREN, + ACTIONS(9018), 1, + sym_raw_string_end, STATE(5228), 1, sym_comment, - [138791] = 3, + [138853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9036), 1, - anon_sym_RBRACE, + ACTIONS(9020), 1, + anon_sym_RBRACK, STATE(5229), 1, sym_comment, - [138801] = 3, + [138863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9038), 1, - anon_sym_RBRACK, + ACTIONS(9022), 1, + sym_raw_string_end, STATE(5230), 1, sym_comment, - [138811] = 3, - ACTIONS(3), 1, + [138873] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9040), 1, - anon_sym_RBRACK, + ACTIONS(1907), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5231), 1, sym_comment, - [138821] = 3, + [138883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9042), 1, - anon_sym_EQ, + ACTIONS(9024), 1, + anon_sym_RBRACE, STATE(5232), 1, sym_comment, - [138831] = 3, + [138893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9044), 1, - anon_sym_RBRACE, + ACTIONS(9026), 1, + anon_sym_RPAREN, STATE(5233), 1, sym_comment, - [138841] = 3, + [138903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9046), 1, - anon_sym_RBRACE, + ACTIONS(9028), 1, + sym_identifier, STATE(5234), 1, sym_comment, - [138851] = 3, + [138913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9048), 1, - anon_sym_RBRACE, + ACTIONS(9030), 1, + anon_sym_EQ_GT, STATE(5235), 1, sym_comment, - [138861] = 3, + [138923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9050), 1, - anon_sym_PIPE, + ACTIONS(9032), 1, + anon_sym_RBRACE, STATE(5236), 1, sym_comment, - [138871] = 3, - ACTIONS(3), 1, + [138933] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9052), 1, - anon_sym_RPAREN, + ACTIONS(9034), 1, + aux_sym_shebang_token1, STATE(5237), 1, sym_comment, - [138881] = 3, - ACTIONS(3), 1, + [138943] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7007), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9036), 1, + sym__space, STATE(5238), 1, sym_comment, - [138891] = 3, + [138953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9054), 1, - anon_sym_RPAREN, + ACTIONS(5132), 1, + sym__unquoted_pattern, STATE(5239), 1, sym_comment, - [138901] = 3, + [138963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9056), 1, - sym_raw_string_end, + ACTIONS(9038), 1, + anon_sym_RBRACE, STATE(5240), 1, sym_comment, - [138911] = 3, + [138973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9058), 1, - anon_sym_DASH_GT, + ACTIONS(9040), 1, + sym_raw_string_end, STATE(5241), 1, sym_comment, - [138921] = 3, + [138983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9060), 1, - anon_sym_RBRACK, + ACTIONS(313), 1, + anon_sym_RBRACE, STATE(5242), 1, sym_comment, - [138931] = 3, + [138993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9062), 1, - anon_sym_EQ, + ACTIONS(9042), 1, + anon_sym_RBRACE, STATE(5243), 1, sym_comment, - [138941] = 3, + [139003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9064), 1, - anon_sym_EQ_GT, + ACTIONS(9044), 1, + anon_sym_EQ, STATE(5244), 1, sym_comment, - [138951] = 3, + [139013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6827), 1, - anon_sym_EQ, + ACTIONS(9046), 1, + anon_sym_GT2, STATE(5245), 1, sym_comment, - [138961] = 3, + [139023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1887), 1, - sym__table_head_separator, + ACTIONS(2738), 1, + anon_sym_COLON2, STATE(5246), 1, sym_comment, - [138971] = 3, + [139033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9066), 1, - anon_sym_GT2, + ACTIONS(9048), 1, + anon_sym_RBRACK, STATE(5247), 1, sym_comment, - [138981] = 3, + [139043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(377), 1, - ts_builtin_sym_end, + ACTIONS(9050), 1, + anon_sym_EQ, STATE(5248), 1, sym_comment, - [138991] = 3, - ACTIONS(103), 1, + [139053] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9068), 1, - aux_sym_shebang_token1, + ACTIONS(9052), 1, + anon_sym_RPAREN, STATE(5249), 1, sym_comment, - [139001] = 3, + [139063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5061), 1, - sym__unquoted_pattern, + ACTIONS(9054), 1, + anon_sym_RBRACE, STATE(5250), 1, sym_comment, - [139011] = 3, - ACTIONS(103), 1, + [139073] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9070), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9056), 1, + anon_sym_RBRACK, STATE(5251), 1, sym_comment, - [139021] = 3, + [139083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9072), 1, + ACTIONS(9058), 1, anon_sym_RBRACE, STATE(5252), 1, sym_comment, - [139031] = 3, + [139093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9074), 1, - anon_sym_RBRACE, + ACTIONS(2660), 1, + sym__table_head_separator, STATE(5253), 1, sym_comment, - [139041] = 3, + [139103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9076), 1, - anon_sym_RPAREN, + ACTIONS(7922), 1, + sym__unquoted_pattern, STATE(5254), 1, sym_comment, - [139051] = 3, + [139113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6509), 1, - anon_sym_EQ, + ACTIONS(9060), 1, + anon_sym_RBRACK, STATE(5255), 1, sym_comment, - [139061] = 3, + [139123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9078), 1, + ACTIONS(9062), 1, anon_sym_RBRACE, STATE(5256), 1, sym_comment, - [139071] = 3, + [139133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5432), 1, - anon_sym_EQ2, + ACTIONS(9064), 1, + anon_sym_DASH_GT, STATE(5257), 1, sym_comment, - [139081] = 3, + [139143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9080), 1, + ACTIONS(9066), 1, anon_sym_RPAREN, STATE(5258), 1, sym_comment, - [139091] = 3, + [139153] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9082), 1, - anon_sym_RBRACK, + ACTIONS(9068), 1, + anon_sym_EQ, STATE(5259), 1, sym_comment, - [139101] = 3, + [139163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9084), 1, - sym_identifier, + ACTIONS(9070), 1, + anon_sym_RBRACK, STATE(5260), 1, sym_comment, - [139111] = 3, + [139173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9086), 1, - anon_sym_RBRACK, + ACTIONS(6788), 1, + anon_sym_EQ, STATE(5261), 1, sym_comment, - [139121] = 3, + [139183] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1992), 1, + ACTIONS(7807), 1, sym__unquoted_pattern, STATE(5262), 1, sym_comment, - [139131] = 3, + [139193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, + ACTIONS(309), 1, + anon_sym_RBRACE, STATE(5263), 1, sym_comment, - [139141] = 3, + [139203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - sym__unquoted_pattern, + ACTIONS(9072), 1, + anon_sym_RBRACE, STATE(5264), 1, sym_comment, - [139151] = 3, + [139213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9088), 1, - anon_sym_RPAREN, + ACTIONS(9074), 1, + sym_identifier, STATE(5265), 1, sym_comment, - [139161] = 3, - ACTIONS(103), 1, + [139223] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1917), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9076), 1, + anon_sym_RBRACE, STATE(5266), 1, sym_comment, - [139171] = 3, + [139233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9090), 1, - sym_raw_string_content, + ACTIONS(9078), 1, + anon_sym_RBRACK, STATE(5267), 1, sym_comment, - [139181] = 3, - ACTIONS(103), 1, + [139243] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9092), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9080), 1, + ts_builtin_sym_end, STATE(5268), 1, sym_comment, - [139191] = 3, + [139253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9094), 1, - anon_sym_LT, + ACTIONS(9082), 1, + anon_sym_RBRACE, STATE(5269), 1, sym_comment, - [139201] = 3, - ACTIONS(3), 1, + [139263] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(357), 1, - anon_sym_RPAREN2, + ACTIONS(9084), 1, + aux_sym_cmd_identifier_token6, STATE(5270), 1, sym_comment, - [139211] = 3, + [139273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9096), 1, - anon_sym_RBRACE, + ACTIONS(9086), 1, + anon_sym_RPAREN, STATE(5271), 1, sym_comment, - [139221] = 3, - ACTIONS(3), 1, + [139283] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_RBRACE, + ACTIONS(1907), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5272), 1, sym_comment, - [139231] = 3, + [139293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9098), 1, + ACTIONS(9088), 1, anon_sym_RBRACK, STATE(5273), 1, sym_comment, - [139241] = 3, + [139303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9100), 1, - anon_sym_GT2, + ACTIONS(6604), 1, + sym__unquoted_pattern_in_list, STATE(5274), 1, sym_comment, - [139251] = 3, - ACTIONS(103), 1, + [139313] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9102), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9090), 1, + anon_sym_DQUOTE, STATE(5275), 1, sym_comment, - [139261] = 3, + [139323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9104), 1, - anon_sym_RBRACE, + ACTIONS(9092), 1, + anon_sym_SQUOTE2, STATE(5276), 1, sym_comment, - [139271] = 3, - ACTIONS(103), 1, + [139333] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9106), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(7011), 1, + sym__unquoted_pattern_in_record, STATE(5277), 1, sym_comment, - [139281] = 3, + [139343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9108), 1, - anon_sym_RBRACK, + ACTIONS(305), 1, + anon_sym_RBRACE, STATE(5278), 1, sym_comment, - [139291] = 3, + [139353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9110), 1, - anon_sym_RBRACE, + ACTIONS(9094), 1, + anon_sym_BQUOTE2, STATE(5279), 1, sym_comment, - [139301] = 3, - ACTIONS(3), 1, + [139363] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9112), 1, - anon_sym_GT2, + ACTIONS(1899), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5280), 1, sym_comment, - [139311] = 3, + [139373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5283), 1, - anon_sym_EQ2, + ACTIONS(9096), 1, + sym__table_head_separator, STATE(5281), 1, sym_comment, - [139321] = 3, + [139383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9114), 1, - anon_sym_RBRACE, + ACTIONS(9098), 1, + anon_sym_in, STATE(5282), 1, sym_comment, - [139331] = 3, + [139393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2622), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9100), 1, + anon_sym_RBRACE, STATE(5283), 1, sym_comment, - [139341] = 3, + [139403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9116), 1, + ACTIONS(9102), 1, anon_sym_DQUOTE, STATE(5284), 1, sym_comment, - [139351] = 3, - ACTIONS(3), 1, + [139413] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9118), 1, - anon_sym_SQUOTE2, + ACTIONS(9104), 1, + aux_sym_cmd_identifier_token6, STATE(5285), 1, sym_comment, - [139361] = 3, + [139423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9120), 1, - anon_sym_BQUOTE2, + ACTIONS(9106), 1, + anon_sym_GT2, STATE(5286), 1, sym_comment, - [139371] = 3, + [139433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9122), 1, - anon_sym_RPAREN, + ACTIONS(297), 1, + anon_sym_RBRACE, STATE(5287), 1, sym_comment, - [139381] = 3, + [139443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - sym__unquoted_pattern, + ACTIONS(9108), 1, + anon_sym_SQUOTE2, STATE(5288), 1, sym_comment, - [139391] = 3, + [139453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9124), 1, - anon_sym_RBRACK, + ACTIONS(9110), 1, + anon_sym_DQUOTE, STATE(5289), 1, sym_comment, - [139401] = 3, + [139463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9126), 1, - anon_sym_RBRACE, + ACTIONS(9112), 1, + anon_sym_SQUOTE2, STATE(5290), 1, sym_comment, - [139411] = 3, - ACTIONS(103), 1, + [139473] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9128), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9114), 1, + anon_sym_RBRACK, STATE(5291), 1, sym_comment, - [139421] = 3, + [139483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9130), 1, - anon_sym_RPAREN, + ACTIONS(9116), 1, + anon_sym_BQUOTE2, STATE(5292), 1, sym_comment, - [139431] = 3, + [139493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9132), 1, - anon_sym_SQUOTE2, + ACTIONS(9118), 1, + anon_sym_RBRACE, STATE(5293), 1, sym_comment, - [139441] = 3, + [139503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9134), 1, - anon_sym_RPAREN, + ACTIONS(9120), 1, + anon_sym_RBRACE, STATE(5294), 1, sym_comment, - [139451] = 3, + [139513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2622), 1, - sym__unquoted_pattern, + ACTIONS(9122), 1, + sym__table_head_separator, STATE(5295), 1, sym_comment, - [139461] = 3, - ACTIONS(3), 1, + [139523] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_EQ2, + ACTIONS(9124), 1, + aux_sym_cmd_identifier_token6, STATE(5296), 1, sym_comment, - [139471] = 3, + [139533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9136), 1, - anon_sym_BQUOTE2, + ACTIONS(9126), 1, + anon_sym_EQ, STATE(5297), 1, sym_comment, - [139481] = 3, + [139543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9138), 1, - anon_sym_RBRACK, + ACTIONS(9128), 1, + sym_raw_string_content, STATE(5298), 1, sym_comment, - [139491] = 3, + [139553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7898), 1, - sym__unquoted_pattern, + ACTIONS(9130), 1, + anon_sym_BQUOTE2, STATE(5299), 1, sym_comment, - [139501] = 3, + [139563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9140), 1, - anon_sym_RBRACE, + ACTIONS(417), 1, + ts_builtin_sym_end, STATE(5300), 1, sym_comment, - [139511] = 3, + [139573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9142), 1, - sym_identifier, + ACTIONS(9132), 1, + anon_sym_RBRACE, STATE(5301), 1, sym_comment, - [139521] = 3, - ACTIONS(103), 1, + [139583] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9144), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9134), 1, + anon_sym_RPAREN, STATE(5302), 1, sym_comment, - [139531] = 3, + [139593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9146), 1, - anon_sym_RBRACE, + ACTIONS(2608), 1, + sym__unquoted_pattern_in_record, STATE(5303), 1, sym_comment, - [139541] = 3, - ACTIONS(3), 1, + [139603] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9148), 1, - sym_long_flag_identifier, + ACTIONS(9136), 1, + aux_sym_cmd_identifier_token6, STATE(5304), 1, sym_comment, - [139551] = 3, + [139613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9150), 1, - anon_sym_RBRACE, + ACTIONS(6539), 1, + anon_sym_EQ, STATE(5305), 1, sym_comment, - [139561] = 3, - ACTIONS(3), 1, + [139623] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9152), 1, - anon_sym_RBRACE, + ACTIONS(1899), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5306), 1, sym_comment, - [139571] = 3, + [139633] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2594), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9138), 1, + aux_sym_shebang_token1, STATE(5307), 1, sym_comment, - [139581] = 3, + [139643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9154), 1, - sym_param_short_flag_identifier, + ACTIONS(9140), 1, + anon_sym_RPAREN, STATE(5308), 1, sym_comment, - [139591] = 3, + [139653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9142), 1, anon_sym_RPAREN, STATE(5309), 1, sym_comment, - [139601] = 3, + [139663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9158), 1, - sym_raw_string_end, + ACTIONS(9144), 1, + anon_sym_RBRACE, STATE(5310), 1, sym_comment, - [139611] = 3, - ACTIONS(103), 1, + [139673] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9160), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(5235), 1, + anon_sym_EQ2, STATE(5311), 1, sym_comment, - [139621] = 3, + [139683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9162), 1, - sym__table_head_separator, + ACTIONS(9146), 1, + anon_sym_RBRACK, STATE(5312), 1, sym_comment, - [139631] = 3, - ACTIONS(103), 1, + [139693] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9164), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9148), 1, + anon_sym_RBRACE, STATE(5313), 1, sym_comment, - [139641] = 3, + [139703] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9166), 1, - anon_sym_EQ_GT, + ACTIONS(9150), 1, + anon_sym_GT2, STATE(5314), 1, sym_comment, - [139651] = 3, - ACTIONS(3), 1, + [139713] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9168), 1, - anon_sym_RBRACE, + ACTIONS(9152), 1, + aux_sym_cmd_identifier_token6, STATE(5315), 1, sym_comment, - [139661] = 3, + [139723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9170), 1, - anon_sym_RPAREN, + ACTIONS(9154), 1, + anon_sym_DQUOTE, STATE(5316), 1, sym_comment, - [139671] = 3, + [139733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9172), 1, - sym_raw_string_end, + ACTIONS(2939), 1, + anon_sym_LBRACK2, STATE(5317), 1, sym_comment, - [139681] = 3, + [139743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9174), 1, - anon_sym_RBRACE, + ACTIONS(9156), 1, + sym_attribute_identifier, STATE(5318), 1, sym_comment, - [139691] = 3, + [139753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9158), 1, + anon_sym_RBRACK, STATE(5319), 1, sym_comment, - [139701] = 3, + [139763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9176), 1, - sym_raw_string_end, + ACTIONS(9160), 1, + anon_sym_EQ, STATE(5320), 1, sym_comment, - [139711] = 3, - ACTIONS(3), 1, + [139773] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9178), 1, - anon_sym_EQ, + ACTIONS(9162), 1, + aux_sym_cmd_identifier_token2, STATE(5321), 1, sym_comment, - [139721] = 3, + [139783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9180), 1, - anon_sym_RBRACK, + ACTIONS(9164), 1, + anon_sym_RBRACE, STATE(5322), 1, sym_comment, - [139731] = 3, + [139793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9182), 1, - anon_sym_RBRACE, + ACTIONS(8904), 1, + anon_sym_LBRACE, STATE(5323), 1, sym_comment, - [139741] = 3, + [139803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1732), 1, - sym__unquoted_pattern_in_record, + ACTIONS(6879), 1, + anon_sym_EQ, STATE(5324), 1, sym_comment, - [139751] = 3, - ACTIONS(103), 1, + [139813] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9184), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9166), 1, + anon_sym_LBRACE, STATE(5325), 1, sym_comment, - [139761] = 3, + [139823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9186), 1, - anon_sym_RPAREN, + ACTIONS(9168), 1, + anon_sym_LBRACE, STATE(5326), 1, sym_comment, - [139771] = 3, + [139833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9188), 1, - anon_sym_EQ, + ACTIONS(9170), 1, + anon_sym_GT2, STATE(5327), 1, sym_comment, - [139781] = 3, + [139843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4187), 1, - sym__unquoted_pattern, + ACTIONS(8252), 1, + anon_sym_EQ_GT, STATE(5328), 1, sym_comment, - [139791] = 3, - ACTIONS(3), 1, + [139853] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9190), 1, - anon_sym_DQUOTE, + ACTIONS(9172), 1, + sym__space, STATE(5329), 1, sym_comment, - [139801] = 3, + [139863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6659), 1, - sym__unquoted_pattern_in_list, + ACTIONS(9174), 1, + anon_sym_GT2, STATE(5330), 1, sym_comment, - [139811] = 3, - ACTIONS(103), 1, + [139873] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9192), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9176), 1, + sym_raw_string_end, STATE(5331), 1, sym_comment, - [139821] = 3, + [139883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9194), 1, - anon_sym_RBRACK, + ACTIONS(5330), 1, + anon_sym_EQ2, STATE(5332), 1, sym_comment, - [139831] = 3, + [139893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9196), 1, - anon_sym_RBRACK, + ACTIONS(9178), 1, + sym_identifier, STATE(5333), 1, sym_comment, - [139841] = 3, + [139903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9198), 1, - anon_sym_RBRACE, + ACTIONS(9180), 1, + anon_sym_GT2, STATE(5334), 1, sym_comment, - [139851] = 3, + [139913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9200), 1, - sym_raw_string_end, + ACTIONS(9182), 1, + anon_sym_LBRACE, STATE(5335), 1, sym_comment, - [139861] = 3, + [139923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9202), 1, - anon_sym_RBRACK, + ACTIONS(9184), 1, + anon_sym_COLON2, STATE(5336), 1, sym_comment, - [139871] = 3, + [139933] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9204), 1, - anon_sym_EQ, + ACTIONS(5046), 1, + sym__unquoted_pattern, STATE(5337), 1, sym_comment, - [139881] = 3, + [139943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9206), 1, - anon_sym_RBRACK, + ACTIONS(9182), 1, + anon_sym_LBRACE, STATE(5338), 1, sym_comment, - [139891] = 3, + [139953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9208), 1, - anon_sym_RPAREN, + ACTIONS(9186), 1, + anon_sym_RBRACE, STATE(5339), 1, sym_comment, - [139901] = 3, - ACTIONS(103), 1, + [139963] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1917), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(9188), 1, + anon_sym_RBRACE, STATE(5340), 1, sym_comment, - [139911] = 3, + [139973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2362), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9190), 1, + ts_builtin_sym_end, STATE(5341), 1, sym_comment, - [139921] = 3, + [139983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9210), 1, - anon_sym_RBRACK, + ACTIONS(9192), 1, + sym_raw_string_end, STATE(5342), 1, sym_comment, - [139931] = 3, + [139993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9212), 1, - sym_raw_string_content, + ACTIONS(9194), 1, + anon_sym_RBRACK, STATE(5343), 1, sym_comment, - [139941] = 3, + [140003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8075), 1, - anon_sym_LBRACK2, + ACTIONS(9196), 1, + anon_sym_RBRACE, STATE(5344), 1, sym_comment, - [139951] = 3, - ACTIONS(103), 1, + [140013] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9214), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9198), 1, + anon_sym_RPAREN, STATE(5345), 1, sym_comment, - [139961] = 3, - ACTIONS(103), 1, + [140023] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9216), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9200), 1, + anon_sym_LBRACE, STATE(5346), 1, sym_comment, - [139971] = 3, + [140033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9218), 1, - anon_sym_RBRACE, + ACTIONS(9202), 1, + anon_sym_RPAREN, STATE(5347), 1, sym_comment, - [139981] = 3, + [140043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1848), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9204), 1, + anon_sym_RBRACK, STATE(5348), 1, sym_comment, - [139991] = 3, + [140053] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9220), 1, - sym__space, + ACTIONS(1907), 1, + aux_sym__unquoted_with_expr_token1, STATE(5349), 1, sym_comment, - [140001] = 3, + [140063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9222), 1, - anon_sym_RPAREN, + ACTIONS(9206), 1, + anon_sym_RBRACE, STATE(5350), 1, sym_comment, - [140011] = 3, + [140073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, - sym__unquoted_pattern_in_record, + ACTIONS(2580), 1, + sym__unquoted_pattern, STATE(5351), 1, sym_comment, - [140021] = 3, + [140083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5249), 1, - anon_sym_EQ2, + ACTIONS(9208), 1, + anon_sym_RBRACK, STATE(5352), 1, sym_comment, - [140031] = 3, + [140093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9224), 1, - anon_sym_EQ, + ACTIONS(315), 1, + anon_sym_RBRACE, STATE(5353), 1, sym_comment, - [140041] = 3, + [140103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(315), 1, - anon_sym_RBRACE, + ACTIONS(9210), 1, + anon_sym_RPAREN, STATE(5354), 1, sym_comment, - [140051] = 3, + [140113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9212), 1, + anon_sym_RPAREN, STATE(5355), 1, sym_comment, - [140061] = 3, + [140123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9226), 1, - ts_builtin_sym_end, + ACTIONS(8678), 1, + anon_sym_LBRACE, STATE(5356), 1, sym_comment, - [140071] = 3, + [140133] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9228), 1, - sym__space, + ACTIONS(9214), 1, + aux_sym_cmd_identifier_token6, STATE(5357), 1, sym_comment, - [140081] = 3, + [140143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - sym__table_head_separator, + ACTIONS(363), 1, + anon_sym_RPAREN2, STATE(5358), 1, sym_comment, - [140091] = 3, + [140153] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9230), 1, - anon_sym_RBRACE, + ACTIONS(9216), 1, + sym_raw_string_content, STATE(5359), 1, sym_comment, - [140101] = 3, + [140163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9232), 1, - sym_raw_string_end, + ACTIONS(7957), 1, + anon_sym_LBRACK2, STATE(5360), 1, sym_comment, - [140111] = 3, + [140173] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9234), 1, - aux_sym_shebang_token1, + ACTIONS(9218), 1, + aux_sym__str_single_quotes_token1, STATE(5361), 1, sym_comment, - [140121] = 3, - ACTIONS(3), 1, + [140183] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9236), 1, - anon_sym_DQUOTE, + ACTIONS(9220), 1, + aux_sym__str_back_ticks_token1, STATE(5362), 1, sym_comment, - [140131] = 3, + [140193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9238), 1, - sym_identifier, + ACTIONS(9222), 1, + anon_sym_DASH_GT, STATE(5363), 1, sym_comment, - [140141] = 3, - ACTIONS(3), 1, + [140203] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern, + ACTIONS(9224), 1, + aux_sym_comment_token1, STATE(5364), 1, sym_comment, - [140151] = 3, + [140213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9240), 1, - anon_sym_SQUOTE2, + ACTIONS(9226), 1, + anon_sym_RBRACE, STATE(5365), 1, sym_comment, - [140161] = 3, - ACTIONS(3), 1, + [140223] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9242), 1, - anon_sym_BQUOTE2, + ACTIONS(9228), 1, + sym__space, STATE(5366), 1, sym_comment, - [140171] = 3, + [140233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9244), 1, - anon_sym_EQ, + ACTIONS(9230), 1, + anon_sym_RBRACE, STATE(5367), 1, sym_comment, - [140181] = 3, + [140243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9246), 1, - anon_sym_LBRACE, + ACTIONS(9232), 1, + anon_sym_RBRACK, STATE(5368), 1, sym_comment, - [140191] = 3, - ACTIONS(103), 1, + [140253] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9248), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9234), 1, + anon_sym_RPAREN, STATE(5369), 1, sym_comment, - [140201] = 3, + [140263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9250), 1, - anon_sym_EQ, + ACTIONS(9236), 1, + anon_sym_RBRACE, STATE(5370), 1, sym_comment, - [140211] = 3, - ACTIONS(103), 1, + [140273] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9252), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(1641), 1, + sym__unquoted_pattern, STATE(5371), 1, sym_comment, - [140221] = 3, + [140283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, + ACTIONS(2572), 1, sym__unquoted_pattern_in_record, STATE(5372), 1, sym_comment, - [140231] = 3, + [140293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6867), 1, - anon_sym_EQ, + ACTIONS(2596), 1, + sym__unquoted_pattern_in_record, STATE(5373), 1, sym_comment, - [140241] = 3, + [140303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9254), 1, - sym_attribute_identifier, + ACTIONS(9238), 1, + anon_sym_PIPE, STATE(5374), 1, sym_comment, - [140251] = 3, + [140313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9256), 1, - anon_sym_GT2, + ACTIONS(1732), 1, + sym__unquoted_pattern_in_record, STATE(5375), 1, sym_comment, - [140261] = 3, + [140323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - anon_sym_RBRACK, + ACTIONS(9240), 1, + anon_sym_DQUOTE, STATE(5376), 1, sym_comment, - [140271] = 3, + [140333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9260), 1, - anon_sym_RBRACK, + ACTIONS(9242), 1, + anon_sym_SQUOTE2, STATE(5377), 1, sym_comment, - [140281] = 3, + [140343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9262), 1, - anon_sym_RBRACE, + ACTIONS(9244), 1, + anon_sym_BQUOTE2, STATE(5378), 1, sym_comment, - [140291] = 3, + [140353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9264), 1, - anon_sym_RPAREN2, + ACTIONS(9246), 1, + anon_sym_RBRACK, STATE(5379), 1, sym_comment, - [140301] = 3, + [140363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9266), 1, + ACTIONS(9248), 1, anon_sym_RBRACE, STATE(5380), 1, sym_comment, - [140311] = 3, + [140373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9268), 1, - anon_sym_RPAREN, + ACTIONS(9250), 1, + anon_sym_EQ, STATE(5381), 1, sym_comment, - [140321] = 3, - ACTIONS(3), 1, + [140383] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9270), 1, - anon_sym_RPAREN, + ACTIONS(9252), 1, + aux_sym_cmd_identifier_token6, STATE(5382), 1, sym_comment, - [140331] = 3, - ACTIONS(103), 1, + [140393] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9272), 1, - aux_sym_comment_token1, + ACTIONS(9254), 1, + anon_sym_RBRACE, STATE(5383), 1, sym_comment, - [140341] = 3, - ACTIONS(3), 1, + [140403] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9274), 1, - anon_sym_RBRACE, + ACTIONS(9256), 1, + aux_sym_cmd_identifier_token6, STATE(5384), 1, sym_comment, - [140351] = 3, + [140413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9276), 1, - sym_raw_string_content, + ACTIONS(9258), 1, + anon_sym_RBRACK, STATE(5385), 1, sym_comment, - [140361] = 3, + [140423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6362), 1, - anon_sym_LBRACK2, + ACTIONS(9260), 1, + anon_sym_RBRACE, STATE(5386), 1, sym_comment, - [140371] = 3, - ACTIONS(103), 1, + [140433] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9278), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(355), 1, + anon_sym_RPAREN2, STATE(5387), 1, sym_comment, - [140381] = 3, - ACTIONS(103), 1, + [140443] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9280), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9262), 1, + anon_sym_GT2, STATE(5388), 1, sym_comment, - [140391] = 3, + [140453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9282), 1, - anon_sym_GT2, + ACTIONS(9264), 1, + anon_sym_RBRACE, STATE(5389), 1, sym_comment, - [140401] = 3, - ACTIONS(103), 1, + [140463] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9284), 1, - sym__space, + ACTIONS(9266), 1, + anon_sym_RPAREN, STATE(5390), 1, sym_comment, - [140411] = 3, + [140473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9286), 1, - anon_sym_DQUOTE, + ACTIONS(9268), 1, + anon_sym_RBRACK, STATE(5391), 1, sym_comment, - [140421] = 3, - ACTIONS(3), 1, + [140483] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9288), 1, - anon_sym_SQUOTE2, + ACTIONS(9270), 1, + aux_sym_cmd_identifier_token6, STATE(5392), 1, sym_comment, - [140431] = 3, + [140493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9290), 1, - anon_sym_BQUOTE2, + ACTIONS(9272), 1, + anon_sym_RBRACE, STATE(5393), 1, sym_comment, - [140441] = 3, + [140503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9292), 1, - sym_raw_string_content, + ACTIONS(9274), 1, + anon_sym_EQ, STATE(5394), 1, sym_comment, - [140451] = 3, + [140513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4525), 1, - anon_sym_LBRACK2, + ACTIONS(9276), 1, + anon_sym_RBRACE, STATE(5395), 1, sym_comment, - [140461] = 3, - ACTIONS(103), 1, + [140523] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9294), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9278), 1, + anon_sym_GT2, STATE(5396), 1, sym_comment, - [140471] = 3, - ACTIONS(103), 1, + [140533] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9296), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(5482), 1, + anon_sym_EQ2, STATE(5397), 1, sym_comment, - [140481] = 3, + [140543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym_raw_string_content, + ACTIONS(1806), 1, + sym__unquoted_pattern, STATE(5398), 1, sym_comment, - [140491] = 3, + [140553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5838), 1, - anon_sym_LBRACK2, + ACTIONS(9280), 1, + anon_sym_RPAREN, STATE(5399), 1, sym_comment, - [140501] = 3, - ACTIONS(103), 1, + [140563] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9300), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(1963), 1, + sym__unquoted_pattern_in_record, STATE(5400), 1, sym_comment, - [140511] = 3, + [140573] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9302), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9282), 1, + aux_sym_cmd_identifier_token2, STATE(5401), 1, sym_comment, - [140521] = 3, + [140583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9304), 1, + ACTIONS(9284), 1, sym_raw_string_content, STATE(5402), 1, sym_comment, - [140531] = 3, + [140593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5846), 1, + ACTIONS(6344), 1, anon_sym_LBRACK2, STATE(5403), 1, sym_comment, - [140541] = 3, + [140603] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9306), 1, + ACTIONS(9286), 1, aux_sym__str_single_quotes_token1, STATE(5404), 1, sym_comment, - [140551] = 3, + [140613] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9308), 1, + ACTIONS(9288), 1, aux_sym__str_back_ticks_token1, STATE(5405), 1, sym_comment, - [140561] = 3, + [140623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9310), 1, - sym_raw_string_content, + ACTIONS(9290), 1, + anon_sym_GT2, STATE(5406), 1, sym_comment, - [140571] = 3, + [140633] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9312), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9292), 1, + sym__space, STATE(5407), 1, sym_comment, - [140581] = 3, - ACTIONS(103), 1, + [140643] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9314), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9294), 1, + anon_sym_RPAREN, STATE(5408), 1, sym_comment, - [140591] = 3, + [140653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9316), 1, - sym_raw_string_content, + ACTIONS(9296), 1, + anon_sym_GT2, STATE(5409), 1, sym_comment, - [140601] = 3, - ACTIONS(103), 1, + [140663] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9318), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9298), 1, + anon_sym_RPAREN, STATE(5410), 1, sym_comment, - [140611] = 3, - ACTIONS(103), 1, + [140673] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9320), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(6553), 1, + anon_sym_EQ, STATE(5411), 1, sym_comment, - [140621] = 3, + [140683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9322), 1, + ACTIONS(9300), 1, sym_raw_string_content, STATE(5412), 1, sym_comment, - [140631] = 3, - ACTIONS(103), 1, + [140693] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9324), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(4534), 1, + anon_sym_LBRACK2, STATE(5413), 1, sym_comment, - [140641] = 3, + [140703] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9326), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9302), 1, + aux_sym__str_single_quotes_token1, STATE(5414), 1, sym_comment, - [140651] = 3, - ACTIONS(3), 1, + [140713] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9328), 1, - sym_raw_string_content, + ACTIONS(9304), 1, + aux_sym__str_back_ticks_token1, STATE(5415), 1, sym_comment, - [140661] = 3, - ACTIONS(103), 1, + [140723] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9306), 1, + sym_raw_string_content, STATE(5416), 1, sym_comment, - [140671] = 3, - ACTIONS(103), 1, + [140733] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9332), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(5944), 1, + anon_sym_LBRACK2, STATE(5417), 1, sym_comment, - [140681] = 3, - ACTIONS(3), 1, + [140743] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9334), 1, - sym_raw_string_content, + ACTIONS(9308), 1, + aux_sym__str_single_quotes_token1, STATE(5418), 1, sym_comment, - [140691] = 3, + [140753] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9336), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9310), 1, + aux_sym__str_back_ticks_token1, STATE(5419), 1, sym_comment, - [140701] = 3, - ACTIONS(103), 1, + [140763] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9338), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9312), 1, + sym_raw_string_content, STATE(5420), 1, sym_comment, - [140711] = 3, + [140773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - sym_raw_string_content, + ACTIONS(5865), 1, + anon_sym_LBRACK2, STATE(5421), 1, sym_comment, - [140721] = 3, + [140783] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9342), 1, + ACTIONS(9314), 1, aux_sym__str_single_quotes_token1, STATE(5422), 1, sym_comment, - [140731] = 3, + [140793] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9344), 1, + ACTIONS(9316), 1, aux_sym__str_back_ticks_token1, STATE(5423), 1, sym_comment, - [140741] = 3, + [140803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9346), 1, + ACTIONS(9318), 1, sym_raw_string_content, STATE(5424), 1, sym_comment, - [140751] = 3, + [140813] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9348), 1, + ACTIONS(9320), 1, aux_sym__str_single_quotes_token1, STATE(5425), 1, sym_comment, - [140761] = 3, + [140823] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9350), 1, + ACTIONS(9322), 1, aux_sym__str_back_ticks_token1, STATE(5426), 1, sym_comment, - [140771] = 3, + [140833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9352), 1, + ACTIONS(9324), 1, sym_raw_string_content, STATE(5427), 1, sym_comment, - [140781] = 3, + [140843] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9354), 1, + ACTIONS(9326), 1, aux_sym__str_single_quotes_token1, STATE(5428), 1, sym_comment, - [140791] = 3, + [140853] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(9328), 1, aux_sym__str_back_ticks_token1, STATE(5429), 1, sym_comment, - [140801] = 3, + [140863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9358), 1, + ACTIONS(9330), 1, sym_raw_string_content, STATE(5430), 1, sym_comment, - [140811] = 3, + [140873] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9360), 1, + ACTIONS(9332), 1, aux_sym__str_single_quotes_token1, STATE(5431), 1, sym_comment, - [140821] = 3, + [140883] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9362), 1, + ACTIONS(9334), 1, aux_sym__str_back_ticks_token1, STATE(5432), 1, sym_comment, - [140831] = 3, + [140893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9364), 1, + ACTIONS(9336), 1, sym_raw_string_content, STATE(5433), 1, sym_comment, - [140841] = 3, + [140903] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(9338), 1, aux_sym__str_single_quotes_token1, STATE(5434), 1, sym_comment, - [140851] = 3, + [140913] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9368), 1, + ACTIONS(9340), 1, aux_sym__str_back_ticks_token1, STATE(5435), 1, sym_comment, - [140861] = 3, + [140923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9370), 1, + ACTIONS(9342), 1, sym_raw_string_content, STATE(5436), 1, sym_comment, - [140871] = 3, + [140933] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9372), 1, + ACTIONS(9344), 1, aux_sym__str_single_quotes_token1, STATE(5437), 1, sym_comment, - [140881] = 3, + [140943] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9374), 1, + ACTIONS(9346), 1, aux_sym__str_back_ticks_token1, STATE(5438), 1, sym_comment, - [140891] = 3, + [140953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9376), 1, + ACTIONS(9348), 1, sym_raw_string_content, STATE(5439), 1, sym_comment, - [140901] = 3, + [140963] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9378), 1, + ACTIONS(9350), 1, aux_sym__str_single_quotes_token1, STATE(5440), 1, sym_comment, - [140911] = 3, + [140973] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9380), 1, + ACTIONS(9352), 1, aux_sym__str_back_ticks_token1, STATE(5441), 1, sym_comment, - [140921] = 3, + [140983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9382), 1, + ACTIONS(9354), 1, sym_raw_string_content, STATE(5442), 1, sym_comment, - [140931] = 3, + [140993] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9384), 1, + ACTIONS(9356), 1, aux_sym__str_single_quotes_token1, STATE(5443), 1, sym_comment, - [140941] = 3, + [141003] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9386), 1, + ACTIONS(9358), 1, aux_sym__str_back_ticks_token1, STATE(5444), 1, sym_comment, - [140951] = 3, + [141013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9388), 1, + ACTIONS(9360), 1, sym_raw_string_content, STATE(5445), 1, sym_comment, - [140961] = 3, + [141023] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9390), 1, + ACTIONS(9362), 1, aux_sym__str_single_quotes_token1, STATE(5446), 1, sym_comment, - [140971] = 3, + [141033] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9392), 1, + ACTIONS(9364), 1, aux_sym__str_back_ticks_token1, STATE(5447), 1, sym_comment, - [140981] = 3, + [141043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9366), 1, + sym_raw_string_content, STATE(5448), 1, sym_comment, - [140991] = 3, - ACTIONS(3), 1, + [141053] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9394), 1, - anon_sym_DQUOTE, + ACTIONS(9368), 1, + aux_sym__str_single_quotes_token1, STATE(5449), 1, sym_comment, - [141001] = 3, - ACTIONS(3), 1, + [141063] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8659), 1, - anon_sym_LPAREN2, + ACTIONS(9370), 1, + aux_sym__str_back_ticks_token1, STATE(5450), 1, sym_comment, - [141011] = 3, - ACTIONS(103), 1, + [141073] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9396), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9372), 1, + sym_raw_string_content, STATE(5451), 1, sym_comment, - [141021] = 3, - ACTIONS(3), 1, + [141083] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(351), 1, - anon_sym_RPAREN2, + ACTIONS(9374), 1, + aux_sym__str_single_quotes_token1, STATE(5452), 1, sym_comment, - [141031] = 3, - ACTIONS(3), 1, + [141093] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1992), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9376), 1, + aux_sym__str_back_ticks_token1, STATE(5453), 1, sym_comment, - [141041] = 3, + [141103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9398), 1, - anon_sym_in, + ACTIONS(9378), 1, + sym_raw_string_content, STATE(5454), 1, sym_comment, - [141051] = 3, - ACTIONS(3), 1, + [141113] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9400), 1, - anon_sym_RBRACE, + ACTIONS(9380), 1, + aux_sym__str_single_quotes_token1, STATE(5455), 1, sym_comment, - [141061] = 3, + [141123] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9402), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9382), 1, + aux_sym__str_back_ticks_token1, STATE(5456), 1, sym_comment, - [141071] = 3, + [141133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9404), 1, - anon_sym_GT2, + ACTIONS(9384), 1, + sym_raw_string_content, STATE(5457), 1, sym_comment, - [141081] = 3, - ACTIONS(3), 1, + [141143] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9406), 1, - anon_sym_RBRACE, + ACTIONS(9386), 1, + aux_sym__str_single_quotes_token1, STATE(5458), 1, sym_comment, - [141091] = 3, - ACTIONS(3), 1, + [141153] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9408), 1, - anon_sym_RBRACK, + ACTIONS(9388), 1, + aux_sym__str_back_ticks_token1, STATE(5459), 1, sym_comment, - [141101] = 3, + [141163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9410), 1, - anon_sym_RPAREN, + ACTIONS(9390), 1, + sym_raw_string_content, STATE(5460), 1, sym_comment, - [141111] = 3, + [141173] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9412), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9392), 1, + aux_sym__str_single_quotes_token1, STATE(5461), 1, sym_comment, - [141121] = 3, - ACTIONS(3), 1, + [141183] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_RBRACE, + ACTIONS(9394), 1, + aux_sym__str_back_ticks_token1, STATE(5462), 1, sym_comment, - [141131] = 3, + [141193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_GT2, + ACTIONS(9396), 1, + sym_raw_string_content, STATE(5463), 1, sym_comment, - [141141] = 3, - ACTIONS(3), 1, + [141203] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9416), 1, - anon_sym_DQUOTE, + ACTIONS(9398), 1, + aux_sym__str_single_quotes_token1, STATE(5464), 1, sym_comment, - [141151] = 3, - ACTIONS(3), 1, + [141213] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9418), 1, - anon_sym_GT2, + ACTIONS(9400), 1, + aux_sym__str_back_ticks_token1, STATE(5465), 1, sym_comment, - [141161] = 3, + [141223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9420), 1, - anon_sym_GT2, + ACTIONS(9402), 1, + anon_sym_RBRACE, STATE(5466), 1, sym_comment, - [141171] = 3, + [141233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9422), 1, - ts_builtin_sym_end, + ACTIONS(9404), 1, + sym_raw_string_end, STATE(5467), 1, sym_comment, - [141181] = 3, + [141243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9424), 1, - anon_sym_GT2, + ACTIONS(8732), 1, + anon_sym_LPAREN2, STATE(5468), 1, sym_comment, - [141191] = 3, - ACTIONS(103), 1, + [141253] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(1885), 1, + sym__table_head_separator, STATE(5469), 1, sym_comment, - [141201] = 3, - ACTIONS(3), 1, + [141263] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9426), 1, - anon_sym_LT, + ACTIONS(9406), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5470), 1, sym_comment, - [141211] = 3, + [141273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9428), 1, + ACTIONS(9408), 1, anon_sym_GT2, STATE(5471), 1, sym_comment, - [141221] = 3, + [141283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9430), 1, - anon_sym_GT2, + ACTIONS(9410), 1, + anon_sym_in, STATE(5472), 1, sym_comment, - [141231] = 3, + [141293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9432), 1, - anon_sym_EQ, + ACTIONS(9412), 1, + anon_sym_RBRACK, STATE(5473), 1, sym_comment, - [141241] = 3, + [141303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9434), 1, - anon_sym_BQUOTE2, + ACTIONS(9414), 1, + anon_sym_RPAREN2, STATE(5474), 1, sym_comment, - [141251] = 3, + [141313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9436), 1, - sym_identifier, + ACTIONS(9416), 1, + anon_sym_RBRACK, STATE(5475), 1, sym_comment, - [141261] = 3, + [141323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9438), 1, - anon_sym_GT2, + ACTIONS(1716), 1, + anon_sym_COLON2, STATE(5476), 1, sym_comment, - [141271] = 3, + [141333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7687), 1, - sym__unquoted_pattern, + ACTIONS(1834), 1, + sym__unquoted_pattern_in_record, STATE(5477), 1, sym_comment, - [141281] = 3, + [141343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6495), 1, - anon_sym_EQ, + ACTIONS(9418), 1, + anon_sym_GT2, STATE(5478), 1, sym_comment, - [141291] = 3, - ACTIONS(103), 1, + [141353] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9440), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9420), 1, + anon_sym_RPAREN, STATE(5479), 1, sym_comment, - [141301] = 3, - ACTIONS(103), 1, + [141363] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9442), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9422), 1, + anon_sym_GT2, STATE(5480), 1, sym_comment, - [141311] = 3, + [141373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9444), 1, - sym_raw_string_end, + ACTIONS(9424), 1, + anon_sym_RBRACE, STATE(5481), 1, sym_comment, - [141321] = 3, + [141383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9446), 1, - sym_raw_string_end, + ACTIONS(9426), 1, + sym_identifier, STATE(5482), 1, sym_comment, - [141331] = 3, - ACTIONS(103), 1, + [141393] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9448), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9428), 1, + anon_sym_DQUOTE, STATE(5483), 1, sym_comment, - [141341] = 3, - ACTIONS(103), 1, + [141403] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2754), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9430), 1, + anon_sym_SQUOTE2, STATE(5484), 1, sym_comment, - [141351] = 3, + [141413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9450), 1, - anon_sym_SQUOTE2, + ACTIONS(9432), 1, + anon_sym_BQUOTE2, STATE(5485), 1, sym_comment, - [141361] = 3, + [141423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9452), 1, - anon_sym_RBRACE, + ACTIONS(9434), 1, + anon_sym_GT2, STATE(5486), 1, sym_comment, - [141371] = 3, + [141433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9454), 1, - anon_sym_RBRACE, + ACTIONS(9436), 1, + anon_sym_EQ, STATE(5487), 1, sym_comment, - [141381] = 3, + [141443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9456), 1, - anon_sym_RPAREN, + ACTIONS(9438), 1, + anon_sym_LT, STATE(5488), 1, sym_comment, - [141391] = 3, + [141453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - sym__unquoted_pattern, + ACTIONS(9440), 1, + anon_sym_RBRACE, STATE(5489), 1, sym_comment, - [141401] = 3, - ACTIONS(3), 1, + [141463] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9458), 1, - anon_sym_RBRACE, + ACTIONS(9442), 1, + aux_sym_cmd_identifier_token6, STATE(5490), 1, sym_comment, - [141411] = 3, - ACTIONS(3), 1, + [141473] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9460), 1, - anon_sym_RBRACK, + ACTIONS(9444), 1, + aux_sym_cmd_identifier_token6, STATE(5491), 1, sym_comment, - [141421] = 3, + [141483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9462), 1, - anon_sym_LT, + ACTIONS(9446), 1, + sym_identifier, STATE(5492), 1, sym_comment, - [141431] = 3, - ACTIONS(103), 1, + [141493] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1905), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9448), 1, + anon_sym_RBRACK, STATE(5493), 1, sym_comment, - [141441] = 3, + [141503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1701), 1, - anon_sym_COLON2, + ACTIONS(9450), 1, + anon_sym_RBRACE, STATE(5494), 1, sym_comment, - [141451] = 3, + [141513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9464), 1, - anon_sym_RBRACE, + ACTIONS(9452), 1, + anon_sym_RPAREN, STATE(5495), 1, sym_comment, - [141461] = 3, + [141523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9466), 1, - sym_raw_string_end, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(5496), 1, sym_comment, - [141471] = 3, - ACTIONS(3), 1, + [141533] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9468), 1, - anon_sym_RBRACK, + ACTIONS(9454), 1, + aux_sym_cmd_identifier_token6, STATE(5497), 1, sym_comment, - [141481] = 3, + [141543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9470), 1, - anon_sym_LT, + ACTIONS(5255), 1, + anon_sym_EQ2, STATE(5498), 1, sym_comment, - [141491] = 3, + [141553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5298), 1, - anon_sym_EQ2, + ACTIONS(9456), 1, + anon_sym_DQUOTE, STATE(5499), 1, sym_comment, - [141501] = 3, + [141563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9472), 1, + ACTIONS(9458), 1, anon_sym_EQ, STATE(5500), 1, sym_comment, - [141511] = 3, + [141573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9474), 1, - anon_sym_DQUOTE, + ACTIONS(9460), 1, + anon_sym_RBRACK, STATE(5501), 1, sym_comment, - [141521] = 3, - ACTIONS(3), 1, + [141583] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7285), 1, - sym__unquoted_pattern, + ACTIONS(2732), 1, + aux_sym_cmd_identifier_token2, STATE(5502), 1, sym_comment, - [141531] = 3, - ACTIONS(3), 1, + [141593] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8653), 1, - anon_sym_LBRACE, + ACTIONS(1899), 1, + aux_sym__unquoted_with_expr_token1, STATE(5503), 1, sym_comment, - [141541] = 3, - ACTIONS(3), 1, + [141603] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5300), 1, - anon_sym_EQ2, + ACTIONS(2933), 1, + aux_sym_cmd_identifier_token2, STATE(5504), 1, sym_comment, - [141551] = 3, + [141613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(361), 1, - anon_sym_RPAREN2, + ACTIONS(9462), 1, + anon_sym_RBRACE, STATE(5505), 1, sym_comment, - [141561] = 3, + [141623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9476), 1, + ACTIONS(9464), 1, anon_sym_SQUOTE2, STATE(5506), 1, sym_comment, - [141571] = 3, + [141633] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6511), 1, - anon_sym_EQ, + ACTIONS(9466), 1, + anon_sym_BQUOTE2, STATE(5507), 1, sym_comment, - [141581] = 3, + [141643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9478), 1, - anon_sym_BQUOTE2, + ACTIONS(9468), 1, + sym_raw_string_end, STATE(5508), 1, sym_comment, - [141591] = 3, + [141653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9480), 1, + ACTIONS(9470), 1, anon_sym_RBRACE, STATE(5509), 1, sym_comment, - [141601] = 3, + [141663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9482), 1, - anon_sym_SQUOTE2, + ACTIONS(9472), 1, + anon_sym_LT, STATE(5510), 1, sym_comment, - [141611] = 1, + [141673] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9474), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5511), 1, + sym_comment, + [141683] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9476), 1, + anon_sym_LPAREN2, + STATE(5512), 1, + sym_comment, + [141693] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9478), 1, + anon_sym_BQUOTE2, + STATE(5513), 1, + sym_comment, + [141703] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_record, + STATE(5514), 1, + sym_comment, + [141713] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9480), 1, + anon_sym_GT2, + STATE(5515), 1, + sym_comment, + [141723] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9482), 1, + anon_sym_RBRACK, + STATE(5516), 1, + sym_comment, + [141733] = 3, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(9484), 1, + anon_sym_RBRACK, + STATE(5517), 1, + sym_comment, + [141743] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9486), 1, + anon_sym_LT, + STATE(5518), 1, + sym_comment, + [141753] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9488), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5519), 1, + sym_comment, + [141763] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2580), 1, + sym__unquoted_pattern_in_record, + STATE(5520), 1, + sym_comment, + [141773] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9490), 1, + anon_sym_RBRACE, + STATE(5521), 1, + sym_comment, + [141783] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9492), 1, + sym_raw_string_end, + STATE(5522), 1, + sym_comment, + [141793] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9494), 1, + anon_sym_DQUOTE, + STATE(5523), 1, + sym_comment, + [141803] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9496), 1, + anon_sym_SQUOTE2, + STATE(5524), 1, + sym_comment, + [141813] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9498), 1, + anon_sym_BQUOTE2, + STATE(5525), 1, + sym_comment, + [141823] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6465), 1, + anon_sym_EQ, + STATE(5526), 1, + sym_comment, + [141833] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9500), 1, + anon_sym_RPAREN, + STATE(5527), 1, + sym_comment, + [141843] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9502), 1, + anon_sym_RBRACK, + STATE(5528), 1, + sym_comment, + [141853] = 1, + ACTIONS(9504), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1277)] = 0, - [SMALL_STATE(1278)] = 73, - [SMALL_STATE(1279)] = 212, - [SMALL_STATE(1280)] = 285, - [SMALL_STATE(1281)] = 428, - [SMALL_STATE(1282)] = 571, - [SMALL_STATE(1283)] = 644, - [SMALL_STATE(1284)] = 717, - [SMALL_STATE(1285)] = 790, - [SMALL_STATE(1286)] = 863, - [SMALL_STATE(1287)] = 936, - [SMALL_STATE(1288)] = 1009, - [SMALL_STATE(1289)] = 1082, - [SMALL_STATE(1290)] = 1155, - [SMALL_STATE(1291)] = 1294, - [SMALL_STATE(1292)] = 1367, - [SMALL_STATE(1293)] = 1444, - [SMALL_STATE(1294)] = 1517, - [SMALL_STATE(1295)] = 1590, - [SMALL_STATE(1296)] = 1663, - [SMALL_STATE(1297)] = 1736, - [SMALL_STATE(1298)] = 1809, - [SMALL_STATE(1299)] = 1882, - [SMALL_STATE(1300)] = 1955, - [SMALL_STATE(1301)] = 2028, - [SMALL_STATE(1302)] = 2171, - [SMALL_STATE(1303)] = 2244, - [SMALL_STATE(1304)] = 2317, - [SMALL_STATE(1305)] = 2390, - [SMALL_STATE(1306)] = 2463, - [SMALL_STATE(1307)] = 2536, - [SMALL_STATE(1308)] = 2609, - [SMALL_STATE(1309)] = 2752, - [SMALL_STATE(1310)] = 2825, - [SMALL_STATE(1311)] = 2898, - [SMALL_STATE(1312)] = 2971, - [SMALL_STATE(1313)] = 3110, - [SMALL_STATE(1314)] = 3183, - [SMALL_STATE(1315)] = 3256, - [SMALL_STATE(1316)] = 3329, - [SMALL_STATE(1317)] = 3402, - [SMALL_STATE(1318)] = 3475, - [SMALL_STATE(1319)] = 3548, - [SMALL_STATE(1320)] = 3621, - [SMALL_STATE(1321)] = 3694, - [SMALL_STATE(1322)] = 3783, - [SMALL_STATE(1323)] = 3856, - [SMALL_STATE(1324)] = 3941, - [SMALL_STATE(1325)] = 4014, - [SMALL_STATE(1326)] = 4093, - [SMALL_STATE(1327)] = 4166, - [SMALL_STATE(1328)] = 4241, - [SMALL_STATE(1329)] = 4314, - [SMALL_STATE(1330)] = 4413, - [SMALL_STATE(1331)] = 4486, - [SMALL_STATE(1332)] = 4587, - [SMALL_STATE(1333)] = 4660, - [SMALL_STATE(1334)] = 4763, - [SMALL_STATE(1335)] = 4836, - [SMALL_STATE(1336)] = 4927, - [SMALL_STATE(1337)] = 5000, - [SMALL_STATE(1338)] = 5073, - [SMALL_STATE(1339)] = 5146, - [SMALL_STATE(1340)] = 5229, - [SMALL_STATE(1341)] = 5302, - [SMALL_STATE(1342)] = 5395, - [SMALL_STATE(1343)] = 5468, - [SMALL_STATE(1344)] = 5563, - [SMALL_STATE(1345)] = 5636, - [SMALL_STATE(1346)] = 5733, - [SMALL_STATE(1347)] = 5806, - [SMALL_STATE(1348)] = 5879, - [SMALL_STATE(1349)] = 5952, - [SMALL_STATE(1350)] = 6025, - [SMALL_STATE(1351)] = 6098, - [SMALL_STATE(1352)] = 6171, - [SMALL_STATE(1353)] = 6244, - [SMALL_STATE(1354)] = 6317, - [SMALL_STATE(1355)] = 6395, - [SMALL_STATE(1356)] = 6469, - [SMALL_STATE(1357)] = 6547, - [SMALL_STATE(1358)] = 6695, - [SMALL_STATE(1359)] = 6769, - [SMALL_STATE(1360)] = 6847, - [SMALL_STATE(1361)] = 6987, - [SMALL_STATE(1362)] = 7064, - [SMALL_STATE(1363)] = 7141, - [SMALL_STATE(1364)] = 7212, - [SMALL_STATE(1365)] = 7349, - [SMALL_STATE(1366)] = 7428, - [SMALL_STATE(1367)] = 7503, - [SMALL_STATE(1368)] = 7574, - [SMALL_STATE(1369)] = 7711, - [SMALL_STATE(1370)] = 7848, - [SMALL_STATE(1371)] = 7985, - [SMALL_STATE(1372)] = 8122, - [SMALL_STATE(1373)] = 8199, - [SMALL_STATE(1374)] = 8276, - [SMALL_STATE(1375)] = 8349, - [SMALL_STATE(1376)] = 8422, - [SMALL_STATE(1377)] = 8556, - [SMALL_STATE(1378)] = 8630, - [SMALL_STATE(1379)] = 8764, - [SMALL_STATE(1380)] = 8834, - [SMALL_STATE(1381)] = 8904, - [SMALL_STATE(1382)] = 9046, - [SMALL_STATE(1383)] = 9186, - [SMALL_STATE(1384)] = 9320, - [SMALL_STATE(1385)] = 9390, - [SMALL_STATE(1386)] = 9460, - [SMALL_STATE(1387)] = 9602, - [SMALL_STATE(1388)] = 9672, - [SMALL_STATE(1389)] = 9742, - [SMALL_STATE(1390)] = 9818, - [SMALL_STATE(1391)] = 9952, - [SMALL_STATE(1392)] = 10086, - [SMALL_STATE(1393)] = 10160, - [SMALL_STATE(1394)] = 10245, - [SMALL_STATE(1395)] = 10332, - [SMALL_STATE(1396)] = 10401, - [SMALL_STATE(1397)] = 10488, - [SMALL_STATE(1398)] = 10557, - [SMALL_STATE(1399)] = 10639, - [SMALL_STATE(1400)] = 10711, - [SMALL_STATE(1401)] = 10785, - [SMALL_STATE(1402)] = 10869, - [SMALL_STATE(1403)] = 10951, - [SMALL_STATE(1404)] = 11022, - [SMALL_STATE(1405)] = 11089, - [SMALL_STATE(1406)] = 11160, - [SMALL_STATE(1407)] = 11285, - [SMALL_STATE(1408)] = 11418, - [SMALL_STATE(1409)] = 11543, - [SMALL_STATE(1410)] = 11624, - [SMALL_STATE(1411)] = 11705, - [SMALL_STATE(1412)] = 11776, - [SMALL_STATE(1413)] = 11845, - [SMALL_STATE(1414)] = 11914, - [SMALL_STATE(1415)] = 11994, - [SMALL_STATE(1416)] = 12062, - [SMALL_STATE(1417)] = 12132, - [SMALL_STATE(1418)] = 12202, - [SMALL_STATE(1419)] = 12270, - [SMALL_STATE(1420)] = 12336, - [SMALL_STATE(1421)] = 12402, - [SMALL_STATE(1422)] = 12467, - [SMALL_STATE(1423)] = 12536, - [SMALL_STATE(1424)] = 12665, - [SMALL_STATE(1425)] = 12794, - [SMALL_STATE(1426)] = 12863, - [SMALL_STATE(1427)] = 12988, - [SMALL_STATE(1428)] = 13117, - [SMALL_STATE(1429)] = 13184, - [SMALL_STATE(1430)] = 13251, - [SMALL_STATE(1431)] = 13316, - [SMALL_STATE(1432)] = 13445, - [SMALL_STATE(1433)] = 13510, - [SMALL_STATE(1434)] = 13589, - [SMALL_STATE(1435)] = 13653, - [SMALL_STATE(1436)] = 13719, - [SMALL_STATE(1437)] = 13783, - [SMALL_STATE(1438)] = 13849, - [SMALL_STATE(1439)] = 13913, - [SMALL_STATE(1440)] = 13981, - [SMALL_STATE(1441)] = 14049, - [SMALL_STATE(1442)] = 14114, - [SMALL_STATE(1443)] = 14213, - [SMALL_STATE(1444)] = 14312, - [SMALL_STATE(1445)] = 14375, - [SMALL_STATE(1446)] = 14438, - [SMALL_STATE(1447)] = 14509, - [SMALL_STATE(1448)] = 14572, - [SMALL_STATE(1449)] = 14643, - [SMALL_STATE(1450)] = 14708, - [SMALL_STATE(1451)] = 14802, - [SMALL_STATE(1452)] = 14864, - [SMALL_STATE(1453)] = 14962, - [SMALL_STATE(1454)] = 15032, - [SMALL_STATE(1455)] = 15102, - [SMALL_STATE(1456)] = 15196, - [SMALL_STATE(1457)] = 15294, - [SMALL_STATE(1458)] = 15356, - [SMALL_STATE(1459)] = 15422, - [SMALL_STATE(1460)] = 15516, - [SMALL_STATE(1461)] = 15588, - [SMALL_STATE(1462)] = 15654, - [SMALL_STATE(1463)] = 15716, - [SMALL_STATE(1464)] = 15783, - [SMALL_STATE(1465)] = 15846, - [SMALL_STATE(1466)] = 15913, - [SMALL_STATE(1467)] = 15980, - [SMALL_STATE(1468)] = 16047, - [SMALL_STATE(1469)] = 16114, - [SMALL_STATE(1470)] = 16181, - [SMALL_STATE(1471)] = 16248, - [SMALL_STATE(1472)] = 16315, - [SMALL_STATE(1473)] = 16382, - [SMALL_STATE(1474)] = 16449, - [SMALL_STATE(1475)] = 16514, - [SMALL_STATE(1476)] = 16577, - [SMALL_STATE(1477)] = 16640, - [SMALL_STATE(1478)] = 16711, - [SMALL_STATE(1479)] = 16778, - [SMALL_STATE(1480)] = 16843, - [SMALL_STATE(1481)] = 16910, - [SMALL_STATE(1482)] = 16974, - [SMALL_STATE(1483)] = 17038, - [SMALL_STATE(1484)] = 17102, - [SMALL_STATE(1485)] = 17166, - [SMALL_STATE(1486)] = 17230, - [SMALL_STATE(1487)] = 17292, - [SMALL_STATE(1488)] = 17352, - [SMALL_STATE(1489)] = 17414, - [SMALL_STATE(1490)] = 17478, - [SMALL_STATE(1491)] = 17538, - [SMALL_STATE(1492)] = 17602, - [SMALL_STATE(1493)] = 17662, - [SMALL_STATE(1494)] = 17722, - [SMALL_STATE(1495)] = 17786, - [SMALL_STATE(1496)] = 17850, - [SMALL_STATE(1497)] = 17910, - [SMALL_STATE(1498)] = 17974, - [SMALL_STATE(1499)] = 18038, - [SMALL_STATE(1500)] = 18100, - [SMALL_STATE(1501)] = 18187, - [SMALL_STATE(1502)] = 18280, - [SMALL_STATE(1503)] = 18341, - [SMALL_STATE(1504)] = 18404, - [SMALL_STATE(1505)] = 18463, - [SMALL_STATE(1506)] = 18550, - [SMALL_STATE(1507)] = 18643, - [SMALL_STATE(1508)] = 18704, - [SMALL_STATE(1509)] = 18795, - [SMALL_STATE(1510)] = 18882, - [SMALL_STATE(1511)] = 18969, - [SMALL_STATE(1512)] = 19028, - [SMALL_STATE(1513)] = 19087, - [SMALL_STATE(1514)] = 19146, - [SMALL_STATE(1515)] = 19209, - [SMALL_STATE(1516)] = 19270, - [SMALL_STATE(1517)] = 19333, - [SMALL_STATE(1518)] = 19394, - [SMALL_STATE(1519)] = 19455, - [SMALL_STATE(1520)] = 19518, - [SMALL_STATE(1521)] = 19605, - [SMALL_STATE(1522)] = 19692, - [SMALL_STATE(1523)] = 19779, - [SMALL_STATE(1524)] = 19842, - [SMALL_STATE(1525)] = 19905, - [SMALL_STATE(1526)] = 19968, - [SMALL_STATE(1527)] = 20055, - [SMALL_STATE(1528)] = 20118, - [SMALL_STATE(1529)] = 20177, - [SMALL_STATE(1530)] = 20240, - [SMALL_STATE(1531)] = 20316, - [SMALL_STATE(1532)] = 20398, - [SMALL_STATE(1533)] = 20482, - [SMALL_STATE(1534)] = 20562, - [SMALL_STATE(1535)] = 20642, - [SMALL_STATE(1536)] = 20716, - [SMALL_STATE(1537)] = 20796, - [SMALL_STATE(1538)] = 20876, - [SMALL_STATE(1539)] = 20956, - [SMALL_STATE(1540)] = 21036, - [SMALL_STATE(1541)] = 21116, - [SMALL_STATE(1542)] = 21192, - [SMALL_STATE(1543)] = 21266, - [SMALL_STATE(1544)] = 21340, - [SMALL_STATE(1545)] = 21412, - [SMALL_STATE(1546)] = 21480, - [SMALL_STATE(1547)] = 21546, - [SMALL_STATE(1548)] = 21610, - [SMALL_STATE(1549)] = 21672, - [SMALL_STATE(1550)] = 21758, - [SMALL_STATE(1551)] = 21842, - [SMALL_STATE(1552)] = 21930, - [SMALL_STATE(1553)] = 22016, - [SMALL_STATE(1554)] = 22106, - [SMALL_STATE(1555)] = 22194, - [SMALL_STATE(1556)] = 22272, - [SMALL_STATE(1557)] = 22348, - [SMALL_STATE(1558)] = 22420, - [SMALL_STATE(1559)] = 22490, - [SMALL_STATE(1560)] = 22570, - [SMALL_STATE(1561)] = 22648, - [SMALL_STATE(1562)] = 22730, - [SMALL_STATE(1563)] = 22810, - [SMALL_STATE(1564)] = 22894, - [SMALL_STATE(1565)] = 22976, - [SMALL_STATE(1566)] = 23056, - [SMALL_STATE(1567)] = 23132, - [SMALL_STATE(1568)] = 23212, - [SMALL_STATE(1569)] = 23286, - [SMALL_STATE(1570)] = 23354, - [SMALL_STATE(1571)] = 23418, - [SMALL_STATE(1572)] = 23504, - [SMALL_STATE(1573)] = 23592, - [SMALL_STATE(1574)] = 23672, - [SMALL_STATE(1575)] = 23762, - [SMALL_STATE(1576)] = 23840, - [SMALL_STATE(1577)] = 23920, - [SMALL_STATE(1578)] = 23992, - [SMALL_STATE(1579)] = 24072, - [SMALL_STATE(1580)] = 24154, - [SMALL_STATE(1581)] = 24238, - [SMALL_STATE(1582)] = 24312, - [SMALL_STATE(1583)] = 24384, - [SMALL_STATE(1584)] = 24450, - [SMALL_STATE(1585)] = 24512, - [SMALL_STATE(1586)] = 24596, - [SMALL_STATE(1587)] = 24682, - [SMALL_STATE(1588)] = 24770, - [SMALL_STATE(1589)] = 24846, - [SMALL_STATE(1590)] = 24916, - [SMALL_STATE(1591)] = 24994, - [SMALL_STATE(1592)] = 25074, - [SMALL_STATE(1593)] = 25156, - [SMALL_STATE(1594)] = 25232, - [SMALL_STATE(1595)] = 25306, - [SMALL_STATE(1596)] = 25380, - [SMALL_STATE(1597)] = 25452, - [SMALL_STATE(1598)] = 25520, - [SMALL_STATE(1599)] = 25586, - [SMALL_STATE(1600)] = 25650, - [SMALL_STATE(1601)] = 25712, - [SMALL_STATE(1602)] = 25798, - [SMALL_STATE(1603)] = 25882, - [SMALL_STATE(1604)] = 25970, - [SMALL_STATE(1605)] = 26056, - [SMALL_STATE(1606)] = 26146, - [SMALL_STATE(1607)] = 26234, - [SMALL_STATE(1608)] = 26312, - [SMALL_STATE(1609)] = 26392, - [SMALL_STATE(1610)] = 26464, - [SMALL_STATE(1611)] = 26534, - [SMALL_STATE(1612)] = 26614, - [SMALL_STATE(1613)] = 26692, - [SMALL_STATE(1614)] = 26774, - [SMALL_STATE(1615)] = 26854, - [SMALL_STATE(1616)] = 26938, - [SMALL_STATE(1617)] = 27020, - [SMALL_STATE(1618)] = 27100, - [SMALL_STATE(1619)] = 27180, - [SMALL_STATE(1620)] = 27254, - [SMALL_STATE(1621)] = 27326, - [SMALL_STATE(1622)] = 27392, - [SMALL_STATE(1623)] = 27454, - [SMALL_STATE(1624)] = 27538, - [SMALL_STATE(1625)] = 27624, - [SMALL_STATE(1626)] = 27712, - [SMALL_STATE(1627)] = 27788, - [SMALL_STATE(1628)] = 27858, - [SMALL_STATE(1629)] = 27936, - [SMALL_STATE(1630)] = 28016, - [SMALL_STATE(1631)] = 28098, - [SMALL_STATE(1632)] = 28178, - [SMALL_STATE(1633)] = 28238, - [SMALL_STATE(1634)] = 28298, - [SMALL_STATE(1635)] = 28378, - [SMALL_STATE(1636)] = 28438, - [SMALL_STATE(1637)] = 28518, - [SMALL_STATE(1638)] = 28598, - [SMALL_STATE(1639)] = 28678, - [SMALL_STATE(1640)] = 28758, - [SMALL_STATE(1641)] = 28838, - [SMALL_STATE(1642)] = 28918, - [SMALL_STATE(1643)] = 28998, - [SMALL_STATE(1644)] = 29078, - [SMALL_STATE(1645)] = 29158, - [SMALL_STATE(1646)] = 29238, - [SMALL_STATE(1647)] = 29318, - [SMALL_STATE(1648)] = 29398, - [SMALL_STATE(1649)] = 29470, - [SMALL_STATE(1650)] = 29540, - [SMALL_STATE(1651)] = 29604, - [SMALL_STATE(1652)] = 29664, - [SMALL_STATE(1653)] = 29746, - [SMALL_STATE(1654)] = 29830, - [SMALL_STATE(1655)] = 29916, - [SMALL_STATE(1656)] = 29990, - [SMALL_STATE(1657)] = 30058, - [SMALL_STATE(1658)] = 30134, - [SMALL_STATE(1659)] = 30212, - [SMALL_STATE(1660)] = 30292, - [SMALL_STATE(1661)] = 30372, - [SMALL_STATE(1662)] = 30460, - [SMALL_STATE(1663)] = 30540, - [SMALL_STATE(1664)] = 30620, - [SMALL_STATE(1665)] = 30696, - [SMALL_STATE(1666)] = 30776, - [SMALL_STATE(1667)] = 30836, - [SMALL_STATE(1668)] = 30910, - [SMALL_STATE(1669)] = 30978, - [SMALL_STATE(1670)] = 31042, - [SMALL_STATE(1671)] = 31122, - [SMALL_STATE(1672)] = 31202, - [SMALL_STATE(1673)] = 31288, - [SMALL_STATE(1674)] = 31376, - [SMALL_STATE(1675)] = 31456, - [SMALL_STATE(1676)] = 31546, - [SMALL_STATE(1677)] = 31626, - [SMALL_STATE(1678)] = 31706, - [SMALL_STATE(1679)] = 31784, - [SMALL_STATE(1680)] = 31844, - [SMALL_STATE(1681)] = 31924, - [SMALL_STATE(1682)] = 32004, - [SMALL_STATE(1683)] = 32084, - [SMALL_STATE(1684)] = 32156, - [SMALL_STATE(1685)] = 32236, - [SMALL_STATE(1686)] = 32324, - [SMALL_STATE(1687)] = 32404, - [SMALL_STATE(1688)] = 32484, - [SMALL_STATE(1689)] = 32564, - [SMALL_STATE(1690)] = 32644, - [SMALL_STATE(1691)] = 32724, - [SMALL_STATE(1692)] = 32804, - [SMALL_STATE(1693)] = 32884, - [SMALL_STATE(1694)] = 32964, - [SMALL_STATE(1695)] = 33051, - [SMALL_STATE(1696)] = 33128, - [SMALL_STATE(1697)] = 33215, - [SMALL_STATE(1698)] = 33286, - [SMALL_STATE(1699)] = 33359, - [SMALL_STATE(1700)] = 33430, - [SMALL_STATE(1701)] = 33517, - [SMALL_STATE(1702)] = 33604, - [SMALL_STATE(1703)] = 33691, - [SMALL_STATE(1704)] = 33778, - [SMALL_STATE(1705)] = 33849, - [SMALL_STATE(1706)] = 33918, - [SMALL_STATE(1707)] = 33981, - [SMALL_STATE(1708)] = 34040, - [SMALL_STATE(1709)] = 34121, - [SMALL_STATE(1710)] = 34204, - [SMALL_STATE(1711)] = 34289, - [SMALL_STATE(1712)] = 34362, - [SMALL_STATE(1713)] = 34429, - [SMALL_STATE(1714)] = 34504, - [SMALL_STATE(1715)] = 34591, - [SMALL_STATE(1716)] = 34668, - [SMALL_STATE(1717)] = 34747, - [SMALL_STATE(1718)] = 34834, - [SMALL_STATE(1719)] = 34921, - [SMALL_STATE(1720)] = 35008, - [SMALL_STATE(1721)] = 35095, - [SMALL_STATE(1722)] = 35165, - [SMALL_STATE(1723)] = 35229, - [SMALL_STATE(1724)] = 35289, - [SMALL_STATE(1725)] = 35371, - [SMALL_STATE(1726)] = 35453, - [SMALL_STATE(1727)] = 35523, - [SMALL_STATE(1728)] = 35605, - [SMALL_STATE(1729)] = 35667, - [SMALL_STATE(1730)] = 35731, - [SMALL_STATE(1731)] = 35791, - [SMALL_STATE(1732)] = 35855, - [SMALL_STATE(1733)] = 35925, - [SMALL_STATE(1734)] = 35995, - [SMALL_STATE(1735)] = 36066, - [SMALL_STATE(1736)] = 36133, - [SMALL_STATE(1737)] = 36190, - [SMALL_STATE(1738)] = 36257, - [SMALL_STATE(1739)] = 36312, - [SMALL_STATE(1740)] = 36375, - [SMALL_STATE(1741)] = 36430, - [SMALL_STATE(1742)] = 36497, - [SMALL_STATE(1743)] = 36552, - [SMALL_STATE(1744)] = 36631, - [SMALL_STATE(1745)] = 36710, - [SMALL_STATE(1746)] = 36789, - [SMALL_STATE(1747)] = 36868, - [SMALL_STATE(1748)] = 36935, - [SMALL_STATE(1749)] = 37002, - [SMALL_STATE(1750)] = 37069, - [SMALL_STATE(1751)] = 37124, - [SMALL_STATE(1752)] = 37179, - [SMALL_STATE(1753)] = 37234, - [SMALL_STATE(1754)] = 37293, - [SMALL_STATE(1755)] = 37372, - [SMALL_STATE(1756)] = 37435, - [SMALL_STATE(1757)] = 37496, - [SMALL_STATE(1758)] = 37553, - [SMALL_STATE(1759)] = 37612, - [SMALL_STATE(1760)] = 37693, - [SMALL_STATE(1761)] = 37772, - [SMALL_STATE(1762)] = 37841, - [SMALL_STATE(1763)] = 37904, - [SMALL_STATE(1764)] = 37965, - [SMALL_STATE(1765)] = 38036, - [SMALL_STATE(1766)] = 38115, - [SMALL_STATE(1767)] = 38186, - [SMALL_STATE(1768)] = 38265, - [SMALL_STATE(1769)] = 38344, - [SMALL_STATE(1770)] = 38415, - [SMALL_STATE(1771)] = 38494, - [SMALL_STATE(1772)] = 38575, - [SMALL_STATE(1773)] = 38634, - [SMALL_STATE(1774)] = 38713, - [SMALL_STATE(1775)] = 38772, - [SMALL_STATE(1776)] = 38831, - [SMALL_STATE(1777)] = 38902, - [SMALL_STATE(1778)] = 38980, - [SMALL_STATE(1779)] = 39038, - [SMALL_STATE(1780)] = 39106, - [SMALL_STATE(1781)] = 39174, - [SMALL_STATE(1782)] = 39242, - [SMALL_STATE(1783)] = 39302, - [SMALL_STATE(1784)] = 39380, - [SMALL_STATE(1785)] = 39438, - [SMALL_STATE(1786)] = 39506, - [SMALL_STATE(1787)] = 39574, - [SMALL_STATE(1788)] = 39652, - [SMALL_STATE(1789)] = 39730, - [SMALL_STATE(1790)] = 39788, - [SMALL_STATE(1791)] = 39842, - [SMALL_STATE(1792)] = 39896, - [SMALL_STATE(1793)] = 39950, - [SMALL_STATE(1794)] = 40004, - [SMALL_STATE(1795)] = 40058, - [SMALL_STATE(1796)] = 40112, - [SMALL_STATE(1797)] = 40190, - [SMALL_STATE(1798)] = 40268, - [SMALL_STATE(1799)] = 40324, - [SMALL_STATE(1800)] = 40402, - [SMALL_STATE(1801)] = 40470, - [SMALL_STATE(1802)] = 40548, - [SMALL_STATE(1803)] = 40626, - [SMALL_STATE(1804)] = 40680, - [SMALL_STATE(1805)] = 40734, - [SMALL_STATE(1806)] = 40790, - [SMALL_STATE(1807)] = 40868, - [SMALL_STATE(1808)] = 40924, - [SMALL_STATE(1809)] = 40980, - [SMALL_STATE(1810)] = 41036, - [SMALL_STATE(1811)] = 41092, - [SMALL_STATE(1812)] = 41170, - [SMALL_STATE(1813)] = 41238, - [SMALL_STATE(1814)] = 41292, - [SMALL_STATE(1815)] = 41370, - [SMALL_STATE(1816)] = 41435, - [SMALL_STATE(1817)] = 41488, - [SMALL_STATE(1818)] = 41553, - [SMALL_STATE(1819)] = 41618, - [SMALL_STATE(1820)] = 41669, - [SMALL_STATE(1821)] = 41724, - [SMALL_STATE(1822)] = 41775, - [SMALL_STATE(1823)] = 41828, - [SMALL_STATE(1824)] = 41879, - [SMALL_STATE(1825)] = 41932, - [SMALL_STATE(1826)] = 41997, - [SMALL_STATE(1827)] = 42050, - [SMALL_STATE(1828)] = 42101, - [SMALL_STATE(1829)] = 42156, - [SMALL_STATE(1830)] = 42211, - [SMALL_STATE(1831)] = 42268, - [SMALL_STATE(1832)] = 42319, - [SMALL_STATE(1833)] = 42376, - [SMALL_STATE(1834)] = 42441, - [SMALL_STATE(1835)] = 42494, - [SMALL_STATE(1836)] = 42547, - [SMALL_STATE(1837)] = 42612, - [SMALL_STATE(1838)] = 42663, - [SMALL_STATE(1839)] = 42728, - [SMALL_STATE(1840)] = 42783, - [SMALL_STATE(1841)] = 42836, - [SMALL_STATE(1842)] = 42889, - [SMALL_STATE(1843)] = 42954, - [SMALL_STATE(1844)] = 43019, - [SMALL_STATE(1845)] = 43084, - [SMALL_STATE(1846)] = 43149, - [SMALL_STATE(1847)] = 43214, - [SMALL_STATE(1848)] = 43267, - [SMALL_STATE(1849)] = 43330, - [SMALL_STATE(1850)] = 43395, - [SMALL_STATE(1851)] = 43460, - [SMALL_STATE(1852)] = 43525, - [SMALL_STATE(1853)] = 43590, - [SMALL_STATE(1854)] = 43655, - [SMALL_STATE(1855)] = 43718, - [SMALL_STATE(1856)] = 43783, - [SMALL_STATE(1857)] = 43848, - [SMALL_STATE(1858)] = 43913, - [SMALL_STATE(1859)] = 43978, - [SMALL_STATE(1860)] = 44043, - [SMALL_STATE(1861)] = 44108, - [SMALL_STATE(1862)] = 44173, - [SMALL_STATE(1863)] = 44238, - [SMALL_STATE(1864)] = 44303, - [SMALL_STATE(1865)] = 44355, - [SMALL_STATE(1866)] = 44407, - [SMALL_STATE(1867)] = 44459, - [SMALL_STATE(1868)] = 44511, - [SMALL_STATE(1869)] = 44563, - [SMALL_STATE(1870)] = 44617, - [SMALL_STATE(1871)] = 44671, - [SMALL_STATE(1872)] = 44733, - [SMALL_STATE(1873)] = 44785, - [SMALL_STATE(1874)] = 44847, - [SMALL_STATE(1875)] = 44907, - [SMALL_STATE(1876)] = 44967, - [SMALL_STATE(1877)] = 45027, - [SMALL_STATE(1878)] = 45079, - [SMALL_STATE(1879)] = 45131, - [SMALL_STATE(1880)] = 45183, - [SMALL_STATE(1881)] = 45235, - [SMALL_STATE(1882)] = 45287, - [SMALL_STATE(1883)] = 45339, - [SMALL_STATE(1884)] = 45391, - [SMALL_STATE(1885)] = 45443, - [SMALL_STATE(1886)] = 45495, - [SMALL_STATE(1887)] = 45555, - [SMALL_STATE(1888)] = 45607, - [SMALL_STATE(1889)] = 45659, - [SMALL_STATE(1890)] = 45711, - [SMALL_STATE(1891)] = 45763, - [SMALL_STATE(1892)] = 45815, - [SMALL_STATE(1893)] = 45867, - [SMALL_STATE(1894)] = 45919, - [SMALL_STATE(1895)] = 45971, - [SMALL_STATE(1896)] = 46022, - [SMALL_STATE(1897)] = 46073, - [SMALL_STATE(1898)] = 46132, - [SMALL_STATE(1899)] = 46183, - [SMALL_STATE(1900)] = 46234, - [SMALL_STATE(1901)] = 46293, - [SMALL_STATE(1902)] = 46352, - [SMALL_STATE(1903)] = 46451, - [SMALL_STATE(1904)] = 46510, - [SMALL_STATE(1905)] = 46565, - [SMALL_STATE(1906)] = 46616, - [SMALL_STATE(1907)] = 46667, - [SMALL_STATE(1908)] = 46726, - [SMALL_STATE(1909)] = 46785, - [SMALL_STATE(1910)] = 46844, - [SMALL_STATE(1911)] = 46895, - [SMALL_STATE(1912)] = 46946, - [SMALL_STATE(1913)] = 46997, - [SMALL_STATE(1914)] = 47048, - [SMALL_STATE(1915)] = 47107, - [SMALL_STATE(1916)] = 47158, - [SMALL_STATE(1917)] = 47209, - [SMALL_STATE(1918)] = 47260, - [SMALL_STATE(1919)] = 47311, - [SMALL_STATE(1920)] = 47368, - [SMALL_STATE(1921)] = 47427, - [SMALL_STATE(1922)] = 47486, - [SMALL_STATE(1923)] = 47537, - [SMALL_STATE(1924)] = 47592, - [SMALL_STATE(1925)] = 47643, - [SMALL_STATE(1926)] = 47702, - [SMALL_STATE(1927)] = 47753, - [SMALL_STATE(1928)] = 47804, - [SMALL_STATE(1929)] = 47859, - [SMALL_STATE(1930)] = 47910, - [SMALL_STATE(1931)] = 47969, - [SMALL_STATE(1932)] = 48020, - [SMALL_STATE(1933)] = 48079, - [SMALL_STATE(1934)] = 48134, - [SMALL_STATE(1935)] = 48185, - [SMALL_STATE(1936)] = 48244, - [SMALL_STATE(1937)] = 48294, - [SMALL_STATE(1938)] = 48350, - [SMALL_STATE(1939)] = 48400, - [SMALL_STATE(1940)] = 48452, - [SMALL_STATE(1941)] = 48502, - [SMALL_STATE(1942)] = 48558, - [SMALL_STATE(1943)] = 48612, - [SMALL_STATE(1944)] = 48664, - [SMALL_STATE(1945)] = 48760, - [SMALL_STATE(1946)] = 48814, - [SMALL_STATE(1947)] = 48864, - [SMALL_STATE(1948)] = 48916, - [SMALL_STATE(1949)] = 48966, - [SMALL_STATE(1950)] = 49016, - [SMALL_STATE(1951)] = 49070, - [SMALL_STATE(1952)] = 49122, - [SMALL_STATE(1953)] = 49218, - [SMALL_STATE(1954)] = 49272, - [SMALL_STATE(1955)] = 49326, - [SMALL_STATE(1956)] = 49376, - [SMALL_STATE(1957)] = 49429, - [SMALL_STATE(1958)] = 49482, - [SMALL_STATE(1959)] = 49535, - [SMALL_STATE(1960)] = 49588, - [SMALL_STATE(1961)] = 49641, - [SMALL_STATE(1962)] = 49690, - [SMALL_STATE(1963)] = 49743, - [SMALL_STATE(1964)] = 49796, - [SMALL_STATE(1965)] = 49849, - [SMALL_STATE(1966)] = 49902, - [SMALL_STATE(1967)] = 49953, - [SMALL_STATE(1968)] = 50006, - [SMALL_STATE(1969)] = 50057, - [SMALL_STATE(1970)] = 50110, - [SMALL_STATE(1971)] = 50159, - [SMALL_STATE(1972)] = 50214, - [SMALL_STATE(1973)] = 50267, - [SMALL_STATE(1974)] = 50320, - [SMALL_STATE(1975)] = 50375, - [SMALL_STATE(1976)] = 50428, - [SMALL_STATE(1977)] = 50481, - [SMALL_STATE(1978)] = 50534, - [SMALL_STATE(1979)] = 50587, - [SMALL_STATE(1980)] = 50636, - [SMALL_STATE(1981)] = 50687, - [SMALL_STATE(1982)] = 50736, - [SMALL_STATE(1983)] = 50787, - [SMALL_STATE(1984)] = 50840, - [SMALL_STATE(1985)] = 50893, - [SMALL_STATE(1986)] = 50946, - [SMALL_STATE(1987)] = 50999, - [SMALL_STATE(1988)] = 51052, - [SMALL_STATE(1989)] = 51101, - [SMALL_STATE(1990)] = 51196, - [SMALL_STATE(1991)] = 51249, - [SMALL_STATE(1992)] = 51302, - [SMALL_STATE(1993)] = 51351, - [SMALL_STATE(1994)] = 51402, - [SMALL_STATE(1995)] = 51453, - [SMALL_STATE(1996)] = 51502, - [SMALL_STATE(1997)] = 51555, - [SMALL_STATE(1998)] = 51610, - [SMALL_STATE(1999)] = 51667, - [SMALL_STATE(2000)] = 51716, - [SMALL_STATE(2001)] = 51769, - [SMALL_STATE(2002)] = 51822, - [SMALL_STATE(2003)] = 51917, - [SMALL_STATE(2004)] = 51968, - [SMALL_STATE(2005)] = 52023, - [SMALL_STATE(2006)] = 52078, - [SMALL_STATE(2007)] = 52138, - [SMALL_STATE(2008)] = 52186, - [SMALL_STATE(2009)] = 52234, - [SMALL_STATE(2010)] = 52280, - [SMALL_STATE(2011)] = 52328, - [SMALL_STATE(2012)] = 52382, - [SMALL_STATE(2013)] = 52430, - [SMALL_STATE(2014)] = 52482, - [SMALL_STATE(2015)] = 52532, - [SMALL_STATE(2016)] = 52580, - [SMALL_STATE(2017)] = 52634, - [SMALL_STATE(2018)] = 52686, - [SMALL_STATE(2019)] = 52740, - [SMALL_STATE(2020)] = 52796, - [SMALL_STATE(2021)] = 52846, - [SMALL_STATE(2022)] = 52898, - [SMALL_STATE(2023)] = 52950, - [SMALL_STATE(2024)] = 53002, - [SMALL_STATE(2025)] = 53054, - [SMALL_STATE(2026)] = 53102, - [SMALL_STATE(2027)] = 53152, - [SMALL_STATE(2028)] = 53200, - [SMALL_STATE(2029)] = 53254, - [SMALL_STATE(2030)] = 53308, - [SMALL_STATE(2031)] = 53364, - [SMALL_STATE(2032)] = 53412, - [SMALL_STATE(2033)] = 53464, - [SMALL_STATE(2034)] = 53516, - [SMALL_STATE(2035)] = 53582, - [SMALL_STATE(2036)] = 53630, - [SMALL_STATE(2037)] = 53694, - [SMALL_STATE(2038)] = 53752, - [SMALL_STATE(2039)] = 53804, - [SMALL_STATE(2040)] = 53858, - [SMALL_STATE(2041)] = 53906, - [SMALL_STATE(2042)] = 53982, - [SMALL_STATE(2043)] = 54060, - [SMALL_STATE(2044)] = 54110, - [SMALL_STATE(2045)] = 54190, - [SMALL_STATE(2046)] = 54258, - [SMALL_STATE(2047)] = 54320, - [SMALL_STATE(2048)] = 54390, - [SMALL_STATE(2049)] = 54462, - [SMALL_STATE(2050)] = 54536, - [SMALL_STATE(2051)] = 54584, - [SMALL_STATE(2052)] = 54634, - [SMALL_STATE(2053)] = 54682, - [SMALL_STATE(2054)] = 54734, - [SMALL_STATE(2055)] = 54800, - [SMALL_STATE(2056)] = 54864, - [SMALL_STATE(2057)] = 54918, - [SMALL_STATE(2058)] = 54980, - [SMALL_STATE(2059)] = 55038, - [SMALL_STATE(2060)] = 55094, - [SMALL_STATE(2061)] = 55148, - [SMALL_STATE(2062)] = 55200, - [SMALL_STATE(2063)] = 55276, - [SMALL_STATE(2064)] = 55350, - [SMALL_STATE(2065)] = 55428, - [SMALL_STATE(2066)] = 55504, - [SMALL_STATE(2067)] = 55584, - [SMALL_STATE(2068)] = 55662, - [SMALL_STATE(2069)] = 55730, - [SMALL_STATE(2070)] = 55796, - [SMALL_STATE(2071)] = 55858, - [SMALL_STATE(2072)] = 55918, - [SMALL_STATE(2073)] = 55988, - [SMALL_STATE(2074)] = 56056, - [SMALL_STATE(2075)] = 56128, - [SMALL_STATE(2076)] = 56198, - [SMALL_STATE(2077)] = 56272, - [SMALL_STATE(2078)] = 56344, - [SMALL_STATE(2079)] = 56410, - [SMALL_STATE(2080)] = 56474, - [SMALL_STATE(2081)] = 56532, - [SMALL_STATE(2082)] = 56586, - [SMALL_STATE(2083)] = 56662, - [SMALL_STATE(2084)] = 56712, - [SMALL_STATE(2085)] = 56790, - [SMALL_STATE(2086)] = 56840, - [SMALL_STATE(2087)] = 56920, - [SMALL_STATE(2088)] = 56970, - [SMALL_STATE(2089)] = 57038, - [SMALL_STATE(2090)] = 57100, - [SMALL_STATE(2091)] = 57170, - [SMALL_STATE(2092)] = 57242, - [SMALL_STATE(2093)] = 57316, - [SMALL_STATE(2094)] = 57366, - [SMALL_STATE(2095)] = 57430, - [SMALL_STATE(2096)] = 57492, - [SMALL_STATE(2097)] = 57548, - [SMALL_STATE(2098)] = 57600, - [SMALL_STATE(2099)] = 57674, - [SMALL_STATE(2100)] = 57728, - [SMALL_STATE(2101)] = 57804, - [SMALL_STATE(2102)] = 57882, - [SMALL_STATE(2103)] = 57948, - [SMALL_STATE(2104)] = 57996, - [SMALL_STATE(2105)] = 58064, - [SMALL_STATE(2106)] = 58134, - [SMALL_STATE(2107)] = 58206, - [SMALL_STATE(2108)] = 58272, - [SMALL_STATE(2109)] = 58336, - [SMALL_STATE(2110)] = 58400, - [SMALL_STATE(2111)] = 58462, - [SMALL_STATE(2112)] = 58520, - [SMALL_STATE(2113)] = 58576, - [SMALL_STATE(2114)] = 58630, - [SMALL_STATE(2115)] = 58684, - [SMALL_STATE(2116)] = 58736, - [SMALL_STATE(2117)] = 58812, - [SMALL_STATE(2118)] = 58886, - [SMALL_STATE(2119)] = 58964, - [SMALL_STATE(2120)] = 59040, - [SMALL_STATE(2121)] = 59094, - [SMALL_STATE(2122)] = 59174, - [SMALL_STATE(2123)] = 59252, - [SMALL_STATE(2124)] = 59320, - [SMALL_STATE(2125)] = 59386, - [SMALL_STATE(2126)] = 59448, - [SMALL_STATE(2127)] = 59508, - [SMALL_STATE(2128)] = 59562, - [SMALL_STATE(2129)] = 59632, - [SMALL_STATE(2130)] = 59700, - [SMALL_STATE(2131)] = 59772, - [SMALL_STATE(2132)] = 59842, - [SMALL_STATE(2133)] = 59916, - [SMALL_STATE(2134)] = 59988, - [SMALL_STATE(2135)] = 60038, - [SMALL_STATE(2136)] = 60088, - [SMALL_STATE(2137)] = 60152, - [SMALL_STATE(2138)] = 60214, - [SMALL_STATE(2139)] = 60270, - [SMALL_STATE(2140)] = 60322, - [SMALL_STATE(2141)] = 60396, - [SMALL_STATE(2142)] = 60472, - [SMALL_STATE(2143)] = 60550, - [SMALL_STATE(2144)] = 60616, - [SMALL_STATE(2145)] = 60676, - [SMALL_STATE(2146)] = 60744, - [SMALL_STATE(2147)] = 60814, - [SMALL_STATE(2148)] = 60886, - [SMALL_STATE(2149)] = 60934, - [SMALL_STATE(2150)] = 60982, - [SMALL_STATE(2151)] = 61036, - [SMALL_STATE(2152)] = 61088, - [SMALL_STATE(2153)] = 61136, - [SMALL_STATE(2154)] = 61190, - [SMALL_STATE(2155)] = 61254, - [SMALL_STATE(2156)] = 61301, - [SMALL_STATE(2157)] = 61380, - [SMALL_STATE(2158)] = 61427, - [SMALL_STATE(2159)] = 61474, - [SMALL_STATE(2160)] = 61521, - [SMALL_STATE(2161)] = 61568, - [SMALL_STATE(2162)] = 61615, - [SMALL_STATE(2163)] = 61662, - [SMALL_STATE(2164)] = 61709, - [SMALL_STATE(2165)] = 61756, - [SMALL_STATE(2166)] = 61803, - [SMALL_STATE(2167)] = 61850, - [SMALL_STATE(2168)] = 61897, - [SMALL_STATE(2169)] = 61944, - [SMALL_STATE(2170)] = 61991, - [SMALL_STATE(2171)] = 62038, - [SMALL_STATE(2172)] = 62085, - [SMALL_STATE(2173)] = 62132, - [SMALL_STATE(2174)] = 62177, - [SMALL_STATE(2175)] = 62256, - [SMALL_STATE(2176)] = 62303, - [SMALL_STATE(2177)] = 62350, - [SMALL_STATE(2178)] = 62397, - [SMALL_STATE(2179)] = 62444, - [SMALL_STATE(2180)] = 62491, - [SMALL_STATE(2181)] = 62538, - [SMALL_STATE(2182)] = 62585, - [SMALL_STATE(2183)] = 62632, - [SMALL_STATE(2184)] = 62679, - [SMALL_STATE(2185)] = 62728, - [SMALL_STATE(2186)] = 62777, - [SMALL_STATE(2187)] = 62824, - [SMALL_STATE(2188)] = 62871, - [SMALL_STATE(2189)] = 62918, - [SMALL_STATE(2190)] = 62965, - [SMALL_STATE(2191)] = 63044, - [SMALL_STATE(2192)] = 63123, - [SMALL_STATE(2193)] = 63170, - [SMALL_STATE(2194)] = 63217, - [SMALL_STATE(2195)] = 63264, - [SMALL_STATE(2196)] = 63311, - [SMALL_STATE(2197)] = 63390, - [SMALL_STATE(2198)] = 63469, - [SMALL_STATE(2199)] = 63516, - [SMALL_STATE(2200)] = 63563, - [SMALL_STATE(2201)] = 63610, - [SMALL_STATE(2202)] = 63657, - [SMALL_STATE(2203)] = 63704, - [SMALL_STATE(2204)] = 63751, - [SMALL_STATE(2205)] = 63798, - [SMALL_STATE(2206)] = 63849, - [SMALL_STATE(2207)] = 63896, - [SMALL_STATE(2208)] = 63943, - [SMALL_STATE(2209)] = 63991, - [SMALL_STATE(2210)] = 64047, - [SMALL_STATE(2211)] = 64119, - [SMALL_STATE(2212)] = 64211, - [SMALL_STATE(2213)] = 64271, - [SMALL_STATE(2214)] = 64319, - [SMALL_STATE(2215)] = 64393, - [SMALL_STATE(2216)] = 64485, - [SMALL_STATE(2217)] = 64533, - [SMALL_STATE(2218)] = 64581, - [SMALL_STATE(2219)] = 64643, - [SMALL_STATE(2220)] = 64707, - [SMALL_STATE(2221)] = 64773, - [SMALL_STATE(2222)] = 64821, - [SMALL_STATE(2223)] = 64869, - [SMALL_STATE(2224)] = 64937, - [SMALL_STATE(2225)] = 64985, - [SMALL_STATE(2226)] = 65041, - [SMALL_STATE(2227)] = 65089, - [SMALL_STATE(2228)] = 65153, - [SMALL_STATE(2229)] = 65211, - [SMALL_STATE(2230)] = 65271, - [SMALL_STATE(2231)] = 65323, - [SMALL_STATE(2232)] = 65369, - [SMALL_STATE(2233)] = 65439, - [SMALL_STATE(2234)] = 65511, - [SMALL_STATE(2235)] = 65559, - [SMALL_STATE(2236)] = 65625, - [SMALL_STATE(2237)] = 65699, - [SMALL_STATE(2238)] = 65761, - [SMALL_STATE(2239)] = 65853, - [SMALL_STATE(2240)] = 65923, - [SMALL_STATE(2241)] = 65981, - [SMALL_STATE(2242)] = 66029, - [SMALL_STATE(2243)] = 66097, - [SMALL_STATE(2244)] = 66149, - [SMALL_STATE(2245)] = 66241, - [SMALL_STATE(2246)] = 66289, - [SMALL_STATE(2247)] = 66362, - [SMALL_STATE(2248)] = 66435, - [SMALL_STATE(2249)] = 66508, - [SMALL_STATE(2250)] = 66581, - [SMALL_STATE(2251)] = 66654, - [SMALL_STATE(2252)] = 66727, - [SMALL_STATE(2253)] = 66772, - [SMALL_STATE(2254)] = 66823, - [SMALL_STATE(2255)] = 66873, - [SMALL_STATE(2256)] = 66919, - [SMALL_STATE(2257)] = 66965, - [SMALL_STATE(2258)] = 67051, - [SMALL_STATE(2259)] = 67101, - [SMALL_STATE(2260)] = 67151, - [SMALL_STATE(2261)] = 67201, - [SMALL_STATE(2262)] = 67244, - [SMALL_STATE(2263)] = 67287, - [SMALL_STATE(2264)] = 67336, - [SMALL_STATE(2265)] = 67385, - [SMALL_STATE(2266)] = 67434, - [SMALL_STATE(2267)] = 67477, - [SMALL_STATE(2268)] = 67526, - [SMALL_STATE(2269)] = 67569, - [SMALL_STATE(2270)] = 67612, - [SMALL_STATE(2271)] = 67655, - [SMALL_STATE(2272)] = 67698, - [SMALL_STATE(2273)] = 67747, - [SMALL_STATE(2274)] = 67792, - [SMALL_STATE(2275)] = 67835, - [SMALL_STATE(2276)] = 67882, - [SMALL_STATE(2277)] = 67933, - [SMALL_STATE(2278)] = 67982, - [SMALL_STATE(2279)] = 68027, - [SMALL_STATE(2280)] = 68073, - [SMALL_STATE(2281)] = 68115, - [SMALL_STATE(2282)] = 68195, - [SMALL_STATE(2283)] = 68239, - [SMALL_STATE(2284)] = 68281, - [SMALL_STATE(2285)] = 68359, - [SMALL_STATE(2286)] = 68439, - [SMALL_STATE(2287)] = 68480, - [SMALL_STATE(2288)] = 68525, - [SMALL_STATE(2289)] = 68570, - [SMALL_STATE(2290)] = 68614, - [SMALL_STATE(2291)] = 68658, - [SMALL_STATE(2292)] = 68698, - [SMALL_STATE(2293)] = 68780, - [SMALL_STATE(2294)] = 68862, - [SMALL_STATE(2295)] = 68906, - [SMALL_STATE(2296)] = 68950, - [SMALL_STATE(2297)] = 68995, - [SMALL_STATE(2298)] = 69071, - [SMALL_STATE(2299)] = 69115, - [SMALL_STATE(2300)] = 69157, - [SMALL_STATE(2301)] = 69233, - [SMALL_STATE(2302)] = 69279, - [SMALL_STATE(2303)] = 69325, - [SMALL_STATE(2304)] = 69401, - [SMALL_STATE(2305)] = 69477, - [SMALL_STATE(2306)] = 69553, - [SMALL_STATE(2307)] = 69629, - [SMALL_STATE(2308)] = 69705, - [SMALL_STATE(2309)] = 69751, - [SMALL_STATE(2310)] = 69803, - [SMALL_STATE(2311)] = 69879, - [SMALL_STATE(2312)] = 69955, - [SMALL_STATE(2313)] = 70031, - [SMALL_STATE(2314)] = 70107, - [SMALL_STATE(2315)] = 70183, - [SMALL_STATE(2316)] = 70259, - [SMALL_STATE(2317)] = 70335, - [SMALL_STATE(2318)] = 70411, - [SMALL_STATE(2319)] = 70487, - [SMALL_STATE(2320)] = 70563, - [SMALL_STATE(2321)] = 70639, - [SMALL_STATE(2322)] = 70715, - [SMALL_STATE(2323)] = 70791, - [SMALL_STATE(2324)] = 70867, - [SMALL_STATE(2325)] = 70943, - [SMALL_STATE(2326)] = 71019, - [SMALL_STATE(2327)] = 71095, - [SMALL_STATE(2328)] = 71171, - [SMALL_STATE(2329)] = 71247, - [SMALL_STATE(2330)] = 71296, - [SMALL_STATE(2331)] = 71347, - [SMALL_STATE(2332)] = 71396, - [SMALL_STATE(2333)] = 71445, - [SMALL_STATE(2334)] = 71484, - [SMALL_STATE(2335)] = 71530, - [SMALL_STATE(2336)] = 71578, - [SMALL_STATE(2337)] = 71626, - [SMALL_STATE(2338)] = 71696, - [SMALL_STATE(2339)] = 71766, - [SMALL_STATE(2340)] = 71836, - [SMALL_STATE(2341)] = 71906, - [SMALL_STATE(2342)] = 71976, - [SMALL_STATE(2343)] = 72046, - [SMALL_STATE(2344)] = 72086, - [SMALL_STATE(2345)] = 72126, - [SMALL_STATE(2346)] = 72180, - [SMALL_STATE(2347)] = 72228, - [SMALL_STATE(2348)] = 72274, - [SMALL_STATE(2349)] = 72320, - [SMALL_STATE(2350)] = 72366, - [SMALL_STATE(2351)] = 72436, - [SMALL_STATE(2352)] = 72506, - [SMALL_STATE(2353)] = 72576, - [SMALL_STATE(2354)] = 72646, - [SMALL_STATE(2355)] = 72716, - [SMALL_STATE(2356)] = 72786, - [SMALL_STATE(2357)] = 72825, - [SMALL_STATE(2358)] = 72870, - [SMALL_STATE(2359)] = 72915, - [SMALL_STATE(2360)] = 72960, - [SMALL_STATE(2361)] = 73005, - [SMALL_STATE(2362)] = 73056, - [SMALL_STATE(2363)] = 73093, - [SMALL_STATE(2364)] = 73146, - [SMALL_STATE(2365)] = 73183, - [SMALL_STATE(2366)] = 73222, - [SMALL_STATE(2367)] = 73273, - [SMALL_STATE(2368)] = 73320, - [SMALL_STATE(2369)] = 73371, - [SMALL_STATE(2370)] = 73405, - [SMALL_STATE(2371)] = 73443, - [SMALL_STATE(2372)] = 73477, - [SMALL_STATE(2373)] = 73525, - [SMALL_STATE(2374)] = 73573, - [SMALL_STATE(2375)] = 73621, - [SMALL_STATE(2376)] = 73669, - [SMALL_STATE(2377)] = 73719, - [SMALL_STATE(2378)] = 73761, - [SMALL_STATE(2379)] = 73807, - [SMALL_STATE(2380)] = 73841, - [SMALL_STATE(2381)] = 73875, - [SMALL_STATE(2382)] = 73911, - [SMALL_STATE(2383)] = 73945, - [SMALL_STATE(2384)] = 73995, - [SMALL_STATE(2385)] = 74031, - [SMALL_STATE(2386)] = 74065, - [SMALL_STATE(2387)] = 74099, - [SMALL_STATE(2388)] = 74133, - [SMALL_STATE(2389)] = 74171, - [SMALL_STATE(2390)] = 74221, - [SMALL_STATE(2391)] = 74259, - [SMALL_STATE(2392)] = 74299, - [SMALL_STATE(2393)] = 74339, - [SMALL_STATE(2394)] = 74379, - [SMALL_STATE(2395)] = 74413, - [SMALL_STATE(2396)] = 74451, - [SMALL_STATE(2397)] = 74489, - [SMALL_STATE(2398)] = 74524, - [SMALL_STATE(2399)] = 74559, - [SMALL_STATE(2400)] = 74594, - [SMALL_STATE(2401)] = 74629, - [SMALL_STATE(2402)] = 74666, - [SMALL_STATE(2403)] = 74699, - [SMALL_STATE(2404)] = 74732, - [SMALL_STATE(2405)] = 74779, - [SMALL_STATE(2406)] = 74830, - [SMALL_STATE(2407)] = 74877, - [SMALL_STATE(2408)] = 74916, - [SMALL_STATE(2409)] = 74953, - [SMALL_STATE(2410)] = 74992, - [SMALL_STATE(2411)] = 75033, - [SMALL_STATE(2412)] = 75070, - [SMALL_STATE(2413)] = 75109, - [SMALL_STATE(2414)] = 75148, - [SMALL_STATE(2415)] = 75187, - [SMALL_STATE(2416)] = 75226, - [SMALL_STATE(2417)] = 75265, - [SMALL_STATE(2418)] = 75306, - [SMALL_STATE(2419)] = 75353, - [SMALL_STATE(2420)] = 75390, - [SMALL_STATE(2421)] = 75427, - [SMALL_STATE(2422)] = 75474, - [SMALL_STATE(2423)] = 75507, - [SMALL_STATE(2424)] = 75542, - [SMALL_STATE(2425)] = 75589, - [SMALL_STATE(2426)] = 75627, - [SMALL_STATE(2427)] = 75659, - [SMALL_STATE(2428)] = 75699, - [SMALL_STATE(2429)] = 75735, - [SMALL_STATE(2430)] = 75767, - [SMALL_STATE(2431)] = 75805, - [SMALL_STATE(2432)] = 75851, - [SMALL_STATE(2433)] = 75885, - [SMALL_STATE(2434)] = 75923, - [SMALL_STATE(2435)] = 75955, - [SMALL_STATE(2436)] = 76003, - [SMALL_STATE(2437)] = 76051, - [SMALL_STATE(2438)] = 76087, - [SMALL_STATE(2439)] = 76121, - [SMALL_STATE(2440)] = 76161, - [SMALL_STATE(2441)] = 76199, - [SMALL_STATE(2442)] = 76233, - [SMALL_STATE(2443)] = 76271, - [SMALL_STATE(2444)] = 76303, - [SMALL_STATE(2445)] = 76341, - [SMALL_STATE(2446)] = 76377, - [SMALL_STATE(2447)] = 76413, - [SMALL_STATE(2448)] = 76449, - [SMALL_STATE(2449)] = 76483, - [SMALL_STATE(2450)] = 76515, - [SMALL_STATE(2451)] = 76551, - [SMALL_STATE(2452)] = 76585, - [SMALL_STATE(2453)] = 76619, - [SMALL_STATE(2454)] = 76651, - [SMALL_STATE(2455)] = 76683, - [SMALL_STATE(2456)] = 76717, - [SMALL_STATE(2457)] = 76755, - [SMALL_STATE(2458)] = 76795, - [SMALL_STATE(2459)] = 76833, - [SMALL_STATE(2460)] = 76865, - [SMALL_STATE(2461)] = 76897, - [SMALL_STATE(2462)] = 76945, - [SMALL_STATE(2463)] = 76983, - [SMALL_STATE(2464)] = 77014, - [SMALL_STATE(2465)] = 77045, - [SMALL_STATE(2466)] = 77086, - [SMALL_STATE(2467)] = 77119, - [SMALL_STATE(2468)] = 77150, - [SMALL_STATE(2469)] = 77195, - [SMALL_STATE(2470)] = 77240, - [SMALL_STATE(2471)] = 77285, - [SMALL_STATE(2472)] = 77330, - [SMALL_STATE(2473)] = 77361, - [SMALL_STATE(2474)] = 77398, - [SMALL_STATE(2475)] = 77435, - [SMALL_STATE(2476)] = 77470, - [SMALL_STATE(2477)] = 77503, - [SMALL_STATE(2478)] = 77534, - [SMALL_STATE(2479)] = 77569, - [SMALL_STATE(2480)] = 77608, - [SMALL_STATE(2481)] = 77653, - [SMALL_STATE(2482)] = 77686, - [SMALL_STATE(2483)] = 77723, - [SMALL_STATE(2484)] = 77758, - [SMALL_STATE(2485)] = 77787, - [SMALL_STATE(2486)] = 77816, - [SMALL_STATE(2487)] = 77851, - [SMALL_STATE(2488)] = 77882, - [SMALL_STATE(2489)] = 77913, - [SMALL_STATE(2490)] = 77946, - [SMALL_STATE(2491)] = 77977, - [SMALL_STATE(2492)] = 78008, - [SMALL_STATE(2493)] = 78039, - [SMALL_STATE(2494)] = 78070, - [SMALL_STATE(2495)] = 78101, - [SMALL_STATE(2496)] = 78138, - [SMALL_STATE(2497)] = 78169, - [SMALL_STATE(2498)] = 78204, - [SMALL_STATE(2499)] = 78243, - [SMALL_STATE(2500)] = 78282, - [SMALL_STATE(2501)] = 78311, - [SMALL_STATE(2502)] = 78343, - [SMALL_STATE(2503)] = 78373, - [SMALL_STATE(2504)] = 78403, - [SMALL_STATE(2505)] = 78433, - [SMALL_STATE(2506)] = 78465, - [SMALL_STATE(2507)] = 78493, - [SMALL_STATE(2508)] = 78525, - [SMALL_STATE(2509)] = 78561, - [SMALL_STATE(2510)] = 78601, - [SMALL_STATE(2511)] = 78637, - [SMALL_STATE(2512)] = 78687, - [SMALL_STATE(2513)] = 78719, - [SMALL_STATE(2514)] = 78771, - [SMALL_STATE(2515)] = 78799, - [SMALL_STATE(2516)] = 78837, - [SMALL_STATE(2517)] = 78867, - [SMALL_STATE(2518)] = 78901, - [SMALL_STATE(2519)] = 78933, - [SMALL_STATE(2520)] = 78963, - [SMALL_STATE(2521)] = 78993, - [SMALL_STATE(2522)] = 79023, - [SMALL_STATE(2523)] = 79053, - [SMALL_STATE(2524)] = 79085, - [SMALL_STATE(2525)] = 79113, - [SMALL_STATE(2526)] = 79145, - [SMALL_STATE(2527)] = 79179, - [SMALL_STATE(2528)] = 79213, - [SMALL_STATE(2529)] = 79251, - [SMALL_STATE(2530)] = 79303, - [SMALL_STATE(2531)] = 79355, - [SMALL_STATE(2532)] = 79383, - [SMALL_STATE(2533)] = 79421, - [SMALL_STATE(2534)] = 79455, - [SMALL_STATE(2535)] = 79489, - [SMALL_STATE(2536)] = 79541, - [SMALL_STATE(2537)] = 79569, - [SMALL_STATE(2538)] = 79597, - [SMALL_STATE(2539)] = 79627, - [SMALL_STATE(2540)] = 79657, - [SMALL_STATE(2541)] = 79693, - [SMALL_STATE(2542)] = 79729, - [SMALL_STATE(2543)] = 79761, - [SMALL_STATE(2544)] = 79799, - [SMALL_STATE(2545)] = 79829, - [SMALL_STATE(2546)] = 79859, - [SMALL_STATE(2547)] = 79889, - [SMALL_STATE(2548)] = 79919, - [SMALL_STATE(2549)] = 79955, - [SMALL_STATE(2550)] = 79991, - [SMALL_STATE(2551)] = 80027, - [SMALL_STATE(2552)] = 80059, - [SMALL_STATE(2553)] = 80091, - [SMALL_STATE(2554)] = 80121, - [SMALL_STATE(2555)] = 80157, - [SMALL_STATE(2556)] = 80189, - [SMALL_STATE(2557)] = 80225, - [SMALL_STATE(2558)] = 80257, - [SMALL_STATE(2559)] = 80289, - [SMALL_STATE(2560)] = 80321, - [SMALL_STATE(2561)] = 80359, - [SMALL_STATE(2562)] = 80390, - [SMALL_STATE(2563)] = 80427, - [SMALL_STATE(2564)] = 80454, - [SMALL_STATE(2565)] = 80487, - [SMALL_STATE(2566)] = 80518, - [SMALL_STATE(2567)] = 80555, - [SMALL_STATE(2568)] = 80582, - [SMALL_STATE(2569)] = 80609, - [SMALL_STATE(2570)] = 80646, - [SMALL_STATE(2571)] = 80673, - [SMALL_STATE(2572)] = 80700, - [SMALL_STATE(2573)] = 80727, - [SMALL_STATE(2574)] = 80758, - [SMALL_STATE(2575)] = 80787, - [SMALL_STATE(2576)] = 80822, - [SMALL_STATE(2577)] = 80851, - [SMALL_STATE(2578)] = 80886, - [SMALL_STATE(2579)] = 80917, - [SMALL_STATE(2580)] = 80954, - [SMALL_STATE(2581)] = 80991, - [SMALL_STATE(2582)] = 81028, - [SMALL_STATE(2583)] = 81057, - [SMALL_STATE(2584)] = 81086, - [SMALL_STATE(2585)] = 81115, - [SMALL_STATE(2586)] = 81146, - [SMALL_STATE(2587)] = 81181, - [SMALL_STATE(2588)] = 81208, - [SMALL_STATE(2589)] = 81243, - [SMALL_STATE(2590)] = 81280, - [SMALL_STATE(2591)] = 81309, - [SMALL_STATE(2592)] = 81340, - [SMALL_STATE(2593)] = 81371, - [SMALL_STATE(2594)] = 81402, - [SMALL_STATE(2595)] = 81433, - [SMALL_STATE(2596)] = 81470, - [SMALL_STATE(2597)] = 81507, - [SMALL_STATE(2598)] = 81540, - [SMALL_STATE(2599)] = 81577, - [SMALL_STATE(2600)] = 81604, - [SMALL_STATE(2601)] = 81639, - [SMALL_STATE(2602)] = 81666, - [SMALL_STATE(2603)] = 81693, - [SMALL_STATE(2604)] = 81724, - [SMALL_STATE(2605)] = 81751, - [SMALL_STATE(2606)] = 81782, - [SMALL_STATE(2607)] = 81809, - [SMALL_STATE(2608)] = 81838, - [SMALL_STATE(2609)] = 81869, - [SMALL_STATE(2610)] = 81902, - [SMALL_STATE(2611)] = 81929, - [SMALL_STATE(2612)] = 81958, - [SMALL_STATE(2613)] = 81987, - [SMALL_STATE(2614)] = 82018, - [SMALL_STATE(2615)] = 82051, - [SMALL_STATE(2616)] = 82088, - [SMALL_STATE(2617)] = 82119, - [SMALL_STATE(2618)] = 82152, - [SMALL_STATE(2619)] = 82185, - [SMALL_STATE(2620)] = 82216, - [SMALL_STATE(2621)] = 82247, - [SMALL_STATE(2622)] = 82278, - [SMALL_STATE(2623)] = 82307, - [SMALL_STATE(2624)] = 82336, - [SMALL_STATE(2625)] = 82371, - [SMALL_STATE(2626)] = 82402, - [SMALL_STATE(2627)] = 82431, - [SMALL_STATE(2628)] = 82460, - [SMALL_STATE(2629)] = 82491, - [SMALL_STATE(2630)] = 82518, - [SMALL_STATE(2631)] = 82547, - [SMALL_STATE(2632)] = 82580, - [SMALL_STATE(2633)] = 82611, - [SMALL_STATE(2634)] = 82642, - [SMALL_STATE(2635)] = 82679, - [SMALL_STATE(2636)] = 82710, - [SMALL_STATE(2637)] = 82741, - [SMALL_STATE(2638)] = 82772, - [SMALL_STATE(2639)] = 82803, - [SMALL_STATE(2640)] = 82834, - [SMALL_STATE(2641)] = 82865, - [SMALL_STATE(2642)] = 82902, - [SMALL_STATE(2643)] = 82931, - [SMALL_STATE(2644)] = 82960, - [SMALL_STATE(2645)] = 82996, - [SMALL_STATE(2646)] = 83032, - [SMALL_STATE(2647)] = 83060, - [SMALL_STATE(2648)] = 83098, - [SMALL_STATE(2649)] = 83142, - [SMALL_STATE(2650)] = 83170, - [SMALL_STATE(2651)] = 83198, - [SMALL_STATE(2652)] = 83226, - [SMALL_STATE(2653)] = 83254, - [SMALL_STATE(2654)] = 83286, - [SMALL_STATE(2655)] = 83318, - [SMALL_STATE(2656)] = 83352, - [SMALL_STATE(2657)] = 83378, - [SMALL_STATE(2658)] = 83406, - [SMALL_STATE(2659)] = 83438, - [SMALL_STATE(2660)] = 83474, - [SMALL_STATE(2661)] = 83510, - [SMALL_STATE(2662)] = 83540, - [SMALL_STATE(2663)] = 83584, - [SMALL_STATE(2664)] = 83614, - [SMALL_STATE(2665)] = 83644, - [SMALL_STATE(2666)] = 83674, - [SMALL_STATE(2667)] = 83702, - [SMALL_STATE(2668)] = 83732, - [SMALL_STATE(2669)] = 83768, - [SMALL_STATE(2670)] = 83798, - [SMALL_STATE(2671)] = 83828, - [SMALL_STATE(2672)] = 83858, - [SMALL_STATE(2673)] = 83902, - [SMALL_STATE(2674)] = 83938, - [SMALL_STATE(2675)] = 83968, - [SMALL_STATE(2676)] = 83998, - [SMALL_STATE(2677)] = 84026, - [SMALL_STATE(2678)] = 84054, - [SMALL_STATE(2679)] = 84082, - [SMALL_STATE(2680)] = 84116, - [SMALL_STATE(2681)] = 84144, - [SMALL_STATE(2682)] = 84180, - [SMALL_STATE(2683)] = 84208, - [SMALL_STATE(2684)] = 84242, - [SMALL_STATE(2685)] = 84286, - [SMALL_STATE(2686)] = 84322, - [SMALL_STATE(2687)] = 84354, - [SMALL_STATE(2688)] = 84386, - [SMALL_STATE(2689)] = 84418, - [SMALL_STATE(2690)] = 84450, - [SMALL_STATE(2691)] = 84482, - [SMALL_STATE(2692)] = 84516, - [SMALL_STATE(2693)] = 84560, - [SMALL_STATE(2694)] = 84590, - [SMALL_STATE(2695)] = 84624, - [SMALL_STATE(2696)] = 84658, - [SMALL_STATE(2697)] = 84694, - [SMALL_STATE(2698)] = 84728, - [SMALL_STATE(2699)] = 84758, - [SMALL_STATE(2700)] = 84786, - [SMALL_STATE(2701)] = 84822, - [SMALL_STATE(2702)] = 84852, - [SMALL_STATE(2703)] = 84880, - [SMALL_STATE(2704)] = 84916, - [SMALL_STATE(2705)] = 84944, - [SMALL_STATE(2706)] = 84974, - [SMALL_STATE(2707)] = 85004, - [SMALL_STATE(2708)] = 85032, - [SMALL_STATE(2709)] = 85068, - [SMALL_STATE(2710)] = 85098, - [SMALL_STATE(2711)] = 85134, - [SMALL_STATE(2712)] = 85162, - [SMALL_STATE(2713)] = 85192, - [SMALL_STATE(2714)] = 85220, - [SMALL_STATE(2715)] = 85252, - [SMALL_STATE(2716)] = 85281, - [SMALL_STATE(2717)] = 85312, - [SMALL_STATE(2718)] = 85339, - [SMALL_STATE(2719)] = 85370, - [SMALL_STATE(2720)] = 85403, - [SMALL_STATE(2721)] = 85430, - [SMALL_STATE(2722)] = 85461, - [SMALL_STATE(2723)] = 85496, - [SMALL_STATE(2724)] = 85531, - [SMALL_STATE(2725)] = 85566, - [SMALL_STATE(2726)] = 85601, - [SMALL_STATE(2727)] = 85636, - [SMALL_STATE(2728)] = 85671, - [SMALL_STATE(2729)] = 85698, - [SMALL_STATE(2730)] = 85731, - [SMALL_STATE(2731)] = 85762, - [SMALL_STATE(2732)] = 85795, - [SMALL_STATE(2733)] = 85824, - [SMALL_STATE(2734)] = 85855, - [SMALL_STATE(2735)] = 85886, - [SMALL_STATE(2736)] = 85919, - [SMALL_STATE(2737)] = 85954, - [SMALL_STATE(2738)] = 85985, - [SMALL_STATE(2739)] = 86016, - [SMALL_STATE(2740)] = 86047, - [SMALL_STATE(2741)] = 86078, - [SMALL_STATE(2742)] = 86111, - [SMALL_STATE(2743)] = 86142, - [SMALL_STATE(2744)] = 86169, - [SMALL_STATE(2745)] = 86196, - [SMALL_STATE(2746)] = 86225, - [SMALL_STATE(2747)] = 86252, - [SMALL_STATE(2748)] = 86279, - [SMALL_STATE(2749)] = 86308, - [SMALL_STATE(2750)] = 86337, - [SMALL_STATE(2751)] = 86368, - [SMALL_STATE(2752)] = 86399, - [SMALL_STATE(2753)] = 86426, - [SMALL_STATE(2754)] = 86453, - [SMALL_STATE(2755)] = 86480, - [SMALL_STATE(2756)] = 86507, - [SMALL_STATE(2757)] = 86538, - [SMALL_STATE(2758)] = 86569, - [SMALL_STATE(2759)] = 86600, - [SMALL_STATE(2760)] = 86631, - [SMALL_STATE(2761)] = 86662, - [SMALL_STATE(2762)] = 86691, - [SMALL_STATE(2763)] = 86722, - [SMALL_STATE(2764)] = 86753, - [SMALL_STATE(2765)] = 86786, - [SMALL_STATE(2766)] = 86819, - [SMALL_STATE(2767)] = 86850, - [SMALL_STATE(2768)] = 86881, - [SMALL_STATE(2769)] = 86912, - [SMALL_STATE(2770)] = 86943, - [SMALL_STATE(2771)] = 86970, - [SMALL_STATE(2772)] = 87003, - [SMALL_STATE(2773)] = 87034, - [SMALL_STATE(2774)] = 87061, - [SMALL_STATE(2775)] = 87092, - [SMALL_STATE(2776)] = 87123, - [SMALL_STATE(2777)] = 87156, - [SMALL_STATE(2778)] = 87183, - [SMALL_STATE(2779)] = 87208, - [SMALL_STATE(2780)] = 87241, - [SMALL_STATE(2781)] = 87272, - [SMALL_STATE(2782)] = 87299, - [SMALL_STATE(2783)] = 87326, - [SMALL_STATE(2784)] = 87357, - [SMALL_STATE(2785)] = 87384, - [SMALL_STATE(2786)] = 87419, - [SMALL_STATE(2787)] = 87454, - [SMALL_STATE(2788)] = 87487, - [SMALL_STATE(2789)] = 87512, - [SMALL_STATE(2790)] = 87543, - [SMALL_STATE(2791)] = 87574, - [SMALL_STATE(2792)] = 87605, - [SMALL_STATE(2793)] = 87632, - [SMALL_STATE(2794)] = 87663, - [SMALL_STATE(2795)] = 87694, - [SMALL_STATE(2796)] = 87721, - [SMALL_STATE(2797)] = 87748, - [SMALL_STATE(2798)] = 87785, - [SMALL_STATE(2799)] = 87814, - [SMALL_STATE(2800)] = 87847, - [SMALL_STATE(2801)] = 87878, - [SMALL_STATE(2802)] = 87905, - [SMALL_STATE(2803)] = 87934, - [SMALL_STATE(2804)] = 87965, - [SMALL_STATE(2805)] = 87998, - [SMALL_STATE(2806)] = 88029, - [SMALL_STATE(2807)] = 88060, - [SMALL_STATE(2808)] = 88089, - [SMALL_STATE(2809)] = 88122, - [SMALL_STATE(2810)] = 88157, - [SMALL_STATE(2811)] = 88184, - [SMALL_STATE(2812)] = 88217, - [SMALL_STATE(2813)] = 88250, - [SMALL_STATE(2814)] = 88281, - [SMALL_STATE(2815)] = 88312, - [SMALL_STATE(2816)] = 88345, - [SMALL_STATE(2817)] = 88370, - [SMALL_STATE(2818)] = 88395, - [SMALL_STATE(2819)] = 88422, - [SMALL_STATE(2820)] = 88453, - [SMALL_STATE(2821)] = 88480, - [SMALL_STATE(2822)] = 88509, - [SMALL_STATE(2823)] = 88538, - [SMALL_STATE(2824)] = 88569, - [SMALL_STATE(2825)] = 88600, - [SMALL_STATE(2826)] = 88627, - [SMALL_STATE(2827)] = 88654, - [SMALL_STATE(2828)] = 88681, - [SMALL_STATE(2829)] = 88708, - [SMALL_STATE(2830)] = 88735, - [SMALL_STATE(2831)] = 88766, - [SMALL_STATE(2832)] = 88797, - [SMALL_STATE(2833)] = 88828, - [SMALL_STATE(2834)] = 88857, - [SMALL_STATE(2835)] = 88886, - [SMALL_STATE(2836)] = 88911, - [SMALL_STATE(2837)] = 88944, - [SMALL_STATE(2838)] = 88977, - [SMALL_STATE(2839)] = 89008, - [SMALL_STATE(2840)] = 89039, - [SMALL_STATE(2841)] = 89066, - [SMALL_STATE(2842)] = 89097, - [SMALL_STATE(2843)] = 89122, - [SMALL_STATE(2844)] = 89153, - [SMALL_STATE(2845)] = 89180, - [SMALL_STATE(2846)] = 89207, - [SMALL_STATE(2847)] = 89238, - [SMALL_STATE(2848)] = 89267, - [SMALL_STATE(2849)] = 89294, - [SMALL_STATE(2850)] = 89319, - [SMALL_STATE(2851)] = 89352, - [SMALL_STATE(2852)] = 89379, - [SMALL_STATE(2853)] = 89408, - [SMALL_STATE(2854)] = 89435, - [SMALL_STATE(2855)] = 89462, - [SMALL_STATE(2856)] = 89495, - [SMALL_STATE(2857)] = 89528, - [SMALL_STATE(2858)] = 89555, - [SMALL_STATE(2859)] = 89586, - [SMALL_STATE(2860)] = 89619, - [SMALL_STATE(2861)] = 89650, - [SMALL_STATE(2862)] = 89681, - [SMALL_STATE(2863)] = 89716, - [SMALL_STATE(2864)] = 89747, - [SMALL_STATE(2865)] = 89780, - [SMALL_STATE(2866)] = 89807, - [SMALL_STATE(2867)] = 89838, - [SMALL_STATE(2868)] = 89871, - [SMALL_STATE(2869)] = 89902, - [SMALL_STATE(2870)] = 89935, - [SMALL_STATE(2871)] = 89960, - [SMALL_STATE(2872)] = 89985, - [SMALL_STATE(2873)] = 90012, - [SMALL_STATE(2874)] = 90039, - [SMALL_STATE(2875)] = 90064, - [SMALL_STATE(2876)] = 90093, - [SMALL_STATE(2877)] = 90118, - [SMALL_STATE(2878)] = 90143, - [SMALL_STATE(2879)] = 90170, - [SMALL_STATE(2880)] = 90199, - [SMALL_STATE(2881)] = 90226, - [SMALL_STATE(2882)] = 90255, - [SMALL_STATE(2883)] = 90280, - [SMALL_STATE(2884)] = 90307, - [SMALL_STATE(2885)] = 90334, - [SMALL_STATE(2886)] = 90363, - [SMALL_STATE(2887)] = 90394, - [SMALL_STATE(2888)] = 90425, - [SMALL_STATE(2889)] = 90458, - [SMALL_STATE(2890)] = 90485, - [SMALL_STATE(2891)] = 90516, - [SMALL_STATE(2892)] = 90543, - [SMALL_STATE(2893)] = 90572, - [SMALL_STATE(2894)] = 90603, - [SMALL_STATE(2895)] = 90632, - [SMALL_STATE(2896)] = 90661, - [SMALL_STATE(2897)] = 90690, - [SMALL_STATE(2898)] = 90719, - [SMALL_STATE(2899)] = 90744, - [SMALL_STATE(2900)] = 90769, - [SMALL_STATE(2901)] = 90796, - [SMALL_STATE(2902)] = 90823, - [SMALL_STATE(2903)] = 90850, - [SMALL_STATE(2904)] = 90877, - [SMALL_STATE(2905)] = 90906, - [SMALL_STATE(2906)] = 90935, - [SMALL_STATE(2907)] = 90962, - [SMALL_STATE(2908)] = 90994, - [SMALL_STATE(2909)] = 91022, - [SMALL_STATE(2910)] = 91054, - [SMALL_STATE(2911)] = 91082, - [SMALL_STATE(2912)] = 91112, - [SMALL_STATE(2913)] = 91136, - [SMALL_STATE(2914)] = 91166, - [SMALL_STATE(2915)] = 91192, - [SMALL_STATE(2916)] = 91216, - [SMALL_STATE(2917)] = 91244, - [SMALL_STATE(2918)] = 91270, - [SMALL_STATE(2919)] = 91302, - [SMALL_STATE(2920)] = 91328, - [SMALL_STATE(2921)] = 91354, - [SMALL_STATE(2922)] = 91378, - [SMALL_STATE(2923)] = 91404, - [SMALL_STATE(2924)] = 91436, - [SMALL_STATE(2925)] = 91460, - [SMALL_STATE(2926)] = 91484, - [SMALL_STATE(2927)] = 91536, - [SMALL_STATE(2928)] = 91564, - [SMALL_STATE(2929)] = 91588, - [SMALL_STATE(2930)] = 91616, - [SMALL_STATE(2931)] = 91668, - [SMALL_STATE(2932)] = 91720, - [SMALL_STATE(2933)] = 91750, - [SMALL_STATE(2934)] = 91778, - [SMALL_STATE(2935)] = 91802, - [SMALL_STATE(2936)] = 91854, - [SMALL_STATE(2937)] = 91880, - [SMALL_STATE(2938)] = 91906, - [SMALL_STATE(2939)] = 91934, - [SMALL_STATE(2940)] = 91964, - [SMALL_STATE(2941)] = 91994, - [SMALL_STATE(2942)] = 92020, - [SMALL_STATE(2943)] = 92044, - [SMALL_STATE(2944)] = 92074, - [SMALL_STATE(2945)] = 92114, - [SMALL_STATE(2946)] = 92146, - [SMALL_STATE(2947)] = 92170, - [SMALL_STATE(2948)] = 92198, - [SMALL_STATE(2949)] = 92224, - [SMALL_STATE(2950)] = 92256, - [SMALL_STATE(2951)] = 92286, - [SMALL_STATE(2952)] = 92318, - [SMALL_STATE(2953)] = 92344, - [SMALL_STATE(2954)] = 92372, - [SMALL_STATE(2955)] = 92400, - [SMALL_STATE(2956)] = 92428, - [SMALL_STATE(2957)] = 92454, - [SMALL_STATE(2958)] = 92480, - [SMALL_STATE(2959)] = 92510, - [SMALL_STATE(2960)] = 92540, - [SMALL_STATE(2961)] = 92566, - [SMALL_STATE(2962)] = 92592, - [SMALL_STATE(2963)] = 92644, - [SMALL_STATE(2964)] = 92672, - [SMALL_STATE(2965)] = 92702, - [SMALL_STATE(2966)] = 92732, - [SMALL_STATE(2967)] = 92758, - [SMALL_STATE(2968)] = 92784, - [SMALL_STATE(2969)] = 92836, - [SMALL_STATE(2970)] = 92866, - [SMALL_STATE(2971)] = 92898, - [SMALL_STATE(2972)] = 92926, - [SMALL_STATE(2973)] = 92958, - [SMALL_STATE(2974)] = 92984, - [SMALL_STATE(2975)] = 93010, - [SMALL_STATE(2976)] = 93038, - [SMALL_STATE(2977)] = 93064, - [SMALL_STATE(2978)] = 93092, - [SMALL_STATE(2979)] = 93116, - [SMALL_STATE(2980)] = 93140, - [SMALL_STATE(2981)] = 93166, - [SMALL_STATE(2982)] = 93192, - [SMALL_STATE(2983)] = 93224, - [SMALL_STATE(2984)] = 93250, - [SMALL_STATE(2985)] = 93278, - [SMALL_STATE(2986)] = 93306, - [SMALL_STATE(2987)] = 93334, - [SMALL_STATE(2988)] = 93360, - [SMALL_STATE(2989)] = 93390, - [SMALL_STATE(2990)] = 93420, - [SMALL_STATE(2991)] = 93472, - [SMALL_STATE(2992)] = 93498, - [SMALL_STATE(2993)] = 93528, - [SMALL_STATE(2994)] = 93554, - [SMALL_STATE(2995)] = 93584, - [SMALL_STATE(2996)] = 93610, - [SMALL_STATE(2997)] = 93634, - [SMALL_STATE(2998)] = 93660, - [SMALL_STATE(2999)] = 93690, - [SMALL_STATE(3000)] = 93720, - [SMALL_STATE(3001)] = 93750, - [SMALL_STATE(3002)] = 93780, - [SMALL_STATE(3003)] = 93812, - [SMALL_STATE(3004)] = 93842, - [SMALL_STATE(3005)] = 93868, - [SMALL_STATE(3006)] = 93892, - [SMALL_STATE(3007)] = 93944, - [SMALL_STATE(3008)] = 93996, - [SMALL_STATE(3009)] = 94026, - [SMALL_STATE(3010)] = 94050, - [SMALL_STATE(3011)] = 94078, - [SMALL_STATE(3012)] = 94108, - [SMALL_STATE(3013)] = 94152, - [SMALL_STATE(3014)] = 94176, - [SMALL_STATE(3015)] = 94204, - [SMALL_STATE(3016)] = 94234, - [SMALL_STATE(3017)] = 94260, - [SMALL_STATE(3018)] = 94290, - [SMALL_STATE(3019)] = 94336, - [SMALL_STATE(3020)] = 94366, - [SMALL_STATE(3021)] = 94396, - [SMALL_STATE(3022)] = 94420, - [SMALL_STATE(3023)] = 94446, - [SMALL_STATE(3024)] = 94498, - [SMALL_STATE(3025)] = 94528, - [SMALL_STATE(3026)] = 94556, - [SMALL_STATE(3027)] = 94586, - [SMALL_STATE(3028)] = 94614, - [SMALL_STATE(3029)] = 94644, - [SMALL_STATE(3030)] = 94670, - [SMALL_STATE(3031)] = 94702, - [SMALL_STATE(3032)] = 94726, - [SMALL_STATE(3033)] = 94752, - [SMALL_STATE(3034)] = 94776, - [SMALL_STATE(3035)] = 94801, - [SMALL_STATE(3036)] = 94826, - [SMALL_STATE(3037)] = 94851, - [SMALL_STATE(3038)] = 94876, - [SMALL_STATE(3039)] = 94901, - [SMALL_STATE(3040)] = 94926, - [SMALL_STATE(3041)] = 94963, - [SMALL_STATE(3042)] = 94988, - [SMALL_STATE(3043)] = 95013, - [SMALL_STATE(3044)] = 95038, - [SMALL_STATE(3045)] = 95063, - [SMALL_STATE(3046)] = 95092, - [SMALL_STATE(3047)] = 95117, - [SMALL_STATE(3048)] = 95142, - [SMALL_STATE(3049)] = 95167, - [SMALL_STATE(3050)] = 95196, - [SMALL_STATE(3051)] = 95221, - [SMALL_STATE(3052)] = 95250, - [SMALL_STATE(3053)] = 95275, - [SMALL_STATE(3054)] = 95300, - [SMALL_STATE(3055)] = 95329, - [SMALL_STATE(3056)] = 95372, - [SMALL_STATE(3057)] = 95397, - [SMALL_STATE(3058)] = 95422, - [SMALL_STATE(3059)] = 95447, - [SMALL_STATE(3060)] = 95472, - [SMALL_STATE(3061)] = 95497, - [SMALL_STATE(3062)] = 95522, - [SMALL_STATE(3063)] = 95547, - [SMALL_STATE(3064)] = 95572, - [SMALL_STATE(3065)] = 95597, - [SMALL_STATE(3066)] = 95622, - [SMALL_STATE(3067)] = 95647, - [SMALL_STATE(3068)] = 95672, - [SMALL_STATE(3069)] = 95697, - [SMALL_STATE(3070)] = 95722, - [SMALL_STATE(3071)] = 95751, - [SMALL_STATE(3072)] = 95780, - [SMALL_STATE(3073)] = 95809, - [SMALL_STATE(3074)] = 95832, - [SMALL_STATE(3075)] = 95857, - [SMALL_STATE(3076)] = 95882, - [SMALL_STATE(3077)] = 95911, - [SMALL_STATE(3078)] = 95936, - [SMALL_STATE(3079)] = 95961, - [SMALL_STATE(3080)] = 95990, - [SMALL_STATE(3081)] = 96019, - [SMALL_STATE(3082)] = 96048, - [SMALL_STATE(3083)] = 96071, - [SMALL_STATE(3084)] = 96100, - [SMALL_STATE(3085)] = 96125, - [SMALL_STATE(3086)] = 96150, - [SMALL_STATE(3087)] = 96179, - [SMALL_STATE(3088)] = 96208, - [SMALL_STATE(3089)] = 96231, - [SMALL_STATE(3090)] = 96258, - [SMALL_STATE(3091)] = 96281, - [SMALL_STATE(3092)] = 96310, - [SMALL_STATE(3093)] = 96333, - [SMALL_STATE(3094)] = 96362, - [SMALL_STATE(3095)] = 96391, - [SMALL_STATE(3096)] = 96420, - [SMALL_STATE(3097)] = 96449, - [SMALL_STATE(3098)] = 96478, - [SMALL_STATE(3099)] = 96507, - [SMALL_STATE(3100)] = 96536, - [SMALL_STATE(3101)] = 96579, - [SMALL_STATE(3102)] = 96608, - [SMALL_STATE(3103)] = 96637, - [SMALL_STATE(3104)] = 96664, - [SMALL_STATE(3105)] = 96689, - [SMALL_STATE(3106)] = 96718, - [SMALL_STATE(3107)] = 96747, - [SMALL_STATE(3108)] = 96776, - [SMALL_STATE(3109)] = 96805, - [SMALL_STATE(3110)] = 96834, - [SMALL_STATE(3111)] = 96863, - [SMALL_STATE(3112)] = 96892, - [SMALL_STATE(3113)] = 96921, - [SMALL_STATE(3114)] = 96950, - [SMALL_STATE(3115)] = 96979, - [SMALL_STATE(3116)] = 97008, - [SMALL_STATE(3117)] = 97047, - [SMALL_STATE(3118)] = 97076, - [SMALL_STATE(3119)] = 97103, - [SMALL_STATE(3120)] = 97132, - [SMALL_STATE(3121)] = 97161, - [SMALL_STATE(3122)] = 97186, - [SMALL_STATE(3123)] = 97217, - [SMALL_STATE(3124)] = 97242, - [SMALL_STATE(3125)] = 97267, - [SMALL_STATE(3126)] = 97298, - [SMALL_STATE(3127)] = 97321, - [SMALL_STATE(3128)] = 97344, - [SMALL_STATE(3129)] = 97367, - [SMALL_STATE(3130)] = 97392, - [SMALL_STATE(3131)] = 97417, - [SMALL_STATE(3132)] = 97442, - [SMALL_STATE(3133)] = 97467, - [SMALL_STATE(3134)] = 97492, - [SMALL_STATE(3135)] = 97517, - [SMALL_STATE(3136)] = 97542, - [SMALL_STATE(3137)] = 97567, - [SMALL_STATE(3138)] = 97592, - [SMALL_STATE(3139)] = 97617, - [SMALL_STATE(3140)] = 97642, - [SMALL_STATE(3141)] = 97671, - [SMALL_STATE(3142)] = 97694, - [SMALL_STATE(3143)] = 97719, - [SMALL_STATE(3144)] = 97748, - [SMALL_STATE(3145)] = 97771, - [SMALL_STATE(3146)] = 97794, - [SMALL_STATE(3147)] = 97819, - [SMALL_STATE(3148)] = 97842, - [SMALL_STATE(3149)] = 97865, - [SMALL_STATE(3150)] = 97890, - [SMALL_STATE(3151)] = 97917, - [SMALL_STATE(3152)] = 97940, - [SMALL_STATE(3153)] = 97963, - [SMALL_STATE(3154)] = 97992, - [SMALL_STATE(3155)] = 98021, - [SMALL_STATE(3156)] = 98050, - [SMALL_STATE(3157)] = 98073, - [SMALL_STATE(3158)] = 98100, - [SMALL_STATE(3159)] = 98129, - [SMALL_STATE(3160)] = 98158, - [SMALL_STATE(3161)] = 98181, - [SMALL_STATE(3162)] = 98204, - [SMALL_STATE(3163)] = 98227, - [SMALL_STATE(3164)] = 98256, - [SMALL_STATE(3165)] = 98285, - [SMALL_STATE(3166)] = 98314, - [SMALL_STATE(3167)] = 98343, - [SMALL_STATE(3168)] = 98372, - [SMALL_STATE(3169)] = 98401, - [SMALL_STATE(3170)] = 98430, - [SMALL_STATE(3171)] = 98459, - [SMALL_STATE(3172)] = 98488, - [SMALL_STATE(3173)] = 98511, - [SMALL_STATE(3174)] = 98548, - [SMALL_STATE(3175)] = 98571, - [SMALL_STATE(3176)] = 98600, - [SMALL_STATE(3177)] = 98631, - [SMALL_STATE(3178)] = 98658, - [SMALL_STATE(3179)] = 98683, - [SMALL_STATE(3180)] = 98708, - [SMALL_STATE(3181)] = 98733, - [SMALL_STATE(3182)] = 98756, - [SMALL_STATE(3183)] = 98785, - [SMALL_STATE(3184)] = 98812, - [SMALL_STATE(3185)] = 98837, - [SMALL_STATE(3186)] = 98862, - [SMALL_STATE(3187)] = 98889, - [SMALL_STATE(3188)] = 98916, - [SMALL_STATE(3189)] = 98941, - [SMALL_STATE(3190)] = 98970, - [SMALL_STATE(3191)] = 98997, - [SMALL_STATE(3192)] = 99026, - [SMALL_STATE(3193)] = 99051, - [SMALL_STATE(3194)] = 99076, - [SMALL_STATE(3195)] = 99101, - [SMALL_STATE(3196)] = 99126, - [SMALL_STATE(3197)] = 99157, - [SMALL_STATE(3198)] = 99180, - [SMALL_STATE(3199)] = 99207, - [SMALL_STATE(3200)] = 99234, - [SMALL_STATE(3201)] = 99259, - [SMALL_STATE(3202)] = 99284, - [SMALL_STATE(3203)] = 99309, - [SMALL_STATE(3204)] = 99334, - [SMALL_STATE(3205)] = 99363, - [SMALL_STATE(3206)] = 99392, - [SMALL_STATE(3207)] = 99415, - [SMALL_STATE(3208)] = 99440, - [SMALL_STATE(3209)] = 99469, - [SMALL_STATE(3210)] = 99494, - [SMALL_STATE(3211)] = 99519, - [SMALL_STATE(3212)] = 99544, - [SMALL_STATE(3213)] = 99569, - [SMALL_STATE(3214)] = 99594, - [SMALL_STATE(3215)] = 99619, - [SMALL_STATE(3216)] = 99644, - [SMALL_STATE(3217)] = 99667, - [SMALL_STATE(3218)] = 99690, - [SMALL_STATE(3219)] = 99715, - [SMALL_STATE(3220)] = 99740, - [SMALL_STATE(3221)] = 99765, - [SMALL_STATE(3222)] = 99790, - [SMALL_STATE(3223)] = 99815, - [SMALL_STATE(3224)] = 99840, - [SMALL_STATE(3225)] = 99865, - [SMALL_STATE(3226)] = 99888, - [SMALL_STATE(3227)] = 99913, - [SMALL_STATE(3228)] = 99936, - [SMALL_STATE(3229)] = 99961, - [SMALL_STATE(3230)] = 99986, - [SMALL_STATE(3231)] = 100011, - [SMALL_STATE(3232)] = 100036, - [SMALL_STATE(3233)] = 100073, - [SMALL_STATE(3234)] = 100098, - [SMALL_STATE(3235)] = 100123, - [SMALL_STATE(3236)] = 100148, - [SMALL_STATE(3237)] = 100177, - [SMALL_STATE(3238)] = 100202, - [SMALL_STATE(3239)] = 100231, - [SMALL_STATE(3240)] = 100256, - [SMALL_STATE(3241)] = 100285, - [SMALL_STATE(3242)] = 100310, - [SMALL_STATE(3243)] = 100332, - [SMALL_STATE(3244)] = 100374, - [SMALL_STATE(3245)] = 100420, - [SMALL_STATE(3246)] = 100442, - [SMALL_STATE(3247)] = 100476, - [SMALL_STATE(3248)] = 100498, - [SMALL_STATE(3249)] = 100538, - [SMALL_STATE(3250)] = 100560, - [SMALL_STATE(3251)] = 100584, - [SMALL_STATE(3252)] = 100608, - [SMALL_STATE(3253)] = 100632, - [SMALL_STATE(3254)] = 100656, - [SMALL_STATE(3255)] = 100678, - [SMALL_STATE(3256)] = 100702, - [SMALL_STATE(3257)] = 100742, - [SMALL_STATE(3258)] = 100764, - [SMALL_STATE(3259)] = 100798, - [SMALL_STATE(3260)] = 100832, - [SMALL_STATE(3261)] = 100866, - [SMALL_STATE(3262)] = 100890, - [SMALL_STATE(3263)] = 100914, - [SMALL_STATE(3264)] = 100936, - [SMALL_STATE(3265)] = 100958, - [SMALL_STATE(3266)] = 100980, - [SMALL_STATE(3267)] = 101002, - [SMALL_STATE(3268)] = 101026, - [SMALL_STATE(3269)] = 101050, - [SMALL_STATE(3270)] = 101074, - [SMALL_STATE(3271)] = 101098, - [SMALL_STATE(3272)] = 101122, - [SMALL_STATE(3273)] = 101146, - [SMALL_STATE(3274)] = 101170, - [SMALL_STATE(3275)] = 101194, - [SMALL_STATE(3276)] = 101218, - [SMALL_STATE(3277)] = 101242, - [SMALL_STATE(3278)] = 101266, - [SMALL_STATE(3279)] = 101290, - [SMALL_STATE(3280)] = 101316, - [SMALL_STATE(3281)] = 101356, - [SMALL_STATE(3282)] = 101380, - [SMALL_STATE(3283)] = 101416, - [SMALL_STATE(3284)] = 101440, - [SMALL_STATE(3285)] = 101476, - [SMALL_STATE(3286)] = 101500, - [SMALL_STATE(3287)] = 101524, - [SMALL_STATE(3288)] = 101548, - [SMALL_STATE(3289)] = 101572, - [SMALL_STATE(3290)] = 101596, - [SMALL_STATE(3291)] = 101642, - [SMALL_STATE(3292)] = 101666, - [SMALL_STATE(3293)] = 101690, - [SMALL_STATE(3294)] = 101714, - [SMALL_STATE(3295)] = 101736, - [SMALL_STATE(3296)] = 101760, - [SMALL_STATE(3297)] = 101784, - [SMALL_STATE(3298)] = 101806, - [SMALL_STATE(3299)] = 101828, - [SMALL_STATE(3300)] = 101852, - [SMALL_STATE(3301)] = 101874, - [SMALL_STATE(3302)] = 101896, - [SMALL_STATE(3303)] = 101918, - [SMALL_STATE(3304)] = 101942, - [SMALL_STATE(3305)] = 101966, - [SMALL_STATE(3306)] = 101990, - [SMALL_STATE(3307)] = 102014, - [SMALL_STATE(3308)] = 102038, - [SMALL_STATE(3309)] = 102062, - [SMALL_STATE(3310)] = 102086, - [SMALL_STATE(3311)] = 102110, - [SMALL_STATE(3312)] = 102134, - [SMALL_STATE(3313)] = 102156, - [SMALL_STATE(3314)] = 102178, - [SMALL_STATE(3315)] = 102202, - [SMALL_STATE(3316)] = 102226, - [SMALL_STATE(3317)] = 102250, - [SMALL_STATE(3318)] = 102274, - [SMALL_STATE(3319)] = 102298, - [SMALL_STATE(3320)] = 102322, - [SMALL_STATE(3321)] = 102346, - [SMALL_STATE(3322)] = 102370, - [SMALL_STATE(3323)] = 102394, - [SMALL_STATE(3324)] = 102418, - [SMALL_STATE(3325)] = 102442, - [SMALL_STATE(3326)] = 102466, - [SMALL_STATE(3327)] = 102490, - [SMALL_STATE(3328)] = 102514, - [SMALL_STATE(3329)] = 102538, - [SMALL_STATE(3330)] = 102562, - [SMALL_STATE(3331)] = 102586, - [SMALL_STATE(3332)] = 102610, - [SMALL_STATE(3333)] = 102656, - [SMALL_STATE(3334)] = 102696, - [SMALL_STATE(3335)] = 102720, - [SMALL_STATE(3336)] = 102744, - [SMALL_STATE(3337)] = 102770, - [SMALL_STATE(3338)] = 102792, - [SMALL_STATE(3339)] = 102816, - [SMALL_STATE(3340)] = 102840, - [SMALL_STATE(3341)] = 102864, - [SMALL_STATE(3342)] = 102910, - [SMALL_STATE(3343)] = 102932, - [SMALL_STATE(3344)] = 102956, - [SMALL_STATE(3345)] = 102980, - [SMALL_STATE(3346)] = 103004, - [SMALL_STATE(3347)] = 103028, - [SMALL_STATE(3348)] = 103052, - [SMALL_STATE(3349)] = 103074, - [SMALL_STATE(3350)] = 103098, - [SMALL_STATE(3351)] = 103122, - [SMALL_STATE(3352)] = 103162, - [SMALL_STATE(3353)] = 103208, - [SMALL_STATE(3354)] = 103254, - [SMALL_STATE(3355)] = 103276, - [SMALL_STATE(3356)] = 103298, - [SMALL_STATE(3357)] = 103320, - [SMALL_STATE(3358)] = 103360, - [SMALL_STATE(3359)] = 103384, - [SMALL_STATE(3360)] = 103408, - [SMALL_STATE(3361)] = 103432, - [SMALL_STATE(3362)] = 103456, - [SMALL_STATE(3363)] = 103480, - [SMALL_STATE(3364)] = 103504, - [SMALL_STATE(3365)] = 103550, - [SMALL_STATE(3366)] = 103596, - [SMALL_STATE(3367)] = 103620, - [SMALL_STATE(3368)] = 103662, - [SMALL_STATE(3369)] = 103684, - [SMALL_STATE(3370)] = 103706, - [SMALL_STATE(3371)] = 103730, - [SMALL_STATE(3372)] = 103754, - [SMALL_STATE(3373)] = 103794, - [SMALL_STATE(3374)] = 103822, - [SMALL_STATE(3375)] = 103850, - [SMALL_STATE(3376)] = 103878, - [SMALL_STATE(3377)] = 103906, - [SMALL_STATE(3378)] = 103934, - [SMALL_STATE(3379)] = 103962, - [SMALL_STATE(3380)] = 103990, - [SMALL_STATE(3381)] = 104018, - [SMALL_STATE(3382)] = 104046, - [SMALL_STATE(3383)] = 104074, - [SMALL_STATE(3384)] = 104102, - [SMALL_STATE(3385)] = 104130, - [SMALL_STATE(3386)] = 104154, - [SMALL_STATE(3387)] = 104178, - [SMALL_STATE(3388)] = 104200, - [SMALL_STATE(3389)] = 104246, - [SMALL_STATE(3390)] = 104292, - [SMALL_STATE(3391)] = 104316, - [SMALL_STATE(3392)] = 104340, - [SMALL_STATE(3393)] = 104362, - [SMALL_STATE(3394)] = 104384, - [SMALL_STATE(3395)] = 104408, - [SMALL_STATE(3396)] = 104432, - [SMALL_STATE(3397)] = 104453, - [SMALL_STATE(3398)] = 104476, - [SMALL_STATE(3399)] = 104497, - [SMALL_STATE(3400)] = 104518, - [SMALL_STATE(3401)] = 104539, - [SMALL_STATE(3402)] = 104560, - [SMALL_STATE(3403)] = 104581, - [SMALL_STATE(3404)] = 104602, - [SMALL_STATE(3405)] = 104623, - [SMALL_STATE(3406)] = 104644, - [SMALL_STATE(3407)] = 104667, - [SMALL_STATE(3408)] = 104690, - [SMALL_STATE(3409)] = 104711, - [SMALL_STATE(3410)] = 104732, - [SMALL_STATE(3411)] = 104771, - [SMALL_STATE(3412)] = 104792, - [SMALL_STATE(3413)] = 104813, - [SMALL_STATE(3414)] = 104834, - [SMALL_STATE(3415)] = 104855, - [SMALL_STATE(3416)] = 104894, - [SMALL_STATE(3417)] = 104915, - [SMALL_STATE(3418)] = 104936, - [SMALL_STATE(3419)] = 104957, - [SMALL_STATE(3420)] = 104978, - [SMALL_STATE(3421)] = 104999, - [SMALL_STATE(3422)] = 105022, - [SMALL_STATE(3423)] = 105043, - [SMALL_STATE(3424)] = 105064, - [SMALL_STATE(3425)] = 105085, - [SMALL_STATE(3426)] = 105106, - [SMALL_STATE(3427)] = 105127, - [SMALL_STATE(3428)] = 105148, - [SMALL_STATE(3429)] = 105169, - [SMALL_STATE(3430)] = 105190, - [SMALL_STATE(3431)] = 105211, - [SMALL_STATE(3432)] = 105232, - [SMALL_STATE(3433)] = 105255, - [SMALL_STATE(3434)] = 105294, - [SMALL_STATE(3435)] = 105315, - [SMALL_STATE(3436)] = 105336, - [SMALL_STATE(3437)] = 105357, - [SMALL_STATE(3438)] = 105378, - [SMALL_STATE(3439)] = 105399, - [SMALL_STATE(3440)] = 105420, - [SMALL_STATE(3441)] = 105441, - [SMALL_STATE(3442)] = 105462, - [SMALL_STATE(3443)] = 105483, - [SMALL_STATE(3444)] = 105504, - [SMALL_STATE(3445)] = 105541, - [SMALL_STATE(3446)] = 105564, - [SMALL_STATE(3447)] = 105585, - [SMALL_STATE(3448)] = 105622, - [SMALL_STATE(3449)] = 105643, - [SMALL_STATE(3450)] = 105682, - [SMALL_STATE(3451)] = 105703, - [SMALL_STATE(3452)] = 105724, - [SMALL_STATE(3453)] = 105745, - [SMALL_STATE(3454)] = 105782, - [SMALL_STATE(3455)] = 105803, - [SMALL_STATE(3456)] = 105824, - [SMALL_STATE(3457)] = 105863, - [SMALL_STATE(3458)] = 105884, - [SMALL_STATE(3459)] = 105905, - [SMALL_STATE(3460)] = 105944, - [SMALL_STATE(3461)] = 105965, - [SMALL_STATE(3462)] = 105986, - [SMALL_STATE(3463)] = 106007, - [SMALL_STATE(3464)] = 106028, - [SMALL_STATE(3465)] = 106049, - [SMALL_STATE(3466)] = 106070, - [SMALL_STATE(3467)] = 106091, - [SMALL_STATE(3468)] = 106112, - [SMALL_STATE(3469)] = 106133, - [SMALL_STATE(3470)] = 106154, - [SMALL_STATE(3471)] = 106175, - [SMALL_STATE(3472)] = 106196, - [SMALL_STATE(3473)] = 106233, - [SMALL_STATE(3474)] = 106254, - [SMALL_STATE(3475)] = 106275, - [SMALL_STATE(3476)] = 106298, - [SMALL_STATE(3477)] = 106319, - [SMALL_STATE(3478)] = 106340, - [SMALL_STATE(3479)] = 106363, - [SMALL_STATE(3480)] = 106384, - [SMALL_STATE(3481)] = 106405, - [SMALL_STATE(3482)] = 106442, - [SMALL_STATE(3483)] = 106479, - [SMALL_STATE(3484)] = 106516, - [SMALL_STATE(3485)] = 106553, - [SMALL_STATE(3486)] = 106574, - [SMALL_STATE(3487)] = 106595, - [SMALL_STATE(3488)] = 106618, - [SMALL_STATE(3489)] = 106639, - [SMALL_STATE(3490)] = 106660, - [SMALL_STATE(3491)] = 106683, - [SMALL_STATE(3492)] = 106706, - [SMALL_STATE(3493)] = 106729, - [SMALL_STATE(3494)] = 106752, - [SMALL_STATE(3495)] = 106773, - [SMALL_STATE(3496)] = 106800, - [SMALL_STATE(3497)] = 106821, - [SMALL_STATE(3498)] = 106848, - [SMALL_STATE(3499)] = 106871, - [SMALL_STATE(3500)] = 106894, - [SMALL_STATE(3501)] = 106931, - [SMALL_STATE(3502)] = 106952, - [SMALL_STATE(3503)] = 106979, - [SMALL_STATE(3504)] = 107008, - [SMALL_STATE(3505)] = 107029, - [SMALL_STATE(3506)] = 107056, - [SMALL_STATE(3507)] = 107077, - [SMALL_STATE(3508)] = 107098, - [SMALL_STATE(3509)] = 107121, - [SMALL_STATE(3510)] = 107142, - [SMALL_STATE(3511)] = 107169, - [SMALL_STATE(3512)] = 107190, - [SMALL_STATE(3513)] = 107211, - [SMALL_STATE(3514)] = 107232, - [SMALL_STATE(3515)] = 107253, - [SMALL_STATE(3516)] = 107290, - [SMALL_STATE(3517)] = 107327, - [SMALL_STATE(3518)] = 107364, - [SMALL_STATE(3519)] = 107385, - [SMALL_STATE(3520)] = 107406, - [SMALL_STATE(3521)] = 107429, - [SMALL_STATE(3522)] = 107450, - [SMALL_STATE(3523)] = 107477, - [SMALL_STATE(3524)] = 107500, - [SMALL_STATE(3525)] = 107523, - [SMALL_STATE(3526)] = 107546, - [SMALL_STATE(3527)] = 107569, - [SMALL_STATE(3528)] = 107590, - [SMALL_STATE(3529)] = 107611, - [SMALL_STATE(3530)] = 107634, - [SMALL_STATE(3531)] = 107661, - [SMALL_STATE(3532)] = 107684, - [SMALL_STATE(3533)] = 107711, - [SMALL_STATE(3534)] = 107734, - [SMALL_STATE(3535)] = 107757, - [SMALL_STATE(3536)] = 107780, - [SMALL_STATE(3537)] = 107807, - [SMALL_STATE(3538)] = 107832, - [SMALL_STATE(3539)] = 107855, - [SMALL_STATE(3540)] = 107878, - [SMALL_STATE(3541)] = 107901, - [SMALL_STATE(3542)] = 107924, - [SMALL_STATE(3543)] = 107947, - [SMALL_STATE(3544)] = 107970, - [SMALL_STATE(3545)] = 107993, - [SMALL_STATE(3546)] = 108032, - [SMALL_STATE(3547)] = 108055, - [SMALL_STATE(3548)] = 108082, - [SMALL_STATE(3549)] = 108109, - [SMALL_STATE(3550)] = 108136, - [SMALL_STATE(3551)] = 108163, - [SMALL_STATE(3552)] = 108190, - [SMALL_STATE(3553)] = 108217, - [SMALL_STATE(3554)] = 108244, - [SMALL_STATE(3555)] = 108271, - [SMALL_STATE(3556)] = 108298, - [SMALL_STATE(3557)] = 108325, - [SMALL_STATE(3558)] = 108352, - [SMALL_STATE(3559)] = 108379, - [SMALL_STATE(3560)] = 108400, - [SMALL_STATE(3561)] = 108421, - [SMALL_STATE(3562)] = 108444, - [SMALL_STATE(3563)] = 108475, - [SMALL_STATE(3564)] = 108502, - [SMALL_STATE(3565)] = 108525, - [SMALL_STATE(3566)] = 108562, - [SMALL_STATE(3567)] = 108589, - [SMALL_STATE(3568)] = 108612, - [SMALL_STATE(3569)] = 108633, - [SMALL_STATE(3570)] = 108656, - [SMALL_STATE(3571)] = 108677, - [SMALL_STATE(3572)] = 108698, - [SMALL_STATE(3573)] = 108719, - [SMALL_STATE(3574)] = 108740, - [SMALL_STATE(3575)] = 108763, - [SMALL_STATE(3576)] = 108784, - [SMALL_STATE(3577)] = 108807, - [SMALL_STATE(3578)] = 108828, - [SMALL_STATE(3579)] = 108849, - [SMALL_STATE(3580)] = 108872, - [SMALL_STATE(3581)] = 108895, - [SMALL_STATE(3582)] = 108918, - [SMALL_STATE(3583)] = 108939, - [SMALL_STATE(3584)] = 108965, - [SMALL_STATE(3585)] = 108997, - [SMALL_STATE(3586)] = 109033, - [SMALL_STATE(3587)] = 109059, - [SMALL_STATE(3588)] = 109083, - [SMALL_STATE(3589)] = 109109, - [SMALL_STATE(3590)] = 109133, - [SMALL_STATE(3591)] = 109163, - [SMALL_STATE(3592)] = 109189, - [SMALL_STATE(3593)] = 109213, - [SMALL_STATE(3594)] = 109237, - [SMALL_STATE(3595)] = 109267, - [SMALL_STATE(3596)] = 109291, - [SMALL_STATE(3597)] = 109327, - [SMALL_STATE(3598)] = 109363, - [SMALL_STATE(3599)] = 109387, - [SMALL_STATE(3600)] = 109421, - [SMALL_STATE(3601)] = 109447, - [SMALL_STATE(3602)] = 109473, - [SMALL_STATE(3603)] = 109507, - [SMALL_STATE(3604)] = 109539, - [SMALL_STATE(3605)] = 109575, - [SMALL_STATE(3606)] = 109607, - [SMALL_STATE(3607)] = 109633, - [SMALL_STATE(3608)] = 109659, - [SMALL_STATE(3609)] = 109681, - [SMALL_STATE(3610)] = 109707, - [SMALL_STATE(3611)] = 109731, - [SMALL_STATE(3612)] = 109757, - [SMALL_STATE(3613)] = 109779, - [SMALL_STATE(3614)] = 109811, - [SMALL_STATE(3615)] = 109837, - [SMALL_STATE(3616)] = 109859, - [SMALL_STATE(3617)] = 109881, - [SMALL_STATE(3618)] = 109903, - [SMALL_STATE(3619)] = 109925, - [SMALL_STATE(3620)] = 109947, - [SMALL_STATE(3621)] = 109975, - [SMALL_STATE(3622)] = 110001, - [SMALL_STATE(3623)] = 110033, - [SMALL_STATE(3624)] = 110057, - [SMALL_STATE(3625)] = 110081, - [SMALL_STATE(3626)] = 110103, - [SMALL_STATE(3627)] = 110137, - [SMALL_STATE(3628)] = 110163, - [SMALL_STATE(3629)] = 110187, - [SMALL_STATE(3630)] = 110210, - [SMALL_STATE(3631)] = 110233, - [SMALL_STATE(3632)] = 110254, - [SMALL_STATE(3633)] = 110287, - [SMALL_STATE(3634)] = 110308, - [SMALL_STATE(3635)] = 110341, - [SMALL_STATE(3636)] = 110372, - [SMALL_STATE(3637)] = 110397, - [SMALL_STATE(3638)] = 110420, - [SMALL_STATE(3639)] = 110449, - [SMALL_STATE(3640)] = 110474, - [SMALL_STATE(3641)] = 110507, - [SMALL_STATE(3642)] = 110528, - [SMALL_STATE(3643)] = 110561, - [SMALL_STATE(3644)] = 110594, - [SMALL_STATE(3645)] = 110627, - [SMALL_STATE(3646)] = 110658, - [SMALL_STATE(3647)] = 110679, - [SMALL_STATE(3648)] = 110700, - [SMALL_STATE(3649)] = 110733, - [SMALL_STATE(3650)] = 110766, - [SMALL_STATE(3651)] = 110787, - [SMALL_STATE(3652)] = 110820, - [SMALL_STATE(3653)] = 110845, - [SMALL_STATE(3654)] = 110880, - [SMALL_STATE(3655)] = 110913, - [SMALL_STATE(3656)] = 110948, - [SMALL_STATE(3657)] = 110971, - [SMALL_STATE(3658)] = 110996, - [SMALL_STATE(3659)] = 111027, - [SMALL_STATE(3660)] = 111058, - [SMALL_STATE(3661)] = 111081, - [SMALL_STATE(3662)] = 111102, - [SMALL_STATE(3663)] = 111135, - [SMALL_STATE(3664)] = 111168, - [SMALL_STATE(3665)] = 111199, - [SMALL_STATE(3666)] = 111232, - [SMALL_STATE(3667)] = 111265, - [SMALL_STATE(3668)] = 111298, - [SMALL_STATE(3669)] = 111331, - [SMALL_STATE(3670)] = 111362, - [SMALL_STATE(3671)] = 111395, - [SMALL_STATE(3672)] = 111428, - [SMALL_STATE(3673)] = 111459, - [SMALL_STATE(3674)] = 111484, - [SMALL_STATE(3675)] = 111505, - [SMALL_STATE(3676)] = 111538, - [SMALL_STATE(3677)] = 111571, - [SMALL_STATE(3678)] = 111602, - [SMALL_STATE(3679)] = 111625, - [SMALL_STATE(3680)] = 111658, - [SMALL_STATE(3681)] = 111691, - [SMALL_STATE(3682)] = 111722, - [SMALL_STATE(3683)] = 111755, - [SMALL_STATE(3684)] = 111788, - [SMALL_STATE(3685)] = 111819, - [SMALL_STATE(3686)] = 111852, - [SMALL_STATE(3687)] = 111885, - [SMALL_STATE(3688)] = 111916, - [SMALL_STATE(3689)] = 111949, - [SMALL_STATE(3690)] = 111982, - [SMALL_STATE(3691)] = 112013, - [SMALL_STATE(3692)] = 112046, - [SMALL_STATE(3693)] = 112079, - [SMALL_STATE(3694)] = 112110, - [SMALL_STATE(3695)] = 112143, - [SMALL_STATE(3696)] = 112176, - [SMALL_STATE(3697)] = 112207, - [SMALL_STATE(3698)] = 112240, - [SMALL_STATE(3699)] = 112273, - [SMALL_STATE(3700)] = 112304, - [SMALL_STATE(3701)] = 112335, - [SMALL_STATE(3702)] = 112366, - [SMALL_STATE(3703)] = 112397, - [SMALL_STATE(3704)] = 112428, - [SMALL_STATE(3705)] = 112459, - [SMALL_STATE(3706)] = 112490, - [SMALL_STATE(3707)] = 112521, - [SMALL_STATE(3708)] = 112552, - [SMALL_STATE(3709)] = 112585, - [SMALL_STATE(3710)] = 112606, - [SMALL_STATE(3711)] = 112639, - [SMALL_STATE(3712)] = 112670, - [SMALL_STATE(3713)] = 112695, - [SMALL_STATE(3714)] = 112718, - [SMALL_STATE(3715)] = 112743, - [SMALL_STATE(3716)] = 112764, - [SMALL_STATE(3717)] = 112789, - [SMALL_STATE(3718)] = 112810, - [SMALL_STATE(3719)] = 112831, - [SMALL_STATE(3720)] = 112852, - [SMALL_STATE(3721)] = 112883, - [SMALL_STATE(3722)] = 112914, - [SMALL_STATE(3723)] = 112942, - [SMALL_STATE(3724)] = 112970, - [SMALL_STATE(3725)] = 112998, - [SMALL_STATE(3726)] = 113018, - [SMALL_STATE(3727)] = 113046, - [SMALL_STATE(3728)] = 113074, - [SMALL_STATE(3729)] = 113102, - [SMALL_STATE(3730)] = 113122, - [SMALL_STATE(3731)] = 113142, - [SMALL_STATE(3732)] = 113170, - [SMALL_STATE(3733)] = 113198, - [SMALL_STATE(3734)] = 113218, - [SMALL_STATE(3735)] = 113246, - [SMALL_STATE(3736)] = 113274, - [SMALL_STATE(3737)] = 113302, - [SMALL_STATE(3738)] = 113332, - [SMALL_STATE(3739)] = 113352, - [SMALL_STATE(3740)] = 113374, - [SMALL_STATE(3741)] = 113402, - [SMALL_STATE(3742)] = 113422, - [SMALL_STATE(3743)] = 113450, - [SMALL_STATE(3744)] = 113470, - [SMALL_STATE(3745)] = 113490, - [SMALL_STATE(3746)] = 113512, - [SMALL_STATE(3747)] = 113540, - [SMALL_STATE(3748)] = 113568, - [SMALL_STATE(3749)] = 113592, - [SMALL_STATE(3750)] = 113620, - [SMALL_STATE(3751)] = 113648, - [SMALL_STATE(3752)] = 113676, - [SMALL_STATE(3753)] = 113704, - [SMALL_STATE(3754)] = 113732, - [SMALL_STATE(3755)] = 113760, - [SMALL_STATE(3756)] = 113778, - [SMALL_STATE(3757)] = 113802, - [SMALL_STATE(3758)] = 113830, - [SMALL_STATE(3759)] = 113858, - [SMALL_STATE(3760)] = 113886, - [SMALL_STATE(3761)] = 113914, - [SMALL_STATE(3762)] = 113942, - [SMALL_STATE(3763)] = 113970, - [SMALL_STATE(3764)] = 113988, - [SMALL_STATE(3765)] = 114016, - [SMALL_STATE(3766)] = 114044, - [SMALL_STATE(3767)] = 114072, - [SMALL_STATE(3768)] = 114100, - [SMALL_STATE(3769)] = 114124, - [SMALL_STATE(3770)] = 114152, - [SMALL_STATE(3771)] = 114172, - [SMALL_STATE(3772)] = 114200, - [SMALL_STATE(3773)] = 114222, - [SMALL_STATE(3774)] = 114242, - [SMALL_STATE(3775)] = 114270, - [SMALL_STATE(3776)] = 114292, - [SMALL_STATE(3777)] = 114316, - [SMALL_STATE(3778)] = 114344, - [SMALL_STATE(3779)] = 114368, - [SMALL_STATE(3780)] = 114388, - [SMALL_STATE(3781)] = 114408, - [SMALL_STATE(3782)] = 114434, - [SMALL_STATE(3783)] = 114460, - [SMALL_STATE(3784)] = 114488, - [SMALL_STATE(3785)] = 114516, - [SMALL_STATE(3786)] = 114544, - [SMALL_STATE(3787)] = 114566, - [SMALL_STATE(3788)] = 114594, - [SMALL_STATE(3789)] = 114622, - [SMALL_STATE(3790)] = 114650, - [SMALL_STATE(3791)] = 114672, - [SMALL_STATE(3792)] = 114694, - [SMALL_STATE(3793)] = 114714, - [SMALL_STATE(3794)] = 114742, - [SMALL_STATE(3795)] = 114770, - [SMALL_STATE(3796)] = 114800, - [SMALL_STATE(3797)] = 114824, - [SMALL_STATE(3798)] = 114852, - [SMALL_STATE(3799)] = 114872, - [SMALL_STATE(3800)] = 114892, - [SMALL_STATE(3801)] = 114920, - [SMALL_STATE(3802)] = 114946, - [SMALL_STATE(3803)] = 114968, - [SMALL_STATE(3804)] = 114987, - [SMALL_STATE(3805)] = 115012, - [SMALL_STATE(3806)] = 115033, - [SMALL_STATE(3807)] = 115058, - [SMALL_STATE(3808)] = 115077, - [SMALL_STATE(3809)] = 115096, - [SMALL_STATE(3810)] = 115121, - [SMALL_STATE(3811)] = 115146, - [SMALL_STATE(3812)] = 115175, - [SMALL_STATE(3813)] = 115194, - [SMALL_STATE(3814)] = 115219, - [SMALL_STATE(3815)] = 115244, - [SMALL_STATE(3816)] = 115265, - [SMALL_STATE(3817)] = 115292, - [SMALL_STATE(3818)] = 115317, - [SMALL_STATE(3819)] = 115336, - [SMALL_STATE(3820)] = 115357, - [SMALL_STATE(3821)] = 115376, - [SMALL_STATE(3822)] = 115401, - [SMALL_STATE(3823)] = 115432, - [SMALL_STATE(3824)] = 115457, - [SMALL_STATE(3825)] = 115482, - [SMALL_STATE(3826)] = 115501, - [SMALL_STATE(3827)] = 115520, - [SMALL_STATE(3828)] = 115545, - [SMALL_STATE(3829)] = 115570, - [SMALL_STATE(3830)] = 115589, - [SMALL_STATE(3831)] = 115616, - [SMALL_STATE(3832)] = 115635, - [SMALL_STATE(3833)] = 115660, - [SMALL_STATE(3834)] = 115679, - [SMALL_STATE(3835)] = 115704, - [SMALL_STATE(3836)] = 115727, - [SMALL_STATE(3837)] = 115752, - [SMALL_STATE(3838)] = 115779, - [SMALL_STATE(3839)] = 115802, - [SMALL_STATE(3840)] = 115829, - [SMALL_STATE(3841)] = 115848, - [SMALL_STATE(3842)] = 115867, - [SMALL_STATE(3843)] = 115888, - [SMALL_STATE(3844)] = 115909, - [SMALL_STATE(3845)] = 115932, - [SMALL_STATE(3846)] = 115959, - [SMALL_STATE(3847)] = 115980, - [SMALL_STATE(3848)] = 116007, - [SMALL_STATE(3849)] = 116030, - [SMALL_STATE(3850)] = 116055, - [SMALL_STATE(3851)] = 116081, - [SMALL_STATE(3852)] = 116099, - [SMALL_STATE(3853)] = 116125, - [SMALL_STATE(3854)] = 116153, - [SMALL_STATE(3855)] = 116181, - [SMALL_STATE(3856)] = 116209, - [SMALL_STATE(3857)] = 116237, - [SMALL_STATE(3858)] = 116263, - [SMALL_STATE(3859)] = 116291, - [SMALL_STATE(3860)] = 116319, - [SMALL_STATE(3861)] = 116347, - [SMALL_STATE(3862)] = 116375, - [SMALL_STATE(3863)] = 116403, - [SMALL_STATE(3864)] = 116427, - [SMALL_STATE(3865)] = 116451, - [SMALL_STATE(3866)] = 116479, - [SMALL_STATE(3867)] = 116507, - [SMALL_STATE(3868)] = 116525, - [SMALL_STATE(3869)] = 116547, - [SMALL_STATE(3870)] = 116575, - [SMALL_STATE(3871)] = 116603, - [SMALL_STATE(3872)] = 116631, - [SMALL_STATE(3873)] = 116651, - [SMALL_STATE(3874)] = 116679, - [SMALL_STATE(3875)] = 116707, - [SMALL_STATE(3876)] = 116735, - [SMALL_STATE(3877)] = 116763, - [SMALL_STATE(3878)] = 116781, - [SMALL_STATE(3879)] = 116803, - [SMALL_STATE(3880)] = 116821, - [SMALL_STATE(3881)] = 116849, - [SMALL_STATE(3882)] = 116867, - [SMALL_STATE(3883)] = 116895, - [SMALL_STATE(3884)] = 116923, - [SMALL_STATE(3885)] = 116949, - [SMALL_STATE(3886)] = 116975, - [SMALL_STATE(3887)] = 117003, - [SMALL_STATE(3888)] = 117023, - [SMALL_STATE(3889)] = 117049, - [SMALL_STATE(3890)] = 117077, - [SMALL_STATE(3891)] = 117095, - [SMALL_STATE(3892)] = 117119, - [SMALL_STATE(3893)] = 117137, - [SMALL_STATE(3894)] = 117165, - [SMALL_STATE(3895)] = 117193, - [SMALL_STATE(3896)] = 117221, - [SMALL_STATE(3897)] = 117249, - [SMALL_STATE(3898)] = 117269, - [SMALL_STATE(3899)] = 117289, - [SMALL_STATE(3900)] = 117309, - [SMALL_STATE(3901)] = 117331, - [SMALL_STATE(3902)] = 117359, - [SMALL_STATE(3903)] = 117387, - [SMALL_STATE(3904)] = 117411, - [SMALL_STATE(3905)] = 117437, - [SMALL_STATE(3906)] = 117463, - [SMALL_STATE(3907)] = 117491, - [SMALL_STATE(3908)] = 117519, - [SMALL_STATE(3909)] = 117545, - [SMALL_STATE(3910)] = 117573, - [SMALL_STATE(3911)] = 117599, - [SMALL_STATE(3912)] = 117625, - [SMALL_STATE(3913)] = 117653, - [SMALL_STATE(3914)] = 117671, - [SMALL_STATE(3915)] = 117695, - [SMALL_STATE(3916)] = 117719, - [SMALL_STATE(3917)] = 117747, - [SMALL_STATE(3918)] = 117767, - [SMALL_STATE(3919)] = 117795, - [SMALL_STATE(3920)] = 117821, - [SMALL_STATE(3921)] = 117849, - [SMALL_STATE(3922)] = 117871, - [SMALL_STATE(3923)] = 117897, - [SMALL_STATE(3924)] = 117919, - [SMALL_STATE(3925)] = 117947, - [SMALL_STATE(3926)] = 117969, - [SMALL_STATE(3927)] = 117987, - [SMALL_STATE(3928)] = 118013, - [SMALL_STATE(3929)] = 118035, - [SMALL_STATE(3930)] = 118053, - [SMALL_STATE(3931)] = 118073, - [SMALL_STATE(3932)] = 118091, - [SMALL_STATE(3933)] = 118117, - [SMALL_STATE(3934)] = 118139, - [SMALL_STATE(3935)] = 118157, - [SMALL_STATE(3936)] = 118175, - [SMALL_STATE(3937)] = 118197, - [SMALL_STATE(3938)] = 118221, - [SMALL_STATE(3939)] = 118243, - [SMALL_STATE(3940)] = 118269, - [SMALL_STATE(3941)] = 118297, - [SMALL_STATE(3942)] = 118321, - [SMALL_STATE(3943)] = 118347, - [SMALL_STATE(3944)] = 118373, - [SMALL_STATE(3945)] = 118395, - [SMALL_STATE(3946)] = 118417, - [SMALL_STATE(3947)] = 118445, - [SMALL_STATE(3948)] = 118465, - [SMALL_STATE(3949)] = 118491, - [SMALL_STATE(3950)] = 118519, - [SMALL_STATE(3951)] = 118547, - [SMALL_STATE(3952)] = 118575, - [SMALL_STATE(3953)] = 118601, - [SMALL_STATE(3954)] = 118629, - [SMALL_STATE(3955)] = 118657, - [SMALL_STATE(3956)] = 118685, - [SMALL_STATE(3957)] = 118711, - [SMALL_STATE(3958)] = 118739, - [SMALL_STATE(3959)] = 118763, - [SMALL_STATE(3960)] = 118786, - [SMALL_STATE(3961)] = 118809, - [SMALL_STATE(3962)] = 118832, - [SMALL_STATE(3963)] = 118857, - [SMALL_STATE(3964)] = 118880, - [SMALL_STATE(3965)] = 118901, - [SMALL_STATE(3966)] = 118922, - [SMALL_STATE(3967)] = 118941, - [SMALL_STATE(3968)] = 118962, - [SMALL_STATE(3969)] = 118981, - [SMALL_STATE(3970)] = 119004, - [SMALL_STATE(3971)] = 119025, - [SMALL_STATE(3972)] = 119048, - [SMALL_STATE(3973)] = 119071, - [SMALL_STATE(3974)] = 119096, - [SMALL_STATE(3975)] = 119121, - [SMALL_STATE(3976)] = 119146, - [SMALL_STATE(3977)] = 119169, - [SMALL_STATE(3978)] = 119188, - [SMALL_STATE(3979)] = 119211, - [SMALL_STATE(3980)] = 119234, - [SMALL_STATE(3981)] = 119257, - [SMALL_STATE(3982)] = 119280, - [SMALL_STATE(3983)] = 119301, - [SMALL_STATE(3984)] = 119324, - [SMALL_STATE(3985)] = 119347, - [SMALL_STATE(3986)] = 119370, - [SMALL_STATE(3987)] = 119393, - [SMALL_STATE(3988)] = 119416, - [SMALL_STATE(3989)] = 119439, - [SMALL_STATE(3990)] = 119460, - [SMALL_STATE(3991)] = 119483, - [SMALL_STATE(3992)] = 119502, - [SMALL_STATE(3993)] = 119525, - [SMALL_STATE(3994)] = 119546, - [SMALL_STATE(3995)] = 119569, - [SMALL_STATE(3996)] = 119584, - [SMALL_STATE(3997)] = 119607, - [SMALL_STATE(3998)] = 119630, - [SMALL_STATE(3999)] = 119649, - [SMALL_STATE(4000)] = 119668, - [SMALL_STATE(4001)] = 119691, - [SMALL_STATE(4002)] = 119706, - [SMALL_STATE(4003)] = 119721, - [SMALL_STATE(4004)] = 119746, - [SMALL_STATE(4005)] = 119769, - [SMALL_STATE(4006)] = 119792, - [SMALL_STATE(4007)] = 119807, - [SMALL_STATE(4008)] = 119822, - [SMALL_STATE(4009)] = 119837, - [SMALL_STATE(4010)] = 119860, - [SMALL_STATE(4011)] = 119883, - [SMALL_STATE(4012)] = 119906, - [SMALL_STATE(4013)] = 119929, - [SMALL_STATE(4014)] = 119952, - [SMALL_STATE(4015)] = 119973, - [SMALL_STATE(4016)] = 119992, - [SMALL_STATE(4017)] = 120013, - [SMALL_STATE(4018)] = 120036, - [SMALL_STATE(4019)] = 120059, - [SMALL_STATE(4020)] = 120082, - [SMALL_STATE(4021)] = 120105, - [SMALL_STATE(4022)] = 120128, - [SMALL_STATE(4023)] = 120151, - [SMALL_STATE(4024)] = 120174, - [SMALL_STATE(4025)] = 120197, - [SMALL_STATE(4026)] = 120220, - [SMALL_STATE(4027)] = 120243, - [SMALL_STATE(4028)] = 120266, - [SMALL_STATE(4029)] = 120289, - [SMALL_STATE(4030)] = 120312, - [SMALL_STATE(4031)] = 120335, - [SMALL_STATE(4032)] = 120358, - [SMALL_STATE(4033)] = 120383, - [SMALL_STATE(4034)] = 120404, - [SMALL_STATE(4035)] = 120425, - [SMALL_STATE(4036)] = 120448, - [SMALL_STATE(4037)] = 120469, - [SMALL_STATE(4038)] = 120488, - [SMALL_STATE(4039)] = 120513, - [SMALL_STATE(4040)] = 120538, - [SMALL_STATE(4041)] = 120563, - [SMALL_STATE(4042)] = 120588, - [SMALL_STATE(4043)] = 120609, - [SMALL_STATE(4044)] = 120632, - [SMALL_STATE(4045)] = 120655, - [SMALL_STATE(4046)] = 120678, - [SMALL_STATE(4047)] = 120697, - [SMALL_STATE(4048)] = 120716, - [SMALL_STATE(4049)] = 120739, - [SMALL_STATE(4050)] = 120762, - [SMALL_STATE(4051)] = 120783, - [SMALL_STATE(4052)] = 120806, - [SMALL_STATE(4053)] = 120829, - [SMALL_STATE(4054)] = 120854, - [SMALL_STATE(4055)] = 120877, - [SMALL_STATE(4056)] = 120902, - [SMALL_STATE(4057)] = 120925, - [SMALL_STATE(4058)] = 120948, - [SMALL_STATE(4059)] = 120969, - [SMALL_STATE(4060)] = 120994, - [SMALL_STATE(4061)] = 121017, - [SMALL_STATE(4062)] = 121040, - [SMALL_STATE(4063)] = 121063, - [SMALL_STATE(4064)] = 121086, - [SMALL_STATE(4065)] = 121109, - [SMALL_STATE(4066)] = 121132, - [SMALL_STATE(4067)] = 121155, - [SMALL_STATE(4068)] = 121178, - [SMALL_STATE(4069)] = 121197, - [SMALL_STATE(4070)] = 121222, - [SMALL_STATE(4071)] = 121245, - [SMALL_STATE(4072)] = 121268, - [SMALL_STATE(4073)] = 121291, - [SMALL_STATE(4074)] = 121314, - [SMALL_STATE(4075)] = 121337, - [SMALL_STATE(4076)] = 121360, - [SMALL_STATE(4077)] = 121383, - [SMALL_STATE(4078)] = 121408, - [SMALL_STATE(4079)] = 121427, - [SMALL_STATE(4080)] = 121446, - [SMALL_STATE(4081)] = 121465, - [SMALL_STATE(4082)] = 121488, - [SMALL_STATE(4083)] = 121507, - [SMALL_STATE(4084)] = 121528, - [SMALL_STATE(4085)] = 121553, - [SMALL_STATE(4086)] = 121574, - [SMALL_STATE(4087)] = 121597, - [SMALL_STATE(4088)] = 121620, - [SMALL_STATE(4089)] = 121643, - [SMALL_STATE(4090)] = 121664, - [SMALL_STATE(4091)] = 121687, - [SMALL_STATE(4092)] = 121706, - [SMALL_STATE(4093)] = 121727, - [SMALL_STATE(4094)] = 121746, - [SMALL_STATE(4095)] = 121769, - [SMALL_STATE(4096)] = 121792, - [SMALL_STATE(4097)] = 121815, - [SMALL_STATE(4098)] = 121838, - [SMALL_STATE(4099)] = 121861, - [SMALL_STATE(4100)] = 121886, - [SMALL_STATE(4101)] = 121909, - [SMALL_STATE(4102)] = 121932, - [SMALL_STATE(4103)] = 121955, - [SMALL_STATE(4104)] = 121978, - [SMALL_STATE(4105)] = 122001, - [SMALL_STATE(4106)] = 122024, - [SMALL_STATE(4107)] = 122049, - [SMALL_STATE(4108)] = 122074, - [SMALL_STATE(4109)] = 122097, - [SMALL_STATE(4110)] = 122118, - [SMALL_STATE(4111)] = 122139, - [SMALL_STATE(4112)] = 122164, - [SMALL_STATE(4113)] = 122187, - [SMALL_STATE(4114)] = 122208, - [SMALL_STATE(4115)] = 122231, - [SMALL_STATE(4116)] = 122254, - [SMALL_STATE(4117)] = 122277, - [SMALL_STATE(4118)] = 122300, - [SMALL_STATE(4119)] = 122323, - [SMALL_STATE(4120)] = 122346, - [SMALL_STATE(4121)] = 122369, - [SMALL_STATE(4122)] = 122392, - [SMALL_STATE(4123)] = 122415, - [SMALL_STATE(4124)] = 122438, - [SMALL_STATE(4125)] = 122457, - [SMALL_STATE(4126)] = 122480, - [SMALL_STATE(4127)] = 122505, - [SMALL_STATE(4128)] = 122524, - [SMALL_STATE(4129)] = 122545, - [SMALL_STATE(4130)] = 122568, - [SMALL_STATE(4131)] = 122589, - [SMALL_STATE(4132)] = 122612, - [SMALL_STATE(4133)] = 122635, - [SMALL_STATE(4134)] = 122656, - [SMALL_STATE(4135)] = 122677, - [SMALL_STATE(4136)] = 122700, - [SMALL_STATE(4137)] = 122721, - [SMALL_STATE(4138)] = 122738, - [SMALL_STATE(4139)] = 122755, - [SMALL_STATE(4140)] = 122772, - [SMALL_STATE(4141)] = 122793, - [SMALL_STATE(4142)] = 122814, - [SMALL_STATE(4143)] = 122837, - [SMALL_STATE(4144)] = 122860, - [SMALL_STATE(4145)] = 122883, - [SMALL_STATE(4146)] = 122904, - [SMALL_STATE(4147)] = 122927, - [SMALL_STATE(4148)] = 122948, - [SMALL_STATE(4149)] = 122969, - [SMALL_STATE(4150)] = 122990, - [SMALL_STATE(4151)] = 123011, - [SMALL_STATE(4152)] = 123032, - [SMALL_STATE(4153)] = 123055, - [SMALL_STATE(4154)] = 123080, - [SMALL_STATE(4155)] = 123105, - [SMALL_STATE(4156)] = 123130, - [SMALL_STATE(4157)] = 123155, - [SMALL_STATE(4158)] = 123178, - [SMALL_STATE(4159)] = 123201, - [SMALL_STATE(4160)] = 123220, - [SMALL_STATE(4161)] = 123243, - [SMALL_STATE(4162)] = 123266, - [SMALL_STATE(4163)] = 123291, - [SMALL_STATE(4164)] = 123316, - [SMALL_STATE(4165)] = 123341, - [SMALL_STATE(4166)] = 123360, - [SMALL_STATE(4167)] = 123385, - [SMALL_STATE(4168)] = 123410, - [SMALL_STATE(4169)] = 123435, - [SMALL_STATE(4170)] = 123456, - [SMALL_STATE(4171)] = 123477, - [SMALL_STATE(4172)] = 123500, - [SMALL_STATE(4173)] = 123523, - [SMALL_STATE(4174)] = 123544, - [SMALL_STATE(4175)] = 123563, - [SMALL_STATE(4176)] = 123588, - [SMALL_STATE(4177)] = 123608, - [SMALL_STATE(4178)] = 123624, - [SMALL_STATE(4179)] = 123640, - [SMALL_STATE(4180)] = 123662, - [SMALL_STATE(4181)] = 123684, - [SMALL_STATE(4182)] = 123704, - [SMALL_STATE(4183)] = 123726, - [SMALL_STATE(4184)] = 123742, - [SMALL_STATE(4185)] = 123760, - [SMALL_STATE(4186)] = 123780, - [SMALL_STATE(4187)] = 123802, - [SMALL_STATE(4188)] = 123820, - [SMALL_STATE(4189)] = 123840, - [SMALL_STATE(4190)] = 123862, - [SMALL_STATE(4191)] = 123884, - [SMALL_STATE(4192)] = 123902, - [SMALL_STATE(4193)] = 123922, - [SMALL_STATE(4194)] = 123942, - [SMALL_STATE(4195)] = 123962, - [SMALL_STATE(4196)] = 123984, - [SMALL_STATE(4197)] = 124006, - [SMALL_STATE(4198)] = 124026, - [SMALL_STATE(4199)] = 124046, - [SMALL_STATE(4200)] = 124064, - [SMALL_STATE(4201)] = 124082, - [SMALL_STATE(4202)] = 124104, - [SMALL_STATE(4203)] = 124124, - [SMALL_STATE(4204)] = 124144, - [SMALL_STATE(4205)] = 124166, - [SMALL_STATE(4206)] = 124188, - [SMALL_STATE(4207)] = 124208, - [SMALL_STATE(4208)] = 124230, - [SMALL_STATE(4209)] = 124246, - [SMALL_STATE(4210)] = 124262, - [SMALL_STATE(4211)] = 124284, - [SMALL_STATE(4212)] = 124304, - [SMALL_STATE(4213)] = 124320, - [SMALL_STATE(4214)] = 124336, - [SMALL_STATE(4215)] = 124356, - [SMALL_STATE(4216)] = 124372, - [SMALL_STATE(4217)] = 124390, - [SMALL_STATE(4218)] = 124410, - [SMALL_STATE(4219)] = 124430, - [SMALL_STATE(4220)] = 124452, - [SMALL_STATE(4221)] = 124474, - [SMALL_STATE(4222)] = 124496, - [SMALL_STATE(4223)] = 124518, - [SMALL_STATE(4224)] = 124538, - [SMALL_STATE(4225)] = 124554, - [SMALL_STATE(4226)] = 124570, - [SMALL_STATE(4227)] = 124590, - [SMALL_STATE(4228)] = 124612, - [SMALL_STATE(4229)] = 124634, - [SMALL_STATE(4230)] = 124654, - [SMALL_STATE(4231)] = 124674, - [SMALL_STATE(4232)] = 124696, - [SMALL_STATE(4233)] = 124716, - [SMALL_STATE(4234)] = 124736, - [SMALL_STATE(4235)] = 124758, - [SMALL_STATE(4236)] = 124778, - [SMALL_STATE(4237)] = 124798, - [SMALL_STATE(4238)] = 124818, - [SMALL_STATE(4239)] = 124838, - [SMALL_STATE(4240)] = 124856, - [SMALL_STATE(4241)] = 124872, - [SMALL_STATE(4242)] = 124892, - [SMALL_STATE(4243)] = 124914, - [SMALL_STATE(4244)] = 124934, - [SMALL_STATE(4245)] = 124954, - [SMALL_STATE(4246)] = 124976, - [SMALL_STATE(4247)] = 124992, - [SMALL_STATE(4248)] = 125008, - [SMALL_STATE(4249)] = 125024, - [SMALL_STATE(4250)] = 125044, - [SMALL_STATE(4251)] = 125060, - [SMALL_STATE(4252)] = 125076, - [SMALL_STATE(4253)] = 125092, - [SMALL_STATE(4254)] = 125112, - [SMALL_STATE(4255)] = 125132, - [SMALL_STATE(4256)] = 125148, - [SMALL_STATE(4257)] = 125168, - [SMALL_STATE(4258)] = 125188, - [SMALL_STATE(4259)] = 125208, - [SMALL_STATE(4260)] = 125230, - [SMALL_STATE(4261)] = 125250, - [SMALL_STATE(4262)] = 125270, - [SMALL_STATE(4263)] = 125286, - [SMALL_STATE(4264)] = 125306, - [SMALL_STATE(4265)] = 125328, - [SMALL_STATE(4266)] = 125348, - [SMALL_STATE(4267)] = 125366, - [SMALL_STATE(4268)] = 125388, - [SMALL_STATE(4269)] = 125404, - [SMALL_STATE(4270)] = 125420, - [SMALL_STATE(4271)] = 125436, - [SMALL_STATE(4272)] = 125458, - [SMALL_STATE(4273)] = 125478, - [SMALL_STATE(4274)] = 125500, - [SMALL_STATE(4275)] = 125518, - [SMALL_STATE(4276)] = 125540, - [SMALL_STATE(4277)] = 125562, - [SMALL_STATE(4278)] = 125584, - [SMALL_STATE(4279)] = 125600, - [SMALL_STATE(4280)] = 125618, - [SMALL_STATE(4281)] = 125638, - [SMALL_STATE(4282)] = 125656, - [SMALL_STATE(4283)] = 125678, - [SMALL_STATE(4284)] = 125696, - [SMALL_STATE(4285)] = 125716, - [SMALL_STATE(4286)] = 125734, - [SMALL_STATE(4287)] = 125750, - [SMALL_STATE(4288)] = 125766, - [SMALL_STATE(4289)] = 125786, - [SMALL_STATE(4290)] = 125806, - [SMALL_STATE(4291)] = 125826, - [SMALL_STATE(4292)] = 125844, - [SMALL_STATE(4293)] = 125866, - [SMALL_STATE(4294)] = 125884, - [SMALL_STATE(4295)] = 125900, - [SMALL_STATE(4296)] = 125918, - [SMALL_STATE(4297)] = 125938, - [SMALL_STATE(4298)] = 125956, - [SMALL_STATE(4299)] = 125974, - [SMALL_STATE(4300)] = 125996, - [SMALL_STATE(4301)] = 126018, - [SMALL_STATE(4302)] = 126036, - [SMALL_STATE(4303)] = 126056, - [SMALL_STATE(4304)] = 126072, - [SMALL_STATE(4305)] = 126090, - [SMALL_STATE(4306)] = 126106, - [SMALL_STATE(4307)] = 126122, - [SMALL_STATE(4308)] = 126138, - [SMALL_STATE(4309)] = 126154, - [SMALL_STATE(4310)] = 126174, - [SMALL_STATE(4311)] = 126192, - [SMALL_STATE(4312)] = 126210, - [SMALL_STATE(4313)] = 126228, - [SMALL_STATE(4314)] = 126244, - [SMALL_STATE(4315)] = 126266, - [SMALL_STATE(4316)] = 126286, - [SMALL_STATE(4317)] = 126308, - [SMALL_STATE(4318)] = 126330, - [SMALL_STATE(4319)] = 126352, - [SMALL_STATE(4320)] = 126374, - [SMALL_STATE(4321)] = 126396, - [SMALL_STATE(4322)] = 126416, - [SMALL_STATE(4323)] = 126438, - [SMALL_STATE(4324)] = 126456, - [SMALL_STATE(4325)] = 126476, - [SMALL_STATE(4326)] = 126496, - [SMALL_STATE(4327)] = 126514, - [SMALL_STATE(4328)] = 126534, - [SMALL_STATE(4329)] = 126552, - [SMALL_STATE(4330)] = 126568, - [SMALL_STATE(4331)] = 126588, - [SMALL_STATE(4332)] = 126608, - [SMALL_STATE(4333)] = 126624, - [SMALL_STATE(4334)] = 126646, - [SMALL_STATE(4335)] = 126664, - [SMALL_STATE(4336)] = 126679, - [SMALL_STATE(4337)] = 126692, - [SMALL_STATE(4338)] = 126707, - [SMALL_STATE(4339)] = 126720, - [SMALL_STATE(4340)] = 126737, - [SMALL_STATE(4341)] = 126754, - [SMALL_STATE(4342)] = 126771, - [SMALL_STATE(4343)] = 126784, - [SMALL_STATE(4344)] = 126797, - [SMALL_STATE(4345)] = 126816, - [SMALL_STATE(4346)] = 126835, - [SMALL_STATE(4347)] = 126852, - [SMALL_STATE(4348)] = 126869, - [SMALL_STATE(4349)] = 126882, - [SMALL_STATE(4350)] = 126895, - [SMALL_STATE(4351)] = 126912, - [SMALL_STATE(4352)] = 126927, - [SMALL_STATE(4353)] = 126942, - [SMALL_STATE(4354)] = 126959, - [SMALL_STATE(4355)] = 126978, - [SMALL_STATE(4356)] = 126997, - [SMALL_STATE(4357)] = 127014, - [SMALL_STATE(4358)] = 127033, - [SMALL_STATE(4359)] = 127048, - [SMALL_STATE(4360)] = 127067, - [SMALL_STATE(4361)] = 127082, - [SMALL_STATE(4362)] = 127099, - [SMALL_STATE(4363)] = 127112, - [SMALL_STATE(4364)] = 127131, - [SMALL_STATE(4365)] = 127150, - [SMALL_STATE(4366)] = 127169, - [SMALL_STATE(4367)] = 127186, - [SMALL_STATE(4368)] = 127203, - [SMALL_STATE(4369)] = 127222, - [SMALL_STATE(4370)] = 127241, - [SMALL_STATE(4371)] = 127256, - [SMALL_STATE(4372)] = 127271, - [SMALL_STATE(4373)] = 127286, - [SMALL_STATE(4374)] = 127299, - [SMALL_STATE(4375)] = 127314, - [SMALL_STATE(4376)] = 127329, - [SMALL_STATE(4377)] = 127342, - [SMALL_STATE(4378)] = 127359, - [SMALL_STATE(4379)] = 127374, - [SMALL_STATE(4380)] = 127387, - [SMALL_STATE(4381)] = 127404, - [SMALL_STATE(4382)] = 127421, - [SMALL_STATE(4383)] = 127438, - [SMALL_STATE(4384)] = 127455, - [SMALL_STATE(4385)] = 127472, - [SMALL_STATE(4386)] = 127485, - [SMALL_STATE(4387)] = 127500, - [SMALL_STATE(4388)] = 127513, - [SMALL_STATE(4389)] = 127526, - [SMALL_STATE(4390)] = 127545, - [SMALL_STATE(4391)] = 127562, - [SMALL_STATE(4392)] = 127575, - [SMALL_STATE(4393)] = 127590, - [SMALL_STATE(4394)] = 127605, - [SMALL_STATE(4395)] = 127620, - [SMALL_STATE(4396)] = 127635, - [SMALL_STATE(4397)] = 127650, - [SMALL_STATE(4398)] = 127665, - [SMALL_STATE(4399)] = 127678, - [SMALL_STATE(4400)] = 127697, - [SMALL_STATE(4401)] = 127712, - [SMALL_STATE(4402)] = 127731, - [SMALL_STATE(4403)] = 127744, - [SMALL_STATE(4404)] = 127757, - [SMALL_STATE(4405)] = 127772, - [SMALL_STATE(4406)] = 127787, - [SMALL_STATE(4407)] = 127802, - [SMALL_STATE(4408)] = 127817, - [SMALL_STATE(4409)] = 127832, - [SMALL_STATE(4410)] = 127847, - [SMALL_STATE(4411)] = 127862, - [SMALL_STATE(4412)] = 127877, - [SMALL_STATE(4413)] = 127892, - [SMALL_STATE(4414)] = 127907, - [SMALL_STATE(4415)] = 127922, - [SMALL_STATE(4416)] = 127937, - [SMALL_STATE(4417)] = 127952, - [SMALL_STATE(4418)] = 127969, - [SMALL_STATE(4419)] = 127984, - [SMALL_STATE(4420)] = 127999, - [SMALL_STATE(4421)] = 128014, - [SMALL_STATE(4422)] = 128029, - [SMALL_STATE(4423)] = 128044, - [SMALL_STATE(4424)] = 128059, - [SMALL_STATE(4425)] = 128074, - [SMALL_STATE(4426)] = 128089, - [SMALL_STATE(4427)] = 128108, - [SMALL_STATE(4428)] = 128123, - [SMALL_STATE(4429)] = 128142, - [SMALL_STATE(4430)] = 128161, - [SMALL_STATE(4431)] = 128180, - [SMALL_STATE(4432)] = 128199, - [SMALL_STATE(4433)] = 128214, - [SMALL_STATE(4434)] = 128227, - [SMALL_STATE(4435)] = 128244, - [SMALL_STATE(4436)] = 128257, - [SMALL_STATE(4437)] = 128270, - [SMALL_STATE(4438)] = 128289, - [SMALL_STATE(4439)] = 128302, - [SMALL_STATE(4440)] = 128315, - [SMALL_STATE(4441)] = 128332, - [SMALL_STATE(4442)] = 128345, - [SMALL_STATE(4443)] = 128362, - [SMALL_STATE(4444)] = 128379, - [SMALL_STATE(4445)] = 128394, - [SMALL_STATE(4446)] = 128411, - [SMALL_STATE(4447)] = 128430, - [SMALL_STATE(4448)] = 128447, - [SMALL_STATE(4449)] = 128462, - [SMALL_STATE(4450)] = 128481, - [SMALL_STATE(4451)] = 128494, - [SMALL_STATE(4452)] = 128513, - [SMALL_STATE(4453)] = 128526, - [SMALL_STATE(4454)] = 128539, - [SMALL_STATE(4455)] = 128552, - [SMALL_STATE(4456)] = 128565, - [SMALL_STATE(4457)] = 128584, - [SMALL_STATE(4458)] = 128597, - [SMALL_STATE(4459)] = 128610, - [SMALL_STATE(4460)] = 128625, - [SMALL_STATE(4461)] = 128638, - [SMALL_STATE(4462)] = 128657, - [SMALL_STATE(4463)] = 128670, - [SMALL_STATE(4464)] = 128683, - [SMALL_STATE(4465)] = 128698, - [SMALL_STATE(4466)] = 128711, - [SMALL_STATE(4467)] = 128728, - [SMALL_STATE(4468)] = 128741, - [SMALL_STATE(4469)] = 128754, - [SMALL_STATE(4470)] = 128771, - [SMALL_STATE(4471)] = 128786, - [SMALL_STATE(4472)] = 128799, - [SMALL_STATE(4473)] = 128818, - [SMALL_STATE(4474)] = 128833, - [SMALL_STATE(4475)] = 128846, - [SMALL_STATE(4476)] = 128861, - [SMALL_STATE(4477)] = 128874, - [SMALL_STATE(4478)] = 128887, - [SMALL_STATE(4479)] = 128900, - [SMALL_STATE(4480)] = 128919, - [SMALL_STATE(4481)] = 128938, - [SMALL_STATE(4482)] = 128955, - [SMALL_STATE(4483)] = 128974, - [SMALL_STATE(4484)] = 128993, - [SMALL_STATE(4485)] = 129008, - [SMALL_STATE(4486)] = 129027, - [SMALL_STATE(4487)] = 129046, - [SMALL_STATE(4488)] = 129063, - [SMALL_STATE(4489)] = 129082, - [SMALL_STATE(4490)] = 129095, - [SMALL_STATE(4491)] = 129108, - [SMALL_STATE(4492)] = 129127, - [SMALL_STATE(4493)] = 129140, - [SMALL_STATE(4494)] = 129153, - [SMALL_STATE(4495)] = 129168, - [SMALL_STATE(4496)] = 129185, - [SMALL_STATE(4497)] = 129200, - [SMALL_STATE(4498)] = 129213, - [SMALL_STATE(4499)] = 129226, - [SMALL_STATE(4500)] = 129239, - [SMALL_STATE(4501)] = 129252, - [SMALL_STATE(4502)] = 129265, - [SMALL_STATE(4503)] = 129278, - [SMALL_STATE(4504)] = 129291, - [SMALL_STATE(4505)] = 129304, - [SMALL_STATE(4506)] = 129323, - [SMALL_STATE(4507)] = 129342, - [SMALL_STATE(4508)] = 129355, - [SMALL_STATE(4509)] = 129368, - [SMALL_STATE(4510)] = 129381, - [SMALL_STATE(4511)] = 129400, - [SMALL_STATE(4512)] = 129419, - [SMALL_STATE(4513)] = 129432, - [SMALL_STATE(4514)] = 129447, - [SMALL_STATE(4515)] = 129462, - [SMALL_STATE(4516)] = 129481, - [SMALL_STATE(4517)] = 129500, - [SMALL_STATE(4518)] = 129513, - [SMALL_STATE(4519)] = 129532, - [SMALL_STATE(4520)] = 129549, - [SMALL_STATE(4521)] = 129568, - [SMALL_STATE(4522)] = 129581, - [SMALL_STATE(4523)] = 129594, - [SMALL_STATE(4524)] = 129607, - [SMALL_STATE(4525)] = 129624, - [SMALL_STATE(4526)] = 129637, - [SMALL_STATE(4527)] = 129656, - [SMALL_STATE(4528)] = 129669, - [SMALL_STATE(4529)] = 129682, - [SMALL_STATE(4530)] = 129695, - [SMALL_STATE(4531)] = 129714, - [SMALL_STATE(4532)] = 129733, - [SMALL_STATE(4533)] = 129746, - [SMALL_STATE(4534)] = 129759, - [SMALL_STATE(4535)] = 129772, - [SMALL_STATE(4536)] = 129785, - [SMALL_STATE(4537)] = 129798, - [SMALL_STATE(4538)] = 129811, - [SMALL_STATE(4539)] = 129824, - [SMALL_STATE(4540)] = 129837, - [SMALL_STATE(4541)] = 129850, - [SMALL_STATE(4542)] = 129863, - [SMALL_STATE(4543)] = 129876, - [SMALL_STATE(4544)] = 129889, - [SMALL_STATE(4545)] = 129908, - [SMALL_STATE(4546)] = 129927, - [SMALL_STATE(4547)] = 129940, - [SMALL_STATE(4548)] = 129953, - [SMALL_STATE(4549)] = 129970, - [SMALL_STATE(4550)] = 129989, - [SMALL_STATE(4551)] = 130008, - [SMALL_STATE(4552)] = 130023, - [SMALL_STATE(4553)] = 130042, - [SMALL_STATE(4554)] = 130055, - [SMALL_STATE(4555)] = 130068, - [SMALL_STATE(4556)] = 130087, - [SMALL_STATE(4557)] = 130106, - [SMALL_STATE(4558)] = 130119, - [SMALL_STATE(4559)] = 130132, - [SMALL_STATE(4560)] = 130145, - [SMALL_STATE(4561)] = 130158, - [SMALL_STATE(4562)] = 130171, - [SMALL_STATE(4563)] = 130186, - [SMALL_STATE(4564)] = 130205, - [SMALL_STATE(4565)] = 130220, - [SMALL_STATE(4566)] = 130233, - [SMALL_STATE(4567)] = 130246, - [SMALL_STATE(4568)] = 130259, - [SMALL_STATE(4569)] = 130272, - [SMALL_STATE(4570)] = 130289, - [SMALL_STATE(4571)] = 130302, - [SMALL_STATE(4572)] = 130315, - [SMALL_STATE(4573)] = 130328, - [SMALL_STATE(4574)] = 130343, - [SMALL_STATE(4575)] = 130358, - [SMALL_STATE(4576)] = 130371, - [SMALL_STATE(4577)] = 130390, - [SMALL_STATE(4578)] = 130403, - [SMALL_STATE(4579)] = 130422, - [SMALL_STATE(4580)] = 130439, - [SMALL_STATE(4581)] = 130452, - [SMALL_STATE(4582)] = 130465, - [SMALL_STATE(4583)] = 130478, - [SMALL_STATE(4584)] = 130495, - [SMALL_STATE(4585)] = 130510, - [SMALL_STATE(4586)] = 130529, - [SMALL_STATE(4587)] = 130548, - [SMALL_STATE(4588)] = 130563, - [SMALL_STATE(4589)] = 130580, - [SMALL_STATE(4590)] = 130597, - [SMALL_STATE(4591)] = 130616, - [SMALL_STATE(4592)] = 130629, - [SMALL_STATE(4593)] = 130646, - [SMALL_STATE(4594)] = 130659, - [SMALL_STATE(4595)] = 130674, - [SMALL_STATE(4596)] = 130687, - [SMALL_STATE(4597)] = 130700, - [SMALL_STATE(4598)] = 130713, - [SMALL_STATE(4599)] = 130728, - [SMALL_STATE(4600)] = 130743, - [SMALL_STATE(4601)] = 130756, - [SMALL_STATE(4602)] = 130769, - [SMALL_STATE(4603)] = 130782, - [SMALL_STATE(4604)] = 130801, - [SMALL_STATE(4605)] = 130814, - [SMALL_STATE(4606)] = 130827, - [SMALL_STATE(4607)] = 130840, - [SMALL_STATE(4608)] = 130853, - [SMALL_STATE(4609)] = 130866, - [SMALL_STATE(4610)] = 130879, - [SMALL_STATE(4611)] = 130892, - [SMALL_STATE(4612)] = 130905, - [SMALL_STATE(4613)] = 130918, - [SMALL_STATE(4614)] = 130931, - [SMALL_STATE(4615)] = 130944, - [SMALL_STATE(4616)] = 130957, - [SMALL_STATE(4617)] = 130970, - [SMALL_STATE(4618)] = 130983, - [SMALL_STATE(4619)] = 130996, - [SMALL_STATE(4620)] = 131009, - [SMALL_STATE(4621)] = 131022, - [SMALL_STATE(4622)] = 131035, - [SMALL_STATE(4623)] = 131052, - [SMALL_STATE(4624)] = 131069, - [SMALL_STATE(4625)] = 131088, - [SMALL_STATE(4626)] = 131103, - [SMALL_STATE(4627)] = 131120, - [SMALL_STATE(4628)] = 131133, - [SMALL_STATE(4629)] = 131148, - [SMALL_STATE(4630)] = 131167, - [SMALL_STATE(4631)] = 131180, - [SMALL_STATE(4632)] = 131195, - [SMALL_STATE(4633)] = 131214, - [SMALL_STATE(4634)] = 131227, - [SMALL_STATE(4635)] = 131242, - [SMALL_STATE(4636)] = 131261, - [SMALL_STATE(4637)] = 131280, - [SMALL_STATE(4638)] = 131299, - [SMALL_STATE(4639)] = 131314, - [SMALL_STATE(4640)] = 131327, - [SMALL_STATE(4641)] = 131342, - [SMALL_STATE(4642)] = 131355, - [SMALL_STATE(4643)] = 131368, - [SMALL_STATE(4644)] = 131387, - [SMALL_STATE(4645)] = 131406, - [SMALL_STATE(4646)] = 131425, - [SMALL_STATE(4647)] = 131444, - [SMALL_STATE(4648)] = 131459, - [SMALL_STATE(4649)] = 131474, - [SMALL_STATE(4650)] = 131487, - [SMALL_STATE(4651)] = 131502, - [SMALL_STATE(4652)] = 131514, - [SMALL_STATE(4653)] = 131526, - [SMALL_STATE(4654)] = 131542, - [SMALL_STATE(4655)] = 131558, - [SMALL_STATE(4656)] = 131574, - [SMALL_STATE(4657)] = 131586, - [SMALL_STATE(4658)] = 131600, - [SMALL_STATE(4659)] = 131616, - [SMALL_STATE(4660)] = 131630, - [SMALL_STATE(4661)] = 131644, - [SMALL_STATE(4662)] = 131656, - [SMALL_STATE(4663)] = 131672, - [SMALL_STATE(4664)] = 131688, - [SMALL_STATE(4665)] = 131700, - [SMALL_STATE(4666)] = 131712, - [SMALL_STATE(4667)] = 131728, - [SMALL_STATE(4668)] = 131742, - [SMALL_STATE(4669)] = 131758, - [SMALL_STATE(4670)] = 131772, - [SMALL_STATE(4671)] = 131784, - [SMALL_STATE(4672)] = 131800, - [SMALL_STATE(4673)] = 131816, - [SMALL_STATE(4674)] = 131828, - [SMALL_STATE(4675)] = 131840, - [SMALL_STATE(4676)] = 131852, - [SMALL_STATE(4677)] = 131864, - [SMALL_STATE(4678)] = 131880, - [SMALL_STATE(4679)] = 131896, - [SMALL_STATE(4680)] = 131912, - [SMALL_STATE(4681)] = 131924, - [SMALL_STATE(4682)] = 131936, - [SMALL_STATE(4683)] = 131948, - [SMALL_STATE(4684)] = 131960, - [SMALL_STATE(4685)] = 131972, - [SMALL_STATE(4686)] = 131986, - [SMALL_STATE(4687)] = 132000, - [SMALL_STATE(4688)] = 132012, - [SMALL_STATE(4689)] = 132024, - [SMALL_STATE(4690)] = 132040, - [SMALL_STATE(4691)] = 132056, - [SMALL_STATE(4692)] = 132072, - [SMALL_STATE(4693)] = 132088, - [SMALL_STATE(4694)] = 132104, - [SMALL_STATE(4695)] = 132120, - [SMALL_STATE(4696)] = 132132, - [SMALL_STATE(4697)] = 132144, - [SMALL_STATE(4698)] = 132158, - [SMALL_STATE(4699)] = 132170, - [SMALL_STATE(4700)] = 132186, - [SMALL_STATE(4701)] = 132202, - [SMALL_STATE(4702)] = 132218, - [SMALL_STATE(4703)] = 132234, - [SMALL_STATE(4704)] = 132250, - [SMALL_STATE(4705)] = 132266, - [SMALL_STATE(4706)] = 132278, - [SMALL_STATE(4707)] = 132290, - [SMALL_STATE(4708)] = 132302, - [SMALL_STATE(4709)] = 132314, - [SMALL_STATE(4710)] = 132326, - [SMALL_STATE(4711)] = 132338, - [SMALL_STATE(4712)] = 132352, - [SMALL_STATE(4713)] = 132366, - [SMALL_STATE(4714)] = 132380, - [SMALL_STATE(4715)] = 132392, - [SMALL_STATE(4716)] = 132406, - [SMALL_STATE(4717)] = 132422, - [SMALL_STATE(4718)] = 132436, - [SMALL_STATE(4719)] = 132448, - [SMALL_STATE(4720)] = 132464, - [SMALL_STATE(4721)] = 132476, - [SMALL_STATE(4722)] = 132492, - [SMALL_STATE(4723)] = 132508, - [SMALL_STATE(4724)] = 132522, - [SMALL_STATE(4725)] = 132534, - [SMALL_STATE(4726)] = 132546, + [SMALL_STATE(1289)] = 0, + [SMALL_STATE(1290)] = 73, + [SMALL_STATE(1291)] = 150, + [SMALL_STATE(1292)] = 223, + [SMALL_STATE(1293)] = 296, + [SMALL_STATE(1294)] = 439, + [SMALL_STATE(1295)] = 512, + [SMALL_STATE(1296)] = 585, + [SMALL_STATE(1297)] = 724, + [SMALL_STATE(1298)] = 797, + [SMALL_STATE(1299)] = 888, + [SMALL_STATE(1300)] = 961, + [SMALL_STATE(1301)] = 1034, + [SMALL_STATE(1302)] = 1107, + [SMALL_STATE(1303)] = 1180, + [SMALL_STATE(1304)] = 1253, + [SMALL_STATE(1305)] = 1326, + [SMALL_STATE(1306)] = 1399, + [SMALL_STATE(1307)] = 1472, + [SMALL_STATE(1308)] = 1545, + [SMALL_STATE(1309)] = 1618, + [SMALL_STATE(1310)] = 1701, + [SMALL_STATE(1311)] = 1776, + [SMALL_STATE(1312)] = 1849, + [SMALL_STATE(1313)] = 1942, + [SMALL_STATE(1314)] = 2015, + [SMALL_STATE(1315)] = 2154, + [SMALL_STATE(1316)] = 2227, + [SMALL_STATE(1317)] = 2300, + [SMALL_STATE(1318)] = 2373, + [SMALL_STATE(1319)] = 2446, + [SMALL_STATE(1320)] = 2519, + [SMALL_STATE(1321)] = 2592, + [SMALL_STATE(1322)] = 2665, + [SMALL_STATE(1323)] = 2750, + [SMALL_STATE(1324)] = 2851, + [SMALL_STATE(1325)] = 2924, + [SMALL_STATE(1326)] = 2997, + [SMALL_STATE(1327)] = 3070, + [SMALL_STATE(1328)] = 3143, + [SMALL_STATE(1329)] = 3216, + [SMALL_STATE(1330)] = 3311, + [SMALL_STATE(1331)] = 3384, + [SMALL_STATE(1332)] = 3457, + [SMALL_STATE(1333)] = 3530, + [SMALL_STATE(1334)] = 3603, + [SMALL_STATE(1335)] = 3676, + [SMALL_STATE(1336)] = 3819, + [SMALL_STATE(1337)] = 3892, + [SMALL_STATE(1338)] = 3965, + [SMALL_STATE(1339)] = 4038, + [SMALL_STATE(1340)] = 4135, + [SMALL_STATE(1341)] = 4208, + [SMALL_STATE(1342)] = 4351, + [SMALL_STATE(1343)] = 4424, + [SMALL_STATE(1344)] = 4497, + [SMALL_STATE(1345)] = 4570, + [SMALL_STATE(1346)] = 4643, + [SMALL_STATE(1347)] = 4716, + [SMALL_STATE(1348)] = 4789, + [SMALL_STATE(1349)] = 4862, + [SMALL_STATE(1350)] = 4935, + [SMALL_STATE(1351)] = 5008, + [SMALL_STATE(1352)] = 5087, + [SMALL_STATE(1353)] = 5160, + [SMALL_STATE(1354)] = 5303, + [SMALL_STATE(1355)] = 5376, + [SMALL_STATE(1356)] = 5449, + [SMALL_STATE(1357)] = 5522, + [SMALL_STATE(1358)] = 5595, + [SMALL_STATE(1359)] = 5698, + [SMALL_STATE(1360)] = 5797, + [SMALL_STATE(1361)] = 5936, + [SMALL_STATE(1362)] = 6009, + [SMALL_STATE(1363)] = 6098, + [SMALL_STATE(1364)] = 6171, + [SMALL_STATE(1365)] = 6244, + [SMALL_STATE(1366)] = 6317, + [SMALL_STATE(1367)] = 6395, + [SMALL_STATE(1368)] = 6473, + [SMALL_STATE(1369)] = 6551, + [SMALL_STATE(1370)] = 6699, + [SMALL_STATE(1371)] = 6773, + [SMALL_STATE(1372)] = 6913, + [SMALL_STATE(1373)] = 6987, + [SMALL_STATE(1374)] = 7064, + [SMALL_STATE(1375)] = 7201, + [SMALL_STATE(1376)] = 7338, + [SMALL_STATE(1377)] = 7415, + [SMALL_STATE(1378)] = 7488, + [SMALL_STATE(1379)] = 7567, + [SMALL_STATE(1380)] = 7704, + [SMALL_STATE(1381)] = 7781, + [SMALL_STATE(1382)] = 7918, + [SMALL_STATE(1383)] = 7991, + [SMALL_STATE(1384)] = 8066, + [SMALL_STATE(1385)] = 8137, + [SMALL_STATE(1386)] = 8208, + [SMALL_STATE(1387)] = 8345, + [SMALL_STATE(1388)] = 8422, + [SMALL_STATE(1389)] = 8556, + [SMALL_STATE(1390)] = 8626, + [SMALL_STATE(1391)] = 8696, + [SMALL_STATE(1392)] = 8830, + [SMALL_STATE(1393)] = 8900, + [SMALL_STATE(1394)] = 9034, + [SMALL_STATE(1395)] = 9168, + [SMALL_STATE(1396)] = 9238, + [SMALL_STATE(1397)] = 9314, + [SMALL_STATE(1398)] = 9388, + [SMALL_STATE(1399)] = 9528, + [SMALL_STATE(1400)] = 9670, + [SMALL_STATE(1401)] = 9812, + [SMALL_STATE(1402)] = 9946, + [SMALL_STATE(1403)] = 10020, + [SMALL_STATE(1404)] = 10090, + [SMALL_STATE(1405)] = 10160, + [SMALL_STATE(1406)] = 10247, + [SMALL_STATE(1407)] = 10332, + [SMALL_STATE(1408)] = 10401, + [SMALL_STATE(1409)] = 10488, + [SMALL_STATE(1410)] = 10557, + [SMALL_STATE(1411)] = 10641, + [SMALL_STATE(1412)] = 10723, + [SMALL_STATE(1413)] = 10795, + [SMALL_STATE(1414)] = 10877, + [SMALL_STATE(1415)] = 10951, + [SMALL_STATE(1416)] = 11084, + [SMALL_STATE(1417)] = 11209, + [SMALL_STATE(1418)] = 11276, + [SMALL_STATE(1419)] = 11345, + [SMALL_STATE(1420)] = 11416, + [SMALL_STATE(1421)] = 11497, + [SMALL_STATE(1422)] = 11622, + [SMALL_STATE(1423)] = 11693, + [SMALL_STATE(1424)] = 11774, + [SMALL_STATE(1425)] = 11843, + [SMALL_STATE(1426)] = 11914, + [SMALL_STATE(1427)] = 11984, + [SMALL_STATE(1428)] = 12064, + [SMALL_STATE(1429)] = 12134, + [SMALL_STATE(1430)] = 12202, + [SMALL_STATE(1431)] = 12270, + [SMALL_STATE(1432)] = 12336, + [SMALL_STATE(1433)] = 12402, + [SMALL_STATE(1434)] = 12531, + [SMALL_STATE(1435)] = 12600, + [SMALL_STATE(1436)] = 12667, + [SMALL_STATE(1437)] = 12734, + [SMALL_STATE(1438)] = 12803, + [SMALL_STATE(1439)] = 12868, + [SMALL_STATE(1440)] = 12993, + [SMALL_STATE(1441)] = 13058, + [SMALL_STATE(1442)] = 13123, + [SMALL_STATE(1443)] = 13252, + [SMALL_STATE(1444)] = 13381, + [SMALL_STATE(1445)] = 13510, + [SMALL_STATE(1446)] = 13589, + [SMALL_STATE(1447)] = 13655, + [SMALL_STATE(1448)] = 13719, + [SMALL_STATE(1449)] = 13787, + [SMALL_STATE(1450)] = 13851, + [SMALL_STATE(1451)] = 13915, + [SMALL_STATE(1452)] = 13981, + [SMALL_STATE(1453)] = 14049, + [SMALL_STATE(1454)] = 14148, + [SMALL_STATE(1455)] = 14211, + [SMALL_STATE(1456)] = 14274, + [SMALL_STATE(1457)] = 14345, + [SMALL_STATE(1458)] = 14408, + [SMALL_STATE(1459)] = 14479, + [SMALL_STATE(1460)] = 14544, + [SMALL_STATE(1461)] = 14643, + [SMALL_STATE(1462)] = 14708, + [SMALL_STATE(1463)] = 14806, + [SMALL_STATE(1464)] = 14900, + [SMALL_STATE(1465)] = 14972, + [SMALL_STATE(1466)] = 15066, + [SMALL_STATE(1467)] = 15136, + [SMALL_STATE(1468)] = 15202, + [SMALL_STATE(1469)] = 15264, + [SMALL_STATE(1470)] = 15358, + [SMALL_STATE(1471)] = 15420, + [SMALL_STATE(1472)] = 15486, + [SMALL_STATE(1473)] = 15556, + [SMALL_STATE(1474)] = 15654, + [SMALL_STATE(1475)] = 15716, + [SMALL_STATE(1476)] = 15783, + [SMALL_STATE(1477)] = 15850, + [SMALL_STATE(1478)] = 15921, + [SMALL_STATE(1479)] = 15988, + [SMALL_STATE(1480)] = 16055, + [SMALL_STATE(1481)] = 16120, + [SMALL_STATE(1482)] = 16187, + [SMALL_STATE(1483)] = 16252, + [SMALL_STATE(1484)] = 16319, + [SMALL_STATE(1485)] = 16382, + [SMALL_STATE(1486)] = 16445, + [SMALL_STATE(1487)] = 16512, + [SMALL_STATE(1488)] = 16579, + [SMALL_STATE(1489)] = 16646, + [SMALL_STATE(1490)] = 16709, + [SMALL_STATE(1491)] = 16776, + [SMALL_STATE(1492)] = 16843, + [SMALL_STATE(1493)] = 16910, + [SMALL_STATE(1494)] = 16974, + [SMALL_STATE(1495)] = 17038, + [SMALL_STATE(1496)] = 17102, + [SMALL_STATE(1497)] = 17166, + [SMALL_STATE(1498)] = 17228, + [SMALL_STATE(1499)] = 17290, + [SMALL_STATE(1500)] = 17354, + [SMALL_STATE(1501)] = 17418, + [SMALL_STATE(1502)] = 17480, + [SMALL_STATE(1503)] = 17544, + [SMALL_STATE(1504)] = 17604, + [SMALL_STATE(1505)] = 17668, + [SMALL_STATE(1506)] = 17728, + [SMALL_STATE(1507)] = 17792, + [SMALL_STATE(1508)] = 17856, + [SMALL_STATE(1509)] = 17916, + [SMALL_STATE(1510)] = 17976, + [SMALL_STATE(1511)] = 18040, + [SMALL_STATE(1512)] = 18100, + [SMALL_STATE(1513)] = 18161, + [SMALL_STATE(1514)] = 18220, + [SMALL_STATE(1515)] = 18283, + [SMALL_STATE(1516)] = 18346, + [SMALL_STATE(1517)] = 18433, + [SMALL_STATE(1518)] = 18526, + [SMALL_STATE(1519)] = 18613, + [SMALL_STATE(1520)] = 18700, + [SMALL_STATE(1521)] = 18787, + [SMALL_STATE(1522)] = 18846, + [SMALL_STATE(1523)] = 18907, + [SMALL_STATE(1524)] = 18968, + [SMALL_STATE(1525)] = 19031, + [SMALL_STATE(1526)] = 19094, + [SMALL_STATE(1527)] = 19181, + [SMALL_STATE(1528)] = 19268, + [SMALL_STATE(1529)] = 19327, + [SMALL_STATE(1530)] = 19390, + [SMALL_STATE(1531)] = 19451, + [SMALL_STATE(1532)] = 19544, + [SMALL_STATE(1533)] = 19603, + [SMALL_STATE(1534)] = 19690, + [SMALL_STATE(1535)] = 19753, + [SMALL_STATE(1536)] = 19840, + [SMALL_STATE(1537)] = 19901, + [SMALL_STATE(1538)] = 19960, + [SMALL_STATE(1539)] = 20023, + [SMALL_STATE(1540)] = 20086, + [SMALL_STATE(1541)] = 20149, + [SMALL_STATE(1542)] = 20240, + [SMALL_STATE(1543)] = 20308, + [SMALL_STATE(1544)] = 20388, + [SMALL_STATE(1545)] = 20448, + [SMALL_STATE(1546)] = 20528, + [SMALL_STATE(1547)] = 20608, + [SMALL_STATE(1548)] = 20688, + [SMALL_STATE(1549)] = 20748, + [SMALL_STATE(1550)] = 20808, + [SMALL_STATE(1551)] = 20868, + [SMALL_STATE(1552)] = 20948, + [SMALL_STATE(1553)] = 21028, + [SMALL_STATE(1554)] = 21088, + [SMALL_STATE(1555)] = 21168, + [SMALL_STATE(1556)] = 21248, + [SMALL_STATE(1557)] = 21328, + [SMALL_STATE(1558)] = 21408, + [SMALL_STATE(1559)] = 21496, + [SMALL_STATE(1560)] = 21584, + [SMALL_STATE(1561)] = 21664, + [SMALL_STATE(1562)] = 21744, + [SMALL_STATE(1563)] = 21818, + [SMALL_STATE(1564)] = 21898, + [SMALL_STATE(1565)] = 21978, + [SMALL_STATE(1566)] = 22058, + [SMALL_STATE(1567)] = 22138, + [SMALL_STATE(1568)] = 22218, + [SMALL_STATE(1569)] = 22298, + [SMALL_STATE(1570)] = 22378, + [SMALL_STATE(1571)] = 22458, + [SMALL_STATE(1572)] = 22538, + [SMALL_STATE(1573)] = 22618, + [SMALL_STATE(1574)] = 22698, + [SMALL_STATE(1575)] = 22778, + [SMALL_STATE(1576)] = 22858, + [SMALL_STATE(1577)] = 22938, + [SMALL_STATE(1578)] = 23018, + [SMALL_STATE(1579)] = 23098, + [SMALL_STATE(1580)] = 23178, + [SMALL_STATE(1581)] = 23258, + [SMALL_STATE(1582)] = 23338, + [SMALL_STATE(1583)] = 23418, + [SMALL_STATE(1584)] = 23498, + [SMALL_STATE(1585)] = 23578, + [SMALL_STATE(1586)] = 23658, + [SMALL_STATE(1587)] = 23738, + [SMALL_STATE(1588)] = 23818, + [SMALL_STATE(1589)] = 23898, + [SMALL_STATE(1590)] = 23978, + [SMALL_STATE(1591)] = 24058, + [SMALL_STATE(1592)] = 24134, + [SMALL_STATE(1593)] = 24208, + [SMALL_STATE(1594)] = 24276, + [SMALL_STATE(1595)] = 24340, + [SMALL_STATE(1596)] = 24426, + [SMALL_STATE(1597)] = 24514, + [SMALL_STATE(1598)] = 24604, + [SMALL_STATE(1599)] = 24682, + [SMALL_STATE(1600)] = 24754, + [SMALL_STATE(1601)] = 24834, + [SMALL_STATE(1602)] = 24916, + [SMALL_STATE(1603)] = 25000, + [SMALL_STATE(1604)] = 25076, + [SMALL_STATE(1605)] = 25150, + [SMALL_STATE(1606)] = 25224, + [SMALL_STATE(1607)] = 25296, + [SMALL_STATE(1608)] = 25364, + [SMALL_STATE(1609)] = 25430, + [SMALL_STATE(1610)] = 25494, + [SMALL_STATE(1611)] = 25556, + [SMALL_STATE(1612)] = 25642, + [SMALL_STATE(1613)] = 25726, + [SMALL_STATE(1614)] = 25814, + [SMALL_STATE(1615)] = 25900, + [SMALL_STATE(1616)] = 25990, + [SMALL_STATE(1617)] = 26078, + [SMALL_STATE(1618)] = 26156, + [SMALL_STATE(1619)] = 26232, + [SMALL_STATE(1620)] = 26304, + [SMALL_STATE(1621)] = 26374, + [SMALL_STATE(1622)] = 26454, + [SMALL_STATE(1623)] = 26532, + [SMALL_STATE(1624)] = 26614, + [SMALL_STATE(1625)] = 26694, + [SMALL_STATE(1626)] = 26778, + [SMALL_STATE(1627)] = 26860, + [SMALL_STATE(1628)] = 26936, + [SMALL_STATE(1629)] = 27010, + [SMALL_STATE(1630)] = 27074, + [SMALL_STATE(1631)] = 27154, + [SMALL_STATE(1632)] = 27242, + [SMALL_STATE(1633)] = 27332, + [SMALL_STATE(1634)] = 27410, + [SMALL_STATE(1635)] = 27482, + [SMALL_STATE(1636)] = 27562, + [SMALL_STATE(1637)] = 27642, + [SMALL_STATE(1638)] = 27724, + [SMALL_STATE(1639)] = 27808, + [SMALL_STATE(1640)] = 27888, + [SMALL_STATE(1641)] = 27962, + [SMALL_STATE(1642)] = 28034, + [SMALL_STATE(1643)] = 28100, + [SMALL_STATE(1644)] = 28162, + [SMALL_STATE(1645)] = 28246, + [SMALL_STATE(1646)] = 28332, + [SMALL_STATE(1647)] = 28420, + [SMALL_STATE(1648)] = 28496, + [SMALL_STATE(1649)] = 28566, + [SMALL_STATE(1650)] = 28644, + [SMALL_STATE(1651)] = 28724, + [SMALL_STATE(1652)] = 28806, + [SMALL_STATE(1653)] = 28882, + [SMALL_STATE(1654)] = 28956, + [SMALL_STATE(1655)] = 29030, + [SMALL_STATE(1656)] = 29102, + [SMALL_STATE(1657)] = 29170, + [SMALL_STATE(1658)] = 29236, + [SMALL_STATE(1659)] = 29300, + [SMALL_STATE(1660)] = 29362, + [SMALL_STATE(1661)] = 29448, + [SMALL_STATE(1662)] = 29532, + [SMALL_STATE(1663)] = 29620, + [SMALL_STATE(1664)] = 29706, + [SMALL_STATE(1665)] = 29796, + [SMALL_STATE(1666)] = 29884, + [SMALL_STATE(1667)] = 29962, + [SMALL_STATE(1668)] = 30038, + [SMALL_STATE(1669)] = 30110, + [SMALL_STATE(1670)] = 30180, + [SMALL_STATE(1671)] = 30260, + [SMALL_STATE(1672)] = 30338, + [SMALL_STATE(1673)] = 30420, + [SMALL_STATE(1674)] = 30500, + [SMALL_STATE(1675)] = 30584, + [SMALL_STATE(1676)] = 30666, + [SMALL_STATE(1677)] = 30740, + [SMALL_STATE(1678)] = 30812, + [SMALL_STATE(1679)] = 30878, + [SMALL_STATE(1680)] = 30940, + [SMALL_STATE(1681)] = 31024, + [SMALL_STATE(1682)] = 31110, + [SMALL_STATE(1683)] = 31198, + [SMALL_STATE(1684)] = 31274, + [SMALL_STATE(1685)] = 31344, + [SMALL_STATE(1686)] = 31422, + [SMALL_STATE(1687)] = 31502, + [SMALL_STATE(1688)] = 31584, + [SMALL_STATE(1689)] = 31664, + [SMALL_STATE(1690)] = 31744, + [SMALL_STATE(1691)] = 31824, + [SMALL_STATE(1692)] = 31904, + [SMALL_STATE(1693)] = 31976, + [SMALL_STATE(1694)] = 32046, + [SMALL_STATE(1695)] = 32110, + [SMALL_STATE(1696)] = 32170, + [SMALL_STATE(1697)] = 32252, + [SMALL_STATE(1698)] = 32336, + [SMALL_STATE(1699)] = 32422, + [SMALL_STATE(1700)] = 32496, + [SMALL_STATE(1701)] = 32564, + [SMALL_STATE(1702)] = 32640, + [SMALL_STATE(1703)] = 32718, + [SMALL_STATE(1704)] = 32798, + [SMALL_STATE(1705)] = 32878, + [SMALL_STATE(1706)] = 32964, + [SMALL_STATE(1707)] = 33051, + [SMALL_STATE(1708)] = 33138, + [SMALL_STATE(1709)] = 33225, + [SMALL_STATE(1710)] = 33302, + [SMALL_STATE(1711)] = 33389, + [SMALL_STATE(1712)] = 33476, + [SMALL_STATE(1713)] = 33563, + [SMALL_STATE(1714)] = 33634, + [SMALL_STATE(1715)] = 33703, + [SMALL_STATE(1716)] = 33766, + [SMALL_STATE(1717)] = 33825, + [SMALL_STATE(1718)] = 33906, + [SMALL_STATE(1719)] = 33989, + [SMALL_STATE(1720)] = 34074, + [SMALL_STATE(1721)] = 34147, + [SMALL_STATE(1722)] = 34214, + [SMALL_STATE(1723)] = 34289, + [SMALL_STATE(1724)] = 34366, + [SMALL_STATE(1725)] = 34445, + [SMALL_STATE(1726)] = 34518, + [SMALL_STATE(1727)] = 34589, + [SMALL_STATE(1728)] = 34676, + [SMALL_STATE(1729)] = 34747, + [SMALL_STATE(1730)] = 34834, + [SMALL_STATE(1731)] = 34921, + [SMALL_STATE(1732)] = 35008, + [SMALL_STATE(1733)] = 35095, + [SMALL_STATE(1734)] = 35165, + [SMALL_STATE(1735)] = 35247, + [SMALL_STATE(1736)] = 35317, + [SMALL_STATE(1737)] = 35387, + [SMALL_STATE(1738)] = 35447, + [SMALL_STATE(1739)] = 35529, + [SMALL_STATE(1740)] = 35593, + [SMALL_STATE(1741)] = 35663, + [SMALL_STATE(1742)] = 35727, + [SMALL_STATE(1743)] = 35791, + [SMALL_STATE(1744)] = 35873, + [SMALL_STATE(1745)] = 35933, + [SMALL_STATE(1746)] = 35995, + [SMALL_STATE(1747)] = 36054, + [SMALL_STATE(1748)] = 36111, + [SMALL_STATE(1749)] = 36182, + [SMALL_STATE(1750)] = 36249, + [SMALL_STATE(1751)] = 36308, + [SMALL_STATE(1752)] = 36371, + [SMALL_STATE(1753)] = 36426, + [SMALL_STATE(1754)] = 36505, + [SMALL_STATE(1755)] = 36562, + [SMALL_STATE(1756)] = 36623, + [SMALL_STATE(1757)] = 36682, + [SMALL_STATE(1758)] = 36737, + [SMALL_STATE(1759)] = 36800, + [SMALL_STATE(1760)] = 36855, + [SMALL_STATE(1761)] = 36910, + [SMALL_STATE(1762)] = 36969, + [SMALL_STATE(1763)] = 37024, + [SMALL_STATE(1764)] = 37091, + [SMALL_STATE(1765)] = 37150, + [SMALL_STATE(1766)] = 37231, + [SMALL_STATE(1767)] = 37312, + [SMALL_STATE(1768)] = 37391, + [SMALL_STATE(1769)] = 37470, + [SMALL_STATE(1770)] = 37539, + [SMALL_STATE(1771)] = 37618, + [SMALL_STATE(1772)] = 37685, + [SMALL_STATE(1773)] = 37764, + [SMALL_STATE(1774)] = 37835, + [SMALL_STATE(1775)] = 37914, + [SMALL_STATE(1776)] = 37977, + [SMALL_STATE(1777)] = 38044, + [SMALL_STATE(1778)] = 38111, + [SMALL_STATE(1779)] = 38178, + [SMALL_STATE(1780)] = 38257, + [SMALL_STATE(1781)] = 38328, + [SMALL_STATE(1782)] = 38407, + [SMALL_STATE(1783)] = 38478, + [SMALL_STATE(1784)] = 38539, + [SMALL_STATE(1785)] = 38618, + [SMALL_STATE(1786)] = 38689, + [SMALL_STATE(1787)] = 38768, + [SMALL_STATE(1788)] = 38847, + [SMALL_STATE(1789)] = 38902, + [SMALL_STATE(1790)] = 38980, + [SMALL_STATE(1791)] = 39048, + [SMALL_STATE(1792)] = 39106, + [SMALL_STATE(1793)] = 39166, + [SMALL_STATE(1794)] = 39224, + [SMALL_STATE(1795)] = 39302, + [SMALL_STATE(1796)] = 39370, + [SMALL_STATE(1797)] = 39426, + [SMALL_STATE(1798)] = 39504, + [SMALL_STATE(1799)] = 39572, + [SMALL_STATE(1800)] = 39640, + [SMALL_STATE(1801)] = 39696, + [SMALL_STATE(1802)] = 39750, + [SMALL_STATE(1803)] = 39804, + [SMALL_STATE(1804)] = 39882, + [SMALL_STATE(1805)] = 39936, + [SMALL_STATE(1806)] = 39994, + [SMALL_STATE(1807)] = 40072, + [SMALL_STATE(1808)] = 40150, + [SMALL_STATE(1809)] = 40206, + [SMALL_STATE(1810)] = 40274, + [SMALL_STATE(1811)] = 40330, + [SMALL_STATE(1812)] = 40384, + [SMALL_STATE(1813)] = 40438, + [SMALL_STATE(1814)] = 40492, + [SMALL_STATE(1815)] = 40570, + [SMALL_STATE(1816)] = 40638, + [SMALL_STATE(1817)] = 40716, + [SMALL_STATE(1818)] = 40770, + [SMALL_STATE(1819)] = 40848, + [SMALL_STATE(1820)] = 40904, + [SMALL_STATE(1821)] = 40960, + [SMALL_STATE(1822)] = 41028, + [SMALL_STATE(1823)] = 41106, + [SMALL_STATE(1824)] = 41184, + [SMALL_STATE(1825)] = 41262, + [SMALL_STATE(1826)] = 41316, + [SMALL_STATE(1827)] = 41370, + [SMALL_STATE(1828)] = 41435, + [SMALL_STATE(1829)] = 41500, + [SMALL_STATE(1830)] = 41551, + [SMALL_STATE(1831)] = 41604, + [SMALL_STATE(1832)] = 41669, + [SMALL_STATE(1833)] = 41734, + [SMALL_STATE(1834)] = 41799, + [SMALL_STATE(1835)] = 41862, + [SMALL_STATE(1836)] = 41915, + [SMALL_STATE(1837)] = 41980, + [SMALL_STATE(1838)] = 42045, + [SMALL_STATE(1839)] = 42100, + [SMALL_STATE(1840)] = 42151, + [SMALL_STATE(1841)] = 42206, + [SMALL_STATE(1842)] = 42263, + [SMALL_STATE(1843)] = 42328, + [SMALL_STATE(1844)] = 42393, + [SMALL_STATE(1845)] = 42446, + [SMALL_STATE(1846)] = 42497, + [SMALL_STATE(1847)] = 42548, + [SMALL_STATE(1848)] = 42605, + [SMALL_STATE(1849)] = 42670, + [SMALL_STATE(1850)] = 42735, + [SMALL_STATE(1851)] = 42800, + [SMALL_STATE(1852)] = 42865, + [SMALL_STATE(1853)] = 42928, + [SMALL_STATE(1854)] = 42981, + [SMALL_STATE(1855)] = 43046, + [SMALL_STATE(1856)] = 43099, + [SMALL_STATE(1857)] = 43164, + [SMALL_STATE(1858)] = 43229, + [SMALL_STATE(1859)] = 43282, + [SMALL_STATE(1860)] = 43347, + [SMALL_STATE(1861)] = 43400, + [SMALL_STATE(1862)] = 43451, + [SMALL_STATE(1863)] = 43516, + [SMALL_STATE(1864)] = 43581, + [SMALL_STATE(1865)] = 43634, + [SMALL_STATE(1866)] = 43689, + [SMALL_STATE(1867)] = 43742, + [SMALL_STATE(1868)] = 43797, + [SMALL_STATE(1869)] = 43848, + [SMALL_STATE(1870)] = 43913, + [SMALL_STATE(1871)] = 43978, + [SMALL_STATE(1872)] = 44043, + [SMALL_STATE(1873)] = 44108, + [SMALL_STATE(1874)] = 44173, + [SMALL_STATE(1875)] = 44238, + [SMALL_STATE(1876)] = 44303, + [SMALL_STATE(1877)] = 44355, + [SMALL_STATE(1878)] = 44407, + [SMALL_STATE(1879)] = 44459, + [SMALL_STATE(1880)] = 44511, + [SMALL_STATE(1881)] = 44563, + [SMALL_STATE(1882)] = 44623, + [SMALL_STATE(1883)] = 44675, + [SMALL_STATE(1884)] = 44727, + [SMALL_STATE(1885)] = 44779, + [SMALL_STATE(1886)] = 44839, + [SMALL_STATE(1887)] = 44891, + [SMALL_STATE(1888)] = 44945, + [SMALL_STATE(1889)] = 44997, + [SMALL_STATE(1890)] = 45057, + [SMALL_STATE(1891)] = 45109, + [SMALL_STATE(1892)] = 45163, + [SMALL_STATE(1893)] = 45215, + [SMALL_STATE(1894)] = 45267, + [SMALL_STATE(1895)] = 45319, + [SMALL_STATE(1896)] = 45371, + [SMALL_STATE(1897)] = 45433, + [SMALL_STATE(1898)] = 45485, + [SMALL_STATE(1899)] = 45537, + [SMALL_STATE(1900)] = 45589, + [SMALL_STATE(1901)] = 45641, + [SMALL_STATE(1902)] = 45693, + [SMALL_STATE(1903)] = 45755, + [SMALL_STATE(1904)] = 45807, + [SMALL_STATE(1905)] = 45867, + [SMALL_STATE(1906)] = 45919, + [SMALL_STATE(1907)] = 45971, + [SMALL_STATE(1908)] = 46028, + [SMALL_STATE(1909)] = 46083, + [SMALL_STATE(1910)] = 46134, + [SMALL_STATE(1911)] = 46193, + [SMALL_STATE(1912)] = 46244, + [SMALL_STATE(1913)] = 46295, + [SMALL_STATE(1914)] = 46346, + [SMALL_STATE(1915)] = 46397, + [SMALL_STATE(1916)] = 46456, + [SMALL_STATE(1917)] = 46507, + [SMALL_STATE(1918)] = 46558, + [SMALL_STATE(1919)] = 46609, + [SMALL_STATE(1920)] = 46660, + [SMALL_STATE(1921)] = 46711, + [SMALL_STATE(1922)] = 46762, + [SMALL_STATE(1923)] = 46813, + [SMALL_STATE(1924)] = 46864, + [SMALL_STATE(1925)] = 46963, + [SMALL_STATE(1926)] = 47014, + [SMALL_STATE(1927)] = 47065, + [SMALL_STATE(1928)] = 47116, + [SMALL_STATE(1929)] = 47175, + [SMALL_STATE(1930)] = 47226, + [SMALL_STATE(1931)] = 47277, + [SMALL_STATE(1932)] = 47332, + [SMALL_STATE(1933)] = 47383, + [SMALL_STATE(1934)] = 47442, + [SMALL_STATE(1935)] = 47497, + [SMALL_STATE(1936)] = 47556, + [SMALL_STATE(1937)] = 47615, + [SMALL_STATE(1938)] = 47674, + [SMALL_STATE(1939)] = 47725, + [SMALL_STATE(1940)] = 47784, + [SMALL_STATE(1941)] = 47843, + [SMALL_STATE(1942)] = 47902, + [SMALL_STATE(1943)] = 47957, + [SMALL_STATE(1944)] = 48016, + [SMALL_STATE(1945)] = 48075, + [SMALL_STATE(1946)] = 48126, + [SMALL_STATE(1947)] = 48185, + [SMALL_STATE(1948)] = 48244, + [SMALL_STATE(1949)] = 48340, + [SMALL_STATE(1950)] = 48390, + [SMALL_STATE(1951)] = 48440, + [SMALL_STATE(1952)] = 48490, + [SMALL_STATE(1953)] = 48542, + [SMALL_STATE(1954)] = 48592, + [SMALL_STATE(1955)] = 48648, + [SMALL_STATE(1956)] = 48702, + [SMALL_STATE(1957)] = 48798, + [SMALL_STATE(1958)] = 48852, + [SMALL_STATE(1959)] = 48906, + [SMALL_STATE(1960)] = 48956, + [SMALL_STATE(1961)] = 49006, + [SMALL_STATE(1962)] = 49058, + [SMALL_STATE(1963)] = 49110, + [SMALL_STATE(1964)] = 49162, + [SMALL_STATE(1965)] = 49218, + [SMALL_STATE(1966)] = 49272, + [SMALL_STATE(1967)] = 49326, + [SMALL_STATE(1968)] = 49376, + [SMALL_STATE(1969)] = 49429, + [SMALL_STATE(1970)] = 49482, + [SMALL_STATE(1971)] = 49535, + [SMALL_STATE(1972)] = 49588, + [SMALL_STATE(1973)] = 49643, + [SMALL_STATE(1974)] = 49698, + [SMALL_STATE(1975)] = 49793, + [SMALL_STATE(1976)] = 49844, + [SMALL_STATE(1977)] = 49897, + [SMALL_STATE(1978)] = 49946, + [SMALL_STATE(1979)] = 49999, + [SMALL_STATE(1980)] = 50050, + [SMALL_STATE(1981)] = 50099, + [SMALL_STATE(1982)] = 50152, + [SMALL_STATE(1983)] = 50205, + [SMALL_STATE(1984)] = 50260, + [SMALL_STATE(1985)] = 50313, + [SMALL_STATE(1986)] = 50366, + [SMALL_STATE(1987)] = 50419, + [SMALL_STATE(1988)] = 50474, + [SMALL_STATE(1989)] = 50523, + [SMALL_STATE(1990)] = 50572, + [SMALL_STATE(1991)] = 50623, + [SMALL_STATE(1992)] = 50680, + [SMALL_STATE(1993)] = 50731, + [SMALL_STATE(1994)] = 50780, + [SMALL_STATE(1995)] = 50829, + [SMALL_STATE(1996)] = 50878, + [SMALL_STATE(1997)] = 50931, + [SMALL_STATE(1998)] = 50982, + [SMALL_STATE(1999)] = 51035, + [SMALL_STATE(2000)] = 51088, + [SMALL_STATE(2001)] = 51141, + [SMALL_STATE(2002)] = 51236, + [SMALL_STATE(2003)] = 51287, + [SMALL_STATE(2004)] = 51340, + [SMALL_STATE(2005)] = 51395, + [SMALL_STATE(2006)] = 51448, + [SMALL_STATE(2007)] = 51501, + [SMALL_STATE(2008)] = 51554, + [SMALL_STATE(2009)] = 51607, + [SMALL_STATE(2010)] = 51660, + [SMALL_STATE(2011)] = 51713, + [SMALL_STATE(2012)] = 51766, + [SMALL_STATE(2013)] = 51819, + [SMALL_STATE(2014)] = 51872, + [SMALL_STATE(2015)] = 51925, + [SMALL_STATE(2016)] = 51974, + [SMALL_STATE(2017)] = 52025, + [SMALL_STATE(2018)] = 52078, + [SMALL_STATE(2019)] = 52140, + [SMALL_STATE(2020)] = 52188, + [SMALL_STATE(2021)] = 52258, + [SMALL_STATE(2022)] = 52332, + [SMALL_STATE(2023)] = 52404, + [SMALL_STATE(2024)] = 52458, + [SMALL_STATE(2025)] = 52510, + [SMALL_STATE(2026)] = 52580, + [SMALL_STATE(2027)] = 52630, + [SMALL_STATE(2028)] = 52684, + [SMALL_STATE(2029)] = 52756, + [SMALL_STATE(2030)] = 52812, + [SMALL_STATE(2031)] = 52866, + [SMALL_STATE(2032)] = 52920, + [SMALL_STATE(2033)] = 52968, + [SMALL_STATE(2034)] = 53018, + [SMALL_STATE(2035)] = 53082, + [SMALL_STATE(2036)] = 53144, + [SMALL_STATE(2037)] = 53200, + [SMALL_STATE(2038)] = 53252, + [SMALL_STATE(2039)] = 53302, + [SMALL_STATE(2040)] = 53352, + [SMALL_STATE(2041)] = 53402, + [SMALL_STATE(2042)] = 53476, + [SMALL_STATE(2043)] = 53552, + [SMALL_STATE(2044)] = 53630, + [SMALL_STATE(2045)] = 53696, + [SMALL_STATE(2046)] = 53744, + [SMALL_STATE(2047)] = 53804, + [SMALL_STATE(2048)] = 53872, + [SMALL_STATE(2049)] = 53942, + [SMALL_STATE(2050)] = 54014, + [SMALL_STATE(2051)] = 54080, + [SMALL_STATE(2052)] = 54144, + [SMALL_STATE(2053)] = 54208, + [SMALL_STATE(2054)] = 54260, + [SMALL_STATE(2055)] = 54322, + [SMALL_STATE(2056)] = 54374, + [SMALL_STATE(2057)] = 54428, + [SMALL_STATE(2058)] = 54482, + [SMALL_STATE(2059)] = 54532, + [SMALL_STATE(2060)] = 54582, + [SMALL_STATE(2061)] = 54634, + [SMALL_STATE(2062)] = 54700, + [SMALL_STATE(2063)] = 54764, + [SMALL_STATE(2064)] = 54822, + [SMALL_STATE(2065)] = 54880, + [SMALL_STATE(2066)] = 54934, + [SMALL_STATE(2067)] = 54986, + [SMALL_STATE(2068)] = 55062, + [SMALL_STATE(2069)] = 55140, + [SMALL_STATE(2070)] = 55220, + [SMALL_STATE(2071)] = 55288, + [SMALL_STATE(2072)] = 55344, + [SMALL_STATE(2073)] = 55406, + [SMALL_STATE(2074)] = 55476, + [SMALL_STATE(2075)] = 55548, + [SMALL_STATE(2076)] = 55622, + [SMALL_STATE(2077)] = 55668, + [SMALL_STATE(2078)] = 55724, + [SMALL_STATE(2079)] = 55776, + [SMALL_STATE(2080)] = 55830, + [SMALL_STATE(2081)] = 55882, + [SMALL_STATE(2082)] = 55934, + [SMALL_STATE(2083)] = 55988, + [SMALL_STATE(2084)] = 56040, + [SMALL_STATE(2085)] = 56092, + [SMALL_STATE(2086)] = 56140, + [SMALL_STATE(2087)] = 56192, + [SMALL_STATE(2088)] = 56268, + [SMALL_STATE(2089)] = 56316, + [SMALL_STATE(2090)] = 56390, + [SMALL_STATE(2091)] = 56468, + [SMALL_STATE(2092)] = 56544, + [SMALL_STATE(2093)] = 56624, + [SMALL_STATE(2094)] = 56702, + [SMALL_STATE(2095)] = 56768, + [SMALL_STATE(2096)] = 56832, + [SMALL_STATE(2097)] = 56896, + [SMALL_STATE(2098)] = 56958, + [SMALL_STATE(2099)] = 57016, + [SMALL_STATE(2100)] = 57072, + [SMALL_STATE(2101)] = 57126, + [SMALL_STATE(2102)] = 57178, + [SMALL_STATE(2103)] = 57254, + [SMALL_STATE(2104)] = 57328, + [SMALL_STATE(2105)] = 57406, + [SMALL_STATE(2106)] = 57482, + [SMALL_STATE(2107)] = 57562, + [SMALL_STATE(2108)] = 57640, + [SMALL_STATE(2109)] = 57708, + [SMALL_STATE(2110)] = 57776, + [SMALL_STATE(2111)] = 57842, + [SMALL_STATE(2112)] = 57904, + [SMALL_STATE(2113)] = 57956, + [SMALL_STATE(2114)] = 58010, + [SMALL_STATE(2115)] = 58070, + [SMALL_STATE(2116)] = 58140, + [SMALL_STATE(2117)] = 58208, + [SMALL_STATE(2118)] = 58262, + [SMALL_STATE(2119)] = 58310, + [SMALL_STATE(2120)] = 58358, + [SMALL_STATE(2121)] = 58430, + [SMALL_STATE(2122)] = 58484, + [SMALL_STATE(2123)] = 58538, + [SMALL_STATE(2124)] = 58586, + [SMALL_STATE(2125)] = 58656, + [SMALL_STATE(2126)] = 58730, + [SMALL_STATE(2127)] = 58802, + [SMALL_STATE(2128)] = 58868, + [SMALL_STATE(2129)] = 58934, + [SMALL_STATE(2130)] = 58998, + [SMALL_STATE(2131)] = 59056, + [SMALL_STATE(2132)] = 59110, + [SMALL_STATE(2133)] = 59160, + [SMALL_STATE(2134)] = 59222, + [SMALL_STATE(2135)] = 59282, + [SMALL_STATE(2136)] = 59352, + [SMALL_STATE(2137)] = 59428, + [SMALL_STATE(2138)] = 59506, + [SMALL_STATE(2139)] = 59586, + [SMALL_STATE(2140)] = 59634, + [SMALL_STATE(2141)] = 59702, + [SMALL_STATE(2142)] = 59750, + [SMALL_STATE(2143)] = 59812, + [SMALL_STATE(2144)] = 59866, + [SMALL_STATE(2145)] = 59916, + [SMALL_STATE(2146)] = 59986, + [SMALL_STATE(2147)] = 60054, + [SMALL_STATE(2148)] = 60102, + [SMALL_STATE(2149)] = 60174, + [SMALL_STATE(2150)] = 60224, + [SMALL_STATE(2151)] = 60298, + [SMALL_STATE(2152)] = 60346, + [SMALL_STATE(2153)] = 60396, + [SMALL_STATE(2154)] = 60444, + [SMALL_STATE(2155)] = 60492, + [SMALL_STATE(2156)] = 60540, + [SMALL_STATE(2157)] = 60612, + [SMALL_STATE(2158)] = 60676, + [SMALL_STATE(2159)] = 60736, + [SMALL_STATE(2160)] = 60792, + [SMALL_STATE(2161)] = 60844, + [SMALL_STATE(2162)] = 60918, + [SMALL_STATE(2163)] = 60994, + [SMALL_STATE(2164)] = 61072, + [SMALL_STATE(2165)] = 61138, + [SMALL_STATE(2166)] = 61186, + [SMALL_STATE(2167)] = 61254, + [SMALL_STATE(2168)] = 61333, + [SMALL_STATE(2169)] = 61380, + [SMALL_STATE(2170)] = 61427, + [SMALL_STATE(2171)] = 61474, + [SMALL_STATE(2172)] = 61521, + [SMALL_STATE(2173)] = 61568, + [SMALL_STATE(2174)] = 61615, + [SMALL_STATE(2175)] = 61662, + [SMALL_STATE(2176)] = 61709, + [SMALL_STATE(2177)] = 61756, + [SMALL_STATE(2178)] = 61803, + [SMALL_STATE(2179)] = 61850, + [SMALL_STATE(2180)] = 61897, + [SMALL_STATE(2181)] = 61944, + [SMALL_STATE(2182)] = 61991, + [SMALL_STATE(2183)] = 62038, + [SMALL_STATE(2184)] = 62089, + [SMALL_STATE(2185)] = 62136, + [SMALL_STATE(2186)] = 62183, + [SMALL_STATE(2187)] = 62230, + [SMALL_STATE(2188)] = 62277, + [SMALL_STATE(2189)] = 62324, + [SMALL_STATE(2190)] = 62373, + [SMALL_STATE(2191)] = 62420, + [SMALL_STATE(2192)] = 62499, + [SMALL_STATE(2193)] = 62546, + [SMALL_STATE(2194)] = 62593, + [SMALL_STATE(2195)] = 62640, + [SMALL_STATE(2196)] = 62719, + [SMALL_STATE(2197)] = 62764, + [SMALL_STATE(2198)] = 62811, + [SMALL_STATE(2199)] = 62858, + [SMALL_STATE(2200)] = 62937, + [SMALL_STATE(2201)] = 62984, + [SMALL_STATE(2202)] = 63031, + [SMALL_STATE(2203)] = 63078, + [SMALL_STATE(2204)] = 63157, + [SMALL_STATE(2205)] = 63204, + [SMALL_STATE(2206)] = 63283, + [SMALL_STATE(2207)] = 63330, + [SMALL_STATE(2208)] = 63377, + [SMALL_STATE(2209)] = 63424, + [SMALL_STATE(2210)] = 63471, + [SMALL_STATE(2211)] = 63518, + [SMALL_STATE(2212)] = 63565, + [SMALL_STATE(2213)] = 63612, + [SMALL_STATE(2214)] = 63659, + [SMALL_STATE(2215)] = 63706, + [SMALL_STATE(2216)] = 63753, + [SMALL_STATE(2217)] = 63802, + [SMALL_STATE(2218)] = 63849, + [SMALL_STATE(2219)] = 63896, + [SMALL_STATE(2220)] = 63943, + [SMALL_STATE(2221)] = 64035, + [SMALL_STATE(2222)] = 64099, + [SMALL_STATE(2223)] = 64167, + [SMALL_STATE(2224)] = 64215, + [SMALL_STATE(2225)] = 64281, + [SMALL_STATE(2226)] = 64329, + [SMALL_STATE(2227)] = 64381, + [SMALL_STATE(2228)] = 64439, + [SMALL_STATE(2229)] = 64531, + [SMALL_STATE(2230)] = 64587, + [SMALL_STATE(2231)] = 64655, + [SMALL_STATE(2232)] = 64703, + [SMALL_STATE(2233)] = 64763, + [SMALL_STATE(2234)] = 64811, + [SMALL_STATE(2235)] = 64869, + [SMALL_STATE(2236)] = 64931, + [SMALL_STATE(2237)] = 64979, + [SMALL_STATE(2238)] = 65027, + [SMALL_STATE(2239)] = 65097, + [SMALL_STATE(2240)] = 65167, + [SMALL_STATE(2241)] = 65215, + [SMALL_STATE(2242)] = 65287, + [SMALL_STATE(2243)] = 65361, + [SMALL_STATE(2244)] = 65433, + [SMALL_STATE(2245)] = 65495, + [SMALL_STATE(2246)] = 65543, + [SMALL_STATE(2247)] = 65599, + [SMALL_STATE(2248)] = 65691, + [SMALL_STATE(2249)] = 65737, + [SMALL_STATE(2250)] = 65785, + [SMALL_STATE(2251)] = 65849, + [SMALL_STATE(2252)] = 65941, + [SMALL_STATE(2253)] = 66007, + [SMALL_STATE(2254)] = 66055, + [SMALL_STATE(2255)] = 66115, + [SMALL_STATE(2256)] = 66189, + [SMALL_STATE(2257)] = 66237, + [SMALL_STATE(2258)] = 66289, + [SMALL_STATE(2259)] = 66340, + [SMALL_STATE(2260)] = 66413, + [SMALL_STATE(2261)] = 66486, + [SMALL_STATE(2262)] = 66559, + [SMALL_STATE(2263)] = 66632, + [SMALL_STATE(2264)] = 66705, + [SMALL_STATE(2265)] = 66750, + [SMALL_STATE(2266)] = 66823, + [SMALL_STATE(2267)] = 66873, + [SMALL_STATE(2268)] = 66923, + [SMALL_STATE(2269)] = 66973, + [SMALL_STATE(2270)] = 67019, + [SMALL_STATE(2271)] = 67105, + [SMALL_STATE(2272)] = 67155, + [SMALL_STATE(2273)] = 67201, + [SMALL_STATE(2274)] = 67250, + [SMALL_STATE(2275)] = 67293, + [SMALL_STATE(2276)] = 67342, + [SMALL_STATE(2277)] = 67385, + [SMALL_STATE(2278)] = 67428, + [SMALL_STATE(2279)] = 67479, + [SMALL_STATE(2280)] = 67524, + [SMALL_STATE(2281)] = 67573, + [SMALL_STATE(2282)] = 67620, + [SMALL_STATE(2283)] = 67669, + [SMALL_STATE(2284)] = 67718, + [SMALL_STATE(2285)] = 67761, + [SMALL_STATE(2286)] = 67810, + [SMALL_STATE(2287)] = 67853, + [SMALL_STATE(2288)] = 67898, + [SMALL_STATE(2289)] = 67941, + [SMALL_STATE(2290)] = 67984, + [SMALL_STATE(2291)] = 68027, + [SMALL_STATE(2292)] = 68073, + [SMALL_STATE(2293)] = 68153, + [SMALL_STATE(2294)] = 68231, + [SMALL_STATE(2295)] = 68275, + [SMALL_STATE(2296)] = 68317, + [SMALL_STATE(2297)] = 68397, + [SMALL_STATE(2298)] = 68439, + [SMALL_STATE(2299)] = 68484, + [SMALL_STATE(2300)] = 68525, + [SMALL_STATE(2301)] = 68570, + [SMALL_STATE(2302)] = 68652, + [SMALL_STATE(2303)] = 68692, + [SMALL_STATE(2304)] = 68736, + [SMALL_STATE(2305)] = 68780, + [SMALL_STATE(2306)] = 68824, + [SMALL_STATE(2307)] = 68868, + [SMALL_STATE(2308)] = 68950, + [SMALL_STATE(2309)] = 68995, + [SMALL_STATE(2310)] = 69071, + [SMALL_STATE(2311)] = 69147, + [SMALL_STATE(2312)] = 69223, + [SMALL_STATE(2313)] = 69299, + [SMALL_STATE(2314)] = 69345, + [SMALL_STATE(2315)] = 69421, + [SMALL_STATE(2316)] = 69497, + [SMALL_STATE(2317)] = 69573, + [SMALL_STATE(2318)] = 69649, + [SMALL_STATE(2319)] = 69725, + [SMALL_STATE(2320)] = 69801, + [SMALL_STATE(2321)] = 69877, + [SMALL_STATE(2322)] = 69953, + [SMALL_STATE(2323)] = 70029, + [SMALL_STATE(2324)] = 70105, + [SMALL_STATE(2325)] = 70181, + [SMALL_STATE(2326)] = 70257, + [SMALL_STATE(2327)] = 70333, + [SMALL_STATE(2328)] = 70409, + [SMALL_STATE(2329)] = 70453, + [SMALL_STATE(2330)] = 70495, + [SMALL_STATE(2331)] = 70541, + [SMALL_STATE(2332)] = 70587, + [SMALL_STATE(2333)] = 70663, + [SMALL_STATE(2334)] = 70739, + [SMALL_STATE(2335)] = 70815, + [SMALL_STATE(2336)] = 70891, + [SMALL_STATE(2337)] = 70967, + [SMALL_STATE(2338)] = 71043, + [SMALL_STATE(2339)] = 71119, + [SMALL_STATE(2340)] = 71171, + [SMALL_STATE(2341)] = 71247, + [SMALL_STATE(2342)] = 71286, + [SMALL_STATE(2343)] = 71335, + [SMALL_STATE(2344)] = 71384, + [SMALL_STATE(2345)] = 71435, + [SMALL_STATE(2346)] = 71484, + [SMALL_STATE(2347)] = 71532, + [SMALL_STATE(2348)] = 71572, + [SMALL_STATE(2349)] = 71642, + [SMALL_STATE(2350)] = 71696, + [SMALL_STATE(2351)] = 71766, + [SMALL_STATE(2352)] = 71812, + [SMALL_STATE(2353)] = 71882, + [SMALL_STATE(2354)] = 71928, + [SMALL_STATE(2355)] = 71974, + [SMALL_STATE(2356)] = 72020, + [SMALL_STATE(2357)] = 72090, + [SMALL_STATE(2358)] = 72138, + [SMALL_STATE(2359)] = 72208, + [SMALL_STATE(2360)] = 72278, + [SMALL_STATE(2361)] = 72348, + [SMALL_STATE(2362)] = 72418, + [SMALL_STATE(2363)] = 72466, + [SMALL_STATE(2364)] = 72536, + [SMALL_STATE(2365)] = 72606, + [SMALL_STATE(2366)] = 72676, + [SMALL_STATE(2367)] = 72746, + [SMALL_STATE(2368)] = 72786, + [SMALL_STATE(2369)] = 72825, + [SMALL_STATE(2370)] = 72862, + [SMALL_STATE(2371)] = 72899, + [SMALL_STATE(2372)] = 72946, + [SMALL_STATE(2373)] = 72997, + [SMALL_STATE(2374)] = 73042, + [SMALL_STATE(2375)] = 73093, + [SMALL_STATE(2376)] = 73146, + [SMALL_STATE(2377)] = 73197, + [SMALL_STATE(2378)] = 73236, + [SMALL_STATE(2379)] = 73281, + [SMALL_STATE(2380)] = 73326, + [SMALL_STATE(2381)] = 73371, + [SMALL_STATE(2382)] = 73419, + [SMALL_STATE(2383)] = 73455, + [SMALL_STATE(2384)] = 73493, + [SMALL_STATE(2385)] = 73543, + [SMALL_STATE(2386)] = 73577, + [SMALL_STATE(2387)] = 73611, + [SMALL_STATE(2388)] = 73645, + [SMALL_STATE(2389)] = 73683, + [SMALL_STATE(2390)] = 73717, + [SMALL_STATE(2391)] = 73751, + [SMALL_STATE(2392)] = 73785, + [SMALL_STATE(2393)] = 73819, + [SMALL_STATE(2394)] = 73853, + [SMALL_STATE(2395)] = 73887, + [SMALL_STATE(2396)] = 73935, + [SMALL_STATE(2397)] = 73983, + [SMALL_STATE(2398)] = 74031, + [SMALL_STATE(2399)] = 74081, + [SMALL_STATE(2400)] = 74119, + [SMALL_STATE(2401)] = 74169, + [SMALL_STATE(2402)] = 74211, + [SMALL_STATE(2403)] = 74249, + [SMALL_STATE(2404)] = 74289, + [SMALL_STATE(2405)] = 74329, + [SMALL_STATE(2406)] = 74375, + [SMALL_STATE(2407)] = 74413, + [SMALL_STATE(2408)] = 74449, + [SMALL_STATE(2409)] = 74489, + [SMALL_STATE(2410)] = 74536, + [SMALL_STATE(2411)] = 74587, + [SMALL_STATE(2412)] = 74622, + [SMALL_STATE(2413)] = 74661, + [SMALL_STATE(2414)] = 74700, + [SMALL_STATE(2415)] = 74741, + [SMALL_STATE(2416)] = 74780, + [SMALL_STATE(2417)] = 74817, + [SMALL_STATE(2418)] = 74852, + [SMALL_STATE(2419)] = 74899, + [SMALL_STATE(2420)] = 74934, + [SMALL_STATE(2421)] = 74971, + [SMALL_STATE(2422)] = 75010, + [SMALL_STATE(2423)] = 75051, + [SMALL_STATE(2424)] = 75084, + [SMALL_STATE(2425)] = 75119, + [SMALL_STATE(2426)] = 75158, + [SMALL_STATE(2427)] = 75195, + [SMALL_STATE(2428)] = 75242, + [SMALL_STATE(2429)] = 75281, + [SMALL_STATE(2430)] = 75316, + [SMALL_STATE(2431)] = 75363, + [SMALL_STATE(2432)] = 75410, + [SMALL_STATE(2433)] = 75449, + [SMALL_STATE(2434)] = 75482, + [SMALL_STATE(2435)] = 75519, + [SMALL_STATE(2436)] = 75552, + [SMALL_STATE(2437)] = 75589, + [SMALL_STATE(2438)] = 75623, + [SMALL_STATE(2439)] = 75655, + [SMALL_STATE(2440)] = 75693, + [SMALL_STATE(2441)] = 75733, + [SMALL_STATE(2442)] = 75771, + [SMALL_STATE(2443)] = 75809, + [SMALL_STATE(2444)] = 75841, + [SMALL_STATE(2445)] = 75889, + [SMALL_STATE(2446)] = 75927, + [SMALL_STATE(2447)] = 75959, + [SMALL_STATE(2448)] = 75995, + [SMALL_STATE(2449)] = 76035, + [SMALL_STATE(2450)] = 76081, + [SMALL_STATE(2451)] = 76117, + [SMALL_STATE(2452)] = 76151, + [SMALL_STATE(2453)] = 76199, + [SMALL_STATE(2454)] = 76237, + [SMALL_STATE(2455)] = 76269, + [SMALL_STATE(2456)] = 76301, + [SMALL_STATE(2457)] = 76335, + [SMALL_STATE(2458)] = 76367, + [SMALL_STATE(2459)] = 76399, + [SMALL_STATE(2460)] = 76435, + [SMALL_STATE(2461)] = 76469, + [SMALL_STATE(2462)] = 76501, + [SMALL_STATE(2463)] = 76533, + [SMALL_STATE(2464)] = 76573, + [SMALL_STATE(2465)] = 76607, + [SMALL_STATE(2466)] = 76643, + [SMALL_STATE(2467)] = 76681, + [SMALL_STATE(2468)] = 76715, + [SMALL_STATE(2469)] = 76753, + [SMALL_STATE(2470)] = 76789, + [SMALL_STATE(2471)] = 76827, + [SMALL_STATE(2472)] = 76865, + [SMALL_STATE(2473)] = 76899, + [SMALL_STATE(2474)] = 76947, + [SMALL_STATE(2475)] = 76983, + [SMALL_STATE(2476)] = 77028, + [SMALL_STATE(2477)] = 77059, + [SMALL_STATE(2478)] = 77090, + [SMALL_STATE(2479)] = 77123, + [SMALL_STATE(2480)] = 77154, + [SMALL_STATE(2481)] = 77195, + [SMALL_STATE(2482)] = 77230, + [SMALL_STATE(2483)] = 77261, + [SMALL_STATE(2484)] = 77292, + [SMALL_STATE(2485)] = 77323, + [SMALL_STATE(2486)] = 77354, + [SMALL_STATE(2487)] = 77389, + [SMALL_STATE(2488)] = 77424, + [SMALL_STATE(2489)] = 77463, + [SMALL_STATE(2490)] = 77496, + [SMALL_STATE(2491)] = 77533, + [SMALL_STATE(2492)] = 77566, + [SMALL_STATE(2493)] = 77597, + [SMALL_STATE(2494)] = 77628, + [SMALL_STATE(2495)] = 77665, + [SMALL_STATE(2496)] = 77698, + [SMALL_STATE(2497)] = 77729, + [SMALL_STATE(2498)] = 77768, + [SMALL_STATE(2499)] = 77799, + [SMALL_STATE(2500)] = 77834, + [SMALL_STATE(2501)] = 77879, + [SMALL_STATE(2502)] = 77916, + [SMALL_STATE(2503)] = 77961, + [SMALL_STATE(2504)] = 77992, + [SMALL_STATE(2505)] = 78037, + [SMALL_STATE(2506)] = 78068, + [SMALL_STATE(2507)] = 78113, + [SMALL_STATE(2508)] = 78148, + [SMALL_STATE(2509)] = 78185, + [SMALL_STATE(2510)] = 78214, + [SMALL_STATE(2511)] = 78243, + [SMALL_STATE(2512)] = 78272, + [SMALL_STATE(2513)] = 78311, + [SMALL_STATE(2514)] = 78341, + [SMALL_STATE(2515)] = 78373, + [SMALL_STATE(2516)] = 78409, + [SMALL_STATE(2517)] = 78437, + [SMALL_STATE(2518)] = 78489, + [SMALL_STATE(2519)] = 78521, + [SMALL_STATE(2520)] = 78549, + [SMALL_STATE(2521)] = 78579, + [SMALL_STATE(2522)] = 78611, + [SMALL_STATE(2523)] = 78647, + [SMALL_STATE(2524)] = 78677, + [SMALL_STATE(2525)] = 78707, + [SMALL_STATE(2526)] = 78745, + [SMALL_STATE(2527)] = 78777, + [SMALL_STATE(2528)] = 78807, + [SMALL_STATE(2529)] = 78835, + [SMALL_STATE(2530)] = 78865, + [SMALL_STATE(2531)] = 78905, + [SMALL_STATE(2532)] = 78943, + [SMALL_STATE(2533)] = 78975, + [SMALL_STATE(2534)] = 79005, + [SMALL_STATE(2535)] = 79037, + [SMALL_STATE(2536)] = 79071, + [SMALL_STATE(2537)] = 79103, + [SMALL_STATE(2538)] = 79137, + [SMALL_STATE(2539)] = 79171, + [SMALL_STATE(2540)] = 79209, + [SMALL_STATE(2541)] = 79247, + [SMALL_STATE(2542)] = 79277, + [SMALL_STATE(2543)] = 79305, + [SMALL_STATE(2544)] = 79355, + [SMALL_STATE(2545)] = 79391, + [SMALL_STATE(2546)] = 79423, + [SMALL_STATE(2547)] = 79453, + [SMALL_STATE(2548)] = 79485, + [SMALL_STATE(2549)] = 79515, + [SMALL_STATE(2550)] = 79545, + [SMALL_STATE(2551)] = 79573, + [SMALL_STATE(2552)] = 79625, + [SMALL_STATE(2553)] = 79655, + [SMALL_STATE(2554)] = 79691, + [SMALL_STATE(2555)] = 79723, + [SMALL_STATE(2556)] = 79755, + [SMALL_STATE(2557)] = 79787, + [SMALL_STATE(2558)] = 79819, + [SMALL_STATE(2559)] = 79855, + [SMALL_STATE(2560)] = 79889, + [SMALL_STATE(2561)] = 79925, + [SMALL_STATE(2562)] = 79961, + [SMALL_STATE(2563)] = 79993, + [SMALL_STATE(2564)] = 80029, + [SMALL_STATE(2565)] = 80059, + [SMALL_STATE(2566)] = 80089, + [SMALL_STATE(2567)] = 80125, + [SMALL_STATE(2568)] = 80163, + [SMALL_STATE(2569)] = 80215, + [SMALL_STATE(2570)] = 80243, + [SMALL_STATE(2571)] = 80295, + [SMALL_STATE(2572)] = 80325, + [SMALL_STATE(2573)] = 80359, + [SMALL_STATE(2574)] = 80388, + [SMALL_STATE(2575)] = 80425, + [SMALL_STATE(2576)] = 80462, + [SMALL_STATE(2577)] = 80499, + [SMALL_STATE(2578)] = 80536, + [SMALL_STATE(2579)] = 80573, + [SMALL_STATE(2580)] = 80606, + [SMALL_STATE(2581)] = 80643, + [SMALL_STATE(2582)] = 80680, + [SMALL_STATE(2583)] = 80717, + [SMALL_STATE(2584)] = 80754, + [SMALL_STATE(2585)] = 80783, + [SMALL_STATE(2586)] = 80812, + [SMALL_STATE(2587)] = 80841, + [SMALL_STATE(2588)] = 80876, + [SMALL_STATE(2589)] = 80907, + [SMALL_STATE(2590)] = 80942, + [SMALL_STATE(2591)] = 80977, + [SMALL_STATE(2592)] = 81008, + [SMALL_STATE(2593)] = 81037, + [SMALL_STATE(2594)] = 81066, + [SMALL_STATE(2595)] = 81095, + [SMALL_STATE(2596)] = 81126, + [SMALL_STATE(2597)] = 81157, + [SMALL_STATE(2598)] = 81188, + [SMALL_STATE(2599)] = 81219, + [SMALL_STATE(2600)] = 81250, + [SMALL_STATE(2601)] = 81281, + [SMALL_STATE(2602)] = 81312, + [SMALL_STATE(2603)] = 81343, + [SMALL_STATE(2604)] = 81374, + [SMALL_STATE(2605)] = 81409, + [SMALL_STATE(2606)] = 81442, + [SMALL_STATE(2607)] = 81475, + [SMALL_STATE(2608)] = 81504, + [SMALL_STATE(2609)] = 81533, + [SMALL_STATE(2610)] = 81562, + [SMALL_STATE(2611)] = 81591, + [SMALL_STATE(2612)] = 81620, + [SMALL_STATE(2613)] = 81649, + [SMALL_STATE(2614)] = 81676, + [SMALL_STATE(2615)] = 81707, + [SMALL_STATE(2616)] = 81738, + [SMALL_STATE(2617)] = 81765, + [SMALL_STATE(2618)] = 81792, + [SMALL_STATE(2619)] = 81819, + [SMALL_STATE(2620)] = 81846, + [SMALL_STATE(2621)] = 81873, + [SMALL_STATE(2622)] = 81904, + [SMALL_STATE(2623)] = 81933, + [SMALL_STATE(2624)] = 81962, + [SMALL_STATE(2625)] = 81991, + [SMALL_STATE(2626)] = 82022, + [SMALL_STATE(2627)] = 82053, + [SMALL_STATE(2628)] = 82086, + [SMALL_STATE(2629)] = 82121, + [SMALL_STATE(2630)] = 82152, + [SMALL_STATE(2631)] = 82183, + [SMALL_STATE(2632)] = 82214, + [SMALL_STATE(2633)] = 82249, + [SMALL_STATE(2634)] = 82276, + [SMALL_STATE(2635)] = 82307, + [SMALL_STATE(2636)] = 82338, + [SMALL_STATE(2637)] = 82369, + [SMALL_STATE(2638)] = 82396, + [SMALL_STATE(2639)] = 82423, + [SMALL_STATE(2640)] = 82450, + [SMALL_STATE(2641)] = 82477, + [SMALL_STATE(2642)] = 82504, + [SMALL_STATE(2643)] = 82531, + [SMALL_STATE(2644)] = 82558, + [SMALL_STATE(2645)] = 82595, + [SMALL_STATE(2646)] = 82626, + [SMALL_STATE(2647)] = 82663, + [SMALL_STATE(2648)] = 82700, + [SMALL_STATE(2649)] = 82733, + [SMALL_STATE(2650)] = 82764, + [SMALL_STATE(2651)] = 82801, + [SMALL_STATE(2652)] = 82834, + [SMALL_STATE(2653)] = 82865, + [SMALL_STATE(2654)] = 82896, + [SMALL_STATE(2655)] = 82927, + [SMALL_STATE(2656)] = 82960, + [SMALL_STATE(2657)] = 83004, + [SMALL_STATE(2658)] = 83032, + [SMALL_STATE(2659)] = 83062, + [SMALL_STATE(2660)] = 83092, + [SMALL_STATE(2661)] = 83120, + [SMALL_STATE(2662)] = 83148, + [SMALL_STATE(2663)] = 83178, + [SMALL_STATE(2664)] = 83208, + [SMALL_STATE(2665)] = 83238, + [SMALL_STATE(2666)] = 83268, + [SMALL_STATE(2667)] = 83296, + [SMALL_STATE(2668)] = 83324, + [SMALL_STATE(2669)] = 83354, + [SMALL_STATE(2670)] = 83382, + [SMALL_STATE(2671)] = 83418, + [SMALL_STATE(2672)] = 83450, + [SMALL_STATE(2673)] = 83478, + [SMALL_STATE(2674)] = 83508, + [SMALL_STATE(2675)] = 83536, + [SMALL_STATE(2676)] = 83564, + [SMALL_STATE(2677)] = 83594, + [SMALL_STATE(2678)] = 83638, + [SMALL_STATE(2679)] = 83682, + [SMALL_STATE(2680)] = 83726, + [SMALL_STATE(2681)] = 83758, + [SMALL_STATE(2682)] = 83786, + [SMALL_STATE(2683)] = 83816, + [SMALL_STATE(2684)] = 83860, + [SMALL_STATE(2685)] = 83890, + [SMALL_STATE(2686)] = 83918, + [SMALL_STATE(2687)] = 83948, + [SMALL_STATE(2688)] = 83984, + [SMALL_STATE(2689)] = 84020, + [SMALL_STATE(2690)] = 84056, + [SMALL_STATE(2691)] = 84092, + [SMALL_STATE(2692)] = 84120, + [SMALL_STATE(2693)] = 84154, + [SMALL_STATE(2694)] = 84180, + [SMALL_STATE(2695)] = 84216, + [SMALL_STATE(2696)] = 84252, + [SMALL_STATE(2697)] = 84286, + [SMALL_STATE(2698)] = 84314, + [SMALL_STATE(2699)] = 84350, + [SMALL_STATE(2700)] = 84386, + [SMALL_STATE(2701)] = 84418, + [SMALL_STATE(2702)] = 84452, + [SMALL_STATE(2703)] = 84486, + [SMALL_STATE(2704)] = 84514, + [SMALL_STATE(2705)] = 84548, + [SMALL_STATE(2706)] = 84582, + [SMALL_STATE(2707)] = 84612, + [SMALL_STATE(2708)] = 84650, + [SMALL_STATE(2709)] = 84686, + [SMALL_STATE(2710)] = 84720, + [SMALL_STATE(2711)] = 84752, + [SMALL_STATE(2712)] = 84780, + [SMALL_STATE(2713)] = 84810, + [SMALL_STATE(2714)] = 84840, + [SMALL_STATE(2715)] = 84872, + [SMALL_STATE(2716)] = 84904, + [SMALL_STATE(2717)] = 84936, + [SMALL_STATE(2718)] = 84968, + [SMALL_STATE(2719)] = 85000, + [SMALL_STATE(2720)] = 85030, + [SMALL_STATE(2721)] = 85066, + [SMALL_STATE(2722)] = 85094, + [SMALL_STATE(2723)] = 85122, + [SMALL_STATE(2724)] = 85158, + [SMALL_STATE(2725)] = 85186, + [SMALL_STATE(2726)] = 85222, + [SMALL_STATE(2727)] = 85252, + [SMALL_STATE(2728)] = 85283, + [SMALL_STATE(2729)] = 85316, + [SMALL_STATE(2730)] = 85343, + [SMALL_STATE(2731)] = 85380, + [SMALL_STATE(2732)] = 85411, + [SMALL_STATE(2733)] = 85446, + [SMALL_STATE(2734)] = 85481, + [SMALL_STATE(2735)] = 85508, + [SMALL_STATE(2736)] = 85539, + [SMALL_STATE(2737)] = 85572, + [SMALL_STATE(2738)] = 85599, + [SMALL_STATE(2739)] = 85632, + [SMALL_STATE(2740)] = 85659, + [SMALL_STATE(2741)] = 85686, + [SMALL_STATE(2742)] = 85713, + [SMALL_STATE(2743)] = 85740, + [SMALL_STATE(2744)] = 85767, + [SMALL_STATE(2745)] = 85798, + [SMALL_STATE(2746)] = 85825, + [SMALL_STATE(2747)] = 85852, + [SMALL_STATE(2748)] = 85879, + [SMALL_STATE(2749)] = 85906, + [SMALL_STATE(2750)] = 85933, + [SMALL_STATE(2751)] = 85964, + [SMALL_STATE(2752)] = 85995, + [SMALL_STATE(2753)] = 86022, + [SMALL_STATE(2754)] = 86049, + [SMALL_STATE(2755)] = 86078, + [SMALL_STATE(2756)] = 86107, + [SMALL_STATE(2757)] = 86138, + [SMALL_STATE(2758)] = 86169, + [SMALL_STATE(2759)] = 86196, + [SMALL_STATE(2760)] = 86223, + [SMALL_STATE(2761)] = 86250, + [SMALL_STATE(2762)] = 86277, + [SMALL_STATE(2763)] = 86308, + [SMALL_STATE(2764)] = 86339, + [SMALL_STATE(2765)] = 86368, + [SMALL_STATE(2766)] = 86397, + [SMALL_STATE(2767)] = 86430, + [SMALL_STATE(2768)] = 86463, + [SMALL_STATE(2769)] = 86494, + [SMALL_STATE(2770)] = 86525, + [SMALL_STATE(2771)] = 86552, + [SMALL_STATE(2772)] = 86579, + [SMALL_STATE(2773)] = 86608, + [SMALL_STATE(2774)] = 86637, + [SMALL_STATE(2775)] = 86668, + [SMALL_STATE(2776)] = 86699, + [SMALL_STATE(2777)] = 86726, + [SMALL_STATE(2778)] = 86753, + [SMALL_STATE(2779)] = 86780, + [SMALL_STATE(2780)] = 86807, + [SMALL_STATE(2781)] = 86838, + [SMALL_STATE(2782)] = 86869, + [SMALL_STATE(2783)] = 86898, + [SMALL_STATE(2784)] = 86927, + [SMALL_STATE(2785)] = 86960, + [SMALL_STATE(2786)] = 86993, + [SMALL_STATE(2787)] = 87024, + [SMALL_STATE(2788)] = 87055, + [SMALL_STATE(2789)] = 87086, + [SMALL_STATE(2790)] = 87115, + [SMALL_STATE(2791)] = 87146, + [SMALL_STATE(2792)] = 87179, + [SMALL_STATE(2793)] = 87210, + [SMALL_STATE(2794)] = 87239, + [SMALL_STATE(2795)] = 87270, + [SMALL_STATE(2796)] = 87297, + [SMALL_STATE(2797)] = 87324, + [SMALL_STATE(2798)] = 87351, + [SMALL_STATE(2799)] = 87382, + [SMALL_STATE(2800)] = 87417, + [SMALL_STATE(2801)] = 87452, + [SMALL_STATE(2802)] = 87483, + [SMALL_STATE(2803)] = 87510, + [SMALL_STATE(2804)] = 87537, + [SMALL_STATE(2805)] = 87566, + [SMALL_STATE(2806)] = 87595, + [SMALL_STATE(2807)] = 87626, + [SMALL_STATE(2808)] = 87657, + [SMALL_STATE(2809)] = 87684, + [SMALL_STATE(2810)] = 87715, + [SMALL_STATE(2811)] = 87742, + [SMALL_STATE(2812)] = 87771, + [SMALL_STATE(2813)] = 87800, + [SMALL_STATE(2814)] = 87831, + [SMALL_STATE(2815)] = 87862, + [SMALL_STATE(2816)] = 87889, + [SMALL_STATE(2817)] = 87920, + [SMALL_STATE(2818)] = 87951, + [SMALL_STATE(2819)] = 87980, + [SMALL_STATE(2820)] = 88011, + [SMALL_STATE(2821)] = 88036, + [SMALL_STATE(2822)] = 88069, + [SMALL_STATE(2823)] = 88094, + [SMALL_STATE(2824)] = 88123, + [SMALL_STATE(2825)] = 88156, + [SMALL_STATE(2826)] = 88187, + [SMALL_STATE(2827)] = 88218, + [SMALL_STATE(2828)] = 88251, + [SMALL_STATE(2829)] = 88276, + [SMALL_STATE(2830)] = 88309, + [SMALL_STATE(2831)] = 88340, + [SMALL_STATE(2832)] = 88365, + [SMALL_STATE(2833)] = 88398, + [SMALL_STATE(2834)] = 88429, + [SMALL_STATE(2835)] = 88458, + [SMALL_STATE(2836)] = 88489, + [SMALL_STATE(2837)] = 88520, + [SMALL_STATE(2838)] = 88555, + [SMALL_STATE(2839)] = 88590, + [SMALL_STATE(2840)] = 88625, + [SMALL_STATE(2841)] = 88660, + [SMALL_STATE(2842)] = 88695, + [SMALL_STATE(2843)] = 88730, + [SMALL_STATE(2844)] = 88761, + [SMALL_STATE(2845)] = 88792, + [SMALL_STATE(2846)] = 88823, + [SMALL_STATE(2847)] = 88848, + [SMALL_STATE(2848)] = 88879, + [SMALL_STATE(2849)] = 88906, + [SMALL_STATE(2850)] = 88931, + [SMALL_STATE(2851)] = 88958, + [SMALL_STATE(2852)] = 88983, + [SMALL_STATE(2853)] = 89008, + [SMALL_STATE(2854)] = 89035, + [SMALL_STATE(2855)] = 89060, + [SMALL_STATE(2856)] = 89085, + [SMALL_STATE(2857)] = 89116, + [SMALL_STATE(2858)] = 89141, + [SMALL_STATE(2859)] = 89166, + [SMALL_STATE(2860)] = 89191, + [SMALL_STATE(2861)] = 89218, + [SMALL_STATE(2862)] = 89245, + [SMALL_STATE(2863)] = 89274, + [SMALL_STATE(2864)] = 89303, + [SMALL_STATE(2865)] = 89328, + [SMALL_STATE(2866)] = 89353, + [SMALL_STATE(2867)] = 89380, + [SMALL_STATE(2868)] = 89407, + [SMALL_STATE(2869)] = 89436, + [SMALL_STATE(2870)] = 89465, + [SMALL_STATE(2871)] = 89498, + [SMALL_STATE(2872)] = 89531, + [SMALL_STATE(2873)] = 89558, + [SMALL_STATE(2874)] = 89585, + [SMALL_STATE(2875)] = 89616, + [SMALL_STATE(2876)] = 89647, + [SMALL_STATE(2877)] = 89678, + [SMALL_STATE(2878)] = 89709, + [SMALL_STATE(2879)] = 89742, + [SMALL_STATE(2880)] = 89775, + [SMALL_STATE(2881)] = 89810, + [SMALL_STATE(2882)] = 89843, + [SMALL_STATE(2883)] = 89876, + [SMALL_STATE(2884)] = 89903, + [SMALL_STATE(2885)] = 89930, + [SMALL_STATE(2886)] = 89957, + [SMALL_STATE(2887)] = 89984, + [SMALL_STATE(2888)] = 90011, + [SMALL_STATE(2889)] = 90044, + [SMALL_STATE(2890)] = 90075, + [SMALL_STATE(2891)] = 90106, + [SMALL_STATE(2892)] = 90139, + [SMALL_STATE(2893)] = 90172, + [SMALL_STATE(2894)] = 90199, + [SMALL_STATE(2895)] = 90232, + [SMALL_STATE(2896)] = 90265, + [SMALL_STATE(2897)] = 90296, + [SMALL_STATE(2898)] = 90327, + [SMALL_STATE(2899)] = 90356, + [SMALL_STATE(2900)] = 90387, + [SMALL_STATE(2901)] = 90416, + [SMALL_STATE(2902)] = 90449, + [SMALL_STATE(2903)] = 90482, + [SMALL_STATE(2904)] = 90513, + [SMALL_STATE(2905)] = 90544, + [SMALL_STATE(2906)] = 90575, + [SMALL_STATE(2907)] = 90606, + [SMALL_STATE(2908)] = 90637, + [SMALL_STATE(2909)] = 90664, + [SMALL_STATE(2910)] = 90691, + [SMALL_STATE(2911)] = 90724, + [SMALL_STATE(2912)] = 90755, + [SMALL_STATE(2913)] = 90782, + [SMALL_STATE(2914)] = 90813, + [SMALL_STATE(2915)] = 90844, + [SMALL_STATE(2916)] = 90873, + [SMALL_STATE(2917)] = 90902, + [SMALL_STATE(2918)] = 90931, + [SMALL_STATE(2919)] = 90962, + [SMALL_STATE(2920)] = 90988, + [SMALL_STATE(2921)] = 91012, + [SMALL_STATE(2922)] = 91038, + [SMALL_STATE(2923)] = 91068, + [SMALL_STATE(2924)] = 91096, + [SMALL_STATE(2925)] = 91124, + [SMALL_STATE(2926)] = 91154, + [SMALL_STATE(2927)] = 91186, + [SMALL_STATE(2928)] = 91216, + [SMALL_STATE(2929)] = 91248, + [SMALL_STATE(2930)] = 91274, + [SMALL_STATE(2931)] = 91298, + [SMALL_STATE(2932)] = 91324, + [SMALL_STATE(2933)] = 91352, + [SMALL_STATE(2934)] = 91380, + [SMALL_STATE(2935)] = 91408, + [SMALL_STATE(2936)] = 91434, + [SMALL_STATE(2937)] = 91460, + [SMALL_STATE(2938)] = 91512, + [SMALL_STATE(2939)] = 91538, + [SMALL_STATE(2940)] = 91568, + [SMALL_STATE(2941)] = 91594, + [SMALL_STATE(2942)] = 91622, + [SMALL_STATE(2943)] = 91652, + [SMALL_STATE(2944)] = 91684, + [SMALL_STATE(2945)] = 91716, + [SMALL_STATE(2946)] = 91740, + [SMALL_STATE(2947)] = 91766, + [SMALL_STATE(2948)] = 91792, + [SMALL_STATE(2949)] = 91818, + [SMALL_STATE(2950)] = 91846, + [SMALL_STATE(2951)] = 91876, + [SMALL_STATE(2952)] = 91906, + [SMALL_STATE(2953)] = 91932, + [SMALL_STATE(2954)] = 91962, + [SMALL_STATE(2955)] = 91992, + [SMALL_STATE(2956)] = 92018, + [SMALL_STATE(2957)] = 92044, + [SMALL_STATE(2958)] = 92070, + [SMALL_STATE(2959)] = 92114, + [SMALL_STATE(2960)] = 92144, + [SMALL_STATE(2961)] = 92172, + [SMALL_STATE(2962)] = 92198, + [SMALL_STATE(2963)] = 92226, + [SMALL_STATE(2964)] = 92258, + [SMALL_STATE(2965)] = 92290, + [SMALL_STATE(2966)] = 92316, + [SMALL_STATE(2967)] = 92342, + [SMALL_STATE(2968)] = 92368, + [SMALL_STATE(2969)] = 92394, + [SMALL_STATE(2970)] = 92446, + [SMALL_STATE(2971)] = 92470, + [SMALL_STATE(2972)] = 92500, + [SMALL_STATE(2973)] = 92532, + [SMALL_STATE(2974)] = 92560, + [SMALL_STATE(2975)] = 92592, + [SMALL_STATE(2976)] = 92616, + [SMALL_STATE(2977)] = 92644, + [SMALL_STATE(2978)] = 92696, + [SMALL_STATE(2979)] = 92722, + [SMALL_STATE(2980)] = 92752, + [SMALL_STATE(2981)] = 92782, + [SMALL_STATE(2982)] = 92810, + [SMALL_STATE(2983)] = 92834, + [SMALL_STATE(2984)] = 92864, + [SMALL_STATE(2985)] = 92888, + [SMALL_STATE(2986)] = 92912, + [SMALL_STATE(2987)] = 92938, + [SMALL_STATE(2988)] = 92968, + [SMALL_STATE(2989)] = 93020, + [SMALL_STATE(2990)] = 93072, + [SMALL_STATE(2991)] = 93124, + [SMALL_STATE(2992)] = 93148, + [SMALL_STATE(2993)] = 93176, + [SMALL_STATE(2994)] = 93228, + [SMALL_STATE(2995)] = 93254, + [SMALL_STATE(2996)] = 93294, + [SMALL_STATE(2997)] = 93326, + [SMALL_STATE(2998)] = 93372, + [SMALL_STATE(2999)] = 93398, + [SMALL_STATE(3000)] = 93428, + [SMALL_STATE(3001)] = 93458, + [SMALL_STATE(3002)] = 93490, + [SMALL_STATE(3003)] = 93520, + [SMALL_STATE(3004)] = 93548, + [SMALL_STATE(3005)] = 93580, + [SMALL_STATE(3006)] = 93610, + [SMALL_STATE(3007)] = 93634, + [SMALL_STATE(3008)] = 93664, + [SMALL_STATE(3009)] = 93716, + [SMALL_STATE(3010)] = 93746, + [SMALL_STATE(3011)] = 93770, + [SMALL_STATE(3012)] = 93800, + [SMALL_STATE(3013)] = 93828, + [SMALL_STATE(3014)] = 93858, + [SMALL_STATE(3015)] = 93888, + [SMALL_STATE(3016)] = 93918, + [SMALL_STATE(3017)] = 93946, + [SMALL_STATE(3018)] = 93974, + [SMALL_STATE(3019)] = 94002, + [SMALL_STATE(3020)] = 94054, + [SMALL_STATE(3021)] = 94084, + [SMALL_STATE(3022)] = 94108, + [SMALL_STATE(3023)] = 94138, + [SMALL_STATE(3024)] = 94170, + [SMALL_STATE(3025)] = 94194, + [SMALL_STATE(3026)] = 94218, + [SMALL_STATE(3027)] = 94244, + [SMALL_STATE(3028)] = 94270, + [SMALL_STATE(3029)] = 94296, + [SMALL_STATE(3030)] = 94320, + [SMALL_STATE(3031)] = 94346, + [SMALL_STATE(3032)] = 94378, + [SMALL_STATE(3033)] = 94408, + [SMALL_STATE(3034)] = 94438, + [SMALL_STATE(3035)] = 94470, + [SMALL_STATE(3036)] = 94494, + [SMALL_STATE(3037)] = 94518, + [SMALL_STATE(3038)] = 94546, + [SMALL_STATE(3039)] = 94572, + [SMALL_STATE(3040)] = 94596, + [SMALL_STATE(3041)] = 94626, + [SMALL_STATE(3042)] = 94652, + [SMALL_STATE(3043)] = 94678, + [SMALL_STATE(3044)] = 94706, + [SMALL_STATE(3045)] = 94732, + [SMALL_STATE(3046)] = 94760, + [SMALL_STATE(3047)] = 94788, + [SMALL_STATE(3048)] = 94840, + [SMALL_STATE(3049)] = 94869, + [SMALL_STATE(3050)] = 94898, + [SMALL_STATE(3051)] = 94941, + [SMALL_STATE(3052)] = 94968, + [SMALL_STATE(3053)] = 94997, + [SMALL_STATE(3054)] = 95022, + [SMALL_STATE(3055)] = 95047, + [SMALL_STATE(3056)] = 95072, + [SMALL_STATE(3057)] = 95095, + [SMALL_STATE(3058)] = 95120, + [SMALL_STATE(3059)] = 95145, + [SMALL_STATE(3060)] = 95176, + [SMALL_STATE(3061)] = 95201, + [SMALL_STATE(3062)] = 95226, + [SMALL_STATE(3063)] = 95255, + [SMALL_STATE(3064)] = 95278, + [SMALL_STATE(3065)] = 95307, + [SMALL_STATE(3066)] = 95330, + [SMALL_STATE(3067)] = 95353, + [SMALL_STATE(3068)] = 95382, + [SMALL_STATE(3069)] = 95407, + [SMALL_STATE(3070)] = 95436, + [SMALL_STATE(3071)] = 95459, + [SMALL_STATE(3072)] = 95488, + [SMALL_STATE(3073)] = 95517, + [SMALL_STATE(3074)] = 95542, + [SMALL_STATE(3075)] = 95567, + [SMALL_STATE(3076)] = 95606, + [SMALL_STATE(3077)] = 95635, + [SMALL_STATE(3078)] = 95658, + [SMALL_STATE(3079)] = 95681, + [SMALL_STATE(3080)] = 95710, + [SMALL_STATE(3081)] = 95739, + [SMALL_STATE(3082)] = 95768, + [SMALL_STATE(3083)] = 95793, + [SMALL_STATE(3084)] = 95818, + [SMALL_STATE(3085)] = 95843, + [SMALL_STATE(3086)] = 95868, + [SMALL_STATE(3087)] = 95893, + [SMALL_STATE(3088)] = 95918, + [SMALL_STATE(3089)] = 95943, + [SMALL_STATE(3090)] = 95972, + [SMALL_STATE(3091)] = 96001, + [SMALL_STATE(3092)] = 96030, + [SMALL_STATE(3093)] = 96061, + [SMALL_STATE(3094)] = 96090, + [SMALL_STATE(3095)] = 96119, + [SMALL_STATE(3096)] = 96144, + [SMALL_STATE(3097)] = 96171, + [SMALL_STATE(3098)] = 96196, + [SMALL_STATE(3099)] = 96221, + [SMALL_STATE(3100)] = 96250, + [SMALL_STATE(3101)] = 96279, + [SMALL_STATE(3102)] = 96308, + [SMALL_STATE(3103)] = 96331, + [SMALL_STATE(3104)] = 96356, + [SMALL_STATE(3105)] = 96381, + [SMALL_STATE(3106)] = 96418, + [SMALL_STATE(3107)] = 96443, + [SMALL_STATE(3108)] = 96468, + [SMALL_STATE(3109)] = 96493, + [SMALL_STATE(3110)] = 96518, + [SMALL_STATE(3111)] = 96543, + [SMALL_STATE(3112)] = 96570, + [SMALL_STATE(3113)] = 96595, + [SMALL_STATE(3114)] = 96620, + [SMALL_STATE(3115)] = 96645, + [SMALL_STATE(3116)] = 96670, + [SMALL_STATE(3117)] = 96695, + [SMALL_STATE(3118)] = 96720, + [SMALL_STATE(3119)] = 96745, + [SMALL_STATE(3120)] = 96782, + [SMALL_STATE(3121)] = 96807, + [SMALL_STATE(3122)] = 96832, + [SMALL_STATE(3123)] = 96861, + [SMALL_STATE(3124)] = 96886, + [SMALL_STATE(3125)] = 96911, + [SMALL_STATE(3126)] = 96936, + [SMALL_STATE(3127)] = 96961, + [SMALL_STATE(3128)] = 96984, + [SMALL_STATE(3129)] = 97009, + [SMALL_STATE(3130)] = 97034, + [SMALL_STATE(3131)] = 97063, + [SMALL_STATE(3132)] = 97092, + [SMALL_STATE(3133)] = 97121, + [SMALL_STATE(3134)] = 97150, + [SMALL_STATE(3135)] = 97179, + [SMALL_STATE(3136)] = 97204, + [SMALL_STATE(3137)] = 97233, + [SMALL_STATE(3138)] = 97262, + [SMALL_STATE(3139)] = 97291, + [SMALL_STATE(3140)] = 97316, + [SMALL_STATE(3141)] = 97341, + [SMALL_STATE(3142)] = 97366, + [SMALL_STATE(3143)] = 97391, + [SMALL_STATE(3144)] = 97416, + [SMALL_STATE(3145)] = 97441, + [SMALL_STATE(3146)] = 97466, + [SMALL_STATE(3147)] = 97509, + [SMALL_STATE(3148)] = 97538, + [SMALL_STATE(3149)] = 97567, + [SMALL_STATE(3150)] = 97596, + [SMALL_STATE(3151)] = 97625, + [SMALL_STATE(3152)] = 97654, + [SMALL_STATE(3153)] = 97683, + [SMALL_STATE(3154)] = 97708, + [SMALL_STATE(3155)] = 97737, + [SMALL_STATE(3156)] = 97766, + [SMALL_STATE(3157)] = 97795, + [SMALL_STATE(3158)] = 97824, + [SMALL_STATE(3159)] = 97851, + [SMALL_STATE(3160)] = 97878, + [SMALL_STATE(3161)] = 97909, + [SMALL_STATE(3162)] = 97934, + [SMALL_STATE(3163)] = 97959, + [SMALL_STATE(3164)] = 97986, + [SMALL_STATE(3165)] = 98009, + [SMALL_STATE(3166)] = 98034, + [SMALL_STATE(3167)] = 98063, + [SMALL_STATE(3168)] = 98088, + [SMALL_STATE(3169)] = 98113, + [SMALL_STATE(3170)] = 98140, + [SMALL_STATE(3171)] = 98165, + [SMALL_STATE(3172)] = 98192, + [SMALL_STATE(3173)] = 98223, + [SMALL_STATE(3174)] = 98248, + [SMALL_STATE(3175)] = 98273, + [SMALL_STATE(3176)] = 98298, + [SMALL_STATE(3177)] = 98323, + [SMALL_STATE(3178)] = 98348, + [SMALL_STATE(3179)] = 98373, + [SMALL_STATE(3180)] = 98402, + [SMALL_STATE(3181)] = 98427, + [SMALL_STATE(3182)] = 98452, + [SMALL_STATE(3183)] = 98481, + [SMALL_STATE(3184)] = 98510, + [SMALL_STATE(3185)] = 98535, + [SMALL_STATE(3186)] = 98560, + [SMALL_STATE(3187)] = 98589, + [SMALL_STATE(3188)] = 98618, + [SMALL_STATE(3189)] = 98645, + [SMALL_STATE(3190)] = 98674, + [SMALL_STATE(3191)] = 98703, + [SMALL_STATE(3192)] = 98728, + [SMALL_STATE(3193)] = 98753, + [SMALL_STATE(3194)] = 98784, + [SMALL_STATE(3195)] = 98815, + [SMALL_STATE(3196)] = 98838, + [SMALL_STATE(3197)] = 98863, + [SMALL_STATE(3198)] = 98888, + [SMALL_STATE(3199)] = 98913, + [SMALL_STATE(3200)] = 98938, + [SMALL_STATE(3201)] = 98963, + [SMALL_STATE(3202)] = 98988, + [SMALL_STATE(3203)] = 99025, + [SMALL_STATE(3204)] = 99050, + [SMALL_STATE(3205)] = 99075, + [SMALL_STATE(3206)] = 99100, + [SMALL_STATE(3207)] = 99129, + [SMALL_STATE(3208)] = 99154, + [SMALL_STATE(3209)] = 99183, + [SMALL_STATE(3210)] = 99208, + [SMALL_STATE(3211)] = 99231, + [SMALL_STATE(3212)] = 99256, + [SMALL_STATE(3213)] = 99281, + [SMALL_STATE(3214)] = 99310, + [SMALL_STATE(3215)] = 99335, + [SMALL_STATE(3216)] = 99360, + [SMALL_STATE(3217)] = 99389, + [SMALL_STATE(3218)] = 99416, + [SMALL_STATE(3219)] = 99445, + [SMALL_STATE(3220)] = 99470, + [SMALL_STATE(3221)] = 99499, + [SMALL_STATE(3222)] = 99528, + [SMALL_STATE(3223)] = 99551, + [SMALL_STATE(3224)] = 99574, + [SMALL_STATE(3225)] = 99599, + [SMALL_STATE(3226)] = 99624, + [SMALL_STATE(3227)] = 99649, + [SMALL_STATE(3228)] = 99674, + [SMALL_STATE(3229)] = 99697, + [SMALL_STATE(3230)] = 99726, + [SMALL_STATE(3231)] = 99749, + [SMALL_STATE(3232)] = 99778, + [SMALL_STATE(3233)] = 99807, + [SMALL_STATE(3234)] = 99832, + [SMALL_STATE(3235)] = 99861, + [SMALL_STATE(3236)] = 99884, + [SMALL_STATE(3237)] = 99907, + [SMALL_STATE(3238)] = 99936, + [SMALL_STATE(3239)] = 99965, + [SMALL_STATE(3240)] = 99988, + [SMALL_STATE(3241)] = 100019, + [SMALL_STATE(3242)] = 100042, + [SMALL_STATE(3243)] = 100071, + [SMALL_STATE(3244)] = 100096, + [SMALL_STATE(3245)] = 100121, + [SMALL_STATE(3246)] = 100144, + [SMALL_STATE(3247)] = 100167, + [SMALL_STATE(3248)] = 100190, + [SMALL_STATE(3249)] = 100213, + [SMALL_STATE(3250)] = 100238, + [SMALL_STATE(3251)] = 100269, + [SMALL_STATE(3252)] = 100292, + [SMALL_STATE(3253)] = 100315, + [SMALL_STATE(3254)] = 100344, + [SMALL_STATE(3255)] = 100373, + [SMALL_STATE(3256)] = 100400, + [SMALL_STATE(3257)] = 100427, + [SMALL_STATE(3258)] = 100450, + [SMALL_STATE(3259)] = 100473, + [SMALL_STATE(3260)] = 100498, + [SMALL_STATE(3261)] = 100522, + [SMALL_STATE(3262)] = 100546, + [SMALL_STATE(3263)] = 100582, + [SMALL_STATE(3264)] = 100606, + [SMALL_STATE(3265)] = 100630, + [SMALL_STATE(3266)] = 100670, + [SMALL_STATE(3267)] = 100694, + [SMALL_STATE(3268)] = 100734, + [SMALL_STATE(3269)] = 100758, + [SMALL_STATE(3270)] = 100782, + [SMALL_STATE(3271)] = 100806, + [SMALL_STATE(3272)] = 100830, + [SMALL_STATE(3273)] = 100870, + [SMALL_STATE(3274)] = 100894, + [SMALL_STATE(3275)] = 100918, + [SMALL_STATE(3276)] = 100964, + [SMALL_STATE(3277)] = 101010, + [SMALL_STATE(3278)] = 101056, + [SMALL_STATE(3279)] = 101078, + [SMALL_STATE(3280)] = 101100, + [SMALL_STATE(3281)] = 101122, + [SMALL_STATE(3282)] = 101144, + [SMALL_STATE(3283)] = 101190, + [SMALL_STATE(3284)] = 101236, + [SMALL_STATE(3285)] = 101276, + [SMALL_STATE(3286)] = 101300, + [SMALL_STATE(3287)] = 101324, + [SMALL_STATE(3288)] = 101364, + [SMALL_STATE(3289)] = 101386, + [SMALL_STATE(3290)] = 101408, + [SMALL_STATE(3291)] = 101432, + [SMALL_STATE(3292)] = 101454, + [SMALL_STATE(3293)] = 101476, + [SMALL_STATE(3294)] = 101500, + [SMALL_STATE(3295)] = 101524, + [SMALL_STATE(3296)] = 101548, + [SMALL_STATE(3297)] = 101572, + [SMALL_STATE(3298)] = 101596, + [SMALL_STATE(3299)] = 101620, + [SMALL_STATE(3300)] = 101662, + [SMALL_STATE(3301)] = 101686, + [SMALL_STATE(3302)] = 101710, + [SMALL_STATE(3303)] = 101732, + [SMALL_STATE(3304)] = 101754, + [SMALL_STATE(3305)] = 101778, + [SMALL_STATE(3306)] = 101800, + [SMALL_STATE(3307)] = 101840, + [SMALL_STATE(3308)] = 101864, + [SMALL_STATE(3309)] = 101886, + [SMALL_STATE(3310)] = 101908, + [SMALL_STATE(3311)] = 101932, + [SMALL_STATE(3312)] = 101978, + [SMALL_STATE(3313)] = 102024, + [SMALL_STATE(3314)] = 102048, + [SMALL_STATE(3315)] = 102072, + [SMALL_STATE(3316)] = 102118, + [SMALL_STATE(3317)] = 102152, + [SMALL_STATE(3318)] = 102178, + [SMALL_STATE(3319)] = 102212, + [SMALL_STATE(3320)] = 102246, + [SMALL_STATE(3321)] = 102280, + [SMALL_STATE(3322)] = 102304, + [SMALL_STATE(3323)] = 102328, + [SMALL_STATE(3324)] = 102350, + [SMALL_STATE(3325)] = 102372, + [SMALL_STATE(3326)] = 102394, + [SMALL_STATE(3327)] = 102440, + [SMALL_STATE(3328)] = 102462, + [SMALL_STATE(3329)] = 102486, + [SMALL_STATE(3330)] = 102510, + [SMALL_STATE(3331)] = 102534, + [SMALL_STATE(3332)] = 102556, + [SMALL_STATE(3333)] = 102578, + [SMALL_STATE(3334)] = 102600, + [SMALL_STATE(3335)] = 102624, + [SMALL_STATE(3336)] = 102648, + [SMALL_STATE(3337)] = 102672, + [SMALL_STATE(3338)] = 102696, + [SMALL_STATE(3339)] = 102722, + [SMALL_STATE(3340)] = 102746, + [SMALL_STATE(3341)] = 102768, + [SMALL_STATE(3342)] = 102792, + [SMALL_STATE(3343)] = 102816, + [SMALL_STATE(3344)] = 102840, + [SMALL_STATE(3345)] = 102864, + [SMALL_STATE(3346)] = 102888, + [SMALL_STATE(3347)] = 102912, + [SMALL_STATE(3348)] = 102936, + [SMALL_STATE(3349)] = 102960, + [SMALL_STATE(3350)] = 102984, + [SMALL_STATE(3351)] = 103008, + [SMALL_STATE(3352)] = 103032, + [SMALL_STATE(3353)] = 103078, + [SMALL_STATE(3354)] = 103100, + [SMALL_STATE(3355)] = 103124, + [SMALL_STATE(3356)] = 103146, + [SMALL_STATE(3357)] = 103170, + [SMALL_STATE(3358)] = 103192, + [SMALL_STATE(3359)] = 103214, + [SMALL_STATE(3360)] = 103236, + [SMALL_STATE(3361)] = 103258, + [SMALL_STATE(3362)] = 103282, + [SMALL_STATE(3363)] = 103306, + [SMALL_STATE(3364)] = 103330, + [SMALL_STATE(3365)] = 103354, + [SMALL_STATE(3366)] = 103378, + [SMALL_STATE(3367)] = 103402, + [SMALL_STATE(3368)] = 103426, + [SMALL_STATE(3369)] = 103450, + [SMALL_STATE(3370)] = 103474, + [SMALL_STATE(3371)] = 103496, + [SMALL_STATE(3372)] = 103520, + [SMALL_STATE(3373)] = 103544, + [SMALL_STATE(3374)] = 103566, + [SMALL_STATE(3375)] = 103590, + [SMALL_STATE(3376)] = 103626, + [SMALL_STATE(3377)] = 103650, + [SMALL_STATE(3378)] = 103674, + [SMALL_STATE(3379)] = 103698, + [SMALL_STATE(3380)] = 103720, + [SMALL_STATE(3381)] = 103744, + [SMALL_STATE(3382)] = 103768, + [SMALL_STATE(3383)] = 103792, + [SMALL_STATE(3384)] = 103814, + [SMALL_STATE(3385)] = 103838, + [SMALL_STATE(3386)] = 103862, + [SMALL_STATE(3387)] = 103904, + [SMALL_STATE(3388)] = 103928, + [SMALL_STATE(3389)] = 103952, + [SMALL_STATE(3390)] = 103976, + [SMALL_STATE(3391)] = 104000, + [SMALL_STATE(3392)] = 104028, + [SMALL_STATE(3393)] = 104056, + [SMALL_STATE(3394)] = 104084, + [SMALL_STATE(3395)] = 104112, + [SMALL_STATE(3396)] = 104140, + [SMALL_STATE(3397)] = 104168, + [SMALL_STATE(3398)] = 104196, + [SMALL_STATE(3399)] = 104224, + [SMALL_STATE(3400)] = 104252, + [SMALL_STATE(3401)] = 104280, + [SMALL_STATE(3402)] = 104308, + [SMALL_STATE(3403)] = 104336, + [SMALL_STATE(3404)] = 104360, + [SMALL_STATE(3405)] = 104384, + [SMALL_STATE(3406)] = 104408, + [SMALL_STATE(3407)] = 104432, + [SMALL_STATE(3408)] = 104456, + [SMALL_STATE(3409)] = 104480, + [SMALL_STATE(3410)] = 104504, + [SMALL_STATE(3411)] = 104528, + [SMALL_STATE(3412)] = 104552, + [SMALL_STATE(3413)] = 104576, + [SMALL_STATE(3414)] = 104616, + [SMALL_STATE(3415)] = 104640, + [SMALL_STATE(3416)] = 104664, + [SMALL_STATE(3417)] = 104685, + [SMALL_STATE(3418)] = 104706, + [SMALL_STATE(3419)] = 104727, + [SMALL_STATE(3420)] = 104750, + [SMALL_STATE(3421)] = 104771, + [SMALL_STATE(3422)] = 104798, + [SMALL_STATE(3423)] = 104821, + [SMALL_STATE(3424)] = 104844, + [SMALL_STATE(3425)] = 104867, + [SMALL_STATE(3426)] = 104888, + [SMALL_STATE(3427)] = 104911, + [SMALL_STATE(3428)] = 104934, + [SMALL_STATE(3429)] = 104973, + [SMALL_STATE(3430)] = 104994, + [SMALL_STATE(3431)] = 105015, + [SMALL_STATE(3432)] = 105038, + [SMALL_STATE(3433)] = 105061, + [SMALL_STATE(3434)] = 105082, + [SMALL_STATE(3435)] = 105105, + [SMALL_STATE(3436)] = 105128, + [SMALL_STATE(3437)] = 105149, + [SMALL_STATE(3438)] = 105172, + [SMALL_STATE(3439)] = 105195, + [SMALL_STATE(3440)] = 105216, + [SMALL_STATE(3441)] = 105239, + [SMALL_STATE(3442)] = 105266, + [SMALL_STATE(3443)] = 105297, + [SMALL_STATE(3444)] = 105318, + [SMALL_STATE(3445)] = 105355, + [SMALL_STATE(3446)] = 105376, + [SMALL_STATE(3447)] = 105405, + [SMALL_STATE(3448)] = 105428, + [SMALL_STATE(3449)] = 105449, + [SMALL_STATE(3450)] = 105476, + [SMALL_STATE(3451)] = 105497, + [SMALL_STATE(3452)] = 105518, + [SMALL_STATE(3453)] = 105541, + [SMALL_STATE(3454)] = 105562, + [SMALL_STATE(3455)] = 105583, + [SMALL_STATE(3456)] = 105604, + [SMALL_STATE(3457)] = 105643, + [SMALL_STATE(3458)] = 105664, + [SMALL_STATE(3459)] = 105701, + [SMALL_STATE(3460)] = 105728, + [SMALL_STATE(3461)] = 105749, + [SMALL_STATE(3462)] = 105770, + [SMALL_STATE(3463)] = 105791, + [SMALL_STATE(3464)] = 105812, + [SMALL_STATE(3465)] = 105833, + [SMALL_STATE(3466)] = 105854, + [SMALL_STATE(3467)] = 105891, + [SMALL_STATE(3468)] = 105912, + [SMALL_STATE(3469)] = 105933, + [SMALL_STATE(3470)] = 105956, + [SMALL_STATE(3471)] = 105977, + [SMALL_STATE(3472)] = 106000, + [SMALL_STATE(3473)] = 106021, + [SMALL_STATE(3474)] = 106042, + [SMALL_STATE(3475)] = 106063, + [SMALL_STATE(3476)] = 106090, + [SMALL_STATE(3477)] = 106127, + [SMALL_STATE(3478)] = 106164, + [SMALL_STATE(3479)] = 106201, + [SMALL_STATE(3480)] = 106238, + [SMALL_STATE(3481)] = 106259, + [SMALL_STATE(3482)] = 106280, + [SMALL_STATE(3483)] = 106317, + [SMALL_STATE(3484)] = 106354, + [SMALL_STATE(3485)] = 106391, + [SMALL_STATE(3486)] = 106412, + [SMALL_STATE(3487)] = 106451, + [SMALL_STATE(3488)] = 106474, + [SMALL_STATE(3489)] = 106497, + [SMALL_STATE(3490)] = 106520, + [SMALL_STATE(3491)] = 106541, + [SMALL_STATE(3492)] = 106564, + [SMALL_STATE(3493)] = 106585, + [SMALL_STATE(3494)] = 106608, + [SMALL_STATE(3495)] = 106629, + [SMALL_STATE(3496)] = 106652, + [SMALL_STATE(3497)] = 106673, + [SMALL_STATE(3498)] = 106694, + [SMALL_STATE(3499)] = 106715, + [SMALL_STATE(3500)] = 106736, + [SMALL_STATE(3501)] = 106773, + [SMALL_STATE(3502)] = 106810, + [SMALL_STATE(3503)] = 106831, + [SMALL_STATE(3504)] = 106854, + [SMALL_STATE(3505)] = 106877, + [SMALL_STATE(3506)] = 106914, + [SMALL_STATE(3507)] = 106937, + [SMALL_STATE(3508)] = 106960, + [SMALL_STATE(3509)] = 106981, + [SMALL_STATE(3510)] = 107002, + [SMALL_STATE(3511)] = 107029, + [SMALL_STATE(3512)] = 107050, + [SMALL_STATE(3513)] = 107073, + [SMALL_STATE(3514)] = 107096, + [SMALL_STATE(3515)] = 107117, + [SMALL_STATE(3516)] = 107138, + [SMALL_STATE(3517)] = 107159, + [SMALL_STATE(3518)] = 107180, + [SMALL_STATE(3519)] = 107201, + [SMALL_STATE(3520)] = 107222, + [SMALL_STATE(3521)] = 107243, + [SMALL_STATE(3522)] = 107264, + [SMALL_STATE(3523)] = 107285, + [SMALL_STATE(3524)] = 107324, + [SMALL_STATE(3525)] = 107345, + [SMALL_STATE(3526)] = 107366, + [SMALL_STATE(3527)] = 107389, + [SMALL_STATE(3528)] = 107416, + [SMALL_STATE(3529)] = 107439, + [SMALL_STATE(3530)] = 107460, + [SMALL_STATE(3531)] = 107481, + [SMALL_STATE(3532)] = 107504, + [SMALL_STATE(3533)] = 107527, + [SMALL_STATE(3534)] = 107548, + [SMALL_STATE(3535)] = 107569, + [SMALL_STATE(3536)] = 107592, + [SMALL_STATE(3537)] = 107615, + [SMALL_STATE(3538)] = 107636, + [SMALL_STATE(3539)] = 107657, + [SMALL_STATE(3540)] = 107678, + [SMALL_STATE(3541)] = 107699, + [SMALL_STATE(3542)] = 107720, + [SMALL_STATE(3543)] = 107743, + [SMALL_STATE(3544)] = 107766, + [SMALL_STATE(3545)] = 107787, + [SMALL_STATE(3546)] = 107810, + [SMALL_STATE(3547)] = 107831, + [SMALL_STATE(3548)] = 107858, + [SMALL_STATE(3549)] = 107881, + [SMALL_STATE(3550)] = 107908, + [SMALL_STATE(3551)] = 107935, + [SMALL_STATE(3552)] = 107962, + [SMALL_STATE(3553)] = 107989, + [SMALL_STATE(3554)] = 108016, + [SMALL_STATE(3555)] = 108043, + [SMALL_STATE(3556)] = 108070, + [SMALL_STATE(3557)] = 108097, + [SMALL_STATE(3558)] = 108124, + [SMALL_STATE(3559)] = 108151, + [SMALL_STATE(3560)] = 108178, + [SMALL_STATE(3561)] = 108205, + [SMALL_STATE(3562)] = 108244, + [SMALL_STATE(3563)] = 108271, + [SMALL_STATE(3564)] = 108292, + [SMALL_STATE(3565)] = 108313, + [SMALL_STATE(3566)] = 108340, + [SMALL_STATE(3567)] = 108361, + [SMALL_STATE(3568)] = 108384, + [SMALL_STATE(3569)] = 108405, + [SMALL_STATE(3570)] = 108426, + [SMALL_STATE(3571)] = 108447, + [SMALL_STATE(3572)] = 108468, + [SMALL_STATE(3573)] = 108489, + [SMALL_STATE(3574)] = 108528, + [SMALL_STATE(3575)] = 108549, + [SMALL_STATE(3576)] = 108570, + [SMALL_STATE(3577)] = 108591, + [SMALL_STATE(3578)] = 108616, + [SMALL_STATE(3579)] = 108655, + [SMALL_STATE(3580)] = 108676, + [SMALL_STATE(3581)] = 108699, + [SMALL_STATE(3582)] = 108720, + [SMALL_STATE(3583)] = 108741, + [SMALL_STATE(3584)] = 108762, + [SMALL_STATE(3585)] = 108783, + [SMALL_STATE(3586)] = 108804, + [SMALL_STATE(3587)] = 108825, + [SMALL_STATE(3588)] = 108846, + [SMALL_STATE(3589)] = 108867, + [SMALL_STATE(3590)] = 108888, + [SMALL_STATE(3591)] = 108909, + [SMALL_STATE(3592)] = 108932, + [SMALL_STATE(3593)] = 108953, + [SMALL_STATE(3594)] = 108974, + [SMALL_STATE(3595)] = 108995, + [SMALL_STATE(3596)] = 109018, + [SMALL_STATE(3597)] = 109039, + [SMALL_STATE(3598)] = 109066, + [SMALL_STATE(3599)] = 109087, + [SMALL_STATE(3600)] = 109108, + [SMALL_STATE(3601)] = 109129, + [SMALL_STATE(3602)] = 109150, + [SMALL_STATE(3603)] = 109171, + [SMALL_STATE(3604)] = 109192, + [SMALL_STATE(3605)] = 109213, + [SMALL_STATE(3606)] = 109234, + [SMALL_STATE(3607)] = 109255, + [SMALL_STATE(3608)] = 109279, + [SMALL_STATE(3609)] = 109309, + [SMALL_STATE(3610)] = 109335, + [SMALL_STATE(3611)] = 109369, + [SMALL_STATE(3612)] = 109393, + [SMALL_STATE(3613)] = 109415, + [SMALL_STATE(3614)] = 109443, + [SMALL_STATE(3615)] = 109469, + [SMALL_STATE(3616)] = 109495, + [SMALL_STATE(3617)] = 109521, + [SMALL_STATE(3618)] = 109543, + [SMALL_STATE(3619)] = 109569, + [SMALL_STATE(3620)] = 109601, + [SMALL_STATE(3621)] = 109627, + [SMALL_STATE(3622)] = 109659, + [SMALL_STATE(3623)] = 109691, + [SMALL_STATE(3624)] = 109713, + [SMALL_STATE(3625)] = 109745, + [SMALL_STATE(3626)] = 109771, + [SMALL_STATE(3627)] = 109797, + [SMALL_STATE(3628)] = 109823, + [SMALL_STATE(3629)] = 109855, + [SMALL_STATE(3630)] = 109889, + [SMALL_STATE(3631)] = 109911, + [SMALL_STATE(3632)] = 109933, + [SMALL_STATE(3633)] = 109967, + [SMALL_STATE(3634)] = 109993, + [SMALL_STATE(3635)] = 110017, + [SMALL_STATE(3636)] = 110039, + [SMALL_STATE(3637)] = 110063, + [SMALL_STATE(3638)] = 110087, + [SMALL_STATE(3639)] = 110109, + [SMALL_STATE(3640)] = 110131, + [SMALL_STATE(3641)] = 110155, + [SMALL_STATE(3642)] = 110191, + [SMALL_STATE(3643)] = 110217, + [SMALL_STATE(3644)] = 110241, + [SMALL_STATE(3645)] = 110267, + [SMALL_STATE(3646)] = 110303, + [SMALL_STATE(3647)] = 110327, + [SMALL_STATE(3648)] = 110357, + [SMALL_STATE(3649)] = 110393, + [SMALL_STATE(3650)] = 110417, + [SMALL_STATE(3651)] = 110443, + [SMALL_STATE(3652)] = 110467, + [SMALL_STATE(3653)] = 110503, + [SMALL_STATE(3654)] = 110534, + [SMALL_STATE(3655)] = 110555, + [SMALL_STATE(3656)] = 110580, + [SMALL_STATE(3657)] = 110613, + [SMALL_STATE(3658)] = 110646, + [SMALL_STATE(3659)] = 110671, + [SMALL_STATE(3660)] = 110692, + [SMALL_STATE(3661)] = 110713, + [SMALL_STATE(3662)] = 110734, + [SMALL_STATE(3663)] = 110767, + [SMALL_STATE(3664)] = 110800, + [SMALL_STATE(3665)] = 110833, + [SMALL_STATE(3666)] = 110866, + [SMALL_STATE(3667)] = 110899, + [SMALL_STATE(3668)] = 110932, + [SMALL_STATE(3669)] = 110963, + [SMALL_STATE(3670)] = 110986, + [SMALL_STATE(3671)] = 111019, + [SMALL_STATE(3672)] = 111052, + [SMALL_STATE(3673)] = 111083, + [SMALL_STATE(3674)] = 111116, + [SMALL_STATE(3675)] = 111149, + [SMALL_STATE(3676)] = 111180, + [SMALL_STATE(3677)] = 111213, + [SMALL_STATE(3678)] = 111246, + [SMALL_STATE(3679)] = 111277, + [SMALL_STATE(3680)] = 111310, + [SMALL_STATE(3681)] = 111343, + [SMALL_STATE(3682)] = 111374, + [SMALL_STATE(3683)] = 111407, + [SMALL_STATE(3684)] = 111440, + [SMALL_STATE(3685)] = 111471, + [SMALL_STATE(3686)] = 111504, + [SMALL_STATE(3687)] = 111537, + [SMALL_STATE(3688)] = 111568, + [SMALL_STATE(3689)] = 111601, + [SMALL_STATE(3690)] = 111634, + [SMALL_STATE(3691)] = 111665, + [SMALL_STATE(3692)] = 111696, + [SMALL_STATE(3693)] = 111727, + [SMALL_STATE(3694)] = 111758, + [SMALL_STATE(3695)] = 111789, + [SMALL_STATE(3696)] = 111820, + [SMALL_STATE(3697)] = 111851, + [SMALL_STATE(3698)] = 111882, + [SMALL_STATE(3699)] = 111913, + [SMALL_STATE(3700)] = 111948, + [SMALL_STATE(3701)] = 111979, + [SMALL_STATE(3702)] = 112002, + [SMALL_STATE(3703)] = 112033, + [SMALL_STATE(3704)] = 112058, + [SMALL_STATE(3705)] = 112089, + [SMALL_STATE(3706)] = 112110, + [SMALL_STATE(3707)] = 112133, + [SMALL_STATE(3708)] = 112162, + [SMALL_STATE(3709)] = 112185, + [SMALL_STATE(3710)] = 112208, + [SMALL_STATE(3711)] = 112229, + [SMALL_STATE(3712)] = 112250, + [SMALL_STATE(3713)] = 112283, + [SMALL_STATE(3714)] = 112316, + [SMALL_STATE(3715)] = 112351, + [SMALL_STATE(3716)] = 112372, + [SMALL_STATE(3717)] = 112403, + [SMALL_STATE(3718)] = 112428, + [SMALL_STATE(3719)] = 112453, + [SMALL_STATE(3720)] = 112486, + [SMALL_STATE(3721)] = 112511, + [SMALL_STATE(3722)] = 112542, + [SMALL_STATE(3723)] = 112575, + [SMALL_STATE(3724)] = 112598, + [SMALL_STATE(3725)] = 112619, + [SMALL_STATE(3726)] = 112650, + [SMALL_STATE(3727)] = 112683, + [SMALL_STATE(3728)] = 112716, + [SMALL_STATE(3729)] = 112749, + [SMALL_STATE(3730)] = 112782, + [SMALL_STATE(3731)] = 112815, + [SMALL_STATE(3732)] = 112840, + [SMALL_STATE(3733)] = 112863, + [SMALL_STATE(3734)] = 112884, + [SMALL_STATE(3735)] = 112905, + [SMALL_STATE(3736)] = 112938, + [SMALL_STATE(3737)] = 112971, + [SMALL_STATE(3738)] = 113002, + [SMALL_STATE(3739)] = 113033, + [SMALL_STATE(3740)] = 113066, + [SMALL_STATE(3741)] = 113097, + [SMALL_STATE(3742)] = 113122, + [SMALL_STATE(3743)] = 113155, + [SMALL_STATE(3744)] = 113188, + [SMALL_STATE(3745)] = 113209, + [SMALL_STATE(3746)] = 113230, + [SMALL_STATE(3747)] = 113258, + [SMALL_STATE(3748)] = 113286, + [SMALL_STATE(3749)] = 113306, + [SMALL_STATE(3750)] = 113334, + [SMALL_STATE(3751)] = 113356, + [SMALL_STATE(3752)] = 113384, + [SMALL_STATE(3753)] = 113404, + [SMALL_STATE(3754)] = 113422, + [SMALL_STATE(3755)] = 113450, + [SMALL_STATE(3756)] = 113470, + [SMALL_STATE(3757)] = 113498, + [SMALL_STATE(3758)] = 113526, + [SMALL_STATE(3759)] = 113554, + [SMALL_STATE(3760)] = 113582, + [SMALL_STATE(3761)] = 113610, + [SMALL_STATE(3762)] = 113638, + [SMALL_STATE(3763)] = 113666, + [SMALL_STATE(3764)] = 113694, + [SMALL_STATE(3765)] = 113722, + [SMALL_STATE(3766)] = 113748, + [SMALL_STATE(3767)] = 113776, + [SMALL_STATE(3768)] = 113796, + [SMALL_STATE(3769)] = 113824, + [SMALL_STATE(3770)] = 113852, + [SMALL_STATE(3771)] = 113882, + [SMALL_STATE(3772)] = 113910, + [SMALL_STATE(3773)] = 113938, + [SMALL_STATE(3774)] = 113966, + [SMALL_STATE(3775)] = 113994, + [SMALL_STATE(3776)] = 114014, + [SMALL_STATE(3777)] = 114034, + [SMALL_STATE(3778)] = 114062, + [SMALL_STATE(3779)] = 114090, + [SMALL_STATE(3780)] = 114118, + [SMALL_STATE(3781)] = 114138, + [SMALL_STATE(3782)] = 114166, + [SMALL_STATE(3783)] = 114188, + [SMALL_STATE(3784)] = 114208, + [SMALL_STATE(3785)] = 114236, + [SMALL_STATE(3786)] = 114258, + [SMALL_STATE(3787)] = 114282, + [SMALL_STATE(3788)] = 114310, + [SMALL_STATE(3789)] = 114330, + [SMALL_STATE(3790)] = 114358, + [SMALL_STATE(3791)] = 114386, + [SMALL_STATE(3792)] = 114404, + [SMALL_STATE(3793)] = 114432, + [SMALL_STATE(3794)] = 114460, + [SMALL_STATE(3795)] = 114488, + [SMALL_STATE(3796)] = 114516, + [SMALL_STATE(3797)] = 114544, + [SMALL_STATE(3798)] = 114566, + [SMALL_STATE(3799)] = 114594, + [SMALL_STATE(3800)] = 114622, + [SMALL_STATE(3801)] = 114646, + [SMALL_STATE(3802)] = 114666, + [SMALL_STATE(3803)] = 114694, + [SMALL_STATE(3804)] = 114722, + [SMALL_STATE(3805)] = 114750, + [SMALL_STATE(3806)] = 114770, + [SMALL_STATE(3807)] = 114798, + [SMALL_STATE(3808)] = 114822, + [SMALL_STATE(3809)] = 114846, + [SMALL_STATE(3810)] = 114866, + [SMALL_STATE(3811)] = 114886, + [SMALL_STATE(3812)] = 114906, + [SMALL_STATE(3813)] = 114934, + [SMALL_STATE(3814)] = 114954, + [SMALL_STATE(3815)] = 114982, + [SMALL_STATE(3816)] = 115004, + [SMALL_STATE(3817)] = 115032, + [SMALL_STATE(3818)] = 115054, + [SMALL_STATE(3819)] = 115082, + [SMALL_STATE(3820)] = 115110, + [SMALL_STATE(3821)] = 115136, + [SMALL_STATE(3822)] = 115160, + [SMALL_STATE(3823)] = 115190, + [SMALL_STATE(3824)] = 115212, + [SMALL_STATE(3825)] = 115238, + [SMALL_STATE(3826)] = 115262, + [SMALL_STATE(3827)] = 115284, + [SMALL_STATE(3828)] = 115307, + [SMALL_STATE(3829)] = 115326, + [SMALL_STATE(3830)] = 115349, + [SMALL_STATE(3831)] = 115374, + [SMALL_STATE(3832)] = 115399, + [SMALL_STATE(3833)] = 115424, + [SMALL_STATE(3834)] = 115443, + [SMALL_STATE(3835)] = 115466, + [SMALL_STATE(3836)] = 115493, + [SMALL_STATE(3837)] = 115512, + [SMALL_STATE(3838)] = 115537, + [SMALL_STATE(3839)] = 115562, + [SMALL_STATE(3840)] = 115587, + [SMALL_STATE(3841)] = 115608, + [SMALL_STATE(3842)] = 115629, + [SMALL_STATE(3843)] = 115654, + [SMALL_STATE(3844)] = 115683, + [SMALL_STATE(3845)] = 115708, + [SMALL_STATE(3846)] = 115727, + [SMALL_STATE(3847)] = 115748, + [SMALL_STATE(3848)] = 115767, + [SMALL_STATE(3849)] = 115792, + [SMALL_STATE(3850)] = 115811, + [SMALL_STATE(3851)] = 115832, + [SMALL_STATE(3852)] = 115863, + [SMALL_STATE(3853)] = 115888, + [SMALL_STATE(3854)] = 115913, + [SMALL_STATE(3855)] = 115938, + [SMALL_STATE(3856)] = 115965, + [SMALL_STATE(3857)] = 115990, + [SMALL_STATE(3858)] = 116009, + [SMALL_STATE(3859)] = 116034, + [SMALL_STATE(3860)] = 116061, + [SMALL_STATE(3861)] = 116080, + [SMALL_STATE(3862)] = 116099, + [SMALL_STATE(3863)] = 116124, + [SMALL_STATE(3864)] = 116151, + [SMALL_STATE(3865)] = 116178, + [SMALL_STATE(3866)] = 116197, + [SMALL_STATE(3867)] = 116218, + [SMALL_STATE(3868)] = 116243, + [SMALL_STATE(3869)] = 116262, + [SMALL_STATE(3870)] = 116281, + [SMALL_STATE(3871)] = 116304, + [SMALL_STATE(3872)] = 116323, + [SMALL_STATE(3873)] = 116350, + [SMALL_STATE(3874)] = 116371, + [SMALL_STATE(3875)] = 116395, + [SMALL_STATE(3876)] = 116417, + [SMALL_STATE(3877)] = 116439, + [SMALL_STATE(3878)] = 116457, + [SMALL_STATE(3879)] = 116475, + [SMALL_STATE(3880)] = 116493, + [SMALL_STATE(3881)] = 116513, + [SMALL_STATE(3882)] = 116533, + [SMALL_STATE(3883)] = 116559, + [SMALL_STATE(3884)] = 116587, + [SMALL_STATE(3885)] = 116613, + [SMALL_STATE(3886)] = 116639, + [SMALL_STATE(3887)] = 116665, + [SMALL_STATE(3888)] = 116693, + [SMALL_STATE(3889)] = 116711, + [SMALL_STATE(3890)] = 116739, + [SMALL_STATE(3891)] = 116767, + [SMALL_STATE(3892)] = 116795, + [SMALL_STATE(3893)] = 116813, + [SMALL_STATE(3894)] = 116839, + [SMALL_STATE(3895)] = 116867, + [SMALL_STATE(3896)] = 116893, + [SMALL_STATE(3897)] = 116915, + [SMALL_STATE(3898)] = 116939, + [SMALL_STATE(3899)] = 116967, + [SMALL_STATE(3900)] = 116995, + [SMALL_STATE(3901)] = 117023, + [SMALL_STATE(3902)] = 117051, + [SMALL_STATE(3903)] = 117077, + [SMALL_STATE(3904)] = 117105, + [SMALL_STATE(3905)] = 117133, + [SMALL_STATE(3906)] = 117161, + [SMALL_STATE(3907)] = 117183, + [SMALL_STATE(3908)] = 117211, + [SMALL_STATE(3909)] = 117237, + [SMALL_STATE(3910)] = 117263, + [SMALL_STATE(3911)] = 117285, + [SMALL_STATE(3912)] = 117313, + [SMALL_STATE(3913)] = 117337, + [SMALL_STATE(3914)] = 117365, + [SMALL_STATE(3915)] = 117389, + [SMALL_STATE(3916)] = 117417, + [SMALL_STATE(3917)] = 117443, + [SMALL_STATE(3918)] = 117465, + [SMALL_STATE(3919)] = 117493, + [SMALL_STATE(3920)] = 117515, + [SMALL_STATE(3921)] = 117543, + [SMALL_STATE(3922)] = 117565, + [SMALL_STATE(3923)] = 117589, + [SMALL_STATE(3924)] = 117615, + [SMALL_STATE(3925)] = 117641, + [SMALL_STATE(3926)] = 117667, + [SMALL_STATE(3927)] = 117695, + [SMALL_STATE(3928)] = 117721, + [SMALL_STATE(3929)] = 117743, + [SMALL_STATE(3930)] = 117771, + [SMALL_STATE(3931)] = 117799, + [SMALL_STATE(3932)] = 117827, + [SMALL_STATE(3933)] = 117855, + [SMALL_STATE(3934)] = 117879, + [SMALL_STATE(3935)] = 117907, + [SMALL_STATE(3936)] = 117931, + [SMALL_STATE(3937)] = 117955, + [SMALL_STATE(3938)] = 117983, + [SMALL_STATE(3939)] = 118009, + [SMALL_STATE(3940)] = 118031, + [SMALL_STATE(3941)] = 118049, + [SMALL_STATE(3942)] = 118067, + [SMALL_STATE(3943)] = 118095, + [SMALL_STATE(3944)] = 118113, + [SMALL_STATE(3945)] = 118141, + [SMALL_STATE(3946)] = 118159, + [SMALL_STATE(3947)] = 118177, + [SMALL_STATE(3948)] = 118199, + [SMALL_STATE(3949)] = 118217, + [SMALL_STATE(3950)] = 118245, + [SMALL_STATE(3951)] = 118273, + [SMALL_STATE(3952)] = 118301, + [SMALL_STATE(3953)] = 118329, + [SMALL_STATE(3954)] = 118357, + [SMALL_STATE(3955)] = 118385, + [SMALL_STATE(3956)] = 118413, + [SMALL_STATE(3957)] = 118441, + [SMALL_STATE(3958)] = 118469, + [SMALL_STATE(3959)] = 118497, + [SMALL_STATE(3960)] = 118525, + [SMALL_STATE(3961)] = 118553, + [SMALL_STATE(3962)] = 118581, + [SMALL_STATE(3963)] = 118607, + [SMALL_STATE(3964)] = 118627, + [SMALL_STATE(3965)] = 118655, + [SMALL_STATE(3966)] = 118681, + [SMALL_STATE(3967)] = 118701, + [SMALL_STATE(3968)] = 118721, + [SMALL_STATE(3969)] = 118741, + [SMALL_STATE(3970)] = 118769, + [SMALL_STATE(3971)] = 118795, + [SMALL_STATE(3972)] = 118819, + [SMALL_STATE(3973)] = 118845, + [SMALL_STATE(3974)] = 118873, + [SMALL_STATE(3975)] = 118895, + [SMALL_STATE(3976)] = 118921, + [SMALL_STATE(3977)] = 118939, + [SMALL_STATE(3978)] = 118957, + [SMALL_STATE(3979)] = 118977, + [SMALL_STATE(3980)] = 118997, + [SMALL_STATE(3981)] = 119025, + [SMALL_STATE(3982)] = 119053, + [SMALL_STATE(3983)] = 119079, + [SMALL_STATE(3984)] = 119102, + [SMALL_STATE(3985)] = 119125, + [SMALL_STATE(3986)] = 119148, + [SMALL_STATE(3987)] = 119171, + [SMALL_STATE(3988)] = 119194, + [SMALL_STATE(3989)] = 119217, + [SMALL_STATE(3990)] = 119240, + [SMALL_STATE(3991)] = 119263, + [SMALL_STATE(3992)] = 119286, + [SMALL_STATE(3993)] = 119309, + [SMALL_STATE(3994)] = 119330, + [SMALL_STATE(3995)] = 119353, + [SMALL_STATE(3996)] = 119376, + [SMALL_STATE(3997)] = 119399, + [SMALL_STATE(3998)] = 119422, + [SMALL_STATE(3999)] = 119445, + [SMALL_STATE(4000)] = 119468, + [SMALL_STATE(4001)] = 119491, + [SMALL_STATE(4002)] = 119514, + [SMALL_STATE(4003)] = 119537, + [SMALL_STATE(4004)] = 119560, + [SMALL_STATE(4005)] = 119583, + [SMALL_STATE(4006)] = 119606, + [SMALL_STATE(4007)] = 119629, + [SMALL_STATE(4008)] = 119652, + [SMALL_STATE(4009)] = 119675, + [SMALL_STATE(4010)] = 119698, + [SMALL_STATE(4011)] = 119721, + [SMALL_STATE(4012)] = 119744, + [SMALL_STATE(4013)] = 119767, + [SMALL_STATE(4014)] = 119790, + [SMALL_STATE(4015)] = 119813, + [SMALL_STATE(4016)] = 119836, + [SMALL_STATE(4017)] = 119855, + [SMALL_STATE(4018)] = 119874, + [SMALL_STATE(4019)] = 119899, + [SMALL_STATE(4020)] = 119920, + [SMALL_STATE(4021)] = 119941, + [SMALL_STATE(4022)] = 119964, + [SMALL_STATE(4023)] = 119987, + [SMALL_STATE(4024)] = 120006, + [SMALL_STATE(4025)] = 120025, + [SMALL_STATE(4026)] = 120046, + [SMALL_STATE(4027)] = 120071, + [SMALL_STATE(4028)] = 120090, + [SMALL_STATE(4029)] = 120109, + [SMALL_STATE(4030)] = 120124, + [SMALL_STATE(4031)] = 120149, + [SMALL_STATE(4032)] = 120170, + [SMALL_STATE(4033)] = 120185, + [SMALL_STATE(4034)] = 120200, + [SMALL_STATE(4035)] = 120219, + [SMALL_STATE(4036)] = 120240, + [SMALL_STATE(4037)] = 120261, + [SMALL_STATE(4038)] = 120280, + [SMALL_STATE(4039)] = 120299, + [SMALL_STATE(4040)] = 120320, + [SMALL_STATE(4041)] = 120345, + [SMALL_STATE(4042)] = 120370, + [SMALL_STATE(4043)] = 120395, + [SMALL_STATE(4044)] = 120410, + [SMALL_STATE(4045)] = 120425, + [SMALL_STATE(4046)] = 120440, + [SMALL_STATE(4047)] = 120465, + [SMALL_STATE(4048)] = 120488, + [SMALL_STATE(4049)] = 120509, + [SMALL_STATE(4050)] = 120528, + [SMALL_STATE(4051)] = 120549, + [SMALL_STATE(4052)] = 120574, + [SMALL_STATE(4053)] = 120599, + [SMALL_STATE(4054)] = 120624, + [SMALL_STATE(4055)] = 120647, + [SMALL_STATE(4056)] = 120670, + [SMALL_STATE(4057)] = 120693, + [SMALL_STATE(4058)] = 120716, + [SMALL_STATE(4059)] = 120735, + [SMALL_STATE(4060)] = 120754, + [SMALL_STATE(4061)] = 120773, + [SMALL_STATE(4062)] = 120798, + [SMALL_STATE(4063)] = 120823, + [SMALL_STATE(4064)] = 120846, + [SMALL_STATE(4065)] = 120865, + [SMALL_STATE(4066)] = 120886, + [SMALL_STATE(4067)] = 120907, + [SMALL_STATE(4068)] = 120930, + [SMALL_STATE(4069)] = 120953, + [SMALL_STATE(4070)] = 120978, + [SMALL_STATE(4071)] = 120997, + [SMALL_STATE(4072)] = 121020, + [SMALL_STATE(4073)] = 121039, + [SMALL_STATE(4074)] = 121062, + [SMALL_STATE(4075)] = 121087, + [SMALL_STATE(4076)] = 121110, + [SMALL_STATE(4077)] = 121133, + [SMALL_STATE(4078)] = 121156, + [SMALL_STATE(4079)] = 121179, + [SMALL_STATE(4080)] = 121202, + [SMALL_STATE(4081)] = 121223, + [SMALL_STATE(4082)] = 121246, + [SMALL_STATE(4083)] = 121269, + [SMALL_STATE(4084)] = 121292, + [SMALL_STATE(4085)] = 121315, + [SMALL_STATE(4086)] = 121338, + [SMALL_STATE(4087)] = 121357, + [SMALL_STATE(4088)] = 121376, + [SMALL_STATE(4089)] = 121401, + [SMALL_STATE(4090)] = 121426, + [SMALL_STATE(4091)] = 121449, + [SMALL_STATE(4092)] = 121472, + [SMALL_STATE(4093)] = 121493, + [SMALL_STATE(4094)] = 121516, + [SMALL_STATE(4095)] = 121537, + [SMALL_STATE(4096)] = 121560, + [SMALL_STATE(4097)] = 121583, + [SMALL_STATE(4098)] = 121606, + [SMALL_STATE(4099)] = 121629, + [SMALL_STATE(4100)] = 121652, + [SMALL_STATE(4101)] = 121675, + [SMALL_STATE(4102)] = 121698, + [SMALL_STATE(4103)] = 121721, + [SMALL_STATE(4104)] = 121744, + [SMALL_STATE(4105)] = 121767, + [SMALL_STATE(4106)] = 121786, + [SMALL_STATE(4107)] = 121809, + [SMALL_STATE(4108)] = 121832, + [SMALL_STATE(4109)] = 121855, + [SMALL_STATE(4110)] = 121878, + [SMALL_STATE(4111)] = 121901, + [SMALL_STATE(4112)] = 121924, + [SMALL_STATE(4113)] = 121947, + [SMALL_STATE(4114)] = 121970, + [SMALL_STATE(4115)] = 121993, + [SMALL_STATE(4116)] = 122016, + [SMALL_STATE(4117)] = 122037, + [SMALL_STATE(4118)] = 122058, + [SMALL_STATE(4119)] = 122081, + [SMALL_STATE(4120)] = 122104, + [SMALL_STATE(4121)] = 122129, + [SMALL_STATE(4122)] = 122152, + [SMALL_STATE(4123)] = 122175, + [SMALL_STATE(4124)] = 122198, + [SMALL_STATE(4125)] = 122221, + [SMALL_STATE(4126)] = 122244, + [SMALL_STATE(4127)] = 122265, + [SMALL_STATE(4128)] = 122286, + [SMALL_STATE(4129)] = 122307, + [SMALL_STATE(4130)] = 122330, + [SMALL_STATE(4131)] = 122353, + [SMALL_STATE(4132)] = 122374, + [SMALL_STATE(4133)] = 122397, + [SMALL_STATE(4134)] = 122420, + [SMALL_STATE(4135)] = 122443, + [SMALL_STATE(4136)] = 122466, + [SMALL_STATE(4137)] = 122487, + [SMALL_STATE(4138)] = 122508, + [SMALL_STATE(4139)] = 122529, + [SMALL_STATE(4140)] = 122550, + [SMALL_STATE(4141)] = 122573, + [SMALL_STATE(4142)] = 122596, + [SMALL_STATE(4143)] = 122619, + [SMALL_STATE(4144)] = 122642, + [SMALL_STATE(4145)] = 122667, + [SMALL_STATE(4146)] = 122692, + [SMALL_STATE(4147)] = 122715, + [SMALL_STATE(4148)] = 122740, + [SMALL_STATE(4149)] = 122763, + [SMALL_STATE(4150)] = 122786, + [SMALL_STATE(4151)] = 122809, + [SMALL_STATE(4152)] = 122832, + [SMALL_STATE(4153)] = 122855, + [SMALL_STATE(4154)] = 122878, + [SMALL_STATE(4155)] = 122901, + [SMALL_STATE(4156)] = 122924, + [SMALL_STATE(4157)] = 122943, + [SMALL_STATE(4158)] = 122966, + [SMALL_STATE(4159)] = 122989, + [SMALL_STATE(4160)] = 123012, + [SMALL_STATE(4161)] = 123035, + [SMALL_STATE(4162)] = 123058, + [SMALL_STATE(4163)] = 123081, + [SMALL_STATE(4164)] = 123104, + [SMALL_STATE(4165)] = 123127, + [SMALL_STATE(4166)] = 123148, + [SMALL_STATE(4167)] = 123169, + [SMALL_STATE(4168)] = 123190, + [SMALL_STATE(4169)] = 123211, + [SMALL_STATE(4170)] = 123232, + [SMALL_STATE(4171)] = 123255, + [SMALL_STATE(4172)] = 123280, + [SMALL_STATE(4173)] = 123305, + [SMALL_STATE(4174)] = 123330, + [SMALL_STATE(4175)] = 123355, + [SMALL_STATE(4176)] = 123378, + [SMALL_STATE(4177)] = 123399, + [SMALL_STATE(4178)] = 123424, + [SMALL_STATE(4179)] = 123443, + [SMALL_STATE(4180)] = 123464, + [SMALL_STATE(4181)] = 123483, + [SMALL_STATE(4182)] = 123504, + [SMALL_STATE(4183)] = 123525, + [SMALL_STATE(4184)] = 123548, + [SMALL_STATE(4185)] = 123573, + [SMALL_STATE(4186)] = 123598, + [SMALL_STATE(4187)] = 123623, + [SMALL_STATE(4188)] = 123648, + [SMALL_STATE(4189)] = 123673, + [SMALL_STATE(4190)] = 123698, + [SMALL_STATE(4191)] = 123715, + [SMALL_STATE(4192)] = 123732, + [SMALL_STATE(4193)] = 123749, + [SMALL_STATE(4194)] = 123770, + [SMALL_STATE(4195)] = 123791, + [SMALL_STATE(4196)] = 123812, + [SMALL_STATE(4197)] = 123835, + [SMALL_STATE(4198)] = 123856, + [SMALL_STATE(4199)] = 123879, + [SMALL_STATE(4200)] = 123904, + [SMALL_STATE(4201)] = 123924, + [SMALL_STATE(4202)] = 123942, + [SMALL_STATE(4203)] = 123960, + [SMALL_STATE(4204)] = 123982, + [SMALL_STATE(4205)] = 123998, + [SMALL_STATE(4206)] = 124018, + [SMALL_STATE(4207)] = 124040, + [SMALL_STATE(4208)] = 124058, + [SMALL_STATE(4209)] = 124080, + [SMALL_STATE(4210)] = 124102, + [SMALL_STATE(4211)] = 124122, + [SMALL_STATE(4212)] = 124138, + [SMALL_STATE(4213)] = 124154, + [SMALL_STATE(4214)] = 124170, + [SMALL_STATE(4215)] = 124190, + [SMALL_STATE(4216)] = 124210, + [SMALL_STATE(4217)] = 124232, + [SMALL_STATE(4218)] = 124254, + [SMALL_STATE(4219)] = 124274, + [SMALL_STATE(4220)] = 124292, + [SMALL_STATE(4221)] = 124314, + [SMALL_STATE(4222)] = 124334, + [SMALL_STATE(4223)] = 124356, + [SMALL_STATE(4224)] = 124372, + [SMALL_STATE(4225)] = 124388, + [SMALL_STATE(4226)] = 124406, + [SMALL_STATE(4227)] = 124426, + [SMALL_STATE(4228)] = 124448, + [SMALL_STATE(4229)] = 124466, + [SMALL_STATE(4230)] = 124486, + [SMALL_STATE(4231)] = 124502, + [SMALL_STATE(4232)] = 124524, + [SMALL_STATE(4233)] = 124546, + [SMALL_STATE(4234)] = 124564, + [SMALL_STATE(4235)] = 124584, + [SMALL_STATE(4236)] = 124600, + [SMALL_STATE(4237)] = 124618, + [SMALL_STATE(4238)] = 124638, + [SMALL_STATE(4239)] = 124660, + [SMALL_STATE(4240)] = 124678, + [SMALL_STATE(4241)] = 124700, + [SMALL_STATE(4242)] = 124716, + [SMALL_STATE(4243)] = 124736, + [SMALL_STATE(4244)] = 124758, + [SMALL_STATE(4245)] = 124780, + [SMALL_STATE(4246)] = 124800, + [SMALL_STATE(4247)] = 124820, + [SMALL_STATE(4248)] = 124840, + [SMALL_STATE(4249)] = 124856, + [SMALL_STATE(4250)] = 124872, + [SMALL_STATE(4251)] = 124888, + [SMALL_STATE(4252)] = 124906, + [SMALL_STATE(4253)] = 124926, + [SMALL_STATE(4254)] = 124944, + [SMALL_STATE(4255)] = 124964, + [SMALL_STATE(4256)] = 124980, + [SMALL_STATE(4257)] = 125000, + [SMALL_STATE(4258)] = 125020, + [SMALL_STATE(4259)] = 125038, + [SMALL_STATE(4260)] = 125058, + [SMALL_STATE(4261)] = 125076, + [SMALL_STATE(4262)] = 125096, + [SMALL_STATE(4263)] = 125116, + [SMALL_STATE(4264)] = 125134, + [SMALL_STATE(4265)] = 125154, + [SMALL_STATE(4266)] = 125170, + [SMALL_STATE(4267)] = 125190, + [SMALL_STATE(4268)] = 125210, + [SMALL_STATE(4269)] = 125230, + [SMALL_STATE(4270)] = 125250, + [SMALL_STATE(4271)] = 125268, + [SMALL_STATE(4272)] = 125288, + [SMALL_STATE(4273)] = 125308, + [SMALL_STATE(4274)] = 125326, + [SMALL_STATE(4275)] = 125348, + [SMALL_STATE(4276)] = 125366, + [SMALL_STATE(4277)] = 125384, + [SMALL_STATE(4278)] = 125406, + [SMALL_STATE(4279)] = 125426, + [SMALL_STATE(4280)] = 125444, + [SMALL_STATE(4281)] = 125462, + [SMALL_STATE(4282)] = 125484, + [SMALL_STATE(4283)] = 125506, + [SMALL_STATE(4284)] = 125522, + [SMALL_STATE(4285)] = 125542, + [SMALL_STATE(4286)] = 125562, + [SMALL_STATE(4287)] = 125578, + [SMALL_STATE(4288)] = 125598, + [SMALL_STATE(4289)] = 125614, + [SMALL_STATE(4290)] = 125636, + [SMALL_STATE(4291)] = 125656, + [SMALL_STATE(4292)] = 125672, + [SMALL_STATE(4293)] = 125692, + [SMALL_STATE(4294)] = 125712, + [SMALL_STATE(4295)] = 125732, + [SMALL_STATE(4296)] = 125748, + [SMALL_STATE(4297)] = 125764, + [SMALL_STATE(4298)] = 125786, + [SMALL_STATE(4299)] = 125804, + [SMALL_STATE(4300)] = 125822, + [SMALL_STATE(4301)] = 125838, + [SMALL_STATE(4302)] = 125858, + [SMALL_STATE(4303)] = 125874, + [SMALL_STATE(4304)] = 125892, + [SMALL_STATE(4305)] = 125914, + [SMALL_STATE(4306)] = 125932, + [SMALL_STATE(4307)] = 125954, + [SMALL_STATE(4308)] = 125970, + [SMALL_STATE(4309)] = 125990, + [SMALL_STATE(4310)] = 126012, + [SMALL_STATE(4311)] = 126034, + [SMALL_STATE(4312)] = 126050, + [SMALL_STATE(4313)] = 126070, + [SMALL_STATE(4314)] = 126090, + [SMALL_STATE(4315)] = 126112, + [SMALL_STATE(4316)] = 126130, + [SMALL_STATE(4317)] = 126152, + [SMALL_STATE(4318)] = 126172, + [SMALL_STATE(4319)] = 126194, + [SMALL_STATE(4320)] = 126210, + [SMALL_STATE(4321)] = 126226, + [SMALL_STATE(4322)] = 126246, + [SMALL_STATE(4323)] = 126266, + [SMALL_STATE(4324)] = 126288, + [SMALL_STATE(4325)] = 126308, + [SMALL_STATE(4326)] = 126330, + [SMALL_STATE(4327)] = 126352, + [SMALL_STATE(4328)] = 126372, + [SMALL_STATE(4329)] = 126394, + [SMALL_STATE(4330)] = 126410, + [SMALL_STATE(4331)] = 126432, + [SMALL_STATE(4332)] = 126454, + [SMALL_STATE(4333)] = 126470, + [SMALL_STATE(4334)] = 126486, + [SMALL_STATE(4335)] = 126502, + [SMALL_STATE(4336)] = 126518, + [SMALL_STATE(4337)] = 126538, + [SMALL_STATE(4338)] = 126560, + [SMALL_STATE(4339)] = 126580, + [SMALL_STATE(4340)] = 126602, + [SMALL_STATE(4341)] = 126624, + [SMALL_STATE(4342)] = 126640, + [SMALL_STATE(4343)] = 126662, + [SMALL_STATE(4344)] = 126684, + [SMALL_STATE(4345)] = 126700, + [SMALL_STATE(4346)] = 126722, + [SMALL_STATE(4347)] = 126742, + [SMALL_STATE(4348)] = 126762, + [SMALL_STATE(4349)] = 126784, + [SMALL_STATE(4350)] = 126806, + [SMALL_STATE(4351)] = 126824, + [SMALL_STATE(4352)] = 126844, + [SMALL_STATE(4353)] = 126862, + [SMALL_STATE(4354)] = 126882, + [SMALL_STATE(4355)] = 126904, + [SMALL_STATE(4356)] = 126924, + [SMALL_STATE(4357)] = 126944, + [SMALL_STATE(4358)] = 126964, + [SMALL_STATE(4359)] = 126980, + [SMALL_STATE(4360)] = 126995, + [SMALL_STATE(4361)] = 127014, + [SMALL_STATE(4362)] = 127033, + [SMALL_STATE(4363)] = 127050, + [SMALL_STATE(4364)] = 127063, + [SMALL_STATE(4365)] = 127076, + [SMALL_STATE(4366)] = 127089, + [SMALL_STATE(4367)] = 127102, + [SMALL_STATE(4368)] = 127115, + [SMALL_STATE(4369)] = 127128, + [SMALL_STATE(4370)] = 127141, + [SMALL_STATE(4371)] = 127154, + [SMALL_STATE(4372)] = 127169, + [SMALL_STATE(4373)] = 127182, + [SMALL_STATE(4374)] = 127195, + [SMALL_STATE(4375)] = 127210, + [SMALL_STATE(4376)] = 127229, + [SMALL_STATE(4377)] = 127242, + [SMALL_STATE(4378)] = 127261, + [SMALL_STATE(4379)] = 127276, + [SMALL_STATE(4380)] = 127293, + [SMALL_STATE(4381)] = 127310, + [SMALL_STATE(4382)] = 127325, + [SMALL_STATE(4383)] = 127338, + [SMALL_STATE(4384)] = 127355, + [SMALL_STATE(4385)] = 127370, + [SMALL_STATE(4386)] = 127387, + [SMALL_STATE(4387)] = 127404, + [SMALL_STATE(4388)] = 127419, + [SMALL_STATE(4389)] = 127438, + [SMALL_STATE(4390)] = 127453, + [SMALL_STATE(4391)] = 127466, + [SMALL_STATE(4392)] = 127479, + [SMALL_STATE(4393)] = 127494, + [SMALL_STATE(4394)] = 127513, + [SMALL_STATE(4395)] = 127526, + [SMALL_STATE(4396)] = 127539, + [SMALL_STATE(4397)] = 127558, + [SMALL_STATE(4398)] = 127571, + [SMALL_STATE(4399)] = 127584, + [SMALL_STATE(4400)] = 127597, + [SMALL_STATE(4401)] = 127610, + [SMALL_STATE(4402)] = 127623, + [SMALL_STATE(4403)] = 127636, + [SMALL_STATE(4404)] = 127649, + [SMALL_STATE(4405)] = 127662, + [SMALL_STATE(4406)] = 127681, + [SMALL_STATE(4407)] = 127694, + [SMALL_STATE(4408)] = 127713, + [SMALL_STATE(4409)] = 127726, + [SMALL_STATE(4410)] = 127743, + [SMALL_STATE(4411)] = 127762, + [SMALL_STATE(4412)] = 127777, + [SMALL_STATE(4413)] = 127790, + [SMALL_STATE(4414)] = 127803, + [SMALL_STATE(4415)] = 127816, + [SMALL_STATE(4416)] = 127829, + [SMALL_STATE(4417)] = 127848, + [SMALL_STATE(4418)] = 127867, + [SMALL_STATE(4419)] = 127882, + [SMALL_STATE(4420)] = 127897, + [SMALL_STATE(4421)] = 127912, + [SMALL_STATE(4422)] = 127925, + [SMALL_STATE(4423)] = 127940, + [SMALL_STATE(4424)] = 127953, + [SMALL_STATE(4425)] = 127966, + [SMALL_STATE(4426)] = 127979, + [SMALL_STATE(4427)] = 127992, + [SMALL_STATE(4428)] = 128005, + [SMALL_STATE(4429)] = 128018, + [SMALL_STATE(4430)] = 128033, + [SMALL_STATE(4431)] = 128048, + [SMALL_STATE(4432)] = 128061, + [SMALL_STATE(4433)] = 128076, + [SMALL_STATE(4434)] = 128095, + [SMALL_STATE(4435)] = 128108, + [SMALL_STATE(4436)] = 128125, + [SMALL_STATE(4437)] = 128142, + [SMALL_STATE(4438)] = 128155, + [SMALL_STATE(4439)] = 128168, + [SMALL_STATE(4440)] = 128181, + [SMALL_STATE(4441)] = 128198, + [SMALL_STATE(4442)] = 128213, + [SMALL_STATE(4443)] = 128232, + [SMALL_STATE(4444)] = 128247, + [SMALL_STATE(4445)] = 128262, + [SMALL_STATE(4446)] = 128281, + [SMALL_STATE(4447)] = 128296, + [SMALL_STATE(4448)] = 128313, + [SMALL_STATE(4449)] = 128326, + [SMALL_STATE(4450)] = 128345, + [SMALL_STATE(4451)] = 128358, + [SMALL_STATE(4452)] = 128373, + [SMALL_STATE(4453)] = 128388, + [SMALL_STATE(4454)] = 128405, + [SMALL_STATE(4455)] = 128422, + [SMALL_STATE(4456)] = 128441, + [SMALL_STATE(4457)] = 128458, + [SMALL_STATE(4458)] = 128471, + [SMALL_STATE(4459)] = 128488, + [SMALL_STATE(4460)] = 128507, + [SMALL_STATE(4461)] = 128522, + [SMALL_STATE(4462)] = 128537, + [SMALL_STATE(4463)] = 128556, + [SMALL_STATE(4464)] = 128575, + [SMALL_STATE(4465)] = 128594, + [SMALL_STATE(4466)] = 128613, + [SMALL_STATE(4467)] = 128630, + [SMALL_STATE(4468)] = 128645, + [SMALL_STATE(4469)] = 128658, + [SMALL_STATE(4470)] = 128675, + [SMALL_STATE(4471)] = 128694, + [SMALL_STATE(4472)] = 128711, + [SMALL_STATE(4473)] = 128726, + [SMALL_STATE(4474)] = 128739, + [SMALL_STATE(4475)] = 128752, + [SMALL_STATE(4476)] = 128765, + [SMALL_STATE(4477)] = 128780, + [SMALL_STATE(4478)] = 128793, + [SMALL_STATE(4479)] = 128806, + [SMALL_STATE(4480)] = 128821, + [SMALL_STATE(4481)] = 128834, + [SMALL_STATE(4482)] = 128847, + [SMALL_STATE(4483)] = 128860, + [SMALL_STATE(4484)] = 128873, + [SMALL_STATE(4485)] = 128892, + [SMALL_STATE(4486)] = 128905, + [SMALL_STATE(4487)] = 128924, + [SMALL_STATE(4488)] = 128937, + [SMALL_STATE(4489)] = 128950, + [SMALL_STATE(4490)] = 128967, + [SMALL_STATE(4491)] = 128980, + [SMALL_STATE(4492)] = 128993, + [SMALL_STATE(4493)] = 129006, + [SMALL_STATE(4494)] = 129019, + [SMALL_STATE(4495)] = 129032, + [SMALL_STATE(4496)] = 129045, + [SMALL_STATE(4497)] = 129062, + [SMALL_STATE(4498)] = 129075, + [SMALL_STATE(4499)] = 129088, + [SMALL_STATE(4500)] = 129101, + [SMALL_STATE(4501)] = 129114, + [SMALL_STATE(4502)] = 129129, + [SMALL_STATE(4503)] = 129144, + [SMALL_STATE(4504)] = 129163, + [SMALL_STATE(4505)] = 129176, + [SMALL_STATE(4506)] = 129189, + [SMALL_STATE(4507)] = 129204, + [SMALL_STATE(4508)] = 129217, + [SMALL_STATE(4509)] = 129230, + [SMALL_STATE(4510)] = 129247, + [SMALL_STATE(4511)] = 129260, + [SMALL_STATE(4512)] = 129277, + [SMALL_STATE(4513)] = 129290, + [SMALL_STATE(4514)] = 129309, + [SMALL_STATE(4515)] = 129322, + [SMALL_STATE(4516)] = 129341, + [SMALL_STATE(4517)] = 129354, + [SMALL_STATE(4518)] = 129373, + [SMALL_STATE(4519)] = 129386, + [SMALL_STATE(4520)] = 129401, + [SMALL_STATE(4521)] = 129420, + [SMALL_STATE(4522)] = 129433, + [SMALL_STATE(4523)] = 129446, + [SMALL_STATE(4524)] = 129461, + [SMALL_STATE(4525)] = 129474, + [SMALL_STATE(4526)] = 129489, + [SMALL_STATE(4527)] = 129508, + [SMALL_STATE(4528)] = 129523, + [SMALL_STATE(4529)] = 129536, + [SMALL_STATE(4530)] = 129551, + [SMALL_STATE(4531)] = 129570, + [SMALL_STATE(4532)] = 129589, + [SMALL_STATE(4533)] = 129608, + [SMALL_STATE(4534)] = 129627, + [SMALL_STATE(4535)] = 129642, + [SMALL_STATE(4536)] = 129661, + [SMALL_STATE(4537)] = 129676, + [SMALL_STATE(4538)] = 129689, + [SMALL_STATE(4539)] = 129704, + [SMALL_STATE(4540)] = 129721, + [SMALL_STATE(4541)] = 129736, + [SMALL_STATE(4542)] = 129753, + [SMALL_STATE(4543)] = 129766, + [SMALL_STATE(4544)] = 129783, + [SMALL_STATE(4545)] = 129802, + [SMALL_STATE(4546)] = 129817, + [SMALL_STATE(4547)] = 129830, + [SMALL_STATE(4548)] = 129849, + [SMALL_STATE(4549)] = 129864, + [SMALL_STATE(4550)] = 129879, + [SMALL_STATE(4551)] = 129896, + [SMALL_STATE(4552)] = 129911, + [SMALL_STATE(4553)] = 129926, + [SMALL_STATE(4554)] = 129945, + [SMALL_STATE(4555)] = 129960, + [SMALL_STATE(4556)] = 129975, + [SMALL_STATE(4557)] = 129994, + [SMALL_STATE(4558)] = 130009, + [SMALL_STATE(4559)] = 130028, + [SMALL_STATE(4560)] = 130047, + [SMALL_STATE(4561)] = 130060, + [SMALL_STATE(4562)] = 130075, + [SMALL_STATE(4563)] = 130090, + [SMALL_STATE(4564)] = 130107, + [SMALL_STATE(4565)] = 130120, + [SMALL_STATE(4566)] = 130135, + [SMALL_STATE(4567)] = 130150, + [SMALL_STATE(4568)] = 130169, + [SMALL_STATE(4569)] = 130184, + [SMALL_STATE(4570)] = 130199, + [SMALL_STATE(4571)] = 130214, + [SMALL_STATE(4572)] = 130231, + [SMALL_STATE(4573)] = 130246, + [SMALL_STATE(4574)] = 130265, + [SMALL_STATE(4575)] = 130278, + [SMALL_STATE(4576)] = 130291, + [SMALL_STATE(4577)] = 130306, + [SMALL_STATE(4578)] = 130319, + [SMALL_STATE(4579)] = 130332, + [SMALL_STATE(4580)] = 130347, + [SMALL_STATE(4581)] = 130360, + [SMALL_STATE(4582)] = 130373, + [SMALL_STATE(4583)] = 130386, + [SMALL_STATE(4584)] = 130399, + [SMALL_STATE(4585)] = 130416, + [SMALL_STATE(4586)] = 130435, + [SMALL_STATE(4587)] = 130454, + [SMALL_STATE(4588)] = 130467, + [SMALL_STATE(4589)] = 130480, + [SMALL_STATE(4590)] = 130493, + [SMALL_STATE(4591)] = 130512, + [SMALL_STATE(4592)] = 130529, + [SMALL_STATE(4593)] = 130542, + [SMALL_STATE(4594)] = 130555, + [SMALL_STATE(4595)] = 130568, + [SMALL_STATE(4596)] = 130581, + [SMALL_STATE(4597)] = 130594, + [SMALL_STATE(4598)] = 130607, + [SMALL_STATE(4599)] = 130620, + [SMALL_STATE(4600)] = 130633, + [SMALL_STATE(4601)] = 130646, + [SMALL_STATE(4602)] = 130663, + [SMALL_STATE(4603)] = 130676, + [SMALL_STATE(4604)] = 130691, + [SMALL_STATE(4605)] = 130706, + [SMALL_STATE(4606)] = 130725, + [SMALL_STATE(4607)] = 130738, + [SMALL_STATE(4608)] = 130755, + [SMALL_STATE(4609)] = 130774, + [SMALL_STATE(4610)] = 130787, + [SMALL_STATE(4611)] = 130800, + [SMALL_STATE(4612)] = 130813, + [SMALL_STATE(4613)] = 130830, + [SMALL_STATE(4614)] = 130847, + [SMALL_STATE(4615)] = 130862, + [SMALL_STATE(4616)] = 130881, + [SMALL_STATE(4617)] = 130896, + [SMALL_STATE(4618)] = 130915, + [SMALL_STATE(4619)] = 130932, + [SMALL_STATE(4620)] = 130949, + [SMALL_STATE(4621)] = 130964, + [SMALL_STATE(4622)] = 130977, + [SMALL_STATE(4623)] = 130994, + [SMALL_STATE(4624)] = 131013, + [SMALL_STATE(4625)] = 131032, + [SMALL_STATE(4626)] = 131049, + [SMALL_STATE(4627)] = 131064, + [SMALL_STATE(4628)] = 131081, + [SMALL_STATE(4629)] = 131094, + [SMALL_STATE(4630)] = 131109, + [SMALL_STATE(4631)] = 131122, + [SMALL_STATE(4632)] = 131135, + [SMALL_STATE(4633)] = 131148, + [SMALL_STATE(4634)] = 131161, + [SMALL_STATE(4635)] = 131174, + [SMALL_STATE(4636)] = 131187, + [SMALL_STATE(4637)] = 131206, + [SMALL_STATE(4638)] = 131225, + [SMALL_STATE(4639)] = 131240, + [SMALL_STATE(4640)] = 131253, + [SMALL_STATE(4641)] = 131272, + [SMALL_STATE(4642)] = 131287, + [SMALL_STATE(4643)] = 131300, + [SMALL_STATE(4644)] = 131319, + [SMALL_STATE(4645)] = 131338, + [SMALL_STATE(4646)] = 131351, + [SMALL_STATE(4647)] = 131370, + [SMALL_STATE(4648)] = 131383, + [SMALL_STATE(4649)] = 131402, + [SMALL_STATE(4650)] = 131421, + [SMALL_STATE(4651)] = 131434, + [SMALL_STATE(4652)] = 131453, + [SMALL_STATE(4653)] = 131472, + [SMALL_STATE(4654)] = 131487, + [SMALL_STATE(4655)] = 131500, + [SMALL_STATE(4656)] = 131513, + [SMALL_STATE(4657)] = 131528, + [SMALL_STATE(4658)] = 131541, + [SMALL_STATE(4659)] = 131558, + [SMALL_STATE(4660)] = 131577, + [SMALL_STATE(4661)] = 131592, + [SMALL_STATE(4662)] = 131611, + [SMALL_STATE(4663)] = 131630, + [SMALL_STATE(4664)] = 131649, + [SMALL_STATE(4665)] = 131668, + [SMALL_STATE(4666)] = 131681, + [SMALL_STATE(4667)] = 131694, + [SMALL_STATE(4668)] = 131711, + [SMALL_STATE(4669)] = 131728, + [SMALL_STATE(4670)] = 131743, + [SMALL_STATE(4671)] = 131758, + [SMALL_STATE(4672)] = 131773, + [SMALL_STATE(4673)] = 131792, + [SMALL_STATE(4674)] = 131808, + [SMALL_STATE(4675)] = 131824, + [SMALL_STATE(4676)] = 131840, + [SMALL_STATE(4677)] = 131852, + [SMALL_STATE(4678)] = 131864, + [SMALL_STATE(4679)] = 131876, + [SMALL_STATE(4680)] = 131888, + [SMALL_STATE(4681)] = 131900, + [SMALL_STATE(4682)] = 131912, + [SMALL_STATE(4683)] = 131928, + [SMALL_STATE(4684)] = 131940, + [SMALL_STATE(4685)] = 131956, + [SMALL_STATE(4686)] = 131970, + [SMALL_STATE(4687)] = 131986, + [SMALL_STATE(4688)] = 132002, + [SMALL_STATE(4689)] = 132018, + [SMALL_STATE(4690)] = 132030, + [SMALL_STATE(4691)] = 132042, + [SMALL_STATE(4692)] = 132058, + [SMALL_STATE(4693)] = 132070, + [SMALL_STATE(4694)] = 132086, + [SMALL_STATE(4695)] = 132098, + [SMALL_STATE(4696)] = 132114, + [SMALL_STATE(4697)] = 132126, + [SMALL_STATE(4698)] = 132138, + [SMALL_STATE(4699)] = 132154, + [SMALL_STATE(4700)] = 132170, + [SMALL_STATE(4701)] = 132184, + [SMALL_STATE(4702)] = 132200, + [SMALL_STATE(4703)] = 132214, + [SMALL_STATE(4704)] = 132228, + [SMALL_STATE(4705)] = 132244, + [SMALL_STATE(4706)] = 132256, + [SMALL_STATE(4707)] = 132268, + [SMALL_STATE(4708)] = 132282, + [SMALL_STATE(4709)] = 132294, + [SMALL_STATE(4710)] = 132306, + [SMALL_STATE(4711)] = 132322, + [SMALL_STATE(4712)] = 132338, + [SMALL_STATE(4713)] = 132354, + [SMALL_STATE(4714)] = 132368, + [SMALL_STATE(4715)] = 132382, + [SMALL_STATE(4716)] = 132396, + [SMALL_STATE(4717)] = 132410, + [SMALL_STATE(4718)] = 132426, + [SMALL_STATE(4719)] = 132440, + [SMALL_STATE(4720)] = 132456, + [SMALL_STATE(4721)] = 132472, + [SMALL_STATE(4722)] = 132488, + [SMALL_STATE(4723)] = 132504, + [SMALL_STATE(4724)] = 132516, + [SMALL_STATE(4725)] = 132530, + [SMALL_STATE(4726)] = 132544, [SMALL_STATE(4727)] = 132558, [SMALL_STATE(4728)] = 132570, - [SMALL_STATE(4729)] = 132584, - [SMALL_STATE(4730)] = 132600, - [SMALL_STATE(4731)] = 132616, - [SMALL_STATE(4732)] = 132628, - [SMALL_STATE(4733)] = 132642, - [SMALL_STATE(4734)] = 132654, - [SMALL_STATE(4735)] = 132666, - [SMALL_STATE(4736)] = 132682, - [SMALL_STATE(4737)] = 132696, - [SMALL_STATE(4738)] = 132712, - [SMALL_STATE(4739)] = 132726, - [SMALL_STATE(4740)] = 132742, - [SMALL_STATE(4741)] = 132754, - [SMALL_STATE(4742)] = 132766, - [SMALL_STATE(4743)] = 132778, - [SMALL_STATE(4744)] = 132792, - [SMALL_STATE(4745)] = 132804, - [SMALL_STATE(4746)] = 132820, - [SMALL_STATE(4747)] = 132832, + [SMALL_STATE(4729)] = 132586, + [SMALL_STATE(4730)] = 132602, + [SMALL_STATE(4731)] = 132618, + [SMALL_STATE(4732)] = 132632, + [SMALL_STATE(4733)] = 132648, + [SMALL_STATE(4734)] = 132664, + [SMALL_STATE(4735)] = 132676, + [SMALL_STATE(4736)] = 132688, + [SMALL_STATE(4737)] = 132704, + [SMALL_STATE(4738)] = 132716, + [SMALL_STATE(4739)] = 132728, + [SMALL_STATE(4740)] = 132740, + [SMALL_STATE(4741)] = 132752, + [SMALL_STATE(4742)] = 132764, + [SMALL_STATE(4743)] = 132780, + [SMALL_STATE(4744)] = 132794, + [SMALL_STATE(4745)] = 132806, + [SMALL_STATE(4746)] = 132822, + [SMALL_STATE(4747)] = 132834, [SMALL_STATE(4748)] = 132848, - [SMALL_STATE(4749)] = 132864, + [SMALL_STATE(4749)] = 132862, [SMALL_STATE(4750)] = 132876, - [SMALL_STATE(4751)] = 132892, - [SMALL_STATE(4752)] = 132908, + [SMALL_STATE(4751)] = 132888, + [SMALL_STATE(4752)] = 132904, [SMALL_STATE(4753)] = 132920, [SMALL_STATE(4754)] = 132936, [SMALL_STATE(4755)] = 132950, - [SMALL_STATE(4756)] = 132966, + [SMALL_STATE(4756)] = 132962, [SMALL_STATE(4757)] = 132978, - [SMALL_STATE(4758)] = 132990, - [SMALL_STATE(4759)] = 133002, - [SMALL_STATE(4760)] = 133014, - [SMALL_STATE(4761)] = 133026, - [SMALL_STATE(4762)] = 133040, - [SMALL_STATE(4763)] = 133052, - [SMALL_STATE(4764)] = 133064, - [SMALL_STATE(4765)] = 133076, - [SMALL_STATE(4766)] = 133090, - [SMALL_STATE(4767)] = 133102, - [SMALL_STATE(4768)] = 133114, - [SMALL_STATE(4769)] = 133130, - [SMALL_STATE(4770)] = 133142, - [SMALL_STATE(4771)] = 133154, - [SMALL_STATE(4772)] = 133166, - [SMALL_STATE(4773)] = 133178, - [SMALL_STATE(4774)] = 133190, - [SMALL_STATE(4775)] = 133206, - [SMALL_STATE(4776)] = 133218, - [SMALL_STATE(4777)] = 133230, - [SMALL_STATE(4778)] = 133244, - [SMALL_STATE(4779)] = 133260, - [SMALL_STATE(4780)] = 133274, - [SMALL_STATE(4781)] = 133286, - [SMALL_STATE(4782)] = 133302, - [SMALL_STATE(4783)] = 133314, - [SMALL_STATE(4784)] = 133326, - [SMALL_STATE(4785)] = 133338, - [SMALL_STATE(4786)] = 133352, - [SMALL_STATE(4787)] = 133368, - [SMALL_STATE(4788)] = 133384, - [SMALL_STATE(4789)] = 133400, - [SMALL_STATE(4790)] = 133416, - [SMALL_STATE(4791)] = 133428, - [SMALL_STATE(4792)] = 133444, - [SMALL_STATE(4793)] = 133458, - [SMALL_STATE(4794)] = 133474, - [SMALL_STATE(4795)] = 133490, - [SMALL_STATE(4796)] = 133502, - [SMALL_STATE(4797)] = 133514, - [SMALL_STATE(4798)] = 133530, - [SMALL_STATE(4799)] = 133542, - [SMALL_STATE(4800)] = 133558, - [SMALL_STATE(4801)] = 133570, - [SMALL_STATE(4802)] = 133582, - [SMALL_STATE(4803)] = 133594, - [SMALL_STATE(4804)] = 133610, - [SMALL_STATE(4805)] = 133622, - [SMALL_STATE(4806)] = 133636, - [SMALL_STATE(4807)] = 133650, - [SMALL_STATE(4808)] = 133664, - [SMALL_STATE(4809)] = 133676, - [SMALL_STATE(4810)] = 133692, - [SMALL_STATE(4811)] = 133704, - [SMALL_STATE(4812)] = 133716, - [SMALL_STATE(4813)] = 133732, - [SMALL_STATE(4814)] = 133748, + [SMALL_STATE(4758)] = 132994, + [SMALL_STATE(4759)] = 133006, + [SMALL_STATE(4760)] = 133018, + [SMALL_STATE(4761)] = 133030, + [SMALL_STATE(4762)] = 133042, + [SMALL_STATE(4763)] = 133054, + [SMALL_STATE(4764)] = 133066, + [SMALL_STATE(4765)] = 133082, + [SMALL_STATE(4766)] = 133098, + [SMALL_STATE(4767)] = 133114, + [SMALL_STATE(4768)] = 133126, + [SMALL_STATE(4769)] = 133142, + [SMALL_STATE(4770)] = 133156, + [SMALL_STATE(4771)] = 133168, + [SMALL_STATE(4772)] = 133180, + [SMALL_STATE(4773)] = 133194, + [SMALL_STATE(4774)] = 133206, + [SMALL_STATE(4775)] = 133222, + [SMALL_STATE(4776)] = 133238, + [SMALL_STATE(4777)] = 133250, + [SMALL_STATE(4778)] = 133266, + [SMALL_STATE(4779)] = 133278, + [SMALL_STATE(4780)] = 133294, + [SMALL_STATE(4781)] = 133306, + [SMALL_STATE(4782)] = 133318, + [SMALL_STATE(4783)] = 133330, + [SMALL_STATE(4784)] = 133344, + [SMALL_STATE(4785)] = 133356, + [SMALL_STATE(4786)] = 133368, + [SMALL_STATE(4787)] = 133384, + [SMALL_STATE(4788)] = 133400, + [SMALL_STATE(4789)] = 133416, + [SMALL_STATE(4790)] = 133430, + [SMALL_STATE(4791)] = 133446, + [SMALL_STATE(4792)] = 133462, + [SMALL_STATE(4793)] = 133478, + [SMALL_STATE(4794)] = 133494, + [SMALL_STATE(4795)] = 133510, + [SMALL_STATE(4796)] = 133522, + [SMALL_STATE(4797)] = 133534, + [SMALL_STATE(4798)] = 133546, + [SMALL_STATE(4799)] = 133560, + [SMALL_STATE(4800)] = 133572, + [SMALL_STATE(4801)] = 133584, + [SMALL_STATE(4802)] = 133600, + [SMALL_STATE(4803)] = 133612, + [SMALL_STATE(4804)] = 133626, + [SMALL_STATE(4805)] = 133638, + [SMALL_STATE(4806)] = 133652, + [SMALL_STATE(4807)] = 133664, + [SMALL_STATE(4808)] = 133676, + [SMALL_STATE(4809)] = 133688, + [SMALL_STATE(4810)] = 133704, + [SMALL_STATE(4811)] = 133716, + [SMALL_STATE(4812)] = 133728, + [SMALL_STATE(4813)] = 133740, + [SMALL_STATE(4814)] = 133752, [SMALL_STATE(4815)] = 133764, - [SMALL_STATE(4816)] = 133780, - [SMALL_STATE(4817)] = 133796, - [SMALL_STATE(4818)] = 133808, - [SMALL_STATE(4819)] = 133824, - [SMALL_STATE(4820)] = 133838, - [SMALL_STATE(4821)] = 133854, - [SMALL_STATE(4822)] = 133870, - [SMALL_STATE(4823)] = 133882, - [SMALL_STATE(4824)] = 133898, - [SMALL_STATE(4825)] = 133914, - [SMALL_STATE(4826)] = 133926, - [SMALL_STATE(4827)] = 133938, - [SMALL_STATE(4828)] = 133954, - [SMALL_STATE(4829)] = 133970, - [SMALL_STATE(4830)] = 133982, - [SMALL_STATE(4831)] = 133994, - [SMALL_STATE(4832)] = 134010, - [SMALL_STATE(4833)] = 134022, - [SMALL_STATE(4834)] = 134034, - [SMALL_STATE(4835)] = 134050, - [SMALL_STATE(4836)] = 134064, - [SMALL_STATE(4837)] = 134078, - [SMALL_STATE(4838)] = 134094, - [SMALL_STATE(4839)] = 134110, - [SMALL_STATE(4840)] = 134126, - [SMALL_STATE(4841)] = 134138, - [SMALL_STATE(4842)] = 134154, - [SMALL_STATE(4843)] = 134170, - [SMALL_STATE(4844)] = 134184, - [SMALL_STATE(4845)] = 134200, - [SMALL_STATE(4846)] = 134212, - [SMALL_STATE(4847)] = 134226, - [SMALL_STATE(4848)] = 134240, - [SMALL_STATE(4849)] = 134252, - [SMALL_STATE(4850)] = 134264, - [SMALL_STATE(4851)] = 134276, - [SMALL_STATE(4852)] = 134288, - [SMALL_STATE(4853)] = 134304, - [SMALL_STATE(4854)] = 134318, - [SMALL_STATE(4855)] = 134334, - [SMALL_STATE(4856)] = 134346, - [SMALL_STATE(4857)] = 134362, - [SMALL_STATE(4858)] = 134374, - [SMALL_STATE(4859)] = 134388, - [SMALL_STATE(4860)] = 134400, - [SMALL_STATE(4861)] = 134414, - [SMALL_STATE(4862)] = 134428, - [SMALL_STATE(4863)] = 134442, - [SMALL_STATE(4864)] = 134458, - [SMALL_STATE(4865)] = 134470, - [SMALL_STATE(4866)] = 134482, - [SMALL_STATE(4867)] = 134498, - [SMALL_STATE(4868)] = 134514, - [SMALL_STATE(4869)] = 134528, - [SMALL_STATE(4870)] = 134544, - [SMALL_STATE(4871)] = 134560, - [SMALL_STATE(4872)] = 134572, - [SMALL_STATE(4873)] = 134584, - [SMALL_STATE(4874)] = 134600, - [SMALL_STATE(4875)] = 134616, - [SMALL_STATE(4876)] = 134628, - [SMALL_STATE(4877)] = 134642, - [SMALL_STATE(4878)] = 134656, - [SMALL_STATE(4879)] = 134668, - [SMALL_STATE(4880)] = 134680, - [SMALL_STATE(4881)] = 134692, - [SMALL_STATE(4882)] = 134704, - [SMALL_STATE(4883)] = 134716, - [SMALL_STATE(4884)] = 134732, - [SMALL_STATE(4885)] = 134744, - [SMALL_STATE(4886)] = 134760, - [SMALL_STATE(4887)] = 134776, - [SMALL_STATE(4888)] = 134792, - [SMALL_STATE(4889)] = 134804, - [SMALL_STATE(4890)] = 134820, - [SMALL_STATE(4891)] = 134836, - [SMALL_STATE(4892)] = 134852, - [SMALL_STATE(4893)] = 134868, - [SMALL_STATE(4894)] = 134884, - [SMALL_STATE(4895)] = 134896, - [SMALL_STATE(4896)] = 134908, - [SMALL_STATE(4897)] = 134922, - [SMALL_STATE(4898)] = 134936, - [SMALL_STATE(4899)] = 134952, - [SMALL_STATE(4900)] = 134968, - [SMALL_STATE(4901)] = 134984, - [SMALL_STATE(4902)] = 134998, - [SMALL_STATE(4903)] = 135012, - [SMALL_STATE(4904)] = 135024, - [SMALL_STATE(4905)] = 135038, - [SMALL_STATE(4906)] = 135052, - [SMALL_STATE(4907)] = 135068, - [SMALL_STATE(4908)] = 135084, - [SMALL_STATE(4909)] = 135096, - [SMALL_STATE(4910)] = 135112, - [SMALL_STATE(4911)] = 135124, - [SMALL_STATE(4912)] = 135137, - [SMALL_STATE(4913)] = 135150, - [SMALL_STATE(4914)] = 135163, - [SMALL_STATE(4915)] = 135176, - [SMALL_STATE(4916)] = 135189, - [SMALL_STATE(4917)] = 135200, - [SMALL_STATE(4918)] = 135213, - [SMALL_STATE(4919)] = 135226, - [SMALL_STATE(4920)] = 135239, + [SMALL_STATE(4816)] = 133776, + [SMALL_STATE(4817)] = 133788, + [SMALL_STATE(4818)] = 133800, + [SMALL_STATE(4819)] = 133812, + [SMALL_STATE(4820)] = 133828, + [SMALL_STATE(4821)] = 133840, + [SMALL_STATE(4822)] = 133854, + [SMALL_STATE(4823)] = 133866, + [SMALL_STATE(4824)] = 133878, + [SMALL_STATE(4825)] = 133894, + [SMALL_STATE(4826)] = 133910, + [SMALL_STATE(4827)] = 133922, + [SMALL_STATE(4828)] = 133934, + [SMALL_STATE(4829)] = 133950, + [SMALL_STATE(4830)] = 133962, + [SMALL_STATE(4831)] = 133976, + [SMALL_STATE(4832)] = 133988, + [SMALL_STATE(4833)] = 134004, + [SMALL_STATE(4834)] = 134016, + [SMALL_STATE(4835)] = 134028, + [SMALL_STATE(4836)] = 134044, + [SMALL_STATE(4837)] = 134056, + [SMALL_STATE(4838)] = 134072, + [SMALL_STATE(4839)] = 134088, + [SMALL_STATE(4840)] = 134104, + [SMALL_STATE(4841)] = 134120, + [SMALL_STATE(4842)] = 134134, + [SMALL_STATE(4843)] = 134146, + [SMALL_STATE(4844)] = 134160, + [SMALL_STATE(4845)] = 134174, + [SMALL_STATE(4846)] = 134190, + [SMALL_STATE(4847)] = 134206, + [SMALL_STATE(4848)] = 134218, + [SMALL_STATE(4849)] = 134230, + [SMALL_STATE(4850)] = 134246, + [SMALL_STATE(4851)] = 134262, + [SMALL_STATE(4852)] = 134276, + [SMALL_STATE(4853)] = 134288, + [SMALL_STATE(4854)] = 134302, + [SMALL_STATE(4855)] = 134314, + [SMALL_STATE(4856)] = 134326, + [SMALL_STATE(4857)] = 134342, + [SMALL_STATE(4858)] = 134354, + [SMALL_STATE(4859)] = 134366, + [SMALL_STATE(4860)] = 134382, + [SMALL_STATE(4861)] = 134398, + [SMALL_STATE(4862)] = 134414, + [SMALL_STATE(4863)] = 134426, + [SMALL_STATE(4864)] = 134438, + [SMALL_STATE(4865)] = 134452, + [SMALL_STATE(4866)] = 134464, + [SMALL_STATE(4867)] = 134480, + [SMALL_STATE(4868)] = 134494, + [SMALL_STATE(4869)] = 134510, + [SMALL_STATE(4870)] = 134524, + [SMALL_STATE(4871)] = 134536, + [SMALL_STATE(4872)] = 134548, + [SMALL_STATE(4873)] = 134564, + [SMALL_STATE(4874)] = 134580, + [SMALL_STATE(4875)] = 134594, + [SMALL_STATE(4876)] = 134606, + [SMALL_STATE(4877)] = 134622, + [SMALL_STATE(4878)] = 134638, + [SMALL_STATE(4879)] = 134650, + [SMALL_STATE(4880)] = 134666, + [SMALL_STATE(4881)] = 134682, + [SMALL_STATE(4882)] = 134694, + [SMALL_STATE(4883)] = 134710, + [SMALL_STATE(4884)] = 134726, + [SMALL_STATE(4885)] = 134740, + [SMALL_STATE(4886)] = 134754, + [SMALL_STATE(4887)] = 134770, + [SMALL_STATE(4888)] = 134786, + [SMALL_STATE(4889)] = 134798, + [SMALL_STATE(4890)] = 134814, + [SMALL_STATE(4891)] = 134826, + [SMALL_STATE(4892)] = 134842, + [SMALL_STATE(4893)] = 134854, + [SMALL_STATE(4894)] = 134870, + [SMALL_STATE(4895)] = 134884, + [SMALL_STATE(4896)] = 134896, + [SMALL_STATE(4897)] = 134908, + [SMALL_STATE(4898)] = 134924, + [SMALL_STATE(4899)] = 134936, + [SMALL_STATE(4900)] = 134952, + [SMALL_STATE(4901)] = 134964, + [SMALL_STATE(4902)] = 134980, + [SMALL_STATE(4903)] = 134992, + [SMALL_STATE(4904)] = 135008, + [SMALL_STATE(4905)] = 135020, + [SMALL_STATE(4906)] = 135036, + [SMALL_STATE(4907)] = 135052, + [SMALL_STATE(4908)] = 135068, + [SMALL_STATE(4909)] = 135084, + [SMALL_STATE(4910)] = 135096, + [SMALL_STATE(4911)] = 135112, + [SMALL_STATE(4912)] = 135126, + [SMALL_STATE(4913)] = 135140, + [SMALL_STATE(4914)] = 135154, + [SMALL_STATE(4915)] = 135166, + [SMALL_STATE(4916)] = 135180, + [SMALL_STATE(4917)] = 135194, + [SMALL_STATE(4918)] = 135208, + [SMALL_STATE(4919)] = 135220, + [SMALL_STATE(4920)] = 135236, [SMALL_STATE(4921)] = 135252, - [SMALL_STATE(4922)] = 135265, - [SMALL_STATE(4923)] = 135278, - [SMALL_STATE(4924)] = 135291, - [SMALL_STATE(4925)] = 135304, - [SMALL_STATE(4926)] = 135317, - [SMALL_STATE(4927)] = 135330, - [SMALL_STATE(4928)] = 135343, - [SMALL_STATE(4929)] = 135354, - [SMALL_STATE(4930)] = 135367, - [SMALL_STATE(4931)] = 135380, - [SMALL_STATE(4932)] = 135393, - [SMALL_STATE(4933)] = 135406, - [SMALL_STATE(4934)] = 135419, - [SMALL_STATE(4935)] = 135432, - [SMALL_STATE(4936)] = 135445, - [SMALL_STATE(4937)] = 135458, - [SMALL_STATE(4938)] = 135471, - [SMALL_STATE(4939)] = 135484, - [SMALL_STATE(4940)] = 135497, - [SMALL_STATE(4941)] = 135510, - [SMALL_STATE(4942)] = 135521, - [SMALL_STATE(4943)] = 135534, - [SMALL_STATE(4944)] = 135547, - [SMALL_STATE(4945)] = 135560, - [SMALL_STATE(4946)] = 135573, - [SMALL_STATE(4947)] = 135586, - [SMALL_STATE(4948)] = 135599, - [SMALL_STATE(4949)] = 135612, - [SMALL_STATE(4950)] = 135625, - [SMALL_STATE(4951)] = 135638, - [SMALL_STATE(4952)] = 135651, - [SMALL_STATE(4953)] = 135664, - [SMALL_STATE(4954)] = 135677, - [SMALL_STATE(4955)] = 135690, - [SMALL_STATE(4956)] = 135703, - [SMALL_STATE(4957)] = 135714, - [SMALL_STATE(4958)] = 135727, - [SMALL_STATE(4959)] = 135740, - [SMALL_STATE(4960)] = 135753, - [SMALL_STATE(4961)] = 135766, - [SMALL_STATE(4962)] = 135779, - [SMALL_STATE(4963)] = 135792, - [SMALL_STATE(4964)] = 135805, - [SMALL_STATE(4965)] = 135818, - [SMALL_STATE(4966)] = 135831, - [SMALL_STATE(4967)] = 135844, - [SMALL_STATE(4968)] = 135857, - [SMALL_STATE(4969)] = 135870, - [SMALL_STATE(4970)] = 135883, - [SMALL_STATE(4971)] = 135896, - [SMALL_STATE(4972)] = 135909, - [SMALL_STATE(4973)] = 135922, - [SMALL_STATE(4974)] = 135935, - [SMALL_STATE(4975)] = 135948, - [SMALL_STATE(4976)] = 135961, - [SMALL_STATE(4977)] = 135974, - [SMALL_STATE(4978)] = 135987, - [SMALL_STATE(4979)] = 136000, - [SMALL_STATE(4980)] = 136013, - [SMALL_STATE(4981)] = 136026, - [SMALL_STATE(4982)] = 136039, - [SMALL_STATE(4983)] = 136052, - [SMALL_STATE(4984)] = 136063, - [SMALL_STATE(4985)] = 136076, - [SMALL_STATE(4986)] = 136089, - [SMALL_STATE(4987)] = 136102, - [SMALL_STATE(4988)] = 136115, - [SMALL_STATE(4989)] = 136128, - [SMALL_STATE(4990)] = 136141, - [SMALL_STATE(4991)] = 136154, - [SMALL_STATE(4992)] = 136167, - [SMALL_STATE(4993)] = 136180, - [SMALL_STATE(4994)] = 136191, - [SMALL_STATE(4995)] = 136204, - [SMALL_STATE(4996)] = 136217, - [SMALL_STATE(4997)] = 136230, - [SMALL_STATE(4998)] = 136243, - [SMALL_STATE(4999)] = 136256, - [SMALL_STATE(5000)] = 136269, - [SMALL_STATE(5001)] = 136282, - [SMALL_STATE(5002)] = 136293, - [SMALL_STATE(5003)] = 136304, - [SMALL_STATE(5004)] = 136317, - [SMALL_STATE(5005)] = 136330, - [SMALL_STATE(5006)] = 136343, - [SMALL_STATE(5007)] = 136356, - [SMALL_STATE(5008)] = 136369, - [SMALL_STATE(5009)] = 136382, - [SMALL_STATE(5010)] = 136395, - [SMALL_STATE(5011)] = 136408, - [SMALL_STATE(5012)] = 136421, - [SMALL_STATE(5013)] = 136434, - [SMALL_STATE(5014)] = 136447, - [SMALL_STATE(5015)] = 136460, - [SMALL_STATE(5016)] = 136473, - [SMALL_STATE(5017)] = 136486, - [SMALL_STATE(5018)] = 136499, - [SMALL_STATE(5019)] = 136512, - [SMALL_STATE(5020)] = 136525, - [SMALL_STATE(5021)] = 136538, - [SMALL_STATE(5022)] = 136551, - [SMALL_STATE(5023)] = 136564, - [SMALL_STATE(5024)] = 136577, - [SMALL_STATE(5025)] = 136590, - [SMALL_STATE(5026)] = 136603, - [SMALL_STATE(5027)] = 136616, - [SMALL_STATE(5028)] = 136629, - [SMALL_STATE(5029)] = 136642, - [SMALL_STATE(5030)] = 136655, - [SMALL_STATE(5031)] = 136668, - [SMALL_STATE(5032)] = 136681, - [SMALL_STATE(5033)] = 136694, - [SMALL_STATE(5034)] = 136707, - [SMALL_STATE(5035)] = 136720, - [SMALL_STATE(5036)] = 136733, - [SMALL_STATE(5037)] = 136746, - [SMALL_STATE(5038)] = 136759, - [SMALL_STATE(5039)] = 136772, - [SMALL_STATE(5040)] = 136785, - [SMALL_STATE(5041)] = 136798, - [SMALL_STATE(5042)] = 136809, - [SMALL_STATE(5043)] = 136822, - [SMALL_STATE(5044)] = 136835, - [SMALL_STATE(5045)] = 136848, - [SMALL_STATE(5046)] = 136861, - [SMALL_STATE(5047)] = 136874, - [SMALL_STATE(5048)] = 136887, - [SMALL_STATE(5049)] = 136898, - [SMALL_STATE(5050)] = 136911, - [SMALL_STATE(5051)] = 136924, - [SMALL_STATE(5052)] = 136937, - [SMALL_STATE(5053)] = 136950, - [SMALL_STATE(5054)] = 136963, - [SMALL_STATE(5055)] = 136976, - [SMALL_STATE(5056)] = 136989, - [SMALL_STATE(5057)] = 137002, - [SMALL_STATE(5058)] = 137015, - [SMALL_STATE(5059)] = 137028, - [SMALL_STATE(5060)] = 137041, - [SMALL_STATE(5061)] = 137054, - [SMALL_STATE(5062)] = 137067, - [SMALL_STATE(5063)] = 137080, - [SMALL_STATE(5064)] = 137093, - [SMALL_STATE(5065)] = 137106, - [SMALL_STATE(5066)] = 137119, - [SMALL_STATE(5067)] = 137132, - [SMALL_STATE(5068)] = 137145, - [SMALL_STATE(5069)] = 137158, - [SMALL_STATE(5070)] = 137171, - [SMALL_STATE(5071)] = 137184, - [SMALL_STATE(5072)] = 137197, - [SMALL_STATE(5073)] = 137210, - [SMALL_STATE(5074)] = 137223, - [SMALL_STATE(5075)] = 137236, - [SMALL_STATE(5076)] = 137249, - [SMALL_STATE(5077)] = 137262, - [SMALL_STATE(5078)] = 137275, - [SMALL_STATE(5079)] = 137288, - [SMALL_STATE(5080)] = 137301, - [SMALL_STATE(5081)] = 137311, - [SMALL_STATE(5082)] = 137321, - [SMALL_STATE(5083)] = 137331, - [SMALL_STATE(5084)] = 137341, - [SMALL_STATE(5085)] = 137351, - [SMALL_STATE(5086)] = 137361, - [SMALL_STATE(5087)] = 137371, - [SMALL_STATE(5088)] = 137381, - [SMALL_STATE(5089)] = 137391, - [SMALL_STATE(5090)] = 137401, - [SMALL_STATE(5091)] = 137411, - [SMALL_STATE(5092)] = 137421, - [SMALL_STATE(5093)] = 137431, - [SMALL_STATE(5094)] = 137441, - [SMALL_STATE(5095)] = 137451, - [SMALL_STATE(5096)] = 137461, - [SMALL_STATE(5097)] = 137471, - [SMALL_STATE(5098)] = 137481, - [SMALL_STATE(5099)] = 137491, - [SMALL_STATE(5100)] = 137501, - [SMALL_STATE(5101)] = 137511, - [SMALL_STATE(5102)] = 137521, - [SMALL_STATE(5103)] = 137531, - [SMALL_STATE(5104)] = 137541, - [SMALL_STATE(5105)] = 137551, - [SMALL_STATE(5106)] = 137561, - [SMALL_STATE(5107)] = 137571, - [SMALL_STATE(5108)] = 137581, - [SMALL_STATE(5109)] = 137591, - [SMALL_STATE(5110)] = 137601, - [SMALL_STATE(5111)] = 137611, - [SMALL_STATE(5112)] = 137621, - [SMALL_STATE(5113)] = 137631, - [SMALL_STATE(5114)] = 137641, - [SMALL_STATE(5115)] = 137651, - [SMALL_STATE(5116)] = 137661, - [SMALL_STATE(5117)] = 137671, - [SMALL_STATE(5118)] = 137681, - [SMALL_STATE(5119)] = 137691, - [SMALL_STATE(5120)] = 137701, - [SMALL_STATE(5121)] = 137711, - [SMALL_STATE(5122)] = 137721, - [SMALL_STATE(5123)] = 137731, - [SMALL_STATE(5124)] = 137741, - [SMALL_STATE(5125)] = 137751, - [SMALL_STATE(5126)] = 137761, - [SMALL_STATE(5127)] = 137771, - [SMALL_STATE(5128)] = 137781, - [SMALL_STATE(5129)] = 137791, - [SMALL_STATE(5130)] = 137801, - [SMALL_STATE(5131)] = 137811, - [SMALL_STATE(5132)] = 137821, - [SMALL_STATE(5133)] = 137831, - [SMALL_STATE(5134)] = 137841, - [SMALL_STATE(5135)] = 137851, - [SMALL_STATE(5136)] = 137861, - [SMALL_STATE(5137)] = 137871, - [SMALL_STATE(5138)] = 137881, - [SMALL_STATE(5139)] = 137891, - [SMALL_STATE(5140)] = 137901, - [SMALL_STATE(5141)] = 137911, - [SMALL_STATE(5142)] = 137921, - [SMALL_STATE(5143)] = 137931, - [SMALL_STATE(5144)] = 137941, - [SMALL_STATE(5145)] = 137951, - [SMALL_STATE(5146)] = 137961, - [SMALL_STATE(5147)] = 137971, - [SMALL_STATE(5148)] = 137981, - [SMALL_STATE(5149)] = 137991, - [SMALL_STATE(5150)] = 138001, - [SMALL_STATE(5151)] = 138011, - [SMALL_STATE(5152)] = 138021, - [SMALL_STATE(5153)] = 138031, - [SMALL_STATE(5154)] = 138041, - [SMALL_STATE(5155)] = 138051, - [SMALL_STATE(5156)] = 138061, - [SMALL_STATE(5157)] = 138071, - [SMALL_STATE(5158)] = 138081, - [SMALL_STATE(5159)] = 138091, - [SMALL_STATE(5160)] = 138101, - [SMALL_STATE(5161)] = 138111, - [SMALL_STATE(5162)] = 138121, - [SMALL_STATE(5163)] = 138131, - [SMALL_STATE(5164)] = 138141, - [SMALL_STATE(5165)] = 138151, - [SMALL_STATE(5166)] = 138161, - [SMALL_STATE(5167)] = 138171, - [SMALL_STATE(5168)] = 138181, - [SMALL_STATE(5169)] = 138191, - [SMALL_STATE(5170)] = 138201, - [SMALL_STATE(5171)] = 138211, - [SMALL_STATE(5172)] = 138221, - [SMALL_STATE(5173)] = 138231, - [SMALL_STATE(5174)] = 138241, - [SMALL_STATE(5175)] = 138251, - [SMALL_STATE(5176)] = 138261, - [SMALL_STATE(5177)] = 138271, - [SMALL_STATE(5178)] = 138281, - [SMALL_STATE(5179)] = 138291, - [SMALL_STATE(5180)] = 138301, - [SMALL_STATE(5181)] = 138311, - [SMALL_STATE(5182)] = 138321, - [SMALL_STATE(5183)] = 138331, - [SMALL_STATE(5184)] = 138341, - [SMALL_STATE(5185)] = 138351, - [SMALL_STATE(5186)] = 138361, - [SMALL_STATE(5187)] = 138371, - [SMALL_STATE(5188)] = 138381, - [SMALL_STATE(5189)] = 138391, - [SMALL_STATE(5190)] = 138401, - [SMALL_STATE(5191)] = 138411, - [SMALL_STATE(5192)] = 138421, - [SMALL_STATE(5193)] = 138431, - [SMALL_STATE(5194)] = 138441, - [SMALL_STATE(5195)] = 138451, - [SMALL_STATE(5196)] = 138461, - [SMALL_STATE(5197)] = 138471, - [SMALL_STATE(5198)] = 138481, - [SMALL_STATE(5199)] = 138491, - [SMALL_STATE(5200)] = 138501, - [SMALL_STATE(5201)] = 138511, - [SMALL_STATE(5202)] = 138521, - [SMALL_STATE(5203)] = 138531, - [SMALL_STATE(5204)] = 138541, - [SMALL_STATE(5205)] = 138551, - [SMALL_STATE(5206)] = 138561, - [SMALL_STATE(5207)] = 138571, - [SMALL_STATE(5208)] = 138581, - [SMALL_STATE(5209)] = 138591, - [SMALL_STATE(5210)] = 138601, - [SMALL_STATE(5211)] = 138611, - [SMALL_STATE(5212)] = 138621, - [SMALL_STATE(5213)] = 138631, - [SMALL_STATE(5214)] = 138641, - [SMALL_STATE(5215)] = 138651, - [SMALL_STATE(5216)] = 138661, - [SMALL_STATE(5217)] = 138671, - [SMALL_STATE(5218)] = 138681, - [SMALL_STATE(5219)] = 138691, - [SMALL_STATE(5220)] = 138701, - [SMALL_STATE(5221)] = 138711, - [SMALL_STATE(5222)] = 138721, - [SMALL_STATE(5223)] = 138731, - [SMALL_STATE(5224)] = 138741, - [SMALL_STATE(5225)] = 138751, - [SMALL_STATE(5226)] = 138761, - [SMALL_STATE(5227)] = 138771, - [SMALL_STATE(5228)] = 138781, - [SMALL_STATE(5229)] = 138791, - [SMALL_STATE(5230)] = 138801, - [SMALL_STATE(5231)] = 138811, - [SMALL_STATE(5232)] = 138821, - [SMALL_STATE(5233)] = 138831, - [SMALL_STATE(5234)] = 138841, - [SMALL_STATE(5235)] = 138851, - [SMALL_STATE(5236)] = 138861, - [SMALL_STATE(5237)] = 138871, - [SMALL_STATE(5238)] = 138881, - [SMALL_STATE(5239)] = 138891, - [SMALL_STATE(5240)] = 138901, - [SMALL_STATE(5241)] = 138911, - [SMALL_STATE(5242)] = 138921, - [SMALL_STATE(5243)] = 138931, - [SMALL_STATE(5244)] = 138941, - [SMALL_STATE(5245)] = 138951, - [SMALL_STATE(5246)] = 138961, - [SMALL_STATE(5247)] = 138971, - [SMALL_STATE(5248)] = 138981, - [SMALL_STATE(5249)] = 138991, - [SMALL_STATE(5250)] = 139001, - [SMALL_STATE(5251)] = 139011, - [SMALL_STATE(5252)] = 139021, - [SMALL_STATE(5253)] = 139031, - [SMALL_STATE(5254)] = 139041, - [SMALL_STATE(5255)] = 139051, - [SMALL_STATE(5256)] = 139061, - [SMALL_STATE(5257)] = 139071, - [SMALL_STATE(5258)] = 139081, - [SMALL_STATE(5259)] = 139091, - [SMALL_STATE(5260)] = 139101, - [SMALL_STATE(5261)] = 139111, - [SMALL_STATE(5262)] = 139121, - [SMALL_STATE(5263)] = 139131, - [SMALL_STATE(5264)] = 139141, - [SMALL_STATE(5265)] = 139151, - [SMALL_STATE(5266)] = 139161, - [SMALL_STATE(5267)] = 139171, - [SMALL_STATE(5268)] = 139181, - [SMALL_STATE(5269)] = 139191, - [SMALL_STATE(5270)] = 139201, - [SMALL_STATE(5271)] = 139211, - [SMALL_STATE(5272)] = 139221, - [SMALL_STATE(5273)] = 139231, - [SMALL_STATE(5274)] = 139241, - [SMALL_STATE(5275)] = 139251, - [SMALL_STATE(5276)] = 139261, - [SMALL_STATE(5277)] = 139271, - [SMALL_STATE(5278)] = 139281, - [SMALL_STATE(5279)] = 139291, - [SMALL_STATE(5280)] = 139301, - [SMALL_STATE(5281)] = 139311, - [SMALL_STATE(5282)] = 139321, - [SMALL_STATE(5283)] = 139331, - [SMALL_STATE(5284)] = 139341, - [SMALL_STATE(5285)] = 139351, - [SMALL_STATE(5286)] = 139361, - [SMALL_STATE(5287)] = 139371, - [SMALL_STATE(5288)] = 139381, - [SMALL_STATE(5289)] = 139391, - [SMALL_STATE(5290)] = 139401, - [SMALL_STATE(5291)] = 139411, - [SMALL_STATE(5292)] = 139421, - [SMALL_STATE(5293)] = 139431, - [SMALL_STATE(5294)] = 139441, - [SMALL_STATE(5295)] = 139451, - [SMALL_STATE(5296)] = 139461, - [SMALL_STATE(5297)] = 139471, - [SMALL_STATE(5298)] = 139481, - [SMALL_STATE(5299)] = 139491, - [SMALL_STATE(5300)] = 139501, - [SMALL_STATE(5301)] = 139511, - [SMALL_STATE(5302)] = 139521, - [SMALL_STATE(5303)] = 139531, - [SMALL_STATE(5304)] = 139541, - [SMALL_STATE(5305)] = 139551, - [SMALL_STATE(5306)] = 139561, - [SMALL_STATE(5307)] = 139571, - [SMALL_STATE(5308)] = 139581, - [SMALL_STATE(5309)] = 139591, - [SMALL_STATE(5310)] = 139601, - [SMALL_STATE(5311)] = 139611, - [SMALL_STATE(5312)] = 139621, - [SMALL_STATE(5313)] = 139631, - [SMALL_STATE(5314)] = 139641, - [SMALL_STATE(5315)] = 139651, - [SMALL_STATE(5316)] = 139661, - [SMALL_STATE(5317)] = 139671, - [SMALL_STATE(5318)] = 139681, - [SMALL_STATE(5319)] = 139691, - [SMALL_STATE(5320)] = 139701, - [SMALL_STATE(5321)] = 139711, - [SMALL_STATE(5322)] = 139721, - [SMALL_STATE(5323)] = 139731, - [SMALL_STATE(5324)] = 139741, - [SMALL_STATE(5325)] = 139751, - [SMALL_STATE(5326)] = 139761, - [SMALL_STATE(5327)] = 139771, - [SMALL_STATE(5328)] = 139781, - [SMALL_STATE(5329)] = 139791, - [SMALL_STATE(5330)] = 139801, - [SMALL_STATE(5331)] = 139811, - [SMALL_STATE(5332)] = 139821, - [SMALL_STATE(5333)] = 139831, - [SMALL_STATE(5334)] = 139841, - [SMALL_STATE(5335)] = 139851, - [SMALL_STATE(5336)] = 139861, - [SMALL_STATE(5337)] = 139871, - [SMALL_STATE(5338)] = 139881, - [SMALL_STATE(5339)] = 139891, - [SMALL_STATE(5340)] = 139901, - [SMALL_STATE(5341)] = 139911, - [SMALL_STATE(5342)] = 139921, - [SMALL_STATE(5343)] = 139931, - [SMALL_STATE(5344)] = 139941, - [SMALL_STATE(5345)] = 139951, - [SMALL_STATE(5346)] = 139961, - [SMALL_STATE(5347)] = 139971, - [SMALL_STATE(5348)] = 139981, - [SMALL_STATE(5349)] = 139991, - [SMALL_STATE(5350)] = 140001, - [SMALL_STATE(5351)] = 140011, - [SMALL_STATE(5352)] = 140021, - [SMALL_STATE(5353)] = 140031, - [SMALL_STATE(5354)] = 140041, - [SMALL_STATE(5355)] = 140051, - [SMALL_STATE(5356)] = 140061, - [SMALL_STATE(5357)] = 140071, - [SMALL_STATE(5358)] = 140081, - [SMALL_STATE(5359)] = 140091, - [SMALL_STATE(5360)] = 140101, - [SMALL_STATE(5361)] = 140111, - [SMALL_STATE(5362)] = 140121, - [SMALL_STATE(5363)] = 140131, - [SMALL_STATE(5364)] = 140141, - [SMALL_STATE(5365)] = 140151, - [SMALL_STATE(5366)] = 140161, - [SMALL_STATE(5367)] = 140171, - [SMALL_STATE(5368)] = 140181, - [SMALL_STATE(5369)] = 140191, - [SMALL_STATE(5370)] = 140201, - [SMALL_STATE(5371)] = 140211, - [SMALL_STATE(5372)] = 140221, - [SMALL_STATE(5373)] = 140231, - [SMALL_STATE(5374)] = 140241, - [SMALL_STATE(5375)] = 140251, - [SMALL_STATE(5376)] = 140261, - [SMALL_STATE(5377)] = 140271, - [SMALL_STATE(5378)] = 140281, - [SMALL_STATE(5379)] = 140291, - [SMALL_STATE(5380)] = 140301, - [SMALL_STATE(5381)] = 140311, - [SMALL_STATE(5382)] = 140321, - [SMALL_STATE(5383)] = 140331, - [SMALL_STATE(5384)] = 140341, - [SMALL_STATE(5385)] = 140351, - [SMALL_STATE(5386)] = 140361, - [SMALL_STATE(5387)] = 140371, - [SMALL_STATE(5388)] = 140381, - [SMALL_STATE(5389)] = 140391, - [SMALL_STATE(5390)] = 140401, - [SMALL_STATE(5391)] = 140411, - [SMALL_STATE(5392)] = 140421, - [SMALL_STATE(5393)] = 140431, - [SMALL_STATE(5394)] = 140441, - [SMALL_STATE(5395)] = 140451, - [SMALL_STATE(5396)] = 140461, - [SMALL_STATE(5397)] = 140471, - [SMALL_STATE(5398)] = 140481, - [SMALL_STATE(5399)] = 140491, - [SMALL_STATE(5400)] = 140501, - [SMALL_STATE(5401)] = 140511, - [SMALL_STATE(5402)] = 140521, - [SMALL_STATE(5403)] = 140531, - [SMALL_STATE(5404)] = 140541, - [SMALL_STATE(5405)] = 140551, - [SMALL_STATE(5406)] = 140561, - [SMALL_STATE(5407)] = 140571, - [SMALL_STATE(5408)] = 140581, - [SMALL_STATE(5409)] = 140591, - [SMALL_STATE(5410)] = 140601, - [SMALL_STATE(5411)] = 140611, - [SMALL_STATE(5412)] = 140621, - [SMALL_STATE(5413)] = 140631, - [SMALL_STATE(5414)] = 140641, - [SMALL_STATE(5415)] = 140651, - [SMALL_STATE(5416)] = 140661, - [SMALL_STATE(5417)] = 140671, - [SMALL_STATE(5418)] = 140681, - [SMALL_STATE(5419)] = 140691, - [SMALL_STATE(5420)] = 140701, - [SMALL_STATE(5421)] = 140711, - [SMALL_STATE(5422)] = 140721, - [SMALL_STATE(5423)] = 140731, - [SMALL_STATE(5424)] = 140741, - [SMALL_STATE(5425)] = 140751, - [SMALL_STATE(5426)] = 140761, - [SMALL_STATE(5427)] = 140771, - [SMALL_STATE(5428)] = 140781, - [SMALL_STATE(5429)] = 140791, - [SMALL_STATE(5430)] = 140801, - [SMALL_STATE(5431)] = 140811, - [SMALL_STATE(5432)] = 140821, - [SMALL_STATE(5433)] = 140831, - [SMALL_STATE(5434)] = 140841, - [SMALL_STATE(5435)] = 140851, - [SMALL_STATE(5436)] = 140861, - [SMALL_STATE(5437)] = 140871, - [SMALL_STATE(5438)] = 140881, - [SMALL_STATE(5439)] = 140891, - [SMALL_STATE(5440)] = 140901, - [SMALL_STATE(5441)] = 140911, - [SMALL_STATE(5442)] = 140921, - [SMALL_STATE(5443)] = 140931, - [SMALL_STATE(5444)] = 140941, - [SMALL_STATE(5445)] = 140951, - [SMALL_STATE(5446)] = 140961, - [SMALL_STATE(5447)] = 140971, - [SMALL_STATE(5448)] = 140981, - [SMALL_STATE(5449)] = 140991, - [SMALL_STATE(5450)] = 141001, - [SMALL_STATE(5451)] = 141011, - [SMALL_STATE(5452)] = 141021, - [SMALL_STATE(5453)] = 141031, - [SMALL_STATE(5454)] = 141041, - [SMALL_STATE(5455)] = 141051, - [SMALL_STATE(5456)] = 141061, - [SMALL_STATE(5457)] = 141071, - [SMALL_STATE(5458)] = 141081, - [SMALL_STATE(5459)] = 141091, - [SMALL_STATE(5460)] = 141101, - [SMALL_STATE(5461)] = 141111, - [SMALL_STATE(5462)] = 141121, - [SMALL_STATE(5463)] = 141131, - [SMALL_STATE(5464)] = 141141, - [SMALL_STATE(5465)] = 141151, - [SMALL_STATE(5466)] = 141161, - [SMALL_STATE(5467)] = 141171, - [SMALL_STATE(5468)] = 141181, - [SMALL_STATE(5469)] = 141191, - [SMALL_STATE(5470)] = 141201, - [SMALL_STATE(5471)] = 141211, - [SMALL_STATE(5472)] = 141221, - [SMALL_STATE(5473)] = 141231, - [SMALL_STATE(5474)] = 141241, - [SMALL_STATE(5475)] = 141251, - [SMALL_STATE(5476)] = 141261, - [SMALL_STATE(5477)] = 141271, - [SMALL_STATE(5478)] = 141281, - [SMALL_STATE(5479)] = 141291, - [SMALL_STATE(5480)] = 141301, - [SMALL_STATE(5481)] = 141311, - [SMALL_STATE(5482)] = 141321, - [SMALL_STATE(5483)] = 141331, - [SMALL_STATE(5484)] = 141341, - [SMALL_STATE(5485)] = 141351, - [SMALL_STATE(5486)] = 141361, - [SMALL_STATE(5487)] = 141371, - [SMALL_STATE(5488)] = 141381, - [SMALL_STATE(5489)] = 141391, - [SMALL_STATE(5490)] = 141401, - [SMALL_STATE(5491)] = 141411, - [SMALL_STATE(5492)] = 141421, - [SMALL_STATE(5493)] = 141431, - [SMALL_STATE(5494)] = 141441, - [SMALL_STATE(5495)] = 141451, - [SMALL_STATE(5496)] = 141461, - [SMALL_STATE(5497)] = 141471, - [SMALL_STATE(5498)] = 141481, - [SMALL_STATE(5499)] = 141491, - [SMALL_STATE(5500)] = 141501, - [SMALL_STATE(5501)] = 141511, - [SMALL_STATE(5502)] = 141521, - [SMALL_STATE(5503)] = 141531, - [SMALL_STATE(5504)] = 141541, - [SMALL_STATE(5505)] = 141551, - [SMALL_STATE(5506)] = 141561, - [SMALL_STATE(5507)] = 141571, - [SMALL_STATE(5508)] = 141581, - [SMALL_STATE(5509)] = 141591, - [SMALL_STATE(5510)] = 141601, - [SMALL_STATE(5511)] = 141611, + [SMALL_STATE(4922)] = 135268, + [SMALL_STATE(4923)] = 135280, + [SMALL_STATE(4924)] = 135296, + [SMALL_STATE(4925)] = 135310, + [SMALL_STATE(4926)] = 135324, + [SMALL_STATE(4927)] = 135340, + [SMALL_STATE(4928)] = 135354, + [SMALL_STATE(4929)] = 135366, + [SMALL_STATE(4930)] = 135379, + [SMALL_STATE(4931)] = 135392, + [SMALL_STATE(4932)] = 135405, + [SMALL_STATE(4933)] = 135418, + [SMALL_STATE(4934)] = 135431, + [SMALL_STATE(4935)] = 135444, + [SMALL_STATE(4936)] = 135457, + [SMALL_STATE(4937)] = 135470, + [SMALL_STATE(4938)] = 135483, + [SMALL_STATE(4939)] = 135496, + [SMALL_STATE(4940)] = 135509, + [SMALL_STATE(4941)] = 135522, + [SMALL_STATE(4942)] = 135535, + [SMALL_STATE(4943)] = 135548, + [SMALL_STATE(4944)] = 135561, + [SMALL_STATE(4945)] = 135574, + [SMALL_STATE(4946)] = 135587, + [SMALL_STATE(4947)] = 135600, + [SMALL_STATE(4948)] = 135613, + [SMALL_STATE(4949)] = 135626, + [SMALL_STATE(4950)] = 135639, + [SMALL_STATE(4951)] = 135652, + [SMALL_STATE(4952)] = 135665, + [SMALL_STATE(4953)] = 135678, + [SMALL_STATE(4954)] = 135691, + [SMALL_STATE(4955)] = 135704, + [SMALL_STATE(4956)] = 135717, + [SMALL_STATE(4957)] = 135730, + [SMALL_STATE(4958)] = 135743, + [SMALL_STATE(4959)] = 135756, + [SMALL_STATE(4960)] = 135769, + [SMALL_STATE(4961)] = 135782, + [SMALL_STATE(4962)] = 135795, + [SMALL_STATE(4963)] = 135808, + [SMALL_STATE(4964)] = 135821, + [SMALL_STATE(4965)] = 135834, + [SMALL_STATE(4966)] = 135847, + [SMALL_STATE(4967)] = 135860, + [SMALL_STATE(4968)] = 135873, + [SMALL_STATE(4969)] = 135886, + [SMALL_STATE(4970)] = 135899, + [SMALL_STATE(4971)] = 135912, + [SMALL_STATE(4972)] = 135925, + [SMALL_STATE(4973)] = 135938, + [SMALL_STATE(4974)] = 135951, + [SMALL_STATE(4975)] = 135964, + [SMALL_STATE(4976)] = 135977, + [SMALL_STATE(4977)] = 135990, + [SMALL_STATE(4978)] = 136003, + [SMALL_STATE(4979)] = 136016, + [SMALL_STATE(4980)] = 136029, + [SMALL_STATE(4981)] = 136042, + [SMALL_STATE(4982)] = 136055, + [SMALL_STATE(4983)] = 136068, + [SMALL_STATE(4984)] = 136081, + [SMALL_STATE(4985)] = 136094, + [SMALL_STATE(4986)] = 136107, + [SMALL_STATE(4987)] = 136120, + [SMALL_STATE(4988)] = 136133, + [SMALL_STATE(4989)] = 136146, + [SMALL_STATE(4990)] = 136157, + [SMALL_STATE(4991)] = 136170, + [SMALL_STATE(4992)] = 136183, + [SMALL_STATE(4993)] = 136196, + [SMALL_STATE(4994)] = 136209, + [SMALL_STATE(4995)] = 136222, + [SMALL_STATE(4996)] = 136235, + [SMALL_STATE(4997)] = 136248, + [SMALL_STATE(4998)] = 136261, + [SMALL_STATE(4999)] = 136272, + [SMALL_STATE(5000)] = 136285, + [SMALL_STATE(5001)] = 136296, + [SMALL_STATE(5002)] = 136307, + [SMALL_STATE(5003)] = 136320, + [SMALL_STATE(5004)] = 136333, + [SMALL_STATE(5005)] = 136346, + [SMALL_STATE(5006)] = 136357, + [SMALL_STATE(5007)] = 136370, + [SMALL_STATE(5008)] = 136383, + [SMALL_STATE(5009)] = 136396, + [SMALL_STATE(5010)] = 136409, + [SMALL_STATE(5011)] = 136422, + [SMALL_STATE(5012)] = 136435, + [SMALL_STATE(5013)] = 136446, + [SMALL_STATE(5014)] = 136459, + [SMALL_STATE(5015)] = 136472, + [SMALL_STATE(5016)] = 136485, + [SMALL_STATE(5017)] = 136498, + [SMALL_STATE(5018)] = 136511, + [SMALL_STATE(5019)] = 136524, + [SMALL_STATE(5020)] = 136537, + [SMALL_STATE(5021)] = 136550, + [SMALL_STATE(5022)] = 136563, + [SMALL_STATE(5023)] = 136576, + [SMALL_STATE(5024)] = 136589, + [SMALL_STATE(5025)] = 136602, + [SMALL_STATE(5026)] = 136615, + [SMALL_STATE(5027)] = 136628, + [SMALL_STATE(5028)] = 136641, + [SMALL_STATE(5029)] = 136654, + [SMALL_STATE(5030)] = 136667, + [SMALL_STATE(5031)] = 136680, + [SMALL_STATE(5032)] = 136693, + [SMALL_STATE(5033)] = 136706, + [SMALL_STATE(5034)] = 136719, + [SMALL_STATE(5035)] = 136732, + [SMALL_STATE(5036)] = 136743, + [SMALL_STATE(5037)] = 136756, + [SMALL_STATE(5038)] = 136769, + [SMALL_STATE(5039)] = 136782, + [SMALL_STATE(5040)] = 136795, + [SMALL_STATE(5041)] = 136808, + [SMALL_STATE(5042)] = 136821, + [SMALL_STATE(5043)] = 136834, + [SMALL_STATE(5044)] = 136847, + [SMALL_STATE(5045)] = 136860, + [SMALL_STATE(5046)] = 136873, + [SMALL_STATE(5047)] = 136886, + [SMALL_STATE(5048)] = 136899, + [SMALL_STATE(5049)] = 136912, + [SMALL_STATE(5050)] = 136925, + [SMALL_STATE(5051)] = 136938, + [SMALL_STATE(5052)] = 136951, + [SMALL_STATE(5053)] = 136964, + [SMALL_STATE(5054)] = 136977, + [SMALL_STATE(5055)] = 136990, + [SMALL_STATE(5056)] = 137003, + [SMALL_STATE(5057)] = 137016, + [SMALL_STATE(5058)] = 137029, + [SMALL_STATE(5059)] = 137042, + [SMALL_STATE(5060)] = 137055, + [SMALL_STATE(5061)] = 137068, + [SMALL_STATE(5062)] = 137081, + [SMALL_STATE(5063)] = 137092, + [SMALL_STATE(5064)] = 137105, + [SMALL_STATE(5065)] = 137118, + [SMALL_STATE(5066)] = 137131, + [SMALL_STATE(5067)] = 137144, + [SMALL_STATE(5068)] = 137157, + [SMALL_STATE(5069)] = 137170, + [SMALL_STATE(5070)] = 137183, + [SMALL_STATE(5071)] = 137196, + [SMALL_STATE(5072)] = 137209, + [SMALL_STATE(5073)] = 137222, + [SMALL_STATE(5074)] = 137235, + [SMALL_STATE(5075)] = 137248, + [SMALL_STATE(5076)] = 137261, + [SMALL_STATE(5077)] = 137274, + [SMALL_STATE(5078)] = 137287, + [SMALL_STATE(5079)] = 137300, + [SMALL_STATE(5080)] = 137313, + [SMALL_STATE(5081)] = 137326, + [SMALL_STATE(5082)] = 137339, + [SMALL_STATE(5083)] = 137352, + [SMALL_STATE(5084)] = 137365, + [SMALL_STATE(5085)] = 137378, + [SMALL_STATE(5086)] = 137391, + [SMALL_STATE(5087)] = 137404, + [SMALL_STATE(5088)] = 137417, + [SMALL_STATE(5089)] = 137428, + [SMALL_STATE(5090)] = 137441, + [SMALL_STATE(5091)] = 137454, + [SMALL_STATE(5092)] = 137467, + [SMALL_STATE(5093)] = 137480, + [SMALL_STATE(5094)] = 137493, + [SMALL_STATE(5095)] = 137506, + [SMALL_STATE(5096)] = 137519, + [SMALL_STATE(5097)] = 137530, + [SMALL_STATE(5098)] = 137543, + [SMALL_STATE(5099)] = 137553, + [SMALL_STATE(5100)] = 137563, + [SMALL_STATE(5101)] = 137573, + [SMALL_STATE(5102)] = 137583, + [SMALL_STATE(5103)] = 137593, + [SMALL_STATE(5104)] = 137603, + [SMALL_STATE(5105)] = 137613, + [SMALL_STATE(5106)] = 137623, + [SMALL_STATE(5107)] = 137633, + [SMALL_STATE(5108)] = 137643, + [SMALL_STATE(5109)] = 137653, + [SMALL_STATE(5110)] = 137663, + [SMALL_STATE(5111)] = 137673, + [SMALL_STATE(5112)] = 137683, + [SMALL_STATE(5113)] = 137693, + [SMALL_STATE(5114)] = 137703, + [SMALL_STATE(5115)] = 137713, + [SMALL_STATE(5116)] = 137723, + [SMALL_STATE(5117)] = 137733, + [SMALL_STATE(5118)] = 137743, + [SMALL_STATE(5119)] = 137753, + [SMALL_STATE(5120)] = 137763, + [SMALL_STATE(5121)] = 137773, + [SMALL_STATE(5122)] = 137783, + [SMALL_STATE(5123)] = 137793, + [SMALL_STATE(5124)] = 137803, + [SMALL_STATE(5125)] = 137813, + [SMALL_STATE(5126)] = 137823, + [SMALL_STATE(5127)] = 137833, + [SMALL_STATE(5128)] = 137843, + [SMALL_STATE(5129)] = 137853, + [SMALL_STATE(5130)] = 137863, + [SMALL_STATE(5131)] = 137873, + [SMALL_STATE(5132)] = 137883, + [SMALL_STATE(5133)] = 137893, + [SMALL_STATE(5134)] = 137903, + [SMALL_STATE(5135)] = 137913, + [SMALL_STATE(5136)] = 137923, + [SMALL_STATE(5137)] = 137933, + [SMALL_STATE(5138)] = 137943, + [SMALL_STATE(5139)] = 137953, + [SMALL_STATE(5140)] = 137963, + [SMALL_STATE(5141)] = 137973, + [SMALL_STATE(5142)] = 137983, + [SMALL_STATE(5143)] = 137993, + [SMALL_STATE(5144)] = 138003, + [SMALL_STATE(5145)] = 138013, + [SMALL_STATE(5146)] = 138023, + [SMALL_STATE(5147)] = 138033, + [SMALL_STATE(5148)] = 138043, + [SMALL_STATE(5149)] = 138053, + [SMALL_STATE(5150)] = 138063, + [SMALL_STATE(5151)] = 138073, + [SMALL_STATE(5152)] = 138083, + [SMALL_STATE(5153)] = 138093, + [SMALL_STATE(5154)] = 138103, + [SMALL_STATE(5155)] = 138113, + [SMALL_STATE(5156)] = 138123, + [SMALL_STATE(5157)] = 138133, + [SMALL_STATE(5158)] = 138143, + [SMALL_STATE(5159)] = 138153, + [SMALL_STATE(5160)] = 138163, + [SMALL_STATE(5161)] = 138173, + [SMALL_STATE(5162)] = 138183, + [SMALL_STATE(5163)] = 138193, + [SMALL_STATE(5164)] = 138203, + [SMALL_STATE(5165)] = 138213, + [SMALL_STATE(5166)] = 138223, + [SMALL_STATE(5167)] = 138233, + [SMALL_STATE(5168)] = 138243, + [SMALL_STATE(5169)] = 138253, + [SMALL_STATE(5170)] = 138263, + [SMALL_STATE(5171)] = 138273, + [SMALL_STATE(5172)] = 138283, + [SMALL_STATE(5173)] = 138293, + [SMALL_STATE(5174)] = 138303, + [SMALL_STATE(5175)] = 138313, + [SMALL_STATE(5176)] = 138323, + [SMALL_STATE(5177)] = 138333, + [SMALL_STATE(5178)] = 138343, + [SMALL_STATE(5179)] = 138353, + [SMALL_STATE(5180)] = 138363, + [SMALL_STATE(5181)] = 138373, + [SMALL_STATE(5182)] = 138383, + [SMALL_STATE(5183)] = 138393, + [SMALL_STATE(5184)] = 138403, + [SMALL_STATE(5185)] = 138413, + [SMALL_STATE(5186)] = 138423, + [SMALL_STATE(5187)] = 138433, + [SMALL_STATE(5188)] = 138443, + [SMALL_STATE(5189)] = 138453, + [SMALL_STATE(5190)] = 138463, + [SMALL_STATE(5191)] = 138473, + [SMALL_STATE(5192)] = 138483, + [SMALL_STATE(5193)] = 138493, + [SMALL_STATE(5194)] = 138503, + [SMALL_STATE(5195)] = 138513, + [SMALL_STATE(5196)] = 138523, + [SMALL_STATE(5197)] = 138533, + [SMALL_STATE(5198)] = 138543, + [SMALL_STATE(5199)] = 138553, + [SMALL_STATE(5200)] = 138563, + [SMALL_STATE(5201)] = 138573, + [SMALL_STATE(5202)] = 138583, + [SMALL_STATE(5203)] = 138593, + [SMALL_STATE(5204)] = 138603, + [SMALL_STATE(5205)] = 138613, + [SMALL_STATE(5206)] = 138623, + [SMALL_STATE(5207)] = 138633, + [SMALL_STATE(5208)] = 138643, + [SMALL_STATE(5209)] = 138653, + [SMALL_STATE(5210)] = 138663, + [SMALL_STATE(5211)] = 138673, + [SMALL_STATE(5212)] = 138683, + [SMALL_STATE(5213)] = 138693, + [SMALL_STATE(5214)] = 138703, + [SMALL_STATE(5215)] = 138713, + [SMALL_STATE(5216)] = 138723, + [SMALL_STATE(5217)] = 138733, + [SMALL_STATE(5218)] = 138743, + [SMALL_STATE(5219)] = 138753, + [SMALL_STATE(5220)] = 138763, + [SMALL_STATE(5221)] = 138773, + [SMALL_STATE(5222)] = 138783, + [SMALL_STATE(5223)] = 138793, + [SMALL_STATE(5224)] = 138803, + [SMALL_STATE(5225)] = 138813, + [SMALL_STATE(5226)] = 138823, + [SMALL_STATE(5227)] = 138833, + [SMALL_STATE(5228)] = 138843, + [SMALL_STATE(5229)] = 138853, + [SMALL_STATE(5230)] = 138863, + [SMALL_STATE(5231)] = 138873, + [SMALL_STATE(5232)] = 138883, + [SMALL_STATE(5233)] = 138893, + [SMALL_STATE(5234)] = 138903, + [SMALL_STATE(5235)] = 138913, + [SMALL_STATE(5236)] = 138923, + [SMALL_STATE(5237)] = 138933, + [SMALL_STATE(5238)] = 138943, + [SMALL_STATE(5239)] = 138953, + [SMALL_STATE(5240)] = 138963, + [SMALL_STATE(5241)] = 138973, + [SMALL_STATE(5242)] = 138983, + [SMALL_STATE(5243)] = 138993, + [SMALL_STATE(5244)] = 139003, + [SMALL_STATE(5245)] = 139013, + [SMALL_STATE(5246)] = 139023, + [SMALL_STATE(5247)] = 139033, + [SMALL_STATE(5248)] = 139043, + [SMALL_STATE(5249)] = 139053, + [SMALL_STATE(5250)] = 139063, + [SMALL_STATE(5251)] = 139073, + [SMALL_STATE(5252)] = 139083, + [SMALL_STATE(5253)] = 139093, + [SMALL_STATE(5254)] = 139103, + [SMALL_STATE(5255)] = 139113, + [SMALL_STATE(5256)] = 139123, + [SMALL_STATE(5257)] = 139133, + [SMALL_STATE(5258)] = 139143, + [SMALL_STATE(5259)] = 139153, + [SMALL_STATE(5260)] = 139163, + [SMALL_STATE(5261)] = 139173, + [SMALL_STATE(5262)] = 139183, + [SMALL_STATE(5263)] = 139193, + [SMALL_STATE(5264)] = 139203, + [SMALL_STATE(5265)] = 139213, + [SMALL_STATE(5266)] = 139223, + [SMALL_STATE(5267)] = 139233, + [SMALL_STATE(5268)] = 139243, + [SMALL_STATE(5269)] = 139253, + [SMALL_STATE(5270)] = 139263, + [SMALL_STATE(5271)] = 139273, + [SMALL_STATE(5272)] = 139283, + [SMALL_STATE(5273)] = 139293, + [SMALL_STATE(5274)] = 139303, + [SMALL_STATE(5275)] = 139313, + [SMALL_STATE(5276)] = 139323, + [SMALL_STATE(5277)] = 139333, + [SMALL_STATE(5278)] = 139343, + [SMALL_STATE(5279)] = 139353, + [SMALL_STATE(5280)] = 139363, + [SMALL_STATE(5281)] = 139373, + [SMALL_STATE(5282)] = 139383, + [SMALL_STATE(5283)] = 139393, + [SMALL_STATE(5284)] = 139403, + [SMALL_STATE(5285)] = 139413, + [SMALL_STATE(5286)] = 139423, + [SMALL_STATE(5287)] = 139433, + [SMALL_STATE(5288)] = 139443, + [SMALL_STATE(5289)] = 139453, + [SMALL_STATE(5290)] = 139463, + [SMALL_STATE(5291)] = 139473, + [SMALL_STATE(5292)] = 139483, + [SMALL_STATE(5293)] = 139493, + [SMALL_STATE(5294)] = 139503, + [SMALL_STATE(5295)] = 139513, + [SMALL_STATE(5296)] = 139523, + [SMALL_STATE(5297)] = 139533, + [SMALL_STATE(5298)] = 139543, + [SMALL_STATE(5299)] = 139553, + [SMALL_STATE(5300)] = 139563, + [SMALL_STATE(5301)] = 139573, + [SMALL_STATE(5302)] = 139583, + [SMALL_STATE(5303)] = 139593, + [SMALL_STATE(5304)] = 139603, + [SMALL_STATE(5305)] = 139613, + [SMALL_STATE(5306)] = 139623, + [SMALL_STATE(5307)] = 139633, + [SMALL_STATE(5308)] = 139643, + [SMALL_STATE(5309)] = 139653, + [SMALL_STATE(5310)] = 139663, + [SMALL_STATE(5311)] = 139673, + [SMALL_STATE(5312)] = 139683, + [SMALL_STATE(5313)] = 139693, + [SMALL_STATE(5314)] = 139703, + [SMALL_STATE(5315)] = 139713, + [SMALL_STATE(5316)] = 139723, + [SMALL_STATE(5317)] = 139733, + [SMALL_STATE(5318)] = 139743, + [SMALL_STATE(5319)] = 139753, + [SMALL_STATE(5320)] = 139763, + [SMALL_STATE(5321)] = 139773, + [SMALL_STATE(5322)] = 139783, + [SMALL_STATE(5323)] = 139793, + [SMALL_STATE(5324)] = 139803, + [SMALL_STATE(5325)] = 139813, + [SMALL_STATE(5326)] = 139823, + [SMALL_STATE(5327)] = 139833, + [SMALL_STATE(5328)] = 139843, + [SMALL_STATE(5329)] = 139853, + [SMALL_STATE(5330)] = 139863, + [SMALL_STATE(5331)] = 139873, + [SMALL_STATE(5332)] = 139883, + [SMALL_STATE(5333)] = 139893, + [SMALL_STATE(5334)] = 139903, + [SMALL_STATE(5335)] = 139913, + [SMALL_STATE(5336)] = 139923, + [SMALL_STATE(5337)] = 139933, + [SMALL_STATE(5338)] = 139943, + [SMALL_STATE(5339)] = 139953, + [SMALL_STATE(5340)] = 139963, + [SMALL_STATE(5341)] = 139973, + [SMALL_STATE(5342)] = 139983, + [SMALL_STATE(5343)] = 139993, + [SMALL_STATE(5344)] = 140003, + [SMALL_STATE(5345)] = 140013, + [SMALL_STATE(5346)] = 140023, + [SMALL_STATE(5347)] = 140033, + [SMALL_STATE(5348)] = 140043, + [SMALL_STATE(5349)] = 140053, + [SMALL_STATE(5350)] = 140063, + [SMALL_STATE(5351)] = 140073, + [SMALL_STATE(5352)] = 140083, + [SMALL_STATE(5353)] = 140093, + [SMALL_STATE(5354)] = 140103, + [SMALL_STATE(5355)] = 140113, + [SMALL_STATE(5356)] = 140123, + [SMALL_STATE(5357)] = 140133, + [SMALL_STATE(5358)] = 140143, + [SMALL_STATE(5359)] = 140153, + [SMALL_STATE(5360)] = 140163, + [SMALL_STATE(5361)] = 140173, + [SMALL_STATE(5362)] = 140183, + [SMALL_STATE(5363)] = 140193, + [SMALL_STATE(5364)] = 140203, + [SMALL_STATE(5365)] = 140213, + [SMALL_STATE(5366)] = 140223, + [SMALL_STATE(5367)] = 140233, + [SMALL_STATE(5368)] = 140243, + [SMALL_STATE(5369)] = 140253, + [SMALL_STATE(5370)] = 140263, + [SMALL_STATE(5371)] = 140273, + [SMALL_STATE(5372)] = 140283, + [SMALL_STATE(5373)] = 140293, + [SMALL_STATE(5374)] = 140303, + [SMALL_STATE(5375)] = 140313, + [SMALL_STATE(5376)] = 140323, + [SMALL_STATE(5377)] = 140333, + [SMALL_STATE(5378)] = 140343, + [SMALL_STATE(5379)] = 140353, + [SMALL_STATE(5380)] = 140363, + [SMALL_STATE(5381)] = 140373, + [SMALL_STATE(5382)] = 140383, + [SMALL_STATE(5383)] = 140393, + [SMALL_STATE(5384)] = 140403, + [SMALL_STATE(5385)] = 140413, + [SMALL_STATE(5386)] = 140423, + [SMALL_STATE(5387)] = 140433, + [SMALL_STATE(5388)] = 140443, + [SMALL_STATE(5389)] = 140453, + [SMALL_STATE(5390)] = 140463, + [SMALL_STATE(5391)] = 140473, + [SMALL_STATE(5392)] = 140483, + [SMALL_STATE(5393)] = 140493, + [SMALL_STATE(5394)] = 140503, + [SMALL_STATE(5395)] = 140513, + [SMALL_STATE(5396)] = 140523, + [SMALL_STATE(5397)] = 140533, + [SMALL_STATE(5398)] = 140543, + [SMALL_STATE(5399)] = 140553, + [SMALL_STATE(5400)] = 140563, + [SMALL_STATE(5401)] = 140573, + [SMALL_STATE(5402)] = 140583, + [SMALL_STATE(5403)] = 140593, + [SMALL_STATE(5404)] = 140603, + [SMALL_STATE(5405)] = 140613, + [SMALL_STATE(5406)] = 140623, + [SMALL_STATE(5407)] = 140633, + [SMALL_STATE(5408)] = 140643, + [SMALL_STATE(5409)] = 140653, + [SMALL_STATE(5410)] = 140663, + [SMALL_STATE(5411)] = 140673, + [SMALL_STATE(5412)] = 140683, + [SMALL_STATE(5413)] = 140693, + [SMALL_STATE(5414)] = 140703, + [SMALL_STATE(5415)] = 140713, + [SMALL_STATE(5416)] = 140723, + [SMALL_STATE(5417)] = 140733, + [SMALL_STATE(5418)] = 140743, + [SMALL_STATE(5419)] = 140753, + [SMALL_STATE(5420)] = 140763, + [SMALL_STATE(5421)] = 140773, + [SMALL_STATE(5422)] = 140783, + [SMALL_STATE(5423)] = 140793, + [SMALL_STATE(5424)] = 140803, + [SMALL_STATE(5425)] = 140813, + [SMALL_STATE(5426)] = 140823, + [SMALL_STATE(5427)] = 140833, + [SMALL_STATE(5428)] = 140843, + [SMALL_STATE(5429)] = 140853, + [SMALL_STATE(5430)] = 140863, + [SMALL_STATE(5431)] = 140873, + [SMALL_STATE(5432)] = 140883, + [SMALL_STATE(5433)] = 140893, + [SMALL_STATE(5434)] = 140903, + [SMALL_STATE(5435)] = 140913, + [SMALL_STATE(5436)] = 140923, + [SMALL_STATE(5437)] = 140933, + [SMALL_STATE(5438)] = 140943, + [SMALL_STATE(5439)] = 140953, + [SMALL_STATE(5440)] = 140963, + [SMALL_STATE(5441)] = 140973, + [SMALL_STATE(5442)] = 140983, + [SMALL_STATE(5443)] = 140993, + [SMALL_STATE(5444)] = 141003, + [SMALL_STATE(5445)] = 141013, + [SMALL_STATE(5446)] = 141023, + [SMALL_STATE(5447)] = 141033, + [SMALL_STATE(5448)] = 141043, + [SMALL_STATE(5449)] = 141053, + [SMALL_STATE(5450)] = 141063, + [SMALL_STATE(5451)] = 141073, + [SMALL_STATE(5452)] = 141083, + [SMALL_STATE(5453)] = 141093, + [SMALL_STATE(5454)] = 141103, + [SMALL_STATE(5455)] = 141113, + [SMALL_STATE(5456)] = 141123, + [SMALL_STATE(5457)] = 141133, + [SMALL_STATE(5458)] = 141143, + [SMALL_STATE(5459)] = 141153, + [SMALL_STATE(5460)] = 141163, + [SMALL_STATE(5461)] = 141173, + [SMALL_STATE(5462)] = 141183, + [SMALL_STATE(5463)] = 141193, + [SMALL_STATE(5464)] = 141203, + [SMALL_STATE(5465)] = 141213, + [SMALL_STATE(5466)] = 141223, + [SMALL_STATE(5467)] = 141233, + [SMALL_STATE(5468)] = 141243, + [SMALL_STATE(5469)] = 141253, + [SMALL_STATE(5470)] = 141263, + [SMALL_STATE(5471)] = 141273, + [SMALL_STATE(5472)] = 141283, + [SMALL_STATE(5473)] = 141293, + [SMALL_STATE(5474)] = 141303, + [SMALL_STATE(5475)] = 141313, + [SMALL_STATE(5476)] = 141323, + [SMALL_STATE(5477)] = 141333, + [SMALL_STATE(5478)] = 141343, + [SMALL_STATE(5479)] = 141353, + [SMALL_STATE(5480)] = 141363, + [SMALL_STATE(5481)] = 141373, + [SMALL_STATE(5482)] = 141383, + [SMALL_STATE(5483)] = 141393, + [SMALL_STATE(5484)] = 141403, + [SMALL_STATE(5485)] = 141413, + [SMALL_STATE(5486)] = 141423, + [SMALL_STATE(5487)] = 141433, + [SMALL_STATE(5488)] = 141443, + [SMALL_STATE(5489)] = 141453, + [SMALL_STATE(5490)] = 141463, + [SMALL_STATE(5491)] = 141473, + [SMALL_STATE(5492)] = 141483, + [SMALL_STATE(5493)] = 141493, + [SMALL_STATE(5494)] = 141503, + [SMALL_STATE(5495)] = 141513, + [SMALL_STATE(5496)] = 141523, + [SMALL_STATE(5497)] = 141533, + [SMALL_STATE(5498)] = 141543, + [SMALL_STATE(5499)] = 141553, + [SMALL_STATE(5500)] = 141563, + [SMALL_STATE(5501)] = 141573, + [SMALL_STATE(5502)] = 141583, + [SMALL_STATE(5503)] = 141593, + [SMALL_STATE(5504)] = 141603, + [SMALL_STATE(5505)] = 141613, + [SMALL_STATE(5506)] = 141623, + [SMALL_STATE(5507)] = 141633, + [SMALL_STATE(5508)] = 141643, + [SMALL_STATE(5509)] = 141653, + [SMALL_STATE(5510)] = 141663, + [SMALL_STATE(5511)] = 141673, + [SMALL_STATE(5512)] = 141683, + [SMALL_STATE(5513)] = 141693, + [SMALL_STATE(5514)] = 141703, + [SMALL_STATE(5515)] = 141713, + [SMALL_STATE(5516)] = 141723, + [SMALL_STATE(5517)] = 141733, + [SMALL_STATE(5518)] = 141743, + [SMALL_STATE(5519)] = 141753, + [SMALL_STATE(5520)] = 141763, + [SMALL_STATE(5521)] = 141773, + [SMALL_STATE(5522)] = 141783, + [SMALL_STATE(5523)] = 141793, + [SMALL_STATE(5524)] = 141803, + [SMALL_STATE(5525)] = 141813, + [SMALL_STATE(5526)] = 141823, + [SMALL_STATE(5527)] = 141833, + [SMALL_STATE(5528)] = 141843, + [SMALL_STATE(5529)] = 141853, }; 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(5383), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [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(3953), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1770), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4162), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4163), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4164), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2937), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4704), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1744), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1745), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4267), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1159), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1272), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5307), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4863), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1364), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5307), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(996), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1001), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1066), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5374), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(350), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(34), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3813), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5450), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3723), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2328), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3605), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3728), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(111), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(111), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(123), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(712), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(716), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5200), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(970), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4315), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5387), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5388), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4186), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4043), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1455), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5385), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3955), - [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(4166), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4167), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4168), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2937), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4704), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1744), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1745), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4267), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1159), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(930), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5307), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4221), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1364), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5307), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(996), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1001), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1066), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5374), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(350), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(34), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3813), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5450), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3723), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2292), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3605), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3728), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(111), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(111), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(123), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(712), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(716), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5200), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(970), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4315), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5387), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5388), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4186), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4043), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1450), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5385), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [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(357), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3930), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1787), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4187), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4188), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4189), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2935), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1558), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1948), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4824), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1772), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4281), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4828), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1153), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(986), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5104), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4345), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1375), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5104), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1037), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1038), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1039), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5318), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(352), + [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(3831), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5468), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3768), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2301), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3628), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3773), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(132), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(740), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(742), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5216), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(945), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4324), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5404), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5405), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4206), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4054), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1463), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5402), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3981), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1784), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4184), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4185), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4186), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2935), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1558), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1948), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4824), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1772), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4281), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4828), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1153), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1228), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5104), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4835), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1375), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5104), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1037), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1038), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1039), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5318), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(352), + [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(3831), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5468), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3768), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2334), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3628), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3773), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(132), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(740), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(742), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5216), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(945), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4324), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5404), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5405), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4206), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4054), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1469), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5402), + [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(104), + [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(100), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4299), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1271), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4863), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(996), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5450), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2328), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3605), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5200), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4315), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5387), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5388), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4186), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4043), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4299), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(975), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4221), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(996), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5450), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3605), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5200), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4315), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5387), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5388), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4186), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4043), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [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 = false}}, SHIFT(201), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4232), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2935), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4835), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1375), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1038), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3831), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5468), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3768), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2334), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3628), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3773), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5216), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4324), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), + [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5405), + [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4206), + [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5402), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4232), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2935), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(960), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4345), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1375), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1038), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3831), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5468), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3768), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3628), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3773), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5216), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4324), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5405), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4206), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5402), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 32), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 22), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 22), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [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, 20), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [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(3711), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3711), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 22), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 22), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(527), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 48), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 48), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 102), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 102), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3720), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4178), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4428), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4671), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(351), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(27), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3817), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3648), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(66), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3649), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5363), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3530), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3530), - [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3628), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4625), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4298), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5344), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4431), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4181), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5396), - [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5397), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4316), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4086), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(378), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4459), - [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5394), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 75), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 75), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4946), - [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4946), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2993), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5484), - [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5034), - [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(64), - [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4547), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5085), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(66), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5363), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1928), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1928), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1943), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(712), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4272), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5201), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5202), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4186), - [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4043), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(465), - [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5196), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4946), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4946), - [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2993), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5484), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5034), - [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(64), - [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4615), - [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5085), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(66), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5363), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1928), - [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1928), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1943), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(712), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4272), - [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5201), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5202), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4186), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4043), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(465), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5196), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(527), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(954), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 48), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 48), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 115), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 115), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 60), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 60), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 125), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 125), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 102), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 102), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 115), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 115), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(939), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 60), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 60), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 165), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2758] = {.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), - [2762] = {.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), - [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), SHIFT(527), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), SHIFT(527), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), SHIFT(527), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), SHIFT(527), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1363), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1367), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), - [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4329), - [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4248), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4287), - [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), - [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4498), - [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4812), - [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), - [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), - [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3495), - [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3495), - [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), - [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5200), - [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4286), - [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4272), - [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5201), - [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5202), - [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5196), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), - [3397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), - [3400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5281), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1954), - [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1954), - [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1994), - [3416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), - [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5281), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1954), - [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1954), - [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1994), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), - [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1419), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [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 = 1, .reusable = false}}, SHIFT(1425), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4178), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4428), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4671), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1131), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(27), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4547), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(452), - [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3648), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3649), - [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3530), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3530), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3628), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4625), - [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4298), - [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5344), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4967), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4181), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5396), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5397), - [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4459), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5394), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 34), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [3691] = {.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), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 107), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1496), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), - [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 107), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), - [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), REDUCE(sym_record_body, 3, 0, 50), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 51), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5223), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5223), - [4046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4667), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1954), - [4052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1994), - [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4181), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5396), - [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5397), - [4064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5394), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3702), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [4100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2610), - [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2538), - [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2539), - [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(5470), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4375), - [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4291), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4293), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(5498), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1949), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [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(1962), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 91), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 86), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(530), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 48), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 48), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 102), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 102), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4212), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4608), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4849), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(362), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(28), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3854), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3664), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(53), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3728), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5482), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3527), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3527), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3637), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4432), + [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4201), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5360), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4617), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4347), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5414), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5415), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4325), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4093), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(404), + [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4441), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5412), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3700), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5017), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5017), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3027), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5502), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4969), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(55), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4610), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5167), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(53), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5482), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1931), + [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1931), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1952), + [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(740), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4294), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5217), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5218), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4206), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4054), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(465), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5212), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(530), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(952), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5017), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5017), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3027), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5502), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4969), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(55), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4488), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5167), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(53), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5482), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1931), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1931), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1952), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(740), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4294), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5217), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5218), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4206), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4054), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(465), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5212), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 48), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 48), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 115), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 115), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 60), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 60), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 102), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 102), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 115), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 115), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(925), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 125), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 125), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 60), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 60), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 165), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2740] = {.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), + [2744] = {.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), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), SHIFT(530), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), SHIFT(530), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), SHIFT(530), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), SHIFT(530), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [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(1385), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1384), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4319), + [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), + [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4335), + [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4382), + [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4701), + [3310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3742), + [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), + [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), + [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), + [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3640), + [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5216), + [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4344), + [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), + [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5217), + [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5212), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), + [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5311), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), + [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), + [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1975), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), + [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), + [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5311), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), + [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), + [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1975), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1432), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4212), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4608), + [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4849), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1141), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(28), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4488), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(463), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3664), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3728), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3527), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3527), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3637), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4432), + [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4201), + [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5360), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4988), + [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4347), + [3611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5414), + [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5415), + [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4441), + [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5412), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 34), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [3683] = {.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), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [3715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), REDUCE(sym_record_body, 3, 0, 50), + [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 107), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1508), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 51), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), + [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 107), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), + [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5321), + [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5321), + [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4713), + [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1955), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1975), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4347), + [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5414), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5415), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5412), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3672), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2633), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2520), + [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2533), + [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(5488), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4670), + [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4202), + [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4280), + [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(5098), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1959), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 91), [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 175), - [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 209), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 91), - [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 209), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2012), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 178), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 91), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 175), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 86), - [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2009), - [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 93), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 91), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 141), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 142), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2157), - [4457] = {.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), - [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2202), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [4489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2173), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 107), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2231), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 88), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 88), - [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 90), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 90), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 37), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 37), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2252), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2268), - [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2270), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 51), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), - [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 107), - [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), - [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2283), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), - [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2280), - [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), - [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5341), - [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5283), - [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5238), - [4834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3986), - [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3988), - [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3844), - [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3844), - [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3947), - [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5355), - [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4181), - [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5396), - [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5397), - [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4294), - [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5394), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [4899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3659), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 91), + [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 91), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), + [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 141), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), + [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 142), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 86), + [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2147), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 91), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 93), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 86), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 175), + [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1954), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 178), + [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 209), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 209), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2172), + [4514] = {.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), + [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2196), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 107), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 88), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 88), + [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 90), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 90), + [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 37), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 37), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2264), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2290), + [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), + [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2286), + [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 107), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), + [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), + [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), + [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 51), + [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2295), + [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5372), + [4833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5514), + [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5277), + [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4157), + [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4158), + [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3870), + [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3870), + [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3978), + [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5520), + [4857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4347), + [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5414), + [4863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5415), + [4866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4213), + [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5412), + [4872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2460), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), - [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 169), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), - [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 227), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 204), - [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 205), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [5151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2467), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [5204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3699), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 58), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 58), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 42), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 42), - [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 85), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), - [5370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 202), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 206), - [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 207), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 135), - [5392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 228), - [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 75), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [5428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 114), - [5436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 114), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 87), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 204), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 227), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 205), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 169), + [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2446), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3694), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), + [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 85), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 42), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 42), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 58), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 58), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 75), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 202), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 206), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 207), + [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 135), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 228), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [5401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), + [5412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), + [5434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), + [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), + [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 114), + [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 114), [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 58), [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 58), [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 114), [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 114), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), - [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), - [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3672), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), - [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), - [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 74), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 122), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 110), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), - [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(527), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 110), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), - [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), - [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(527), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), SHIFT(527), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), SHIFT(527), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), SHIFT(527), - [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 222), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), SHIFT(527), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 123), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), SHIFT(527), - [5660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), SHIFT(527), - [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), SHIFT(527), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 223), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 195), - [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), - [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), - [5678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), - [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(527), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), SHIFT(527), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 109), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 150), - [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 193), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), - [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 194), - [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 152), - [5717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), SHIFT(527), - [5720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), SHIFT(527), - [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), SHIFT(527), - [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), - [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [5754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(527), - [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(527), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), - [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 221), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), - [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 122), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 86), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), - [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 174), - [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 123), - [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 74), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(527), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4029), - [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4030), - [5811] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), SHIFT(527), - [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), - [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4071), - [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(527), - [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4035), - [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4051), - [5874] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), SHIFT(527), - [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 87), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3653), + [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), + [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3617), + [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 109), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 110), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), + [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), SHIFT(530), + [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), SHIFT(530), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 193), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 150), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 194), + [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 152), + [5620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), SHIFT(530), + [5623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), SHIFT(530), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 174), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 221), + [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 222), + [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 223), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 195), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 122), + [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(530), + [5669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(530), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), + [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [5700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 122), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 123), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 74), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), + [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 110), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), + [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), + [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(530), + [5729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), SHIFT(530), + [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(530), + [5735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(530), + [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 123), + [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), SHIFT(530), + [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), SHIFT(530), + [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 74), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), SHIFT(530), + [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), SHIFT(530), + [5774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), SHIFT(530), + [5783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), SHIFT(530), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 86), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(530), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(530), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), + [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 42), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 64), + [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 42), + [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4113), + [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4114), + [5858] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), SHIFT(530), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4135), + [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3983), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 224), + [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 224), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 155), + [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 155), [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 42), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 197), - [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 197), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), - [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(104), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 42), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), SHIFT(527), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), SHIFT(527), - [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 64), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 224), - [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 224), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(527), - [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 155), - [5979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 155), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5301), - [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5023), - [6000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), - [6003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5308), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 173), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4062), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(527), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 172), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), SHIFT(527), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), - [6041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4070), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), SHIFT(527), - [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [6053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), SHIFT(527), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 64), - [6068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(253), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), SHIFT(527), - [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), - [6078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4118), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [6083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), SHIFT(527), - [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), - [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4123), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), SHIFT(527), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), SHIFT(527), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(127), - [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4143), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), SHIFT(527), - [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), SHIFT(527), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), - [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3960), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), SHIFT(527), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), - [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3972), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), SHIFT(527), - [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), - [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3987), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3996), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), SHIFT(527), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), SHIFT(527), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), - [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), SHIFT(527), - [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), SHIFT(527), - [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), - [6217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), - [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 95), - [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 37), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 37), - [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), - [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 88), - [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 88), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), - [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), SHIFT(527), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 208), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), - [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), SHIFT(527), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), SHIFT(527), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), SHIFT(527), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), - [6298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(220), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [6303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), SHIFT(527), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [6310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), SHIFT(527), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), - [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 64), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [6319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), SHIFT(527), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [6326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), SHIFT(527), - [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 86), - [6335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(527), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(131), - [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(131), - [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), - [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), - [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [6364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), - [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3278), - [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), - [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(527), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 85), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 127), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 127), - [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 174), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [6390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), SHIFT(527), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), - [6395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(224), - [6398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(250), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 146), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), - [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 96), - [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 97), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 100), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 46), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 3, 0, 36), - [6459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 87), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), - [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [6465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 206), - [6469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 207), - [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 135), - [6473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 228), - [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), - [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 97), - [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 100), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 6, 0, 179), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [6539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(236), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(240), - [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(242), - [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(245), - [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), - [6559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 202), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), - [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), - [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), - [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 251), - [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 252), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), - [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 154), - [6577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 154), - [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 254), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 255), - [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 218), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 257), - [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 258), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 259), - [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 260), - [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 263), - [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), - [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 269), - [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 270), - [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 271), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 272), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 273), - [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 274), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 275), - [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 276), - [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 277), - [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 278), - [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 279), - [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 280), - [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 281), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 282), - [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 283), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 284), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 285), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 286), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 287), - [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 288), - [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 289), - [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), - [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 290), - [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 291), - [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 186), - [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 292), - [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 293), - [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 13, 0, 294), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), - [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), - [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), - [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), - [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 179), - [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), - [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 96), - [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 235), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 236), - [6727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), - [6729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 208), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 239), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 53), - [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 240), - [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 220), - [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 241), - [6769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 172), - [6771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 173), - [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 112), - [6775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 112), - [6777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 113), - [6779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 113), - [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 243), - [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), - [6785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [6793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3608), - [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 57), - [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 57), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), - [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(202), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(206), - [6851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(208), - [6854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(211), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 246), - [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), - [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), - [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 214), - [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 215), - [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), - [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 237), - [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 58), - [6887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 58), - [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3647), - [6894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 114), - [6940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 114), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [6952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), - [6961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [7371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 181), - [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [7536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 181), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [7550] = {.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), - [7554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7556] = {.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), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), - [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [7645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [7666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [7672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 157), - [7715] = {.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), - [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [7723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), - [7731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2280), - [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3664), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 81), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5374), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 43), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [7870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(79), - [7873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4587), - [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [7912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3677), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [7958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(78), - [7961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), - [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4697), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 182), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 182), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4441), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [7991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 183), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 183), - [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 156), - [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 156), - [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), - [8043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 116), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 116), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [8071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 111), - [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 111), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [8081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4042), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 51), - [8102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), - [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 51), - [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 47), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [8118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4850), - [8121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [8125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5236), - [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [8133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 49), - [8135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 147), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [8141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3700), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [8154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), - [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), - [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 83), - [8160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), - [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [8180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 170), - [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 170), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), - [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [8190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [8196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4806), - [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), - [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), - [8203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [8207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4695), - [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 132), - [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 133), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 134), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 86), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 86), - [8230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), - [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), - [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), - [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 139), - [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 140), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 144), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), - [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 33), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 92), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 39), - [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), - [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 41), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 49), - [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 44), - [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 45), - [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 82), - [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), - [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 168), - [8308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 94), - [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 177), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [8318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 198), - [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 199), - [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 200), - [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 201), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [8336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 84), - [8338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 104), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [8342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(194), - [8345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), - [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), - [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 225), - [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 226), - [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 244), - [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 245), - [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 262), - [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 210), - [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 98), - [8379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 99), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(530), + [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 197), + [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 197), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [5924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), SHIFT(530), + [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), + [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4153), + [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4155), + [5935] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), SHIFT(530), + [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 172), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 173), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(530), + [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [5978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5333), + [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5082), + [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5131), + [5987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), + [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(952), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), SHIFT(530), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), + [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(952), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), + [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), + [6037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(103), + [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 86), + [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 64), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [6060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(133), + [6063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(133), + [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), SHIFT(530), + [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), + [6083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(217), + [6086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(219), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), SHIFT(530), + [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [6098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), SHIFT(530), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), SHIFT(530), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), + [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4090), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), SHIFT(530), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), + [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(222), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), SHIFT(530), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), + [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4163), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), SHIFT(530), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), + [6152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4198), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), SHIFT(530), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [6164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), SHIFT(530), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), + [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [6185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3989), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), SHIFT(530), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), SHIFT(530), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), + [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3997), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), SHIFT(530), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), + [6212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4002), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), SHIFT(530), + [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), + [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4007), + [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4010), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 85), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(530), + [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), + [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(952), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), SHIFT(530), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), SHIFT(530), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), SHIFT(530), + [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), + [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(213), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), SHIFT(530), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), SHIFT(530), + [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), SHIFT(530), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), + [6289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(530), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(952), + [6297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), + [6309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [6317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [6321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 127), + [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 127), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 95), + [6331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), SHIFT(530), + [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), + [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 174), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), SHIFT(530), + [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), + [6353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 37), + [6355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 37), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), SHIFT(530), + [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), SHIFT(530), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), + [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 88), + [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 88), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), + [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), + [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 208), + [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), + [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 64), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), SHIFT(530), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), + [6413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3410), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), + [6418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(121), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), + [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 87), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 3, 0, 36), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 46), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [6493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), + [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 74), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 96), + [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 97), + [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 100), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [6513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 202), + [6515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 206), + [6517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 207), + [6519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 135), + [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), + [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 146), + [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 97), + [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 100), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 228), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 6, 0, 179), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(261), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(265), + [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(267), + [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(270), + [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 291), + [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 218), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 13, 0, 294), + [6591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 179), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), + [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 220), + [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 186), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 74), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 53), + [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), + [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), + [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), + [6682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), + [6684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 235), + [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 236), + [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 237), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 239), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 57), + [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 57), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 240), + [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), + [6708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), + [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 241), + [6712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 208), + [6714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 243), + [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 112), + [6718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 112), + [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 172), + [6722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 173), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 246), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), + [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 113), + [6734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 113), + [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), + [6738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), + [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), + [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), + [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), + [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 251), + [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 96), + [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 252), + [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 293), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 254), + [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), + [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 255), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 154), + [6766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 154), + [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), + [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 257), + [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 258), + [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 259), + [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 292), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 260), + [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), + [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 214), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(237), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(276), + [6812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(243), + [6815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 263), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), + [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [6852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 269), + [6854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3617), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 270), + [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 271), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 215), + [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 272), + [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 273), + [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 274), + [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 275), + [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 276), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 277), + [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 278), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 279), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 280), + [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 281), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 282), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 283), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 284), + [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 285), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 286), + [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 287), + [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 288), + [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 289), + [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 290), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), + [6913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), + [6915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [6921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 114), + [6930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 114), + [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 58), + [6934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 58), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3659), + [6983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 181), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [7419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [7542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [7591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3697), + [7594] = {.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), + [7598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7600] = {.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), + [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [7608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 181), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [7698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [7700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5318), + [7715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), + [7737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2295), + [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 43), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 81), + [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [7797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 157), + [7801] = {.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), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [7924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [7933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(81), + [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4671), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), + [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 116), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 116), + [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 111), + [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 111), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [7989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), + [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [8044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4020), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [8073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4621), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 182), + [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 182), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 183), + [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 183), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [8100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(76), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), + [8105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4783), + [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 156), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 156), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5374), + [8131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), + [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 168), + [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 198), + [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 199), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 200), + [8144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(204), + [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 201), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 225), + [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 226), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 244), + [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 245), + [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 262), + [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 181), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [8195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 49), + [8197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 49), + [8199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [8212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [8216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), + [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [8230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 147), + [8232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 51), + [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 80), + [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 98), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 82), + [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 83), + [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 84), + [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 33), + [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 92), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 94), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), + [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 99), + [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), + [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 39), + [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), + [8292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4767), + [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 41), + [8301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 104), + [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), + [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), + [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 44), + [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 45), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 180), + [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), + [8327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 132), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 133), + [8337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4770), + [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 134), + [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), + [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 210), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [8348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 51), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [8352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 170), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 170), + [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), + [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 139), + [8366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 140), + [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 144), + [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [8372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4803), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), [8381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 107), - [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 181), - [8387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 107), - [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 180), - [8391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 74), - [8393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 181), - [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 80), - [8397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 132), - [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 87), - [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 87), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [8435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [8447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 91), - [8449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 180), - [8451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 181), - [8453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 209), - [8457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 49), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [8461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 178), - [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 74), - [8465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4983), - [8468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), REDUCE(sym_record_body, 2, 0, 50), - [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 147), - [8483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 210), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [8495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), - [8497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 181), - [8499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 91), - [8501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 204), - [8503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 205), - [8505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), - [8507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 93), - [8509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 142), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [8519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 98), - [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 169), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 86), - [8531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 175), - [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), - [8535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 209), - [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), - [8543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 101), - [8547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [8561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), - [8564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 104), - [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [8574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 227), - [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), - [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 61), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [8590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 105), SHIFT_REPEAT(399), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), - [8603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), SHIFT_REPEAT(4861), - [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 83), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [8612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 86), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [8618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 107), - [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 107), - [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 84), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [8626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 175), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [8640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5030), - [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [8651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 176), - [8653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 176), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [8663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [8671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), - [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), - [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [8685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 203), - [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 203), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [8691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), - [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [8696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 182), - [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 182), - [8700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 136), - [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 136), - [8704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 72), - [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 72), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [8710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [8714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), - [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), - [8718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [8731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 183), - [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 183), - [8735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4996), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), - [8744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [8750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [8794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 86), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 91), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [9064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [9106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [9206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [9226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 86), - [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [8387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), + [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 181), + [8401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 107), + [8403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 86), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 86), + [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 177), + [8411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [8413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 47), + [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [8427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 147), + [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 83), + [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 84), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [8437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [8442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 209), + [8444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 86), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), + [8456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), + [8458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), + [8464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), SHIFT_REPEAT(4867), + [8467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 87), + [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 87), + [8471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 104), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [8475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 180), + [8477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 181), + [8479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 178), + [8483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 105), SHIFT_REPEAT(400), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [8490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [8500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 210), + [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 181), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [8508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 107), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [8518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), REDUCE(sym_record_body, 2, 0, 50), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [8539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [8545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 91), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 175), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 132), + [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), + [8561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), + [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 142), + [8569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 204), + [8571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 205), + [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 169), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 61), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 86), + [8597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(5001), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 91), + [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [8608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 49), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [8614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), + [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 175), + [8624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 227), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), + [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 107), + [8630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 93), + [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [8644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 98), + [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 101), + [8648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 209), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [8658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 203), + [8660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 203), + [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 136), + [8664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 136), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [8668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), + [8670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [8676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 176), + [8678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 176), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [8684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [8692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), + [8694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [8712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5031), + [8717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [8719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 182), + [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 182), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [8730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [8736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 183), + [8738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 183), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [8760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5030), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [8771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 72), + [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 72), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [8793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [8797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5019), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [8904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 91), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [9030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [9168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 86), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 86), + [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [9190] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [9200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [9422] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [9448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [9484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [9406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [9474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [9488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [9504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/stmt/assignment.nu b/test/corpus/stmt/assignment.nu index 676d936f..b96ca650 100644 --- a/test/corpus/stmt/assignment.nu +++ b/test/corpus/stmt/assignment.nu @@ -7,12 +7,14 @@ $var = 42 ----- (nu_script - (assignment - (val_variable - (identifier)) + (pipeline + (pipe_element + (assignment + (val_variable + (identifier)) (pipeline (pipe_element - (val_number))))) + (val_number))))))) ===== assignment-002-semicolon @@ -23,12 +25,14 @@ $var += 69; ----- (nu_script - (assignment - (val_variable - (identifier)) + (pipeline + (pipe_element + (assignment + (val_variable + (identifier)) (pipeline (pipe_element - (val_number))))) + (val_number))))))) ===== assignment-003-assignment-to-a-pipeline @@ -44,53 +48,79 @@ $x ++= [1 2 3] ----- (nu_script - (assignment - (val_variable - (identifier)) - (pipeline - (pipe_element - (val_number)) - (pipe_element - (expr_binary - (val_variable) - (val_number))))) - (assignment - (val_variable - (identifier)) - (pipeline - (pipe_element - (val_list - (list_body - (val_entry - (val_number)) - (val_entry - (val_number)) - (val_entry - (val_number))))) - (pipe_element - (command - (cmd_identifier) - (val_closure - (parameter_pipes - (parameter - (identifier))) - (pipeline - (pipe_element - (expr_binary - (val_variable - (identifier)) - (val_number))))))))) + (pipeline + (pipe_element + (assignment + (val_variable + (identifier)) + (pipeline + (pipe_element + (val_number)) + (pipe_element + (expr_binary + (val_variable) + (val_number))))))) + (pipeline + (pipe_element + (assignment + (val_variable + (identifier)) + (pipeline + (pipe_element + (val_list + (list_body + (val_entry + (val_number)) + (val_entry + (val_number)) + (val_entry + (val_number))))) + (pipe_element + (command + (cmd_identifier) + (val_closure + (parameter_pipes + (parameter + (identifier))) + (pipeline + (pipe_element + (expr_binary + (val_variable + (identifier)) + (val_number))))))))))) (pipeline (pipe_element (expr_parenthesized - (assignment - (val_variable - (identifier)) - (pipeline - (pipe_element - (val_number)))))) + (pipeline + (pipe_element + (assignment + (val_variable + (identifier)) + (pipeline + (pipe_element + (val_number)))))))) (pipe_element (command (cmd_identifier) (val_number))))) +===== +assignment-004-assignment-after-pipe +===== + +"foo" | $bar ++= $in + +----- + +(nu_script + (pipeline + (pipe_element + (val_string + (string_content))) + (pipe_element + (assignment + (val_variable + (identifier)) + (pipeline + (pipe_element + (val_variable))))))) From 5d8af7d79a813c4f53482f70e01cf2f120c150e6 Mon Sep 17 00:00:00 2001 From: blindfs Date: Mon, 2 Mar 2026 12:39:46 +0800 Subject: [PATCH 2/4] fix lint --- grammar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grammar.js b/grammar.js index 3e4efe8a..d063d2c3 100644 --- a/grammar.js +++ b/grammar.js @@ -1470,7 +1470,7 @@ function _block_body_rules(suffix) { ['stmt_mut' + suffix]: (/** @type {{ [x: string]: RuleOrLiteral; }} */ $) => prec.right( prec_map().assignment, - seq(keyword().mut, $['_assignment_pattern' + suffix]) + seq(keyword().mut, $['_assignment_pattern' + suffix]), ), ['stmt_const' + suffix]: ( From cd4c3b1ae9550e3e1ebc87a6686a47a5bbfd3296 Mon Sep 17 00:00:00 2001 From: blindfs Date: Mon, 2 Mar 2026 14:49:58 +0800 Subject: [PATCH 3/4] less linter complains --- grammar.js | 53 +++++++++++++++++++++++++++++------------------ package-lock.json | 2 +- package.json | 2 +- src/grammar.json | 12 +++++++---- 4 files changed, 43 insertions(+), 26 deletions(-) diff --git a/grammar.js b/grammar.js index d063d2c3..211fd85c 100644 --- a/grammar.js +++ b/grammar.js @@ -119,7 +119,7 @@ module.exports = grammar({ identifier: _ => _identifier_rules(false), long_flag_identifier: _ => - token.immediate(/[0-9\p{XID_Start}_][\p{XID_Continue}?_-]*/), + token.immediate(/[0-9\p{XID_Start}_][\p{XID_Continue}?_-]*/u), _command_name: $ => choice( @@ -146,7 +146,7 @@ module.exports = grammar({ /// Attributes attribute_list: $ => repeat1(seq($.attribute, choice(';', $._newline))), attribute_identifier: _ => - token.immediate(/[0-9\p{XID_Start}][0-9\p{XID_Continue}_-]*/), + token.immediate(/[0-9\p{XID_Start}][0-9\p{XID_Continue}_-]*/u), attribute: $ => seq( '@', @@ -359,7 +359,7 @@ module.exports = grammar({ seq(operator().minus, field('name', $.param_short_flag_identifier)), param_short_flag_identifier: _ => - token.immediate(/[\p{Punctuation}\p{Symbol}\p{XID_Continue}]/), + token.immediate(/[\p{Punctuation}\p{Symbol}\p{XID_Continue}]/u), /// Controls @@ -1172,7 +1172,7 @@ module.exports = grammar({ cell_path: $ => repeat1($.path), - _path_suffix: $ => choice('?', '!', seq('?', '!'), seq('!', '?')), + _path_suffix: _$ => choice('?', '!', seq('?', '!'), seq('!', '?')), path: $ => { const path = choice( @@ -1251,7 +1251,7 @@ module.exports = grammar({ ), short_flag_identifier: _ => - token.immediate(/[\p{XID_Continue}:?@!%_-]+/), + token.immediate(/[\p{XID_Continue}:?@!%_-]+/u), long_flag: $ => seq( @@ -1329,7 +1329,7 @@ function _identifier_rules(immediate) { * @param {any} entry base build block * @param {any} separator separator between entries * @param {any} preceding separator before first entry, defaults to separator - * @param {Array} alt_sep array of rules to override default separator + * @param {any} alt_sep array of rules to override default separator * @param {any} empty_unit optional for empty body */ function general_body_rules( @@ -1364,8 +1364,11 @@ function parenthesized_body_rules() { return { ..._block_body_rules('_parenthesized'), - /// pipeline - + /** + * pipeline_parenthesized + * + * @param {GrammarSymbols} $ + */ pipeline_parenthesized: $ => seq( repeat( @@ -1387,8 +1390,11 @@ function block_body_rules() { return { ..._block_body_rules(''), - /// pipeline - + /** + * pipeline + * + * @param {GrammarSymbols} $ + */ pipeline: $ => seq( repeat(seq($.pipe_element, $._pipe_separator, optional($._newline))), @@ -1539,7 +1545,7 @@ function _block_body_rules(suffix) { * Insert optional($._repeat_newline) in-between * * @param {any} $ - * @param {Array} sequence + * @param {Array} sequence * @param {boolean} begin allow newline in beginning * @param {boolean} end allow newline in end */ @@ -1685,7 +1691,7 @@ function _binary_predicate_rule(parenthesized) { $._binary_predicate_parenthesized : $._binary_predicate; return choice( - ...binary().map(([precedence, opr]) => { + ...binary().map(({prec: precedence, name: opr}) => { const seq_array = [ field('lhs', choice($.where_predicate, _expr)), field('opr', opr), @@ -1830,6 +1836,9 @@ function _range_rule(anonymous) { * @param {string} type */ function _unquoted_with_expr_rule(type) { + /** + * @param {GrammarSymbols} $ + */ return $ => { let excluded = ''; let unquoted_head = $.unquoted; @@ -1897,10 +1906,14 @@ function _unquoted_rule(type) { const pattern = token(seq(none_of(excluded_first), repeat(pattern_once))); const pattern_repeat = token(repeat(pattern_once)); - // because this catches almost anything, we want to ensure it is - // picked as the a last resort after everything else has failed. - // so we give it a ridiculously low precedence and place it at the - // very end + /** + * because this catches almost anything, we want to ensure it is + * picked as the a last resort after everything else has failed. + * so we give it a ridiculously low precedence and place it at the + * very end + * + * @param {GrammarSymbols} $ + */ return $ => { let pattern_repeat1 = $._unquoted_pattern; switch (type) { @@ -2171,7 +2184,7 @@ function table() { [prec_map().bit_and, operator().bit_and], [prec_map().bit_xor, operator().bit_xor], [prec_map().bit_or, operator().bit_or], - ].concat(binary(), predicate()); + ].concat(binary().map(({prec, name}) => [prec, name]), predicate()); } /** @@ -2179,9 +2192,9 @@ function table() { */ function binary() { return [ - [prec_map().and, operator().and], - [prec_map().xor, operator().xor], - [prec_map().or, operator().or], + {prec: prec_map().and, name: operator().and}, + {prec: prec_map().xor, name: operator().xor}, + {prec: prec_map().or, name: operator().or}, ]; } diff --git a/package-lock.json b/package-lock.json index f9628e24..ebb8b060 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "eslint": "^9.39.1", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.25.9" + "tree-sitter-cli": "^0.25.10" }, "peerDependencies": { "tree-sitter": "^0.25.0" diff --git a/package.json b/package.json index f0877341..10a2d81c 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "eslint": "^9.39.1", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.25.9" + "tree-sitter-cli": "^0.25.10" }, "peerDependencies": { "tree-sitter": "^0.25.0" diff --git a/src/grammar.json b/src/grammar.json index c6d55ee3..39b49288 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1787,7 +1787,8 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "[0-9\\p{XID_Start}_][\\p{XID_Continue}?_-]*" + "value": "[0-9\\p{XID_Start}_][\\p{XID_Continue}?_-]*", + "flags": "u" } }, "_command_name": { @@ -1963,7 +1964,8 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "[0-9\\p{XID_Start}][0-9\\p{XID_Continue}_-]*" + "value": "[0-9\\p{XID_Start}][0-9\\p{XID_Continue}_-]*", + "flags": "u" } }, "attribute": { @@ -3383,7 +3385,8 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "[\\p{Punctuation}\\p{Symbol}\\p{XID_Continue}]" + "value": "[\\p{Punctuation}\\p{Symbol}\\p{XID_Continue}]", + "flags": "u" } }, "_ctrl_statement": { @@ -16809,7 +16812,8 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "[\\p{XID_Continue}:?@!%_-]+" + "value": "[\\p{XID_Continue}:?@!%_-]+", + "flags": "u" } }, "long_flag": { From 5a96cad74e599f022d70a7576372693f26633f8e Mon Sep 17 00:00:00 2001 From: blindfs Date: Mon, 2 Mar 2026 20:50:13 +0800 Subject: [PATCH 4/4] known-failures -1 --- script/known-failures.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/script/known-failures.txt b/script/known-failures.txt index 9e492f93..b4fd207a 100644 --- a/script/known-failures.txt +++ b/script/known-failures.txt @@ -21,7 +21,6 @@ examples/nu_scripts/custom-completions/pytest/pytest-completions.nu examples/nu_scripts/custom-menus/current_session_history_menu.nu examples/nu_scripts/example-config/init.nu examples/nu_scripts/make_release/gen-ts-ext.nu -examples/nu_scripts/make_release/notes/notice.nu examples/nu_scripts/make_release/notes/tools.nu examples/nu_scripts/modules/duplicates/example.nu examples/nu_scripts/modules/kubernetes/complete.nu